/* ════════════════════════════════════════════════════════════════════
   REFLECTIONS WITH LILLIE  —  Design System v4
   "A digital legacy. Not a music website."

   This file is the single source of truth for the entire site.
   Every page inherits these tokens, components, and utilities.
   Never redefine colors or fonts on individual pages.

   Color Tokens
   ────────────
   --navy       Deep navy (primary dark ground)    #0B1A33
   --navy-mid   Slightly lifted navy               #0F2245
   --navy-lt    Lightest navy, for cards/hover     #162B55
   --royal      Royal blue accent                  #1B4FA8
   --gold       Signature antique gold             #C4964A
   --gold-lt    Warm highlight gold                #D9AE6E
   --gold-pale  Near-white gold tint               #F0E4CB
   --ivory      Primary light background           #F6F1E9
   --ivory-dk   Deeper ivory for alternating secs  #EDE5D5
   --linen      Warmest cream, for hero text bg    #F9F5EE
   --ink        Dark body text on light            #2C2416
   --ink-mid    Secondary body text on light       #5A4E3C
   --ink-soft   Muted/caption text on light        #8A7F6E
   --mist       Primary text on dark               #EDE8DF
   --mist-mid   Secondary text on dark (70%)
   --mist-soft  Muted text on dark (42%)

   Spacing Scale (8px base)
   ────────────────────────
   --sp-xs  0.5rem   8px
   --sp-s   1rem    16px
   --sp-m   1.5rem  24px
   --sp-l   2.5rem  40px
   --sp-xl  4rem    64px
   --sp-2xl 6.5rem  104px
   --sp-3xl 9rem    144px
════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --navy:       #0B1A33;
  --navy-mid:   #0F2245;
  --navy-lt:    #162B55;
  --royal:      #1B4FA8;
  --gold:       #C4964A;
  --gold-lt:    #D9AE6E;
  --gold-pale:  #F0E4CB;
  --ivory:      #F6F1E9;
  --ivory-dk:   #EDE5D5;
  --linen:      #F9F5EE;
  --ink:        #2C2416;
  --ink-mid:    #5A4E3C;
  --ink-soft:   #8A7F6E;
  --mist:       #EDE8DF;
  --mist-mid:   rgba(237,232,223,.70);
  --mist-soft:  rgba(237,232,223,.42);

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-ui:      'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-s:   1rem;
  --sp-m:   1.5rem;
  --sp-l:   2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6.5rem;
  --sp-3xl: 9rem;

  /* Layout */
  --max-w:    1160px;
  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.5,.3,1);
}


/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

[aria-current="page"] { color: var(--gold) !important; }
[aria-current="page"]::after { width: 100% !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}


/* ─── LAYOUT UTILITIES ────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
}


/* ─── GLOBAL TOKENS (used across all pages) ───────────── */

/* Eyebrow label */
.section-label {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-s);
}
.section-label.light { color: var(--gold-lt); }

/* Section heading */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.section-title.light { color: var(--mist); }

/* Inline section header row */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-m);
  margin-bottom: var(--sp-2xl);
  flex-wrap: wrap;
}

/* Underlined arrow link */
.section-link {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196,150,74,.35);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
}
.section-link:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* Ornament divider */
.ornament-line {
  display: flex;
  align-items: center;
  gap: var(--sp-m);
  margin-bottom: var(--sp-xl);
}
.ornament-rule {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: .45;
}
.ornament-line.light .ornament-rule {
  background: linear-gradient(to right, transparent, rgba(217,174,110,.4));
}
.ornament-line .ornament-rule:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.ornament-line.light .ornament-rule:last-child {
  background: linear-gradient(to left, transparent, rgba(217,174,110,.4));
}
.ornament-star {
  color: var(--gold);
  opacity: .5;
  font-size: .75rem;
  letter-spacing: .1em;
}
.ornament-line.light .ornament-star { color: var(--gold-lt); opacity: .4; }

/* Door link (text arrow links inside cards/sections) */
.door-link {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .5em;
  transition: color .25s, gap .25s;
}
.door-link:hover { color: var(--gold-lt); gap: .75em; }


/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 1px;
  transition: background .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), box-shadow .28s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

