/* ============================================================
   Gospel Memorial COGIC — Design System
   Heritage editorial. Burgundy + antique gold on cream.
   ============================================================ */

:root {
  /* Color */
  --ink: #1a1410;
  --ink-soft: #3a2f27;
  --ink-mute: #6b5d52;
  --paper: #faf5ea;
  --paper-warm: #f3ead7;
  --paper-deep: #ebdfc4;
  --burgundy: #5b0e1f;
  --burgundy-deep: #3d0913;
  --burgundy-soft: #7a1f30;
  --gold: #b8893d;
  --gold-bright: #d4a857;
  --gold-soft: #e6cb8e;
  --rule: #d8c89c;
  --line-soft: rgba(26, 20, 16, 0.12);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mark: 'Cormorant Garamond', Georgia, serif;

  /* Scale */
  --step-0: clamp(0.95rem, 0.92rem + 0.15vw, 1.03rem);
  --step-1: clamp(1.06rem, 1.02rem + 0.2vw, 1.18rem);
  --step-2: clamp(1.22rem, 1.16rem + 0.3vw, 1.42rem);
  --step-3: clamp(1.5rem, 1.4rem + 0.5vw, 1.85rem);
  --step-4: clamp(1.95rem, 1.7rem + 1.2vw, 2.7rem);
  --step-5: clamp(2.6rem, 2.1rem + 2.4vw, 4.1rem);
  --step-6: clamp(3.4rem, 2.6rem + 4vw, 6.2rem);
  --step-7: clamp(4.4rem, 3rem + 7vw, 8.5rem);

  /* Spacing */
  --pad-xs: 0.5rem;
  --pad-s: 1rem;
  --pad-m: 1.75rem;
  --pad-l: 3rem;
  --pad-xl: 5rem;
  --pad-2xl: 7.5rem;

  /* Other */
  --radius: 2px;
  --maxw: 1240px;
  --maxw-narrow: 880px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 1200px 600px at 80% -10%, rgba(184, 137, 61, 0.08), transparent 60%),
    radial-gradient(ellipse 900px 500px at -10% 100%, rgba(91, 14, 31, 0.05), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
h1 { font-size: var(--step-6); }
h2 { font-size: var(--step-5); }
h3 { font-size: var(--step-4); }
h4 { font-size: var(--step-3); }
p { margin: 0 0 1em; }

/* Utilities */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-m); }
.narrow { max-width: var(--maxw-narrow); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--burgundy); color: var(--paper);
  padding: 0.75rem 1rem; z-index: 999;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ===== Top Marquee ===== */
