/* ── Design tokens ── */
:root {
  --bg: #050814;
  --bg-elevated: #0c1224;
  --bg-card: #111827;
  --surface: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f8f6f1;
  --text-soft: #b8c0d4;
  --text-muted: #7a849c;
  --gold: #d4a843;
  --gold-bright: #f0d78c;
  --gold-dim: #8a6b1f;
  --blue: #3b82f6;
  --brand-red: #c41e3a;
  --brand-red-dark: #9a1830;
  --light-bg: #ffffff;
  --light-text: #111827;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.25);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 0.75rem; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; color: var(--text-soft); }
em { font-style: italic; color: var(--gold-bright); }
.lead { font-size: 1.1rem; line-height: 1.7; }
.fine-print { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.75rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--gold); color: #000; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(1200px, calc(100% - 2.5rem)); margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  color: #1a1200;
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.35);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-red {
  background: linear-gradient(135deg, #e11d48, var(--brand-red-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.35);
}
.btn-dark {
  background: #111827;
  color: #fff;
}
.btn-outline-dark {
  background: transparent;
  border-color: rgba(17, 24, 39, 0.2);
  color: var(--light-text);
}
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--gold-bright); font-weight: 600; font-size: 0.92rem;
  transition: gap 0.2s;
}
.link-arrow::after { content: "→"; }
.link-arrow:hover { gap: 0.6rem; }