/* Ivory — on dark/photo backgrounds */
.btn-ivory {
  background: var(--ivory);
  color: var(--navy);
  border: 1.5px solid var(--ivory);
}
.btn-ivory:hover { background: var(--gold-pale); border-color: var(--gold-pale); }

/* Outline ghost — on dark, subtle */
.btn-outline {
  background: transparent;
  color: var(--mist);
  border: 1.5px solid rgba(237,232,223,.35);
}
.btn-outline:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

/* Outline ghost — on dark, more visible */
.btn-outline-light {
  background: transparent;
  color: var(--gold-lt);
  border: 1.5px solid rgba(217,174,110,.45);
}
.btn-outline-light:hover {
  background: rgba(196,150,74,.08);
  border-color: var(--gold-lt);
}

/* Gold — primary CTA on light backgrounds */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 1.5px solid var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  box-shadow: 0 6px 24px rgba(196,150,74,.22);
}

/* Navy — secondary CTA on light */
.btn-navy {
  background: var(--navy);
  color: var(--mist);
  border: 1.5px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }


/* ════════════════════════════════════════════════════════
   IMAGE PLACEHOLDERS
   Show a styled "no photo" state until real images land.
════════════════════════════════════════════════════════ */
.portrait-fallback,
.img-fallback,
.art-fallback {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-lt)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.portrait-fallback::after,
.img-fallback::after {
  content: 'Photo coming soon';
  font-family: var(--ff-ui);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(196,150,74,.35);
}
.art-fallback::after {
  content: attr(data-label);
  font-family: var(--ff-display);
  font-size: .9rem;
  font-style: italic;
  color: rgba(196,150,74,.4);
  text-align: center;
  padding: 1rem;
}


/* ════════════════════════════════════════════════════════
   SCROLL REVEAL
   Elements with .reveal fade up as they enter viewport.
   Applied via JS (IntersectionObserver).
════════════════════════════════════════════════════════ */
.reveal,
.reveal-hero {
  opacity: 0;
  transform: translateY(20px);
}
.reveal.in,
.reveal-hero.in {
  opacity: 1;
  transform: none;
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}


/* ════════════════════════════════════════════════════════
   SITE HEADER
════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .5s var(--ease), border-color .5s var(--ease);
}
.site-header.scrolled {
  background: rgba(11,26,51,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(196,150,74,.13);
}

.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1rem clamp(1.25rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo, .footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  flex-shrink: 0;
  transition: opacity .25s;
}
.logo:hover { opacity: .75; }
.logo-script {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: .01em;
}
.logo-sub {
  font-family: var(--ff-ui);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: lowercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Desktop nav */
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 1.8vw, 1.8rem);
}
.main-nav a {
  font-family: var(--ff-ui);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(237,232,223,.7);
  padding-bottom: 2px;
  position: relative;
  transition: color .25s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.main-nav a:hover { color: var(--gold-lt); }
.main-nav a:hover::after { width: 100%; }

/* Close button inside mobile nav */
.nav-close {
  display: none;
  position: absolute;
  top: var(--sp-l);
  right: var(--sp-l);
  color: var(--mist-mid);
  font-size: 1.1rem;
  padding: .25rem;
  transition: color .2s;
}
.nav-close:hover { color: var(--gold-lt); }

/* Social icons in header */
.header-social {
  display: flex;
  gap: .9rem;
  align-items: center;
  flex-shrink: 0;
}
.header-social a {
  color: rgba(237,232,223,.4);
  transition: color .25s;
}
.header-social a:hover { color: var(--gold-lt); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--mist);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ════════════════════════════════════════════════════════
   § 1  HERO
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--navy);
}

/* Portrait — left column */
.hero-portrait {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 1;
  overflow: hidden;
  min-height: 100%;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(.88) contrast(1.04) saturate(.9);
}
.hero-portrait.portrait-fallback {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-lt) 100%);
  min-height: 60vh;
}
.hero-portrait.portrait-fallback::after {
  content: 'Place lillie-portrait.jpg\Ain images/ folder';
  white-space: pre;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-ui);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(196,150,74,.3);
  line-height: 2.2;
  text-align: center;
}

/* Gradient: portrait fades rightward into navy */
.hero-veil {
  position: absolute;
  grid-column: 1 / 2;
  grid-row: 1;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,26,51,0)    0%,
    rgba(11,26,51,.06)  50%,
    rgba(11,26,51,.65)  78%,
    rgba(11,26,51,1)    100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Words — right column */
