/* =====================================================
   DESI BRIEFS — Landing Page Stylesheet

   Palette (matches email):
     orange  #E8581A   magenta #B83070
     green   #2D7A4A   gold    #C8A84C
     cloth   #FDFAF5   text    #2E1F12
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Gurmukhi:wght@300;400;600&display=swap');

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

:root {
    --orange:       #E8581A;
    --magenta:      #B83070;
    --green:        #2D7A4A;
    --gold:         #C8A84C;
    --cloth:        #FDFAF5;
    --cloth-mid:    #F8F3EA;
    --cloth-dark:   #F2EBE0;
    --ink:          #2E1F12;
    --ink-70:       rgba(46,31,18,0.70);
    --ink-50:       rgba(46,31,18,0.50);
    --ink-35:       rgba(46,31,18,0.35);
    --ink-18:       rgba(46,31,18,0.18);
    --border:       rgba(220,208,188,0.80);
    --serif:        'DM Serif Display', 'Playfair Display', Georgia, serif;
    --sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --gurmukhi:     'Noto Sans Gurmukhi', 'Raavi', sans-serif;
}

html { scroll-behavior: smooth; background-color: var(--cloth); }

body {
    font-family: var(--sans);
    background-color: var(--cloth);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}


/* ── GRADIENT BAR ── */
.gradient-bar {
    height: 4px;
    background: linear-gradient(to right,
        #E8581A 0%, #E8581A 25%,
        #B83070 50%,
        #2D7A4A 75%, #2D7A4A 100%);
    opacity: 0.72;
}
.top-bar { position: sticky; top: 0; z-index: 100; }
.footer-bar { margin-top: 40px; opacity: 0.45; }


/* ── NAV ── */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background-color: rgba(253,250,245,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 4px;
    z-index: 99;
}

.nav-brand {
    font-family: var(--serif);
    font-size: 21px;
    letter-spacing: -0.4px;
    color: var(--ink);
}

.nav-cta {
    display: inline-block;
    background-color: var(--orange);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 9px 20px;
    border-radius: 3px;
    transition: background-color 0.16s ease;
}
.nav-cta:hover { background-color: #cf4c10; }


/* ── CONTAINERS ── */
.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 36px;
}
.container--narrow { max-width: 680px; }


/* ── SHARED SECTION TYPOGRAPHY ── */
.section-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 12px;
}
.section-eyebrow--orange  { color: var(--orange); }
.section-eyebrow--magenta { color: var(--magenta); }
.section-eyebrow--green   { color: var(--green); }
.section-eyebrow--gold    { color: #9a7c30; }

.section-heading {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 15.5px;
    color: var(--ink-50);
    line-height: 1.75;
    margin-bottom: 40px;
}


/* STORY SEQUENCE */
.story-scroll {
    position: relative;
    height: 380vh;
}

.story-scene {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    background-color: var(--cloth);
}

.story-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 3;
    opacity: 0;
}

/* not actively used in main animation; kept as fallback layer */
.story-overlay {
    position: absolute;
    inset: 0;
    background: #0b0603;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* canvas: video clipped to ਪੰਜਾਬ letterforms via source-in compositing.
   Fills the scene at z=2 (below the full video at z=3).
   JS scales it from 1.0→0.68 and drives opacity. */
.story-mask-canvas {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    opacity: 1;
    will-change: opacity;
}

/* newsletter content layer */
.story-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 36px 80px;  /* equal top/bottom → flex center = scene center */
    text-align: center;
    z-index: 5;
    pointer-events: none;
}

.story-content .signup-form,
.story-content .signup-input,
.story-content .signup-btn { pointer-events: auto; }

/* initial hidden state for stagger-reveal elements */
.st-el {
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.hero-eyebrow {
    display: block;
    font-family: var(--gurmukhi);
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 18px;
    position: relative;
}

.hero-brand {
    font-family: var(--serif);
    font-size: 88px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -4px;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
}

.hero-rule {
    width: 72px;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--magenta), var(--green));
    border-radius: 2px;
    margin: 18px auto 20px;
    opacity: 0.80;
}

