/* =========================================================================
   Christ the Center Live — The 1,000th Episode Summit
   Design language congruent with the Reformed Forum brand (Foreknown):
   vermilion + charcoal + warm bone; Fraunces (display serif) + Hanken
   Grotesk (sans) + IBM Plex Mono (labels). Fonts loaded in <head>.
   ========================================================================= */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Brand palette — accent is Reformed Forum crimson (kept in --vermilion-* var
     names for continuity; it is red, not orange). */
  --vermilion:      #A8353A;  /* signature accent (RF crimson) */
  --vermilion-deep: #8D2A2F;  /* hover / pressed */
  --charcoal:       #1A1A18;  /* dark surfaces + primary text (near-neutral) */
  --charcoal-2:     #272622;  /* elevated dark */
  --bone:           #FAF9F4;  /* page background, cool fresh cream */
  --bone-deep:      #EEEDE6;  /* alternating sections (cooler soft cream) */
  --bone-bright:    #FEFDF9;  /* lightest, near-white */
  --sage:           #8E938B;  /* tertiary, used sparingly */

  --ink:        #1A1A18;      /* text on light */
  --ink-soft:   #56524A;      /* secondary text on light */
  --on-dark:        #F1EFE9;  /* text on charcoal/crimson */
  --on-dark-soft:   #B4B0A8;  /* secondary text on dark */

  --hairline:       rgba(26, 26, 24, 0.13);
  --hairline-dark:  rgba(241, 239, 233, 0.18);

  /* Fonts */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont,
                  "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Spark motif (four-point star) as data-URI, in three tints */
  --spark-vermilion: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C12.6 7 17 11.4 24 12C17 12.6 12.6 17 12 24C11.4 17 7 12.6 0 12C7 11.4 11.4 7 12 0Z' fill='%23A8353A'/%3E%3C/svg%3E");
  --spark-ink: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C12.6 7 17 11.4 24 12C17 12.6 12.6 17 12 24C11.4 17 7 12.6 0 12C7 11.4 11.4 7 12 0Z' fill='%231C1A17'/%3E%3C/svg%3E");
  --spark-bone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C12.6 7 17 11.4 24 12C17 12.6 12.6 17 12 24C11.4 17 7 12.6 0 12C7 11.4 11.4 7 12 0Z' fill='%23F1EFE9'/%3E%3C/svg%3E");

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --nav-h: 72px;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Standard ligatures (ff, fi, fl, ffi, ffl) everywhere the font provides them.
     Fraunces ships only these; it has no Th/st/ct ligatures. */
  font-variant-ligatures: common-ligatures contextual;
  font-kerning: normal;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}

/* Reusable label / eyebrow (monospace, the brand's signature) */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-weight: 500;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--vermilion-deep); margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: ""; width: .62em; height: .62em; flex: none;
  background: var(--spark-vermilion) center/contain no-repeat;
}
.eyebrow--on-dark { color: var(--vermilion); }
.eyebrow--center { justify-content: center; }

/* Spark separator (inline) */
.sep {
  display: inline-block; width: .55em; height: .55em; vertical-align: middle;
  background: var(--spark-vermilion) center/contain no-repeat;
}

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--charcoal); color: var(--bone);
  padding: .6rem 1rem; border-radius: 3px; z-index: 200;
  font-family: var(--font-mono); font-size: .8rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-sans); font-weight: 600;
  font-size: .92rem; letter-spacing: .01em;
  padding: .85rem 1.7rem; border-radius: 2px;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .08s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--vermilion); color: #fff; }