.hero-words {
  grid-column: 2 / 3;
  grid-row: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5.5rem,8vw,7rem) clamp(2.5rem,5vw,5rem) clamp(4rem,5vw,5rem) clamp(1.5rem,3vw,3rem);
}

.hero-prelude {
  font-family: var(--ff-ui);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-m);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--mist);
  margin-bottom: var(--sp-xs);
}
.hero-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-lt);
  margin-bottom: var(--sp-l);
}
.hero-rule {
  width: 52px; height: 1px;
  background: var(--gold);
  opacity: .55;
  margin-bottom: var(--sp-l);
}
.hero-opening {
  font-family: var(--ff-body);
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  font-style: italic;
  color: var(--mist-mid);
  line-height: 2;
  margin-bottom: var(--sp-xl);
}
.hero-actions {
  display: flex;
  gap: var(--sp-s);
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════════════════
   § 2  INTRODUCTION
════════════════════════════════════════════════════════ */
.intro {
  background: var(--linen);
  padding: var(--sp-3xl) 0;
}
.intro-inner {
  max-width: 740px;
  text-align: center;
}
.intro-title {
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: var(--sp-l);
}
.intro-body {
  font-family: var(--ff-body);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-mid);
  line-height: 2;
  margin-bottom: var(--sp-l);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-l);
}
.intro-signature {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: var(--sp-xl);
  line-height: 1;
}


/* ════════════════════════════════════════════════════════
   § 3  WHY I WRITE — PREVIEW
════════════════════════════════════════════════════════ */
.why-preview {
  background: var(--navy);
  padding: var(--sp-3xl) 0;
}
.why-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.why-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--mist);
  line-height: 1.05;
  margin-bottom: var(--sp-m);
}
.why-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  opacity: .5;
  margin-bottom: var(--sp-l);
}
.why-quote {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic;
  color: var(--mist-mid);
  line-height: 1.9;
  border-left: 2px solid rgba(196,150,74,.3);
  padding-left: var(--sp-m);
  margin-bottom: var(--sp-xl);
}

/* Four pillars */
.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-m) var(--sp-l);
  margin-bottom: var(--sp-xl);
}
.pillar { display: flex; flex-direction: column; gap: .3rem; }
.pillar-label {
  font-family: var(--ff-ui);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.pillar-text {
  font-family: var(--ff-body);
  font-size: .98rem;
  color: var(--mist-soft);
  line-height: 1.65;
}

/* Right visual */
.why-visual { display: flex; flex-direction: column; gap: var(--sp-m); }
.why-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy-lt);
}
.why-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.85) saturate(.9);
}
.why-img-frame.img-fallback::after {
  content: 'images/lillie-writing.jpg';
  font-family: var(--ff-ui);
  font-size: .55rem;
  letter-spacing: .18em;
  color: rgba(196,150,74,.3);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-caption-card {
  background: var(--navy-lt);
  border: 1px solid rgba(196,150,74,.14);
  padding: var(--sp-l) var(--sp-m);
  border-left: 3px solid var(--gold);
}
.wcc-quote {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--mist);
  margin-bottom: .5rem;
}
.wcc-attr {
  font-family: var(--ff-ui);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
}


/* ════════════════════════════════════════════════════════
   § 4  FEATURED MUSIC
════════════════════════════════════════════════════════ */
.music-preview {
  background: var(--ivory);
  padding: var(--sp-3xl) 0;
}
.music-preview .section-title { color: var(--navy); }

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-l);
  margin-bottom: var(--sp-xl);
}

/* Album/single card */
.music-card {
  display: flex;
  flex-direction: column;
  background: var(--linen);
  border: 1px solid var(--ivory-dk);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.music-card:hover {
  box-shadow: 0 12px 40px rgba(11,26,51,.10);
  transform: translateY(-3px);
}

.music-card-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ivory-dk);
}
.music-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.music-card:hover .music-card-art img { transform: scale(1.03); }

/* Play button overlay */
.music-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,26,51,.4);
  opacity: 0;
  transition: opacity .3s;
  color: var(--ivory);
}
.music-card-play svg {
  width: 44px; height: 44px;
  background: rgba(196,150,74,.85);
  border-radius: 50%;
  padding: 12px;
  transition: background .25s, transform .25s;
}
.music-card:hover .music-card-play { opacity: 1; }
.music-card-play:hover svg { background: var(--gold); transform: scale(1.08); }

