/* tokens.css — design system: colours, type, spacing, easings + base resets,
   layout primitives (.wrap/.section) and type helpers. Source: blueprint §2. */

:root {
    --void: #180228;
    --surface: #241038;
    --surface-2: #341f57;
    --pearl: #FBFBFB;
    --ash: #9D90B4;
    --champagne: #DCC49B;
    --champagne-2: #ECD8AC;
    --cream: #F6F1E9;
    --ink: #1B0A2B;
    --bronze: #8A6D35;
    --line: rgba(220, 196, 155, .20);
    --line-ink: rgba(27, 10, 43, .14);
    --fd: "Fraunces", Georgia, "Times New Roman", serif;
    --fb: "General Sans", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
    --maxw: 1180px;
    --s1: 8px;
    --s2: 16px;
    --s3: 24px;
    --s4: 32px;
    --s5: 48px;
    --s6: 64px;
    --s7: 96px;
    --s8: 128px;
    --r: 3px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--void);
    color: var(--pearl);
    font-family: var(--fb);
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

h1,
h2,
h3,
h4 {
    font-family: var(--fd);
    font-weight: 380;
    line-height: 1.08;
    letter-spacing: -.018em
}

em {
    font-style: italic
}

.wrap {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 44px)
}

.section {
    padding-block: clamp(64px, 10vw, 132px)
}

.section--cream {
    background: var(--cream);
    color: var(--ink)
}

.section--cream h1,
.section--cream h2,
.section--cream h3 {
    color: var(--ink)
}

.section--surface {
    background: linear-gradient(180deg, var(--void), #1d0833)
}

/* type helpers */
.eyebrow {
    font-family: var(--fb);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 600;
    color: var(--champagne);
    display: inline-block;
    margin-bottom: var(--s3)
}

.section--cream .eyebrow {
    color: var(--bronze)
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--ash);
    max-width: 60ch;
    line-height: 1.6
}

.section--cream .lead {
    color: #4a3a55
}

.muted {
    color: var(--ash)
}

.kicker {
    display: block;
    font-family: var(--fb);
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--ash);
    font-size: 1rem;
    text-transform: none
}

/* Lenis smooth scroll (Phase 2) — required classes Lenis toggles on <html>.
   scroll-behavior must be auto while Lenis is active so it doesn't fight the
   native smooth-scroll set above. */
html.lenis,
html.lenis body {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain
}

.lenis.lenis-stopped {
    overflow: hidden
}

.lenis.lenis-smooth iframe {
    pointer-events: none
}