.marquee {
  background: var(--burgundy-deep);
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  text-align: center;
  font-weight: 500;
}
.marquee strong { color: var(--gold-bright); font-weight: 600; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--font-display);
  line-height: 1;
}
.brand__mark {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; gap: 0.15rem; }
.brand__name {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
}
.brand__sub {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: var(--font-body);
  font-weight: 500;
}
.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 0.35rem 0;
  transition: color 180ms ease;
}
.nav__links a:hover { color: var(--burgundy); }
.nav__links a.is-active { color: var(--burgundy); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold);
}
.nav__cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--burgundy);
  color: var(--paper);
  padding: 0.7rem 1.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 180ms ease;
}
.nav__cta:hover { background: var(--burgundy-deep); }
.nav__toggle { display: none; }

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    border: 1px solid var(--line-soft);
    color: var(--ink);
  }
  body.is-menu-open .nav__drawer { transform: translateX(0); }
}
.nav__drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px);
  background: var(--paper-warm);
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 60;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: -20px 0 60px rgba(26, 20, 16, 0.15);
}
.nav__drawer a { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); }
.nav__drawer a + a { border-top: 1px solid var(--line-soft); padding-top: 0.9rem; }
.nav__drawer-close { position: absolute; top: 1.2rem; right: 1.2rem; font-size: 1.4rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__lead .eyebrow { margin-bottom: 1.5rem; }
.hero__title {
  font-size: var(--step-7);
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.hero__title .accent {
  display: inline-block;
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}
.hero__title .underline {
  background-image: linear-gradient(transparent 60%, rgba(212, 168, 87, 0.4) 60%);
  background-size: 100% 100%;
}
.hero__sub {
  font-size: var(--step-2);
  font-family: var(--font-display);
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 0 0 2.4rem;
  line-height: 1.35;
  font-weight: 400;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__aside {
  border-left: 1px solid var(--gold);
  padding-left: 2rem;
  position: relative;
}
.hero__aside::before {
  content: "";
  position: absolute;
  left: -5px; top: 0;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.hero__year {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.hero__times h4 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 1.4rem;
}
.svc-list { display: grid; gap: 1.1rem; }
.svc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed var(--line-soft);
}
.svc:last-child { border-bottom: 0; padding-bottom: 0; }
.svc__time {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.01em;
}
.svc__when {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  align-self: end;
  padding-bottom: 0.3rem;
}
.svc__name {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.svc__name em { font-family: var(--font-display); font-style: italic; }

/* Decorative anniversary medallion (CSS-only) */
.medallion {
  position: absolute;
  top: 8%;
  right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  pointer-events: none;
  opacity: 0.85;
}
.medallion::before {
  content: "";
  position: absolute; inset: 14px;
  border-radius: 50%;
  border: 1px dashed var(--gold);
}
.medallion__inner { text-align: center; line-height: 1; color: var(--burgundy); }
.medallion__num {
  font-size: 5.6rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.04em;
  display: block;
}
.medallion__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-top: 0.4rem;
  font-weight: 600;
}
@media (max-width: 1100px) { .medallion { top: -40px; right: -100px; width: 220px; height: 220px; } .medallion__num { font-size: 4.2rem; } }
@media (max-width: 700px) { .medallion { display: none; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  border-radius: 0;
}
.btn--primary { background: var(--burgundy); color: var(--paper); }
.btn--primary:hover { background: var(--burgundy-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-soft);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--gold {
  background: var(--gold);
  color: var(--burgundy-deep);
}
.btn--gold:hover { background: var(--gold-bright); }
.btn--quiet {
  padding: 0; background: transparent; color: var(--burgundy);
  border-bottom: 1px solid var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}
.btn--quiet:hover { color: var(--burgundy-deep); }
.btn .arr { font-family: var(--font-display); font-style: italic; text-transform: lowercase; letter-spacing: 0; }

/* ===== Section pattern ===== */
.section { padding: var(--pad-2xl) 0; }
.section--cream { background: var(--paper-warm); }
.section--ink { background: var(--ink); color: var(--paper-warm); }
.section--ink h1, .section--ink h2 { color: var(--paper); }
.section--burgundy {
  background: var(--burgundy-deep);
  color: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.section--burgundy::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 168, 87, 0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(212, 168, 87, 0.1), transparent 50%);
  pointer-events: none;
}
.section--burgundy h1, .section--burgundy h2, .section--burgundy h3 { color: var(--paper); }
.section--burgundy .eyebrow { color: var(--gold-bright); }
.section--burgundy .eyebrow::before { background: var(--gold-bright); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media (max-width: 800px) { .section__head { grid-template-columns: 1fr; gap: 1.5rem; } }
.section__head h2 { font-size: var(--step-5); }
.section__head p { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.35; color: inherit; opacity: 0.86; max-width: 50ch; margin: 0; font-weight: 400; }

/* ===== Welcome / Pastor ===== */
.pastor {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 800px) { .pastor { grid-template-columns: 1fr; } }
.pastor__visual {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(155deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.pastor__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(212, 168, 87, 0.32), transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(212, 168, 87, 0.14), transparent 50%);
}
.pastor__visual::after {
  content: "60";
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22rem;
  line-height: 0.8;
  color: rgba(212, 168, 87, 0.16);
  font-weight: 400;
}
.pastor__sig {
  position: absolute; bottom: 2rem; left: 2rem;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  z-index: 2;
}
.pastor__sig small {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  color: var(--gold);
}
.pastor__quote {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 2rem;
}
.pastor__quote::before { content: "“"; color: var(--gold); margin-right: 0.2em; font-size: 1.1em; }
.pastor__quote::after { content: "”"; color: var(--gold); margin-left: 0.05em; font-size: 1.1em; }

/* ===== Pillars ===== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-soft); }
.pillars > * { padding: 2.5rem 1.8rem; border-right: 1px solid var(--line-soft); }
.pillars > *:last-child { border-right: 0; }
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.pillar h4 { font-size: var(--step-2); margin-bottom: 0.7rem; color: var(--burgundy); }
.pillar p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } .pillars > * { border-right: 0; border-bottom: 1px solid var(--line-soft); } .pillars > *:last-child { border-bottom: 0; } }

/* ===== Anniversary feature card ===== */
.anniv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--burgundy-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) { .anniv { grid-template-columns: 1fr; } }
.anniv__art {
  position: relative;
  min-height: 460px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 168, 87, 0.32), transparent 60%),
    linear-gradient(165deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
}
.anniv__art::before {
  content: "1965 — 2025";
  position: absolute; bottom: 2.4rem; left: 2.4rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.anniv__art-mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  color: rgba(230, 203, 142, 0.5);
  font-size: clamp(8rem, 18vw, 18rem);
  font-style: italic;
  line-height: 0.8;
  letter-spacing: -0.05em;
}
.anniv__copy { padding: clamp(2.4rem, 4vw, 4rem); }
.anniv__copy h3 {
  font-size: var(--step-5);
  margin-bottom: 1.2rem;
  color: var(--paper);
}
.anniv__copy h3 em { color: var(--gold-bright); }
.anniv__copy p { color: var(--paper-warm); opacity: 0.86; font-size: var(--step-1); margin-bottom: 2rem; max-width: 38ch; }

/* Event list */
.events { display: grid; gap: 0; border-top: 1px solid rgba(230, 203, 142, 0.25); }
.event {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(230, 203, 142, 0.25);
  align-items: center;
}
.event__date {
  font-family: var(--font-display);
  text-align: center;
  color: var(--gold-bright);
  line-height: 1;
}
.event__date b { display: block; font-size: 2.2rem; font-style: italic; font-weight: 500; }
.event__date span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; color: var(--gold-soft); }
.event__title { font-family: var(--font-display); font-size: var(--step-2); color: var(--paper); font-weight: 500; }
.event__title small { display: block; font-family: var(--font-body); font-size: 0.78rem; color: var(--gold-soft); letter-spacing: 0.06em; margin-top: 0.3rem; opacity: 0.85; }
.event__cta { color: var(--gold-bright); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 600px) { .event { grid-template-columns: 70px 1fr; } .event__cta { grid-column: 2; padding-top: 0.4rem; } .event__date b { font-size: 1.6rem; } }

/* ===== Ministries grid ===== */
.mlist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
@media (max-width: 880px) { .mlist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mlist { grid-template-columns: 1fr; } }
.mcard {
  background: var(--paper);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: background 220ms ease;
}
.mcard:hover { background: var(--paper-warm); }
.mcard__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  display: block;
}
.mcard h4 { font-size: var(--step-2); margin-bottom: 0.6rem; color: var(--ink); }
.mcard p { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 1.3rem; }
.mcard__link { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--burgundy); }

