/* ===========================================================
   SANJA VIRSA — DESIGN TOKENS
   A heritage-rooted palette drawn from phulkari embroidery:
   wine maroon, marigold gold, deep indigo night, warm cream.
   =========================================================== */
:root {
    /* Color */
    --maroon: #7A1E3C;
    --maroon-dark: #55142A;
    --maroon-light: #9C3358;
    --marigold: #E7A62B;
    --marigold-light: #F3C468;
    --indigo: #1F2A44;
    --indigo-dark: #141C30;
    --cream: #FBF3E7;
    --cream-dark: #F2E3CC;
    --ink: #2A1810;
    --rani: #C6417E;
    --white: #FFFFFF;
    --line: rgba(42, 24, 16, 0.12);

    /* Type */
    --font-display: 'Fraunces', serif;
    --font-body: 'Work Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Scale */
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 26px;
    --shadow-sm: 0 2px 10px rgba(42,24,16,0.08);
    --shadow-md: 0 10px 30px rgba(42,24,16,0.12);
    --shadow-lg: 0 20px 55px rgba(42,24,16,0.18);
    --ease: cubic-bezier(.22,.7,.4,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    color: var(--ink);
}

.eyebrow {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--maroon);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: '';
    width: 26px; height: 2px;
    background: var(--marigold);
    display: inline-block;
}

.h-xl { font-size: clamp(2.6rem, 5.4vw, 4.6rem); letter-spacing: -0.02em; }
.h-lg { font-size: clamp(2.1rem, 3.8vw, 3.1rem); letter-spacing: -0.015em; }
.h-md { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }

.lede {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: #5a453b;
    max-width: 46ch;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: var(--maroon);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold {
    background: var(--marigold);
    color: var(--ink);
}
.btn-gold:hover { background: var(--marigold-light); transform: translateY(-2px); }
.btn-outline {
    border: 1.5px solid var(--ink);
    color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--indigo); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

:focus-visible {
    outline: 3px solid var(--marigold);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
}