.btn--primary:hover { background: var(--vermilion-deep); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--hairline);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--bone { background: var(--bone-bright); color: var(--charcoal); }
.btn--bone:hover { background: #fff; }
.btn--sm { padding: .6rem 1.2rem; font-size: .82rem; }
.nav .btn--primary { padding: .58rem 1.3rem; font-size: .85rem; }
/* Keep the button label white; the generic .nav__links a color/hover rules
   are otherwise more specific and would tint it dark on the crimson button. */
.nav__links a.btn--primary,
.nav__links a.btn--primary:hover { color: #fff; }
.nav__links a.btn--primary::after { display: none; }

/* ---- Sticky nav --------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--hairline); }
.nav__inner {
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav__brand {
  display: inline-flex; align-items: baseline; gap: .5rem;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.nav__brand b {
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  letter-spacing: -0.005em;
}
.nav__brand span {
  font-family: var(--font-mono); font-weight: 500; font-size: .72rem;
  letter-spacing: .05em; color: var(--vermilion-deep);
  border: 1px solid color-mix(in srgb, var(--vermilion) 40%, transparent);
  padding: .15em .5em; border-radius: 2px; white-space: nowrap;
}
/* The full tag would overflow alongside the name + menu on small phones. */
@media (max-width: 560px) { .nav__brand span { display: none; } }
.nav__links {
  display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.2rem);
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--font-mono); font-weight: 500;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-soft);
  padding: .4rem 0; position: relative; transition: color .2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--vermilion); transform: scaleX(0);
  transform-origin: left; transition: transform .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ---- HERO --------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate;
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
  padding-block: clamp(3.5rem, 9vh, 7rem);
  background:
    radial-gradient(115% 90% at 88% 0%, rgba(168,53,58,0.10) 0%, rgba(168,53,58,0) 50%),
    linear-gradient(168deg, var(--bone-bright) 0%, var(--bone) 55%, var(--bone-deep) 100%);
  overflow: hidden;
}
.hero::before { /* faint paper texture */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .55;
  background-image: repeating-linear-gradient(0deg, rgba(28,26,23,0.022) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.hero::after { /* faint Reformed Forum lion watermark */
  content: ""; position: absolute; z-index: -1; right: -2%; top: 50%;
  width: min(40vw, 440px); aspect-ratio: 482 / 532; transform: translateY(-50%);
  background: url("../img/rf-mark.svg") center/contain no-repeat; opacity: .06;
  pointer-events: none;
}
.hero__inner { max-width: 820px; }

.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.7rem, 1.5rem + 5vw, 5.2rem);
  line-height: 1.03; letter-spacing: -0.015em;
  margin: 0 0 1.6rem; color: var(--ink); text-wrap: balance;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--vermilion); }

.hero__lead {
  font-family: var(--font-sans); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.6; color: var(--ink-soft); max-width: 60ch; margin: 0 0 2.2rem;
}
/* Show title gets a real serif italic (Hanken has no italic face loaded). */
.hero__lead em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem;
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(.78rem, .74rem + .2vw, .9rem); letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink); margin: 0 0 2.4rem;
}
.hero__meta .sep { opacity: .9; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem 1rem; align-items: center; }

/* Countdown */
.countdown { display: none; }
body[data-countdown="on"] .countdown { display: flex; gap: 1.5rem; margin-top: 3rem; }
.countdown__unit { text-align: center; min-width: 3.2rem; }
.countdown__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.5rem); line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-family: var(--font-mono); font-weight: 500; font-size: .64rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-top: .55rem;
}

/* ---- Section scaffolding ------------------------------------------------ */
.section { padding-block: clamp(3.75rem, 8vh, 6.5rem); }
.section--alt { background: var(--bone-deep); }
.section__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 1.4rem + 2.3vw, 3.1rem);
  line-height: 1.07; letter-spacing: -0.01em; color: var(--ink);
  margin: 0; text-wrap: balance;
}
.section__lede {
  font-family: var(--font-sans); font-size: 1.08rem; color: var(--ink-soft);
  max-width: 56ch; margin: 1.1rem 0 0;
}
.section__head { margin-bottom: 2.75rem; }
.section__head--center { text-align: center; margin-inline: auto; margin-bottom: 3.25rem; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .section__lede { margin-inline: auto; }

.section__grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem 3.5rem; }
@media (min-width: 880px) {
  .section__grid { grid-template-columns: minmax(280px, 0.82fr) 1.18fr; }
  .section__grid .section__head { margin-bottom: 0; position: sticky; top: calc(var(--nav-h) + 2rem); align-self: start; }
}

.prose p { margin: 0 0 1.3rem; max-width: 64ch; }
.prose p:last-child { margin-bottom: 0; }
.prose .lead {
  font-family: var(--font-display); font-weight: 400; font-size: 1.4rem;
  line-height: 1.45; color: var(--ink); margin-bottom: 1.6rem;
}
.prose__note {
  font-family: var(--font-mono); font-size: .85rem; line-height: 1.7;
  color: var(--ink-soft); border-left: 2px solid var(--vermilion);
  padding-left: 1rem; margin-top: 2.25rem;
}
.tbd {
  font-family: var(--font-mono); font-size: .82em; font-weight: 500;
  color: var(--vermilion-deep); background: rgba(168,53,58,0.08);
  padding: .05em .45em; border-radius: 2px; white-space: nowrap;
}