.hero-tagline {
    font-family: var(--serif);
    font-size: 23px;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 12px;
    position: relative;
}
.hero-tagline em {
    font-style: italic;
    color: var(--orange);
}

.hero-sub {
    font-size: 15.5px;
    color: var(--ink-50);
    line-height: 1.85;
    margin-bottom: 38px;
    position: relative;
}

/* ─ SIGNUP FORM ─ */
.signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.signup-row {
    display: flex;
    width: 100%;
    max-width: 460px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--border),
        0 2px 16px rgba(46,31,18,0.10);
}

.signup-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: #fff;
    font-family: var(--sans);
    font-size: 14.5px;
    color: var(--ink);
    padding: 14px 18px;
}
.signup-input::placeholder { color: var(--ink-35); }
.signup-input:focus { background: #fffdfb; }

.signup-btn {
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    background-color: var(--orange);
    color: #fff;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 14px 26px;
    transition: background-color 0.16s ease;
    white-space: nowrap;
}
.signup-btn:hover { background-color: #cf4c10; }

.signup-note {
    font-size: 11.5px;
    color: var(--ink-35);
}
.signup-feedback {
    font-size: 12px;
    margin-top: 6px;
    min-height: 18px;
}
.signup-feedback--dim { color: rgba(253,250,245,0.60); }

/* ─ LOCATION ROW (city + country) ─ */
.signup-location {
    display: flex;
    gap: 6px;
    width: 100%;
    max-width: 460px;
    margin-top: -2px;
}

.signup-city,
.signup-country {
    min-width: 0;
    padding: 9px 14px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.16s ease;
}
.signup-city         { flex: 3; }
.signup-country {
    flex: 2;
    cursor: pointer;
    color: var(--ink-35);
    padding-right: 28px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(46%2C31%2C18%2C0.35)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.signup-country option             { color: var(--ink); }
.signup-country.has-value          { color: var(--ink); }
.signup-city::placeholder          { color: var(--ink-35); }

.signup-city--dark,
.signup-country--dark {
    background: rgba(255,255,255,0.06);
    color: rgba(253,250,245,0.90);
    border-color: rgba(255,255,255,0.10);
}
.signup-country--dark {
    color: rgba(253,250,245,0.28);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(253%2C250%2C245%2C0.28)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.signup-country--dark.has-value    { color: rgba(253,250,245,0.90); }
.signup-city--dark::placeholder    { color: rgba(253,250,245,0.28); }
.signup-country--dark option       { background: #1a1207; color: rgba(253,250,245,0.90); }

.signup-city-note {
    font-size: 11px;
    color: var(--ink-35);
    line-height: 1.5;
    margin-top: -4px;
}
.signup-city-note--dim { color: rgba(253,250,245,0.25); }

/* ─ HERO STATS ─ */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 0;
    margin-top: 24px;
    position: relative;
}

.hero-stat {
    font-size: 12px;
    color: var(--ink-50);
    padding: 0 10px;
}

.hero-stat-sep {
    font-size: 12px;
    color: var(--ink-18);
}


/* MISSION */
.mission {
    padding: 104px 0 116px;
    background-color: var(--cloth-mid);
    background-image: url('/assets/city_top.png');
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(253, 246, 234, 0.12);
    pointer-events: none;
    z-index: 0;
}
.mission .container {
    position: relative;
    z-index: 1;
}

/* Letter paper card */
.letter-paper {
    background-color: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 38px 44px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 1px 4px rgba(46,31,18,0.04), 0 4px 24px rgba(46,31,18,0.06);
}
.letter-paper::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--magenta), var(--green));
    border-radius: 4px 4px 0 0;
    opacity: 0.55;
}

.letter-body {
    font-size: 15.5px;
    line-height: 1.90;
    color: var(--ink);
    margin-bottom: 22px;
}
.letter-body:last-of-type { margin-bottom: 0; }

.letter-gurmukhi {
    font-family: 'Noto Sans Gurmukhi', 'Raavi', serif;
    color: var(--magenta);
    font-size: 14px;
}

.letter-sign {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--orange);
    margin-top: 26px;
    display: block;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pillar {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    border-top: 3px solid;
    border-radius: 0 0 4px 4px;
    padding: 22px 20px 24px;
}
.pillar--orange  { border-top-color: var(--orange); }
.pillar--magenta { border-top-color: var(--magenta); }
.pillar--green   { border-top-color: var(--green); }

.pillar-title {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.2;
}

.pillar-body {
    font-size: 13.5px;
    color: var(--ink-50);
    line-height: 1.75;
}


/* PREVIEW */
.preview {
    padding: 104px 0 116px;
    background-color: var(--cloth);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* Base card */
.preview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.preview-card:hover {
    box-shadow: 0 6px 24px rgba(46,31,18,0.09);
    transform: translateY(-2px);
}

/* Featured: spans 2 cols, left accent border */
.preview-card--featured {
    grid-column: span 2;
    border-left: 3px solid var(--orange);
    background: linear-gradient(135deg, rgba(232,88,26,0.03) 0%, #fff 55%);
    padding-left: 22px;
}

/* Word of Day: centered, gold-tinted */
.preview-card--word {
    text-align: center;
    align-items: center;
    background: linear-gradient(160deg, rgba(200,168,76,0.07) 0%, #fff 70%);
    border-color: rgba(200,168,76,0.30);
}

.preview-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    align-self: flex-start;
    flex-shrink: 0;
}
.preview-card--word .preview-tag { align-self: center; }

.preview-tag--orange  { color: var(--orange);  background: rgba(232,88,26,0.10); }
.preview-tag--green   { color: var(--green);   background: rgba(45,122,74,0.10); }
.preview-tag--gold    { color: #886e22;        background: rgba(200,168,76,0.16); }
.preview-tag--magenta { color: var(--magenta); background: rgba(184,48,112,0.10); }

.preview-card-title {
    font-family: var(--serif);
    font-size: 17.5px;
    color: var(--ink);
    line-height: 1.35;
}

.preview-card-body {
    font-size: 13.5px;
    color: var(--ink-50);
    line-height: 1.75;
    flex: 1;
}

.preview-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 4px;
}

.preview-pill {
    display: inline-block;
    font-size: 10px;
    color: var(--ink-35);
    background: rgba(46,31,18,0.05);
    padding: 3px 9px;
    border-radius: 20px;
    flex-shrink: 0;
    align-self: flex-start;
}

.preview-in-every {
    font-size: 12px;
    font-weight: 500;
    color: var(--orange);
}

/* Word of Day mini display */
.word-gurmukhi {
    font-family: 'Noto Sans Gurmukhi', 'Raavi', serif;
    font-size: 36px;
    color: var(--magenta);
    line-height: 1.25;
    margin-top: 6px;
}
.word-roman {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    line-height: 1.2;
}
.word-meaning {
    font-size: 12px;
    color: var(--ink-50);
    font-style: italic;
    line-height: 1.5;
}


/* COMMUNITY */
.community {
    padding: 104px 0 116px;
    background-color: var(--cloth-mid);
    background-image: url('/assets/gurudwara_top.png');
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.community::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(253, 246, 234, 0.45);
    pointer-events: none;
    z-index: 0;
}
.community .container {
    position: relative;
    z-index: 1;
}

.community-stats {
    display: flex;
    gap: 72px;
    align-items: flex-end;
    margin-bottom: 40px;
}

.community-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.community-stat-num {
    font-family: var(--serif);
    font-size: 112px;
    line-height: 0.85;
    letter-spacing: -4px;
    color: var(--ink);
    opacity: 0.10;
    display: block;
}

.community-stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
}

.community-cities {
    font-size: 15px;
    line-height: 2;
    color: var(--ink-50);
    letter-spacing: 0.01em;
    margin-bottom: 48px;
    max-width: 680px;
}

.community-note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-50);
    line-height: 1.65;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}


