/* ============================================================
   PURITY BAKERY LTD : Baha Connect
   Design system: Merriweather (display) + Work Sans (body)
   Palette pulled from logo: brand red + royal blue on warm cream
   ============================================================ */

:root {
  /* Fonts */
  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 4rem;

  /* Weights */
  --w-reg: 400;
  --w-med: 500;
  --w-semi: 600;
  --w-bold: 700;
  --w-black: 900;

  /* Line height */
  --lh-none: 1;
  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-normal: 1.6;

  /* Tracking */
  --tr-tight: -0.02em;
  --tr-normal: 0;
  --tr-wide: 0.04em;
  --tr-widest: 0.14em;

  /* Brand red */
  --red-50:  hsl(5 80% 96%);
  --red-100: hsl(5 78% 90%);
  --red-200: hsl(4 77% 82%);
  --red-300: hsl(3 76% 70%);
  --red-500: hsl(2 74% 49%);
  --red-600: hsl(2 77% 43%);
  --red-700: hsl(2 79% 35%);
  --red-900: hsl(2 82% 24%);

  /* Brand blue */
  --blue-50:  hsl(230 60% 96%);
  --blue-100: hsl(230 58% 90%);
  --blue-200: hsl(231 56% 82%);
  --blue-500: hsl(232 60% 44%);
  --blue-600: hsl(232 63% 37%);
  --blue-700: hsl(233 66% 30%);
  --blue-900: hsl(234 68% 19%);

  /* Warm neutrals */
  --cream:   hsl(40 48% 96%);
  --cream-2: hsl(38 42% 91%);
  --paper:   hsl(42 55% 99%);
  --wheat:   hsl(36 58% 87%);
  --gold:    hsl(38 84% 52%);
  --ink:     hsl(28 22% 14%);
  --ink-2:   hsl(28 14% 34%);
  --ink-3:   hsl(28 11% 50%);
  --line:    hsl(34 24% 84%);

  /* Shadows (warm-tinted) */
  --sh-xs: 0 1px 2px hsl(28 30% 20% / 0.08);
  --sh-sm: 0 2px 6px hsl(28 30% 20% / 0.09);
  --sh-md: 0 8px 20px hsl(28 30% 18% / 0.12);
  --sh-lg: 0 18px 40px hsl(28 34% 16% / 0.16);
  --sh-xl: 0 30px 60px hsl(28 34% 14% / 0.22);

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--blue-700); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-8) 0; }

/* eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--text-xs); font-weight: var(--w-bold);
  letter-spacing: var(--tr-widest); text-transform: uppercase;
  color: var(--red-600);
}
.kicker::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: var(--red-500);
}

.h-lead {
  font-size: var(--text-3xl); font-weight: var(--w-black);
  line-height: var(--lh-tight); letter-spacing: var(--tr-tight);
  color: var(--blue-700); margin: var(--s-3) 0 var(--s-4);
}
.sub { color: var(--ink-2); max-width: 60ch; font-size: var(--text-lg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide); text-transform: uppercase;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--red-500); color: #fff; box-shadow: var(--sh-sm); }
.btn-primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-primary:active { transform: translateY(1px); box-shadow: var(--sh-xs); }
.btn-wa { background: hsl(142 62% 40%); color: #fff; box-shadow: var(--sh-sm); }
.btn-wa:hover { background: hsl(142 64% 34%); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-wa:active { transform: translateY(1px); }
.btn-ghost { background: transparent; color: var(--blue-700); border-color: var(--blue-200); }
.btn-ghost:hover { border-color: var(--blue-600); background: var(--blue-50); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--red-600); box-shadow: var(--sh-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-lg { padding: 17px 34px; font-size: var(--text-base); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: hsl(42 55% 99% / 0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: var(--s-5); height: 76px; }
.brand { display: flex; align-items: center; gap: var(--s-3); margin-right: auto; }
.brand img { height: 46px; width: auto; }
.brand-name { display: none; }
.nav-links { display: flex; align-items: center; gap: var(--s-5); }
.nav-link {
  position: relative; font-size: var(--text-sm); font-weight: var(--w-semi);
  letter-spacing: var(--tr-wide); text-transform: uppercase; color: var(--ink-2);
  padding: 6px 0; transition: color .2s ease;
}
.nav-link:hover { color: var(--blue-700); }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 3px; width: 0;
  background: var(--red-500); border-radius: 3px; transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--blue-700); }
.nav-cta { display: flex; gap: var(--s-2); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--blue-700); border-radius: 3px; transition: .25s; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red-500); color: #fff; overflow: hidden; white-space: nowrap;
  padding: 11px 0; border-top: 3px solid var(--blue-700); border-bottom: 3px solid var(--blue-700);
}
.marquee-track { display: inline-flex; gap: var(--s-6); animation: scrollx 22s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-weight: var(--w-black); font-size: var(--text-lg);
  letter-spacing: var(--tr-wide); text-transform: uppercase; display: inline-flex; align-items: center; gap: var(--s-6);
}
.marquee span::after { content: "\2726"; color: hsl(38 90% 70%); }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: -12% 0 0 0; z-index: 0; will-change: transform; }
.hero-bg img { width: 100%; height: 118%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, hsl(234 68% 15% / 0.92) 0%, hsl(234 66% 22% / 0.78) 42%, hsl(2 60% 30% / 0.35) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: var(--s-9) 0 var(--s-8); }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: hsl(42 55% 99% / 0.14); border: 1px solid hsl(0 0% 100% / 0.25);
  color: #fff; padding: 7px 15px; border-radius: 999px;
  font-size: var(--text-xs); font-weight: var(--w-bold); letter-spacing: var(--tr-wide); text-transform: uppercase;
}
.hero h1 {
  color: #fff; font-size: var(--text-5xl); font-weight: var(--w-black);
  line-height: 0.98; letter-spacing: var(--tr-tight); margin: var(--s-4) 0 var(--s-4);
  max-width: 15ch; text-shadow: 0 4px 24px hsl(234 70% 8% / 0.5);
}
.hero h1 .accent { color: hsl(5 88% 66%); }
.hero p.lead {
  color: hsl(40 40% 94%); font-size: var(--text-xl); max-width: 46ch; line-height: var(--lh-snug);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero-stats { display: flex; gap: var(--s-6); margin-top: var(--s-7); flex-wrap: wrap; }
.hero-stat { color: #fff; }
.hero-stat b { display: block; font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--w-black); }
.hero-stat span { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tr-wide); color: hsl(40 40% 88%); }
.stars { color: var(--gold); letter-spacing: 2px; }

/* page hero (interior, smaller) */
.pagehero { position: relative; overflow: hidden; background: var(--blue-700); }
.pagehero-bg { position: absolute; inset: -10% 0 0 0; z-index: 0; will-change: transform; }
.pagehero-bg img { width: 100%; height: 116%; object-fit: cover; opacity: 0.32; }
.pagehero-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, hsl(234 68% 16% / 0.9), hsl(2 60% 30% / 0.5)); z-index: 1; }
.pagehero-inner { position: relative; z-index: 2; padding: var(--s-8) 0; }
.pagehero .kicker { color: hsl(5 88% 72%); }
.pagehero .kicker::before { background: hsl(5 88% 66%); }
.pagehero h1 { color: #fff; font-size: var(--text-4xl); font-weight: var(--w-black); line-height: var(--lh-tight); letter-spacing: var(--tr-tight); margin: var(--s-3) 0 var(--s-3); }
.pagehero p { color: hsl(40 38% 92%); font-size: var(--text-lg); max-width: 58ch; }
.crumbs { color: hsl(40 34% 82%); font-size: var(--text-sm); margin-top: var(--s-4); }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: var(--s-5); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.card-pad { padding: var(--s-5); }
.card h3 { font-size: var(--text-xl); color: var(--blue-700); margin-bottom: var(--s-2); }
.card p { color: var(--ink-2); font-size: var(--text-base); }

/* product card */
.prod .prod-img { aspect-ratio: 4/3; overflow: hidden; background: var(--wheat); position: relative; }
.prod .prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prod:hover .prod-img img { transform: scale(1.06); }
.prod .badge {
  position: absolute; top: 12px; left: 12px; background: var(--red-500); color: #fff;
  font-size: var(--text-xs); font-weight: var(--w-bold); letter-spacing: var(--tr-wide);
  text-transform: uppercase; padding: 5px 11px; border-radius: 999px; box-shadow: var(--sh-sm);
}
.prod .badge.blue { background: var(--blue-600); }
.prod .badge.gold { background: var(--gold); color: var(--ink); }
.prod-body { padding: var(--s-5); }
.prod-body h3 { font-size: var(--text-xl); margin-bottom: var(--s-2); }
.prod-body p { color: var(--ink-2); font-size: var(--text-sm); }
.price-row { display: flex; flex-direction: column; gap: 4px; margin-top: var(--s-4); }
.price-line { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; border-top: 1px dashed var(--line); }
.price-line span { color: var(--ink-2); font-size: var(--text-sm); }
.price-line b { color: var(--red-600); font-family: var(--font-display); font-size: var(--text-lg); }
.vat-note { font-size: var(--text-xs); color: var(--ink-3); margin-top: var(--s-2); }

/* icon feature */
.feat { text-align: left; }
.feat .ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--red-50); color: var(--red-600); margin-bottom: var(--s-4);
  box-shadow: inset 0 0 0 1px var(--red-100);
}
.feat .ico svg { width: 27px; height: 27px; }
.feat.blue .ico { background: var(--blue-50); color: var(--blue-600); box-shadow: inset 0 0 0 1px var(--blue-100); }
.feat h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: var(--w-bold); color: var(--ink); margin-bottom: 6px; }
.feat p { color: var(--ink-2); font-size: var(--text-sm); }