/* ---- SPEAKERS ----------------------------------------------------------- */
.speaker-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.speaker { text-align: center; }
.speaker__photo, .speaker__monogram {
  width: clamp(120px, 42%, 152px); aspect-ratio: 1; margin: 0 auto 1.15rem;
  border-radius: 50%; object-fit: cover;
}
/* Alan Strange's source sits high in the frame; nudge it down toward center. */
.speaker__photo[src*="strange"] { object-position: center 22%; }
.speaker__monogram {
  display: grid; place-items: center;
  background: linear-gradient(155deg, var(--bone-deep), var(--bone-bright));
  color: var(--vermilion-deep); border: 1px solid var(--hairline);
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 1.3rem + 1vw, 2.3rem);
}
.speaker--confirmed .speaker__monogram {
  border-color: color-mix(in srgb, var(--vermilion) 45%, transparent);
}
.speaker__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  line-height: 1.2; color: var(--ink); margin: 0 0 .3rem;
}
.speaker__meta {
  font-family: var(--font-mono); font-weight: 500; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--vermilion-deep); margin: 0;
}
.speaker__meta--tbd { color: var(--ink-soft); }
.speaker__bio {
  font-family: var(--font-sans); font-size: .95rem; color: var(--ink-soft);
  margin: .75rem auto 0; max-width: 32ch; line-height: 1.55;
}
.speaker__toggle {
  font-family: var(--font-mono); font-weight: 500; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--vermilion-deep);
  background: none; border: 0; cursor: pointer; margin-top: .85rem; padding: .25rem;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ---- SCHEDULE ----------------------------------------------------------- */
.schedule__days { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; }
@media (min-width: 720px) { .schedule__days { grid-template-columns: 1fr 1fr; align-items: start; } }
.agenda__day {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .25rem .9rem;
  padding-bottom: 1rem; margin-bottom: 1.25rem; border-bottom: 1.5px solid var(--vermilion);
}
.agenda__day-label { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--ink); }
.agenda__day-date {
  font-family: var(--font-mono); font-weight: 500; font-size: .76rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft);
}
.agenda__list { list-style: none; margin: 0; padding: 0; }
.agenda__row {
  display: grid; grid-template-columns: 5.4rem 1fr; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--hairline);
}
.agenda__row:last-child { border-bottom: 0; }
.agenda__time {
  font-family: var(--font-mono); font-weight: 500; font-size: .8rem;
  color: var(--vermilion-deep); padding-top: .2rem; font-variant-numeric: tabular-nums; letter-spacing: .02em;
}
.agenda__title { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; color: var(--ink); line-height: 1.3; }
.agenda__detail { display: block; font-family: var(--font-sans); font-size: .9rem; color: var(--ink-soft); margin-top: .2rem; }
.agenda__row--meal .agenda__title { font-style: italic; font-weight: 400; }
.agenda__row--record {
  background: rgba(168,53,58,0.07); border-radius: 4px;
  margin-inline: -.7rem; padding-inline: .7rem; border-bottom-color: transparent;
}
.agenda__row--record .agenda__title { color: var(--vermilion-deep); font-weight: 600; }
.agenda__row--record .agenda__time { color: var(--vermilion); }