/* TESTIMONIALS */
.testimonials {
    padding: 104px 0 116px;
    background-color: var(--cloth);
}

/* Featured testimonial — full width, prominent */
.testimonial--featured {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 44px 52px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    list-style: none;
}
.testimonial--featured::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), rgba(200,168,76,0.20));
    opacity: 0.70;
}

.testimonial-bigquote {
    display: block;
    position: absolute;
    top: 12px;
    left: 28px;
    font-family: var(--serif);
    font-size: 130px;
    line-height: 1;
    color: var(--orange);
    opacity: 0.10;
    pointer-events: none;
    user-select: none;
    aria-hidden: true;
}

.testimonial--featured .testimonial-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
    line-height: 1.65;
    position: relative;
    padding-left: 28px;
}

.testimonial--featured .testimonial-footer {
    margin-top: 22px;
    padding-left: 28px;
}

/* Pair: two smaller testimonials side by side */
.testimonials-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.testimonial {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
}

.testimonial-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--ink);
    line-height: 1.72;
    flex: 1;
}
/* opening quote mark for small cards only */
.testimonials-pair .testimonial-quote::before {
    content: '\201C';
    color: var(--gold);
    opacity: 0.75;
    margin-right: 2px;
}
.testimonials-pair .testimonial-quote::after {
    content: '\201D';
    color: var(--gold);
    opacity: 0.75;
    margin-left: 2px;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}