/* Art fallback */
.music-card-art.art-fallback {
  min-height: 200px;
}

.music-card-info {
  padding: var(--sp-m) var(--sp-m) var(--sp-l);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.music-card-type {
  font-family: var(--ff-ui);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.music-card-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.music-card-desc {
  font-family: var(--ff-body);
  font-size: .98rem;
  color: var(--ink-mid);
  line-height: 1.75;
  flex: 1;
}
.music-card-info .door-link { margin-top: auto; padding-top: .5rem; }

/* Streaming platforms */
.music-platforms {
  display: flex;
  align-items: center;
  gap: var(--sp-l);
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--sp-l);
  border-top: 1px solid var(--ivory-dk);
}
.platforms-label {
  font-family: var(--ff-ui);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.platforms-list {
  display: flex;
  align-items: center;
  gap: var(--sp-s);
  flex-wrap: wrap;
}
.platform-link {
  font-family: var(--ff-ui);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color .25s;
}
.platform-link:hover { color: var(--gold); }
.platform-dot { color: var(--ink-soft); font-size: .65rem; }


/* ════════════════════════════════════════════════════════
   § 5  THE STORIES — PREVIEW
════════════════════════════════════════════════════════ */
.stories-preview {
  background: var(--navy-mid);
  padding: var(--sp-3xl) 0;
}
.stories-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.stories-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--mist);
  line-height: 1.15;
  margin-bottom: var(--sp-l);
}
.stories-body {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--mist-mid);
  line-height: 1.9;
  margin-bottom: var(--sp-xl);
}

/* Featured story card */
.story-card {
  background: var(--navy-lt);
  border: 1px solid rgba(196,150,74,.16);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.story-card-top {
  padding: var(--sp-xl) var(--sp-l) var(--sp-l);
  flex: 1;
  border-bottom: 1px solid rgba(196,150,74,.1);
}
.story-card-label {
  font-family: var(--ff-ui);
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-m);
}
.story-card-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--mist);
  margin-bottom: var(--sp-m);
}
.story-card-excerpt {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--mist-mid);
  line-height: 1.85;
}
.story-card-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: var(--sp-m) var(--sp-l);
  font-family: var(--ff-ui);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .25s, color .25s;
}
.story-card-link:hover { color: var(--gold-lt); gap: .9rem; }


/* ════════════════════════════════════════════════════════
   § 6  LEGACY — PREVIEW
════════════════════════════════════════════════════════ */
.legacy-preview {
  background: var(--navy);
  padding: var(--sp-3xl) 0;
  text-align: center;
  /* Subtle top border */
  border-top: 1px solid rgba(196,150,74,.08);
}
.legacy-inner {
  max-width: 680px;
}
.legacy-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--mist);
  line-height: 1.2;
  margin-bottom: var(--sp-l);
}
.legacy-body {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--mist-mid);
  line-height: 2;
  margin-bottom: var(--sp-xl);
}
.legacy-verse {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: var(--gold-lt);
  line-height: 2.1;
  margin-bottom: var(--sp-xl);
  opacity: .75;
}