/* ---------- Split / media ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--s-8); align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 6px solid var(--paper); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-tag {
  position: absolute; bottom: 14px; left: 14px; background: hsl(234 68% 15% / 0.86); color: #fff;
  padding: 8px 14px; border-radius: 999px; font-size: var(--text-xs); font-weight: var(--w-bold);
  letter-spacing: var(--tr-wide); text-transform: uppercase; backdrop-filter: blur(4px);
}

/* ---------- Dual path ---------- */
.path {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--sh-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.path:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }
.path-bg { position: absolute; inset: 0; z-index: 0; }
.path-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.path:hover .path-bg img { transform: scale(1.05); }
.path::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, hsl(234 70% 12% / 0.9) 8%, hsl(234 60% 20% / 0.25) 60%, transparent); }
.path-body { position: relative; z-index: 2; padding: var(--s-6); }
.path-body h3 { color: #fff; font-size: var(--text-2xl); font-weight: var(--w-black); }
.path-body p { color: hsl(40 40% 92%); margin: 6px 0 var(--s-4); font-size: var(--text-base); max-width: 40ch; }
.path-link { display: inline-flex; align-items: center; gap: 8px; font-weight: var(--w-bold);
  text-transform: uppercase; letter-spacing: var(--tr-wide); font-size: var(--text-sm); color: hsl(5 90% 72%); }
.path:hover .path-link { color: #fff; }
.path-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.path:hover .path-link svg { transform: translateX(4px); }

/* ---------- Parallax band ---------- */
.band { position: relative; overflow: hidden; color: #fff; }
.band-bg { position: absolute; inset: -15% 0; z-index: 0; will-change: transform; }
.band-bg img { width: 100%; height: 130%; object-fit: cover; }
.band-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, hsl(2 74% 34% / 0.94), hsl(234 66% 22% / 0.9)); }
.band-inner { position: relative; z-index: 2; padding: var(--s-9) 0; text-align: center; }
.band-inner h2 { color: #fff; font-size: var(--text-4xl); font-weight: var(--w-black); letter-spacing: var(--tr-tight); }
.band-inner p { color: hsl(40 40% 92%); font-size: var(--text-xl); max-width: 54ch; margin: var(--s-4) auto var(--s-6); }

/* roman meal strip */
.rm { background: var(--blue-900); color: #fff; }
.rm .split { align-items: center; }
.rm h2 { color: #fff; }
.rm p { color: hsl(40 40% 90%); }
.rm .whole-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 128px; height: 128px; border-radius: 50%; background: var(--gold); color: var(--ink);
  box-shadow: var(--sh-lg); flex-shrink: 0;
}
.rm .whole-badge b { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: var(--w-black); line-height: 1; }
.rm .whole-badge span { font-size: var(--text-xs); font-weight: var(--w-bold); text-transform: uppercase; letter-spacing: var(--tr-wide); }
.rm-row { display: flex; align-items: center; gap: var(--s-5); margin-top: var(--s-5); }

/* section heading block */
.head-center { text-align: center; max-width: 62ch; margin: 0 auto var(--s-7); }
.head-center .h-lead { margin-bottom: var(--s-3); }
.head-center .sub { margin: 0 auto; }

/* steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 66px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--red-500); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: var(--w-black); font-size: var(--text-lg);
  box-shadow: var(--sh-sm);
}
.step h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: var(--w-bold); color: var(--ink); margin-bottom: 4px; }
.step p { color: var(--ink-2); font-size: var(--text-sm); }

/* list check */
.checks { list-style: none; display: grid; gap: var(--s-3); }
.checks li { display: flex; gap: var(--s-3); align-items: flex-start; color: var(--ink-2); }
.checks li b { color: var(--ink); }
.checks .tick {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--red-50);
  color: var(--red-600); display: grid; place-items: center; margin-top: 2px;
}
.checks .tick svg { width: 14px; height: 14px; }

/* contact rows */
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-sm); padding: var(--s-6); }
.crow { display: flex; gap: var(--s-4); align-items: flex-start; padding: var(--s-4) 0; border-bottom: 1px solid var(--line); }
.crow:last-child { border-bottom: 0; }
.crow .ci { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex-shrink: 0; }
.crow .ci svg { width: 21px; height: 21px; }
.crow .lbl { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tr-wide); color: var(--ink-3); font-weight: var(--w-bold); }
.crow .val { font-size: var(--text-lg); color: var(--ink); font-weight: var(--w-semi); }
.crow .val a:hover { color: var(--red-600); }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* pill row */
.pills { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.pill { background: var(--wheat); color: var(--blue-700); padding: 7px 15px; border-radius: 999px; font-size: var(--text-sm); font-weight: var(--w-semi); }

/* review strip */
.rating-block { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; justify-content: center; }
.rating-big { text-align: center; }
.rating-big .num { font-family: var(--font-display); font-size: var(--text-5xl); font-weight: var(--w-black); color: var(--blue-700); line-height: 1; }
.rating-big .stars { font-size: var(--text-xl); }
.rating-big .cnt { color: var(--ink-3); font-size: var(--text-sm); }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(135deg, var(--red-600), var(--red-700)); color: #fff; text-align: center;
}
.cta h2 { color: #fff; font-size: var(--text-4xl); font-weight: var(--w-black); letter-spacing: var(--tr-tight); }
.cta p { color: hsl(5 60% 92%); font-size: var(--text-lg); max-width: 52ch; margin: var(--s-4) auto var(--s-6); }
.cta-row { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-900); color: hsl(40 30% 84%); padding: var(--s-8) 0 var(--s-5); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-6); }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: var(--tr-wide); margin-bottom: var(--s-4); }
.footer .f-logo { background: #fff; border-radius: 12px; padding: 10px 14px; display: inline-block; margin-bottom: var(--s-4); }
.footer .f-logo img { height: 44px; }
.footer p { font-size: var(--text-sm); line-height: var(--lh-snug); color: hsl(40 28% 80%); max-width: 34ch; }
.footer ul { list-style: none; display: grid; gap: var(--s-2); }
.footer ul a { font-size: var(--text-sm); color: hsl(40 30% 82%); transition: color .2s; }
.footer ul a:hover { color: hsl(5 88% 72%); }
.footer .f-contact { font-size: var(--text-sm); display: grid; gap: var(--s-2); }
.footer .f-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid hsl(234 40% 30%); margin-top: var(--s-7); padding-top: var(--s-5);
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; font-size: var(--text-xs); color: hsl(40 24% 70%); }
.footer-bottom a { color: hsl(5 88% 74%); font-weight: var(--w-semi); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-group > * { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal-group.visible > * { opacity: 1; transform: translateY(0); }
.reveal-group.visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-group.visible > *:nth-child(6) { transition-delay: .40s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split.rev { grid-template-columns: 1fr; gap: var(--s-6); }
  .split.rev .media-frame { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  :root { --text-5xl: 3rem; --text-4xl: 2.35rem; --text-3xl: 1.9rem; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    background: var(--paper); padding: var(--s-5); gap: var(--s-4); border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg); align-items: flex-start;
  }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-bg, .pagehero-bg, .band-bg { background-attachment: scroll; }
  .section { padding: var(--s-8) 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-group > * { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}