.testimonial-location {
    font-size: 11.5px;
    color: var(--ink-35);
}


/* FAQs */
.faqs {
    padding: 104px 0 116px;
    background-color: var(--cloth-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.14s ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] { background-color: rgba(232,88,26,0.025); }

.faq-question {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    transition: color 0.14s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-item[open] .faq-question { color: var(--orange); }

.faq-question::after {
    content: '+';
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 300;
    color: var(--ink-35);
    flex-shrink: 0;
    line-height: 1;
}
.faq-item[open] .faq-question::after {
    content: '−';
    color: var(--orange);
}

.faq-answer {
    font-size: 14.5px;
    color: var(--ink-70);
    line-height: 1.80;
    padding: 0 22px 22px;
}


/* FINAL CTA */
.final-cta {
    padding: 100px 0 108px;
    background-color: #2B1A0C;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* large Gurmukhi watermark — mirrors hero wordmark */
.final-cta::before {
    content: 'ਪੰਜਾਬ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--gurmukhi);
    font-size: clamp(100px, 24vw, 480px);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.final-cta-inner { position: relative; z-index: 1; }

.final-cta-gurmukhi {
    font-family: 'Noto Sans Gurmukhi', 'Raavi', serif;
    font-size: 26px;
    color: rgba(200,168,76,0.70);
    line-height: 1.3;
    margin-bottom: 18px;
    display: block;
}

.final-cta-heading {
    font-family: var(--serif);
    font-size: 54px;
    font-weight: 400;
    color: rgba(253,250,245,0.95);
    letter-spacing: -2px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.final-cta-sub {
    font-size: 15px;
    color: rgba(253,250,245,0.45);
    line-height: 1.70;
    margin-bottom: 38px;
}

/* Dark-context form overrides */
.signup-row--dark {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.12),
        0 4px 24px rgba(0,0,0,0.30);
}

.signup-input--dark {
    background: rgba(255,255,255,0.07);
    color: rgba(253,250,245,0.95);
    border-right: 1px solid rgba(255,255,255,0.08);
}
.signup-input--dark::placeholder { color: rgba(253,250,245,0.30); }
.signup-input--dark:focus { background: rgba(255,255,255,0.10); }

.signup-note--dim { color: rgba(253,250,245,0.30); }


/* FOOTER */
.footer {
    background-color: #1A0D04;
    padding: 48px 0 0;
}

.footer-inner { text-align: center; }

.footer-brand {
    font-family: var(--serif);
    font-size: 26px;
    color: rgba(253,250,245,0.88);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 12.5px;
    color: rgba(200,168,76,0.55);
    font-style: italic;
    margin-bottom: 22px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 18px;
}

.footer-link {
    font-size: 12px;
    color: rgba(253,250,245,0.40);
    text-decoration: none;
    padding: 0 10px;
    transition: color 0.15s ease;
}
.footer-link:hover { color: var(--gold); }

.footer-dot {
    font-size: 12px;
    color: rgba(253,250,245,0.15);
}

.footer-copy {
    font-size: 11px;
    color: rgba(253,250,245,0.18);
    padding-bottom: 32px;
}


/* RESPONSIVE — tablet */
@media (max-width: 820px) {
    .nav { padding: 14px 22px; }

    .story-content { padding: 64px 24px 64px; }

    .hero-brand { font-size: 64px; letter-spacing: -2.5px; }
    .hero-tagline { font-size: 19px; }


    .section-heading { font-size: 34px; letter-spacing: -0.8px; }

    .pillars { grid-template-columns: 1fr; gap: 12px; }

    .preview-grid { grid-template-columns: 1fr 1fr; }
    .preview-card--featured {
        grid-column: span 2;
        flex-direction: column;
    }

    .community-stat-num { font-size: 80px; }

    .testimonial--featured { padding: 32px 36px; }
    .testimonial--featured .testimonial-quote { font-size: 19px; }

    .final-cta-heading { font-size: 42px; letter-spacing: -1.5px; }
    .final-cta { padding: 104px 0 116px; }

    .container { padding: 0 24px; }
}


/* RESPONSIVE — mobile */
@media (max-width: 560px) {
    .story-scroll { height: 300vh; }
    .story-content { padding: 56px 20px 56px; }

    .hero-brand { font-size: 52px; letter-spacing: -2px; }
    .hero-tagline { font-size: 17px; }
    .hero-sub { font-size: 14.5px; }
    .hero-rule { width: 52px; }

    /* Stacked email form */
    .signup-row,
    .signup-row--dark {
        flex-direction: column;
        border-radius: 4px;
    }
    .signup-input,
    .signup-input--dark {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .signup-input--dark { border-bottom-color: rgba(255,255,255,0.08); }

    .hero-stats { gap: 4px; }
    .hero-stat  { font-size: 11px; }

    .section-heading { font-size: 28px; }
    .section-sub { font-size: 14.5px; margin-bottom: 28px; }

    .letter-paper { padding: 26px 24px; }

    .preview-grid { grid-template-columns: 1fr; }
    .preview-card--featured { grid-column: span 1; }

    .community-stats { gap: 40px; }
    .community-stat-num { font-size: 64px; }

    .testimonials-pair { grid-template-columns: 1fr; }
    .testimonial--featured { padding: 28px 26px; }
    .testimonial--featured .testimonial-quote { font-size: 17px; padding-left: 0; }
    .testimonial--featured .testimonial-footer { padding-left: 0; }
    .testimonial-bigquote { font-size: 90px; }

    .final-cta-heading { font-size: 34px; letter-spacing: -1px; }
    .final-cta-gurmukhi { font-size: 20px; }
    .final-cta { padding: 68px 0 76px; }
    .final-cta::before { display: none; }

    .footer-tagline { font-size: 12px; }

}


/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    .story-video   { opacity: 0 !important; }
    .story-overlay { opacity: 0 !important; }
    .st-el         { opacity: 1 !important; transform: none !important; }
}