/* ===== Watch live ===== */
.live {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 880px) { .live { grid-template-columns: 1fr; } }
.live__player {
  aspect-ratio: 16 / 9;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.live__player iframe { width: 100%; height: 100%; border: 0; }
.live__player-poster {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 168, 87, 0.18), transparent 60%),
    linear-gradient(160deg, var(--burgundy-deep) 0%, var(--ink) 100%);
  color: var(--paper);
  text-align: center;
}
.live__pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(212, 168, 87, 0.15);
  color: var(--gold-bright);
  padding: 0.45rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.live__pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #d4504f;
  box-shadow: 0 0 0 0 rgba(212, 80, 79, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(212, 80, 79, 0.7); } 70% { box-shadow: 0 0 0 14px rgba(212, 80, 79, 0); } 100% { box-shadow: 0 0 0 0 rgba(212, 80, 79, 0); } }
.live__player-poster h3 { color: var(--paper); font-size: var(--step-4); margin-bottom: 0.5rem; }
.live__player-poster p { font-family: var(--font-display); font-style: italic; color: var(--gold-soft); font-size: var(--step-1); margin-bottom: 1.6rem; }
/* live__schedule is only ever rendered inside section--ink (dark background) */
.live__schedule { font-family: var(--font-display); font-size: var(--step-2); color: var(--paper); margin-bottom: 1rem; line-height: 1.45; }
.live__schedule b { color: var(--gold-bright); font-weight: 500; font-style: italic; }
/* Eyebrows on dark sections need light treatment — burgundy disappears on --ink */
.section--ink .eyebrow { color: var(--gold-bright); }
.section--ink .eyebrow::before { background: var(--gold-bright); }