/* ── Header ── */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  padding: 0.75rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.5rem 0;
}
.header-shell {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.site-header.scrolled .header-shell {
  background: transparent;
  border-color: transparent;
  padding: 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand-emblem {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
}
.brand-emblem img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.brand-copy span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.nav-desktop {
  display: flex; gap: 0.25rem; margin-left: auto;
}
.nav-desktop a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s; }
.nav-toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.nav-drawer {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0.5rem auto 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.nav-drawer[hidden] { display: none; }
.nav-drawer nav { display: flex; flex-direction: column; padding: 0.5rem; }
.nav-drawer a {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 500;
}
.nav-drawer a:hover { background: rgba(255,255,255,0.04); color: var(--text); }

.site-header.on-light .header-shell {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.site-header.on-light .brand-copy strong,
.site-header.on-light .nav-desktop a { color: var(--light-text); }
.site-header.on-light .nav-desktop a { color: #4b5563; }
.site-header.on-light .nav-desktop a:hover,
.site-header.on-light .nav-desktop a.active { color: var(--light-text); background: rgba(0,0,0,0.05); }
.site-header.on-light .brand-copy span { color: var(--brand-red); }
.site-header.on-light .nav-toggle { border-color: rgba(0,0,0,0.12); }
.site-header.on-light .nav-toggle span { background: var(--light-text); }
.site-header.on-light.scrolled .header-shell {
  background: rgba(5, 8, 20, 0.92);
  border-color: var(--border);
  box-shadow: none;
}
.site-header.on-light.scrolled .brand-copy strong,
.site-header.on-light.scrolled .nav-desktop a { color: var(--text-muted); }
.site-header.on-light.scrolled .brand-copy span { color: var(--gold); }
.site-header.on-light.scrolled .nav-toggle span { background: var(--text); }

/* ── Official brand banner ── */
.brand-intro {
  padding: calc(var(--header-h) + 1.5rem) 0 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.brand-intro-inner { text-align: center; }
.brand-banner {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.brand-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.brand-tagline {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--light-text);
  letter-spacing: 0.01em;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: auto;
  padding-top: 0;
  display: flex; flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-bg-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(5,8,20,0.97) 0%, rgba(5,8,20,0.75) 42%, rgba(5,8,20,0.35) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 35%);
}
.hero-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
  padding-bottom: 5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.5);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
.hero-copy .lead { max-width: 34rem; margin-bottom: 1.75rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 0; padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.hero-metrics div { min-width: 0; }
.hero-metrics dt {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-bright);
  margin-bottom: 0.15rem;
}
.hero-metrics dd { margin: 0; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-visual { position: relative; min-height: 420px; }
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}
.hero-card img {
  width: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.hero-card-main { position: relative; }
.hero-card-main img {
  aspect-ratio: 4 / 3;
  object-position: center 28%;
}
.hero-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(5,8,20,0.95), transparent);
}
.label-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.hero-card-label p { margin: 0; font-size: 0.9rem; color: var(--text); }
.hero-card-float {
  position: absolute;
  bottom: -1.5rem; left: -2rem;
  width: 48%;
  background: var(--bg-elevated);
}
.hero-card-float img {
  aspect-ratio: 4 / 3;
  object-position: center 40%;
}
.hero-card-float span {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 0.72rem; font-weight: 600;
  text-align: center;
  color: var(--gold-bright);
  border-top: 1px solid var(--border);
}
.hero-marquee {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(5,8,20,0.85);
  backdrop-filter: blur(8px);
  overflow: hidden;
  padding: 0.65rem 0;
}
.marquee-inner {
  display: flex; gap: 3rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ── */
.section { padding: clamp(5rem, 10vw, 7.5rem) 0; position: relative; }
.section-dark { background: var(--bg-elevated); }
.section-elevated { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%); }
.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header.centered { text-align: center; margin-inline: auto; }
.section-kicker {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
}

/* ── Bento grid ── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1rem;
}
.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-height: 220px;
}
.bento-wide { grid-column: span 2; }
.bento-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.6s var(--ease);
}
.bento-item:hover img { transform: scale(1.02); }
.bento-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(5,8,20,0.95) 20%, transparent);
}
.bento-overlay h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 0.25rem; }
.bento-overlay p { margin: 0; font-size: 0.88rem; }
.bento-text { display: flex; align-items: stretch; padding: 0; }
.schedule-card, .quote-block { padding: 1.75rem; width: 100%; }
.schedule-card h3 { margin-bottom: 1rem; color: var(--text); }
.schedule-card ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.schedule-card li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.schedule-card li span { color: var(--text-muted); }
.schedule-card li strong { color: var(--text); font-weight: 600; text-align: right; }
.bento-accent {
  background: linear-gradient(135deg, rgba(212,168,67,0.12), rgba(59,130,246,0.08));
}
.quote-block p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.quote-block span { font-size: 0.82rem; color: var(--gold); font-weight: 600; }

/* ── Gallery scroll ── */
.gallery-wrap {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.gallery-scroll {
  display: flex; gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 min(420px, 86vw);
  scroll-snap-align: start;
  margin: 0;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.gallery-item figcaption {
  margin-top: 0.65rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
}

/* ── Live / YouTube ── */
.youtube-stage {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}
.youtube-player-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
}
.youtube-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-now {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.youtube-now h3 {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.35;
  margin: 0.5rem 0;
}
.youtube-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.youtube-grid-header h3 { margin: 0; color: var(--text); font-size: 1.25rem; }
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.youtube-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
  padding: 0;
}
.youtube-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.35);
  box-shadow: var(--shadow-soft);
}
.youtube-card.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 168, 67, 0.35);
}
.youtube-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
}
.youtube-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.youtube-card-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.2s;
}
.youtube-card:hover .youtube-card-play,
.youtube-card.active .youtube-card-play { opacity: 1; }
.youtube-card-play span {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.95);
  color: #1a1200;
  display: grid; place-items: center;
  font-size: 1rem;
}
.youtube-card-body { padding: 0.85rem 1rem 1rem; }
.youtube-card-body h4 {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.youtube-card-body time {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.youtube-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; color: var(--text);
}

/* legacy live styles removed */

/* ── Booklet showcase ── */
.booklet-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}
.booklet-stage {
  position: relative;
  min-height: 360px;
  padding: 1.5rem 1rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 120%, rgba(212, 168, 67, 0.12), transparent 55%),
    var(--bg-card);
  overflow: hidden;
}
.booklet-stage-hint {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 1;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 2;
}
.booklet-showcase.is-active .booklet-stage-hint { opacity: 0; }
.booklet-fan {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 300px;
  padding-top: 2rem;
  perspective: 1400px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.booklet-fan::-webkit-scrollbar { display: none; }
.booklet-card {
  --spread: 0;
  --lift: 0;
  --tilt: -14deg;
  position: relative;
  flex: 0 0 auto;
  width: clamp(108px, 11vw, 148px);
  margin-left: calc(-1 * clamp(72px, 8vw, 108px) * (1 - var(--spread)));
  transform:
    translateY(calc(36px * (1 - var(--spread)) + var(--lift) * -18px))
    rotate(calc(var(--tilt) * (1 - var(--spread))))
    scale(calc(0.92 + var(--spread) * 0.08 + var(--lift) * 0.06));
  transform-origin: bottom center;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s,
    opacity 0.35s;
  transition-delay: calc(var(--i, 0) * 0.05s);
  cursor: pointer;
  z-index: calc(var(--i, 0) + 1);
  filter: brightness(calc(0.82 + var(--spread) * 0.18));
  opacity: calc(0.55 + var(--spread) * 0.45);
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}
.booklet-card:first-child { margin-left: 0; }
.booklet-showcase.is-active .booklet-card {
  --spread: 1;
}
.booklet-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center center;
  background: rgba(5, 8, 20, 0.35);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.2);
  display: block;
  pointer-events: none;
}
.booklet-card:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}
.booklet-card.is-selected {
  --lift: 1;
  z-index: 20;
  filter: brightness(1.05);
  opacity: 1;
}
.booklet-showcase.is-active .booklet-card:not(.is-selected) {
  filter: brightness(0.72);
  opacity: 0.82;
}
.booklet-showcase.is-active .booklet-card.is-selected {
  filter: brightness(1.05);
  opacity: 1;
}
.booklet-card-label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  opacity: calc(var(--spread));
  transform: translateY(calc(8px * (1 - var(--spread))));
  transition: opacity 0.45s, transform 0.45s;
  transition-delay: calc(var(--i, 0) * 0.05s + 0.15s);
}
.booklet-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
}
.booklet-preview-cover {
  background: linear-gradient(160deg, rgba(212, 168, 67, 0.08), rgba(5, 8, 20, 0.4));
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.booklet-preview-cover img {
  width: min(100%, 210px);
  height: auto;
  max-height: 280px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s var(--ease), opacity 0.25s;
}
.booklet-preview.is-updating .booklet-preview-cover img {
  transform: scale(0.94);
  opacity: 0.65;
}
.booklet-preview-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booklet-preview-body h3 {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}
.booklet-preview-body p {
  margin: 0;
  font-size: 0.92rem;
}
.shop-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.shop-price { margin: 1rem 0; }
.shop-price strong { font-size: 1.5rem; color: var(--gold-bright); }
.steps-row {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.steps-row li {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.steps-row span {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(212,168,67,0.15);
  color: var(--gold-bright);
  font-weight: 700; font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.steps-row p { margin: 0; font-size: 0.85rem; color: var(--text); }

/* ── Pastor ── */
.pastor-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.pastor-photo { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.pastor-photo > img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
}
.pastor-meta {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pastor-meta strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--text); }
.pastor-meta span { font-size: 0.82rem; color: var(--text-muted); }
.book-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 1.75rem 0 1rem;
  border: 1px solid var(--border);
}
.book-panel-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.2;
}
.book-panel-inner {
  position: relative;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(5,8,20,0.92), rgba(12,18,36,0.88));
}
.book-panel-inner h4 { color: var(--text); margin-bottom: 0.5rem; }

