/* ==========================================================================
   Base — Reset, Custom Properties, Typography
   ========================================================================== */

/* Custom Properties */
:root {
    /* Colors */
    --c-bg: #09090C;
    --c-surface: #131418;
    --c-surface2: #1B1C22;
    --c-border: #262830;
    --c-text: #E8EAEF;
    --c-text-dim: #8B8F9A;
    --c-accent: #E8735A;
    --c-accent-hover: #F08D78;
    --c-accent-soft: rgba(232, 115, 90, 0.12);
    --c-gold: #C9A95C;
    --c-white: #F8F9FC;
    --c-error: #E05C4D;
    --c-success: #5CB06E;

    /* Fonts */
    --f-heading: 'Bitter', Georgia, serif;
    --f-body: 'Albert Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing (8px grid) */
    --s-4: 0.25rem;
    --s-8: 0.5rem;
    --s-12: 0.75rem;
    --s-16: 1rem;
    --s-24: 1.5rem;
    --s-32: 2rem;
    --s-40: 2.5rem;
    --s-48: 3rem;
    --s-64: 4rem;
    --s-80: 5rem;
    --s-96: 6rem;
    --s-120: 7.5rem;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --dur: 250ms;

    /* Layout */
    --max-w: 1200px;
    --header-h: 64px;

    /* Border Radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + var(--s-24));
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--f-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--c-text);
    background-color: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.scroll-locked {
    overflow: hidden;
}

img,
picture,
video,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--c-accent-hover);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

a:hover {
    color: var(--c-accent);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
    margin-bottom: var(--s-24);
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem);
    margin-bottom: var(--s-16);
}

h3 {
    font-size: clamp(1.15rem, 2vw + 0.15rem, 1.5rem);
    margin-bottom: var(--s-12);
}

p {
    margin-bottom: var(--s-16);
}

p:last-child {
    margin-bottom: 0;
}

/* Eyebrow / Label */
.dp-eyebrow {
    display: block;
    font-family: var(--f-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-accent-hover);
    margin-bottom: var(--s-12);
}

/* Selection */
::selection {
    background-color: var(--c-accent);
    color: var(--c-white);
}