/* ════════════════════════════════════════════════════════
   § 7  NEWSLETTER
════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--ivory-dk);
  padding: var(--sp-3xl) 0;
  border-top: 1px solid rgba(196,150,74,.1);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.newsletter-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: var(--sp-m);
}
.newsletter-sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-mid);
  line-height: 1.9;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-m);
}
.field-wrap { display: flex; flex-direction: column; gap: .45rem; }
.field-wrap label {
  font-family: var(--ff-ui);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.field-wrap input {
  padding: .9rem 1.1rem;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--linen);
  border: 1px solid rgba(44,36,22,.14);
  border-radius: 1px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.field-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,150,74,.12);
}
.field-wrap input::placeholder { color: var(--ink-soft); font-style: italic; }
.newsletter-form .btn { align-self: flex-start; }
.form-note {
  font-family: var(--ff-ui);
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: -.4rem;
}


/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(196,150,74,.09);
  padding-top: var(--sp-2xl);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem 3rem;
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(196,150,74,.08);
}

.footer-brand { display: flex; flex-direction: column; gap: var(--sp-m); }
.footer-logo:hover { opacity: .72; }
.footer-logo .logo-script { font-size: 1.3rem; }
.footer-tagline {
  font-family: var(--ff-body);
  font-size: .95rem;
  font-style: italic;
  color: var(--mist-soft);
  line-height: 1.8;
}
.footer-social {
  display: flex;
  gap: var(--sp-m);
  align-items: center;
}
.footer-social a { color: rgba(237,232,223,.32); transition: color .25s; }
.footer-social a:hover { color: var(--gold-lt); }

.footer-nav h4,
.footer-listen-wrap h4 {
  font-family: var(--ff-ui);
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-m);
  opacity: .75;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a {
  font-family: var(--ff-body);
  font-size: .98rem;
  color: var(--mist-soft);
  transition: color .25s;
}
.footer-nav a:hover { color: var(--gold-lt); }

.footer-listen { display: flex; flex-direction: column; gap: .6rem; }
.footer-listen a {
  font-family: var(--ff-ui);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(237,232,223,.38);
  transition: color .25s;
}
.footer-listen a:hover { color: var(--gold-lt); }

.footer-base {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-base p {
  font-family: var(--ff-ui);
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(237,232,223,.2);
}


/* ════════════════════════════════════════════════════════
   INNER-PAGE COMPONENTS
   Shared across About, Music, Stories, Videos, Press, Contact
════════════════════════════════════════════════════════ */

/* ── Page Header (replaces full hero on inner pages) ───── */
.page-header {
  position: relative;
  background: var(--navy);
  padding: clamp(9rem,16vw,11rem) 0 var(--sp-2xl);
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(27,79,168,.18), transparent 60%);
  pointer-events: none;
}
.page-header-inner { position: relative; max-width: 760px; margin-inline: auto; padding-inline: clamp(1.25rem,5vw,3.5rem); }
.page-kicker {
  font-family: var(--ff-ui);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-m);
}
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--mist);
  line-height: 1.1;
  margin-bottom: var(--sp-m);
}
.page-intro {
  font-family: var(--ff-body);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--mist-mid);
  line-height: 1.9;
  max-width: 620px;
  margin-inline: auto;
}

/* Breadcrumb (sits above kicker, optional) */
.breadcrumb {
  font-family: var(--ff-ui);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mist-soft);
  margin-bottom: var(--sp-l);
}
.breadcrumb a { color: var(--mist-soft); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb-sep { margin: 0 .5em; opacity: .5; }


/* ── Generic content section rhythm ─────────────────────── */
.content-section { padding: var(--sp-3xl) 0; }
.content-section.alt { background: var(--ivory); }
.content-section.dark { background: var(--navy); }
.content-section.dark-mid { background: var(--navy-mid); }
.content-section.tight { padding: var(--sp-xl) 0; }
.content-section.border-top { border-top: 1px solid var(--ivory-dk); }
.content-section.dark.border-top,
.content-section.dark-mid.border-top { border-top: 1px solid rgba(196,150,74,.09); }


/* ── Two-column prose + portrait layout (About page) ────── */
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem,5vw,5rem);
  align-items: start;
}
.bio-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory-dk);
}
.bio-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.bio-portrait.img-fallback::after { content: 'images/lillie-about.jpg'; }

.bio-prose h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-style: italic;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-m);
  line-height: 1.3;
}
.bio-prose p {
  font-family: var(--ff-body);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-mid);
  line-height: 1.95;
  margin-bottom: var(--sp-m);
}
.bio-prose p:last-of-type { margin-bottom: var(--sp-l); }
.bio-prose .pull-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: var(--sp-m);
  margin: var(--sp-l) 0;
  line-height: 1.6;
}


/* ── Timeline / Milestones (About page) ─────────────────── */
.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--sp-l);
  padding: var(--sp-l) 0;
  border-top: 1px solid rgba(196,150,74,.1);
}
.timeline-item:first-child { border-top: none; }
.timeline-year {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-lt);
}
.timeline-body h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mist);
  margin-bottom: .5rem;
}
.timeline-body p {
  font-family: var(--ff-body);
  font-size: 1.02rem;
  color: var(--mist-mid);
  line-height: 1.8;
}