/* ── Testimonies ── */
.testimonies { overflow: hidden; }
.testimonies-bg {
  position: absolute; inset: 0;
  opacity: 0.08;
}
.testimonies-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.testimonies .container { position: relative; z-index: 1; }
.testimony-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.testimony-card {
  background: rgba(12, 18, 36, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testimony-card::before {
  content: """;
  position: absolute; top: 0.75rem; left: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem; line-height: 1;
  color: var(--gold);
  opacity: 0.25;
}
.testimony-card blockquote {
  margin: 0 0 1.25rem;
  padding-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text);
}
.testimony-card cite {
  font-style: normal;
  font-size: 0.82rem; font-weight: 600;
  color: var(--gold);
}
.testimony-card img {
  width: 100%; border-radius: 10px;
  margin-bottom: 1rem;
  max-height: 180px;
  object-fit: contain;
  object-position: center center;
  background: rgba(0, 0, 0, 0.2);
}
.testimony-loading { grid-column: 1 / -1; text-align: center; color: var(--text-muted); padding: 2rem; }

/* ── App section ── */
.app-section { padding-bottom: 6rem; }
.app-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.75rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.12), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(212, 168, 67, 0.1), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.app-copy { max-width: none; }
.app-copy h2 { margin-bottom: 1rem; }
.app-intro {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 38rem;
}
.app-intro strong { color: var(--text); font-weight: 600; }
.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.app-feature {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.app-feature h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.app-feature p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.app-meta { margin-top: 1rem; }
.app-meta strong { color: var(--gold-bright); }
.store-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.store-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  min-width: 170px;
  transition: transform 0.2s, border-color 0.2s;
}
.store-badge:hover { transform: translateY(-2px); border-color: rgba(212, 168, 67, 0.35); }
.store-badge.ghost { background: rgba(255,255,255,0.04); }
.store-badge small { display: block; font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.store-badge strong { display: block; font-size: 1rem; color: var(--text); }

.app-showcase {
  width: 100%;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 168, 67, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.02);
}
.app-showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.app-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 240px;
  height: 300px;
  display: grid;
  place-items: center;
}
.app-showcase-glow {
  position: absolute;
  inset: 10% 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.14), transparent 68%);
  pointer-events: none;
  animation: app-glow-pulse 6s ease-in-out infinite;
}
@keyframes app-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.03); }
}
.app-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 220px;
}
.app-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.app-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.app-shell.is-active .app-slide.is-active img {
  animation: app-phone-float 5.5s ease-in-out infinite;
}
.app-slide img {
  max-height: 290px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 32px rgba(212, 168, 67, 0.1));
}
@keyframes app-phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.app-showcase-meta {
  width: 100%;
  max-width: 280px;
  text-align: center;
}
.app-slide-caption {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-bright);
  min-height: 1.25em;
  transition: opacity 0.25s;
}
.app-slide-caption.is-changing { opacity: 0.4; }
.app-screen-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  position: relative;
  z-index: 2;
}
.app-screen-tab {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.app-screen-tab:hover { color: var(--text); border-color: rgba(212, 168, 67, 0.35); }
.app-screen-tab.is-active {
  color: var(--text);
  border-color: rgba(212, 168, 67, 0.45);
  background: rgba(212, 168, 67, 0.12);
}

@media (min-width: 1024px) {
  .app-phone-wrap {
    max-width: 260px;
    height: 320px;
  }
  .app-carousel { max-width: 240px; }
  .app-slide img { max-height: 310px; }
}

/* ── Connect ── */
.connect-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}
.connect-intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 36rem;
}
.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.22s var(--ease), border-color 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--social-accent, var(--gold));
  opacity: 0.85;
}
.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.social-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.social-card-icon svg { width: 22px; height: 22px; }
.social-card--yt { --social-accent: #ff0000; }
.social-card--yt .social-card-icon { background: #ff0000; }
.social-card--ig { --social-accent: #e1306c; }
.social-card--ig .social-card-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
}
.social-card--fb { --social-accent: #1877f2; }
.social-card--fb .social-card-icon { background: #1877f2; }
.social-card--x { --social-accent: #e7e9ea; }
.social-card--x .social-card-icon {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.social-card-copy { flex: 1; min-width: 0; }
.social-card-copy strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 0.1rem;
}
.social-card-copy span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-card-arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.2s, transform 0.2s;
}
.social-card:hover .social-card-arrow {
  opacity: 1;
  transform: none;
  color: var(--gold-bright);
}

.contact-panel {
  padding: 1.75rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 168, 67, 0.08), transparent 55%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 100%;
}
.contact-panel h3 {
  color: var(--text);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.22);
  color: var(--gold-bright);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item p { margin: 0; font-size: 0.9rem; line-height: 1.55; color: var(--text-soft); }
.contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem !important;
}
.contact-panel a { color: var(--gold-bright); }
.contact-panel a:hover { text-decoration: underline; }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 5.5rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 168, 67, 0.06), transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.05), transparent 40%),
    #030508;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1fr;
  gap: 2.5rem 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-col { min-width: 0; }
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand-lockup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.footer-brand-lockup span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-tagline {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 22rem;
}
.footer-pastor {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-bright);
}
.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-heading--spaced { margin-top: 1.5rem; }
.footer-links,
.footer-contact,
.footer-schedule {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li,
.footer-contact li + li { margin-top: 0.45rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-schedule li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-schedule li:last-child { border-bottom: none; }
.footer-schedule span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-schedule strong {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}
.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-soft);
}
.footer-contact a {
  font-size: 0.9rem;
  color: var(--gold-bright);
}
.footer-contact a:hover { text-decoration: underline; }
.footer-label {
  margin: 1rem 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-email { margin: 0 0 0.5rem; }
.footer-email a {
  font-size: 0.86rem;
  color: var(--text-soft);
  word-break: break-word;
}
.footer-email a:hover { color: var(--gold-bright); }
.footer-app-link {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-bright);
}
.footer-app-link:hover { text-decoration: underline; }

.footer-social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.footer-social-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.footer-social--yt { background: #ff0000; }
.footer-social--ig { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
.footer-social--fb { background: #1877f2; }
.footer-social--x { background: #000; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
}
.footer-copy,
.footer-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-top-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-bright);
  white-space: nowrap;
}
.footer-top-link:hover { text-decoration: underline; }

.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1200;
  font-weight: 700; font-size: 0.92rem;
  text-align: center;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { min-height: 360px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-card-float { left: auto; right: -0.5rem; bottom: -1rem; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .live-layout, .booklet-showcase, .booklet-preview, .pastor-layout, .app-shell, .connect-grid { grid-template-columns: 1fr; }
  .app-features { grid-template-columns: 1fr; }
  .app-showcase { margin-top: 0.5rem; }
  .youtube-stage { grid-template-columns: 1fr; }
  .booklet-preview { grid-template-columns: 1fr; }
  .booklet-preview-cover { padding: 1.25rem; }
  .booklet-preview-cover img { width: min(160px, 42vw); }
  .booklet-stage { min-height: 300px; padding-bottom: 0.5rem; }
  .booklet-fan {
    justify-content: flex-start;
    padding-inline: 0.5rem 1.5rem;
  }
  .booklet-card {
    width: clamp(96px, 28vw, 128px);
    margin-left: calc(-1 * clamp(56px, 18vw, 84px) * (1 - var(--spread)));
  }
  .gallery-item { flex-basis: min(340px, 90vw); }
  .pastor-photo { position: relative; top: auto; max-width: 400px; }
}

@media (max-width: 768px) {
  .nav-desktop, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-metrics { grid-template-columns: 1fr; gap: 0.75rem; }
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .social-cards { grid-template-columns: 1fr; }
  .app-shell { padding: 1.5rem; }
  .mobile-cta { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-footer { padding-bottom: 4.5rem; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 1.5rem); }
  .header-shell { width: calc(100% - 1.5rem); }
  .steps-row { grid-template-columns: 1fr; }
  .hero-card-float { width: 55%; right: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-social-bar { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .booklet-showcase .booklet-card { --spread: 1; }
  .app-shell.is-active .app-slide.is-active img { animation: none; }
  .app-showcase-glow { animation: none; opacity: 0.7; }
}