/* ---- VENUE -------------------------------------------------------------- */
.venue__body { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px) { .venue__body { grid-template-columns: 1fr 1fr; align-items: start; } }
.venue__addr { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); line-height: 1.4; margin: 0 0 1.1rem; }
.venue__notes { list-style: none; margin: 1.4rem 0; padding: 0; }
.venue__notes li { position: relative; padding-left: 1.4rem; margin-bottom: .85rem; font-size: 1rem; color: var(--ink-soft); }
.venue__notes li::before { content: ""; position: absolute; left: 0; top: .42em; width: .6em; height: .6em; background: var(--spark-vermilion) center/contain no-repeat; }
.venue__notes strong { color: var(--ink); font-weight: 600; }
.venue__map { border-radius: 4px; overflow: hidden; border: 1px solid var(--hairline); background: var(--bone-deep); }
.venue__map iframe { width: 100%; height: 300px; border: 0; display: block; background: var(--bone-deep); }
.venue__map-links { display: flex; border-top: 1px solid var(--hairline); }
.venue__map-links a {
  flex: 1; text-align: center; padding: .7rem;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.venue__map-links a:first-child { border-right: 1px solid var(--hairline); }
.venue__map-links a:hover { color: var(--vermilion-deep); background: rgba(168,53,58,0.05); }
[data-pending="true"] { opacity: .5; pointer-events: none; }

/* ---- STATEMENT band (charcoal) ----------------------------------------- */
.statement {
  background: var(--charcoal); color: var(--on-dark); text-align: center;
  padding-block: clamp(4rem, 10vh, 7rem);
}
.statement__spark { width: 30px; height: 30px; margin: 0 auto 1.6rem; background: var(--spark-vermilion) center/contain no-repeat; }
.statement__quote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 1.3rem + 2.6vw, 3.2rem); line-height: 1.12;
  letter-spacing: -0.01em; margin: 0 auto; max-width: 18ch; color: #fff; text-wrap: balance;
}
.statement__sub { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-soft); margin: 1.8rem 0 0; }

/* ---- REGISTRATION (vermilion band) ------------------------------------- */
.register {
  background:
    radial-gradient(120% 130% at 50% -15%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(160deg, var(--vermilion) 0%, var(--vermilion-deep) 100%);
  color: #fff; text-align: center;
}
.register__inner { max-width: 680px; margin-inline: auto; }
.register .eyebrow { color: #fff; justify-content: center; }
.register .eyebrow::before { background: var(--spark-bone); }
.register__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 1.5rem + 2.4vw, 3.1rem); line-height: 1.08; color: #fff; margin: 0; }
.register__price { font-family: var(--font-mono); font-size: 1rem; letter-spacing: .04em; color: #fff; margin: 1.4rem 0 .3rem; }
.register__price b { font-size: 1.15rem; }
.register__lede { font-family: var(--font-sans); font-size: 1.08rem; line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 52ch; margin: 1.2rem auto 2.2rem; }
.register__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.register__note { font-family: var(--font-mono); font-size: .8rem; line-height: 1.7; letter-spacing: .02em; color: rgba(255,255,255,0.9); margin-top: 2.2rem; }
.register__note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.register__rise {
  display: inline-block; font-size: .82rem; letter-spacing: .04em;
  color: #fff; border: 1px solid rgba(255,255,255,0.5);
  padding: .12em .55em; border-radius: 2px; margin-left: .35rem;
}
/* Placeholder markers stay legible on dark / vermilion sections */
.register .tbd, .statement .tbd, .footer .tbd {
  background: rgba(255,255,255,0.2); color: #fff;
}

/* ---- FOOTER (charcoal) -------------------------------------------------- */
.footer { background: var(--charcoal); color: var(--on-dark); padding-block: 3.5rem 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--hairline-dark); }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; align-items: start; } }
.footer__logo { display: block; width: clamp(190px, 42%, 232px); height: auto; margin-bottom: 1.1rem; }
.footer__tagline { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-soft); margin: 0; }
.footer__col h3 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-soft); margin: 0 0 1rem; font-weight: 500; }
.footer__col a { display: block; font-family: var(--font-sans); font-size: .95rem; text-decoration: none; color: var(--on-dark); margin-bottom: .6rem; transition: color .2s ease; }
.footer__col a:hover { color: var(--vermilion); }
.footer__legal { padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--on-dark-soft); }
.footer__legal p { margin: 0; }

/* ---- Mobile nav --------------------------------------------------------- */
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; padding: 10px; color: var(--ink); }
.nav__toggle svg { width: 100%; height: 100%; }
@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bone); border-bottom: 1px solid var(--hairline);
    padding: .5rem var(--gutter) 1.25rem;
    transform: translateY(-130%); transition: transform .3s ease;
    box-shadow: 0 18px 40px -24px rgba(0,0,0,.45);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: .9rem 0; font-size: .82rem; width: 100%; }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: .8rem; width: 100%; }
}