/* ── Values / belief grid ────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ivory-dk);
  border: 1px solid var(--ivory-dk);
}
.value-card { background: var(--linen); padding: var(--sp-l) var(--sp-m); text-align: center; }
.value-icon { width: 40px; height: 40px; margin: 0 auto var(--sp-m); color: var(--gold); }
.value-icon svg { width: 100%; height: 100%; }
.value-card h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.value-card p {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--ink-mid);
  line-height: 1.7;
}


/* ── Filter tabs (Music page) ───────────────────────────── */
.filter-tabs {
  display: flex;
  gap: var(--sp-s);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}
.filter-tab {
  font-family: var(--ff-ui);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border: 1px solid rgba(196,150,74,.3);
  color: var(--ink-mid);
  background: transparent;
  transition: all .25s var(--ease);
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--gold); color: var(--navy); }
.filter-tab.active { background: var(--navy); border-color: var(--navy); color: var(--mist); }


/* ── Full catalog grid (Music page) ─────────────────────── */
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-l); }
.catalog-item.is-hidden { display: none; }


/* ── Video grid (Videos page) ───────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-l); }
.video-card {
  display: flex;
  flex-direction: column;
  background: var(--navy-lt);
  border: 1px solid rgba(196,150,74,.12);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.25); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy-mid); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb.img-fallback::after { content: attr(data-label); font-style: italic; }
.video-play-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,26,51,.35);
  transition: background .25s;
}
.video-play-icon svg {
  width: 46px; height: 46px;
  background: rgba(196,150,74,.85);
  border-radius: 50%;
  padding: 13px;
  color: var(--navy);
  transition: background .25s, transform .25s;
}
.video-card:hover .video-play-icon { background: rgba(11,26,51,.15); }
.video-card:hover .video-play-icon svg { background: var(--gold); transform: scale(1.07); }
.video-info { padding: var(--sp-m) var(--sp-m) var(--sp-l); flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.video-type { font-family: var(--ff-ui); font-size: .54rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.video-title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; color: var(--mist); line-height: 1.3; }
.video-desc { font-family: var(--ff-body); font-size: .95rem; color: var(--mist-soft); line-height: 1.7; flex: 1; }


/* ── Press / Media grid ─────────────────────────────────── */
.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-l); }
.press-item { background: var(--linen); border: 1px solid var(--ivory-dk); padding: var(--sp-l); display: flex; flex-direction: column; gap: var(--sp-s); }
.press-outlet { font-family: var(--ff-ui); font-size: .58rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.press-headline { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700; font-style: italic; color: var(--navy); line-height: 1.4; }
.press-excerpt { font-family: var(--ff-body); font-size: 1rem; color: var(--ink-mid); line-height: 1.8; }
.press-date { font-family: var(--ff-ui); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.presskit-card { background: var(--navy); padding: var(--sp-xl) var(--sp-l); text-align: center; border: 1px solid rgba(196,150,74,.15); }
.presskit-card h3 { font-family: var(--ff-display); font-size: 1.5rem; font-style: italic; color: var(--mist); margin-bottom: var(--sp-s); }
.presskit-card p { font-family: var(--ff-body); color: var(--mist-mid); max-width: 480px; margin-inline: auto; margin-bottom: var(--sp-l); }


/* ── Stories archive grid ───────────────────────────────── */
.stories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-l); }
.story-archive-card {
  background: var(--navy-lt);
  border: 1px solid rgba(196,150,74,.13);
  padding: var(--sp-l);
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
  transition: border-color .25s, transform .25s;
}
.story-archive-card:hover { border-color: rgba(196,150,74,.4); transform: translateY(-2px); }
.story-archive-label { font-family: var(--ff-ui); font-size: .54rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.story-archive-title { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; font-style: italic; color: var(--mist); }
.story-archive-excerpt { font-family: var(--ff-body); font-size: 1.02rem; color: var(--mist-mid); line-height: 1.85; flex: 1; }


/* ── Contact page: form + info panel ────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2.5rem,5vw,5rem);
  align-items: start;
}
.contact-form-wrap h2 { font-family: var(--ff-display); font-size: clamp(1.5rem,2.4vw,2rem); font-weight: 700; color: var(--navy); margin-bottom: var(--sp-l); }
.contact-form { display: flex; flex-direction: column; gap: var(--sp-m); }
.contact-form .field-wrap textarea {
  padding: .9rem 1.1rem;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--linen);
  border: 1px solid rgba(44,36,22,.14);
  border-radius: 1px;
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color .25s, box-shadow .25s;
}
.contact-form .field-wrap textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,150,74,.12); }
.contact-form .field-wrap select {
  padding: .9rem 1.1rem;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--linen);
  border: 1px solid rgba(44,36,22,.14);
  border-radius: 1px;
  outline: none;
}

.contact-info-panel { background: var(--navy); padding: var(--sp-l); display: flex; flex-direction: column; gap: var(--sp-l); }
.contact-info-block h3 { font-family: var(--ff-ui); font-size: .58rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-s); }
.contact-info-block p, .contact-info-block a { font-family: var(--ff-body); font-size: 1.05rem; color: var(--mist-mid); line-height: 1.8; }
.contact-info-block a:hover { color: var(--gold-lt); }


/* ── Generic CTA banner ─────────────────────────────────── */
.cta-banner { background: var(--navy); padding: var(--sp-2xl) clamp(1.25rem,5vw,3.5rem); text-align: center; }
.cta-banner-inner { max-width: 620px; margin-inline: auto; }
.cta-banner h2 { font-family: var(--ff-display); font-size: clamp(1.6rem,2.8vw,2.4rem); font-style: italic; font-weight: 700; color: var(--mist); margin-bottom: var(--sp-m); }
.cta-banner p { font-family: var(--ff-body); font-size: 1.1rem; color: var(--mist-mid); margin-bottom: var(--sp-l); line-height: 1.8; }
.cta-banner-actions { display: flex; gap: var(--sp-s); justify-content: center; flex-wrap: wrap; }


/* ════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .music-grid { grid-template-columns: 1fr 1fr; }
  .music-grid .music-card:nth-child(3) { grid-column: 1 / -1; max-width: 480px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-listen-wrap { grid-column: 2 / span 2; }

  .bio-grid { grid-template-columns: 1fr; }
  .bio-portrait { max-width: 380px; margin-inline: auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Mobile
════════════════════════════════════════════════════════ */
@media (max-width: 860px) {

  /* Mobile nav drawer */
  .nav-toggle { display: flex; }
  .header-social { display: none; }
  .nav-close { display: block; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100dvh;
    background: var(--navy);
    border-left: 1px solid rgba(196,150,74,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: right .38s var(--ease);
    z-index: 1000;
    padding: 5rem 2rem 2rem;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 1.75rem; align-items: center; }
  .main-nav a { font-size: .75rem; letter-spacing: .2em; }

  /* Hero stacks vertically */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vw 1fr;
    min-height: auto;
  }
  .hero-portrait {
    grid-column: 1; grid-row: 1;
    height: 55vw; max-height: 420px;
    min-height: auto;
  }
  .hero-photo { position: absolute; height: 100%; }
  .hero-veil {
    grid-row: 1;
    background: linear-gradient(to bottom,
      rgba(11,26,51,0) 35%,
      rgba(11,26,51,.85) 85%,
      rgba(11,26,51,1)  100%
    );
  }
  .hero-words {
    grid-column: 1; grid-row: 2;
    padding: var(--sp-l) clamp(1.25rem, 5vw, 2.5rem) var(--sp-2xl);
  }

  /* Two-column sections stack */
  .why-inner,
  .stories-inner,
  .newsletter-inner { grid-template-columns: 1fr; gap: var(--sp-2xl); }

  .why-visual { display: none; } /* Hide visual on mobile, text is enough */

  .music-grid { grid-template-columns: 1fr; }
  .music-grid .music-card:nth-child(3) { max-width: 100%; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-l) var(--sp-m); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-listen-wrap { grid-column: auto; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: var(--sp-s); }
}

@media (max-width: 580px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .newsletter-form .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
  .filter-tabs { gap: .5rem; }
  .filter-tab { padding: .55rem 1.1rem; font-size: .58rem; }
  .cta-banner-actions { flex-direction: column; }
  .cta-banner-actions .btn { width: 100%; text-align: center; }
}


/* ════════════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal,
  .reveal-hero {
    opacity: 1 !important;
    transform: none !important;
  }
}