/* ===== Visit details ===== */
.visit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .visit-grid { grid-template-columns: 1fr; } }
.vgrid__cell {
  padding: 2.2rem 1.7rem;
  border-right: 1px solid var(--line-soft);
}
.vgrid__cell:last-child { border-right: 0; }
.vgrid__cell h5 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burgundy);
  margin: 0 0 0.7rem;
}
.vgrid__cell p { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.3; color: var(--ink); margin: 0; }
.vgrid__cell p em { color: var(--burgundy); font-style: italic; }

/* ===== FAQ ===== */
.faq { border-top: 1px solid var(--line-soft); }
.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 1.6rem 0;
  position: relative;
}
.faq summary {
  font-family: var(--font-display);
  font-size: var(--step-3);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 220ms ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p { margin-top: 1rem; max-width: 64ch; color: var(--ink-soft); }

/* ===== Footer ===== */
.foot {
  background: var(--ink);
  color: var(--paper-warm);
  padding: var(--pad-2xl) 0 2rem;
  margin-top: 6rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 880px) { .foot__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }
.foot h5 { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.2rem; font-family: var(--font-body); font-weight: 600; }
.foot a { color: var(--paper-warm); opacity: 0.8; transition: opacity 180ms ease; display: block; padding: 0.25rem 0; font-size: 0.92rem; }
.foot a:hover { opacity: 1; color: var(--gold-bright); }
.foot__brand .brand { gap: 1.15rem; align-items: center; }
.foot__brand .brand__mark { background: transparent; color: var(--gold); border-color: var(--gold); width: 50px; height: 50px; font-size: 1.55rem; }
.foot__brand .brand__text { gap: 0.4rem; }
.foot__brand .brand__name { color: var(--paper); font-size: 1.05rem; letter-spacing: 0.02em; }
.foot__brand .brand__sub { color: var(--gold-soft); font-size: 0.66rem; line-height: 1.4; }
.foot__lede { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.4; color: var(--paper); margin: 1.5rem 0 1.5rem; max-width: 32ch; font-weight: 400; }
.foot__lede em { color: var(--gold-bright); font-style: italic; }
.foot__bottom {
  border-top: 1px solid rgba(250, 245, 234, 0.12);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
  color: rgba(250, 245, 234, 0.55);
}
.foot__bottom a { display: inline; padding: 0; font-size: 0.78rem; }

/* ===== Page hero (sub pages) ===== */
.phero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.phero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
@media (max-width: 760px) { .phero__grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.phero h1 {
  font-size: var(--step-6);
  font-weight: 400;
  line-height: 0.96;
  margin: 1.2rem 0 0;
}
.phero h1 em { color: var(--burgundy); font-style: italic; }
.phero__intro {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 42ch;
}

.crumb { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.crumb a { color: var(--ink-mute); }
.crumb a:hover { color: var(--burgundy); }

/* ===== Prose / story ===== */
.prose {
  max-width: 64ch;
  font-size: var(--step-1);
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose h3 { color: var(--ink); margin: 2.5rem 0 1rem; font-size: var(--step-3); }
.prose p { margin: 0 0 1.3em; }
.prose blockquote {
  margin: 2.5rem 0;
  padding: 0 0 0 2rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-3);
  color: var(--ink);
  line-height: 1.4;
}
.prose blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-top: 0.9rem;
  font-weight: 600;
}

/* Two-col bio */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (max-width: 760px) { .bio-grid { grid-template-columns: 1fr; } }
.bio-portrait {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.bio-portrait::after {
  content: "JLE";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 9rem;
  color: rgba(212, 168, 87, 0.18);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.bio-portrait::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(212, 168, 87, 0.22), transparent 60%);
}
.bio-cap {
  position: absolute; left: 1.5rem; bottom: 1.5rem;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  z-index: 2;
}
.bio-cap small {
  display: block; font-style: normal; font-family: var(--font-body);
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.3rem; font-weight: 600;
}

/* Timeline */
.tl { display: grid; gap: 0; margin: 3rem 0; }
.tl__item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.tl__year { font-family: var(--font-display); font-style: italic; color: var(--burgundy); font-size: 1.6rem; }
.tl__body h5 { font-size: 1.05rem; color: var(--ink); margin: 0 0 0.3rem; font-family: var(--font-body); font-weight: 600; }
.tl__body p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* Quote band */
.qband {
  text-align: center;
  padding: var(--pad-2xl) 0;
  background: var(--paper-warm);
  border-block: 1px solid var(--line-soft);
}
.qband blockquote {
  font-family: var(--font-display);
  font-size: var(--step-5);
  line-height: 1.18;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  margin: 0 auto;
  max-width: 22ch;
}
.qband blockquote::before { content: "“"; color: var(--gold); margin-right: 0.05em; }
.qband blockquote::after { content: "”"; color: var(--gold); }
.qband cite { display: block; margin-top: 1.5rem; font-family: var(--font-body); font-style: normal; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--burgundy); font-weight: 600; }

/* Give cards */
.give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 880px) { .give-grid { grid-template-columns: 1fr; } }
.give-card {
  border: 1px solid var(--line-soft);
  padding: 2.2rem 1.8rem;
  background: var(--paper);
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease;
}
.give-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.give-card.is-feature { background: var(--burgundy); color: var(--paper); border-color: var(--burgundy); }
.give-card.is-feature h4 { color: var(--paper); }
.give-card.is-feature p { color: var(--paper-warm); opacity: 0.86; }
.give-card.is-feature .give-card__amount { color: var(--gold-bright); }
.give-card__amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.give-card h4 { font-size: var(--step-3); margin-bottom: 0.6rem; }
.give-card p { font-size: 0.95rem; }
.give-card .btn { margin-top: 1rem; }

/* Methods row */
.methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 3rem; }
@media (max-width: 880px) { .methods { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .methods { grid-template-columns: 1fr; } }
.method { background: var(--paper); padding: 1.6rem 1.4rem; }
.method h6 { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--burgundy); margin: 0 0 0.5rem; font-family: var(--font-body); font-weight: 600; }
.method p { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin: 0; line-height: 1.4; }

/* Forms */
.form-stack { display: grid; gap: 1.2rem; max-width: 560px; }
.field { display: grid; gap: 0.5rem; }
.field label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--burgundy); font-weight: 600; }
.field input, .field textarea, .field select {
  border: 0; border-bottom: 1px solid var(--ink-soft);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0;
  color: var(--ink);
  border-radius: 0;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-bottom-color: var(--burgundy); }

/* Map block */
.map {
  aspect-ratio: 16 / 9;
  background: var(--paper-deep);
  position: relative;
  overflow: hidden;
}
.map iframe { width: 100%; height: 100%; border: 0; filter: sepia(0.18) saturate(0.85); }

/* Live page event log */
.replays { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 880px) { .replays { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .replays { grid-template-columns: 1fr; } }
.replay {
  border: 1px solid var(--line-soft);
  background: var(--paper);
  display: flex; flex-direction: column;
}
.replay__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, var(--burgundy-deep), var(--ink));
  position: relative;
  display: grid; place-items: center;
}
.replay__thumb::after {
  content: "▷";
  color: var(--gold-bright);
  font-size: 2.4rem;
}
.replay__thumb span {
  position: absolute; top: 0.7rem; left: 0.7rem;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  font-weight: 600;
}
.replay__body { padding: 1.4rem 1.4rem 1.6rem; }
.replay h5 { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin: 0 0 0.4rem; font-weight: 500; line-height: 1.25; }
.replay small { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }

/* 404 */
.notfound { min-height: 70vh; display: grid; place-items: center; padding: 5rem 0; text-align: center; }
.notfound__num { font-family: var(--font-display); font-style: italic; font-size: clamp(7rem, 18vw, 14rem); color: var(--burgundy); line-height: 0.9; }

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms ease, transform 700ms ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* Page transitions: native View Transitions API for cross-document navigation.
   Compositor-driven, no JS, runs at 60fps. Falls back gracefully where unsupported. */
@view-transition { navigation: auto; }

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 420ms;
  animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
}
::view-transition-old(root) { animation-name: vtFadeOut; }
::view-transition-new(root) { animation-name: vtFadeIn; }
@keyframes vtFadeOut { to { opacity: 0; } }
@keyframes vtFadeIn  { from { opacity: 0; } }

/* Gentle entry fade-in for browsers without cross-document View Transitions
   (currently Firefox). Pure opacity, no translate — translate was the source of jank. */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageIn 420ms cubic-bezier(0.32, 0.72, 0, 1) both; }

@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
  body { animation: none; }
}

/* Print */
@media print { .nav, .marquee, .foot, .nav__cta, .btn { display: none; } body { background: white; color: black; } }
