/* =====================================================================
   1765 Sanctum Co. — site styles  (V2: SANCTUARY + TEMPLAR)
   Liturgical depth. Volumetric light. Manuscript illumination.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-base:      #08090C;          /* nearly black — depth of the nave */
  --c-base-2:    #0F1116;
  --c-base-3:    #15171F;          /* card surface */
  --c-bone:      #F5E6C8;          /* warm bone-white */
  --c-bone-dim:  #C9BB9C;
  --c-bone-mut:  #8B826B;
  --c-amber:     #C8932A;          /* candle gold */
  --c-amber-bri: #E2B248;          /* highlight gold */
  --c-amber-dim: #8C6620;
  --c-amber-fade: rgba(200,147,42,0.35);
  --c-oxblood:   #6E1B1F;          /* deep liturgical red — Templar/martyr */
  --c-oxblood-bri: #8B2326;
  --c-stained-blue: #143049;       /* deep stained-glass blue */

  --f-cinzel:    "Cinzel", "Trajan Pro", Georgia, serif;          /* Roman inscription */
  --f-display:   "Cormorant Garamond", "Cormorant", Georgia, serif;
  --f-body:      "EB Garamond", Georgia, "Times New Roman", serif;

  --maxw:        1180px;
  --maxw-narrow: 760px;

  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--c-base);
  color: var(--c-bone);
  font-family: var(--f-body);
  font-size: 19px;
  line-height: 1.7;
  font-feature-settings: "liga", "kern", "onum";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--c-bone);
  text-decoration: none;
  border-bottom: 1px solid var(--c-amber-fade);
  transition: color 280ms var(--ease), border-color 280ms var(--ease);
}
a:hover, a:focus-visible { color: var(--c-amber-bri); border-bottom-color: var(--c-amber-bri); }

:focus-visible { outline: 2px solid var(--c-amber); outline-offset: 4px; }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--c-amber); color: var(--c-base);
  padding: 12px 18px; font-weight: 600; border: none;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; }

/* ---------- Containers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.narrow { max-width: var(--maxw-narrow); }
.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Type primitives ---------- */
.eyebrow {
  font-family: var(--f-cinzel);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 32px;
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.eyebrow.centered { display: flex; justify-content: center; }
.eyebrow-roman {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--c-amber-bri);
  text-transform: none;
}
.eyebrow.on-dark { color: var(--c-amber); }

.display-h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--c-bone);
  margin: 0 0 32px;
  text-wrap: balance;
}
.display-h2 em {
  font-style: italic;
  color: var(--c-amber-bri);
  font-weight: 400;
}

/* ---------- Flourishes ---------- */
.section-flourish, .hero-flourish, .footer-flourish {
  display: block;
  width: clamp(160px, 26vw, 240px);
  height: 24px;
  margin: 36px auto;
  color: var(--c-amber);
  opacity: 0.85;
}
.hero-flourish { color: var(--c-amber); margin: 26px auto 26px; }

/* =====================================================================
   HERO — THE THRESHOLD
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding: 80px 24px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/hero-lepanto.jpg") center 28% / cover no-repeat;
  filter: saturate(0.54) contrast(1.1) brightness(0.6);
  z-index: -5;
  transform: scale(1.06);
  opacity: 0;
  /* fade in once, then a slow continuous Ken Burns pan — the cinematic motion layer */
  animation: hero-bg-in 2600ms 80ms var(--ease-out) forwards,
             hero-kenburns 48s 2600ms ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-bg-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes hero-kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-2.2%, -1.6%, 0); }
}
@keyframes hero-bg-rise {
  from { opacity: 0; transform: scale(1.1); }
  to   { opacity: 1; transform: scale(1.04); }
}

/* Stained-glass color wash — deep blue + oxblood at edges */
.hero-stained {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, rgba(200,147,42,0.18), transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 30%, rgba(20,48,73,0.55), transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 70%, rgba(110,27,31,0.45), transparent 60%);
  mix-blend-mode: screen;
  z-index: -4;
  pointer-events: none;
  animation: stained-pulse 9s ease-in-out infinite;
}
@keyframes stained-pulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,9,12,0.88) 0%,
    rgba(8,9,12,0.55) 38%,
    rgba(8,9,12,0.72) 78%,
    rgba(8,9,12,0.78) 100%);
  z-index: -3;
}

/* Volumetric godrays — diagonal beams of warm light */
.hero-godrays {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(110deg,
      transparent 0,
      transparent 72px,
      rgba(245,230,200,0.022) 72px,
      rgba(245,230,200,0.022) 96px,
      transparent 96px,
      transparent 200px);
  mix-blend-mode: screen;
  z-index: -2;
  opacity: 0;
  animation: godrays-fade 3000ms 600ms var(--ease-out) forwards;
  pointer-events: none;
}
@keyframes godrays-fade { to { opacity: 0.9; } }

/* Floating gold motes — like incense smoke catching light */
.hero-particles {
  position: absolute; inset: 0;
  z-index: -2;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  display: block;
  width: 3px; height: 3px;
  background: var(--c-amber-bri);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(226,178,72,0.7);
  opacity: 0;
  animation: mote-drift 16s linear infinite;
}
.hero-particles span:nth-child(1)  { left:  8%;  bottom: -10px; animation-delay:  0s;   width: 2px; height: 2px; }
.hero-particles span:nth-child(2)  { left: 18%;  bottom: -10px; animation-delay:  3s;   width: 4px; height: 4px; }
.hero-particles span:nth-child(3)  { left: 27%;  bottom: -10px; animation-delay:  6s;   }
.hero-particles span:nth-child(4)  { left: 36%;  bottom: -10px; animation-delay:  1.5s; width: 2px; height: 2px; }
.hero-particles span:nth-child(5)  { left: 45%;  bottom: -10px; animation-delay:  9s;   }
.hero-particles span:nth-child(6)  { left: 54%;  bottom: -10px; animation-delay:  4s;   width: 5px; height: 5px; }
.hero-particles span:nth-child(7)  { left: 63%;  bottom: -10px; animation-delay:  7.5s; }
.hero-particles span:nth-child(8)  { left: 72%;  bottom: -10px; animation-delay:  10s;  width: 2px; height: 2px; }
.hero-particles span:nth-child(9)  { left: 81%;  bottom: -10px; animation-delay:  2s;   }
.hero-particles span:nth-child(10) { left: 90%;  bottom: -10px; animation-delay:  5s;   width: 3px; height: 3px; }
.hero-particles span:nth-child(11) { left: 14%;  bottom: -10px; animation-delay:  11s;  }
.hero-particles span:nth-child(12) { left: 67%;  bottom: -10px; animation-delay:  13s;  }
@keyframes mote-drift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(40px); opacity: 0; }
}

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at center, rgba(0,0,0,0) 38%, rgba(0,0,0,0.78) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  max-width: 920px;
  position: relative;
}
.hero-content > * { animation: fade-up 1200ms var(--ease-out) both; }
.hero-anno         { animation-delay: 800ms; }
.hero-arms         { animation-delay: 1100ms; }
.wordmark          { animation-delay: 1500ms; }
.hero-motto        { animation-delay: 2000ms; }
.hero-flourish     { animation-delay: 2300ms; }
.tagline           { animation-delay: 2600ms; }
.hero-sub          { animation-delay: 3000ms; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-anno {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 28px;
  font-weight: 500;
}

/* ---------- Coat of arms ---------- */
.hero-arms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  margin-bottom: 26px;
}
.hero-cross {
  width: clamp(56px, 7vw, 84px);
  height: clamp(56px, 7vw, 84px);
  color: var(--c-amber);
  filter: drop-shadow(0 0 18px rgba(200,147,42,0.55));
  animation: cross-glow 4s ease-in-out infinite;
}
@keyframes cross-glow {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(200,147,42,0.45)); }
  50%      { filter: drop-shadow(0 0 26px rgba(226,178,72,0.7));  }
}
.hero-laurel {
  width: clamp(28px, 3vw, 44px);
  height: clamp(50px, 6vw, 76px);
  color: var(--c-amber);
  opacity: 0.7;
}
.hero-laurel-r { transform: scaleX(-1); }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--f-cinzel);
  font-weight: 600;
  font-size: clamp(44px, 10vw, 120px);
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
  color: var(--c-bone);
  text-shadow: 0 2px 28px rgba(0,0,0,0.7);
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
}
.wordmark-mid svg {
  width: clamp(10px, 1.4vw, 16px);
  height: clamp(10px, 1.4vw, 16px);
  color: var(--c-amber);
  display: inline-block;
}

.hero-motto {
  font-family: var(--f-cinzel);
  font-weight: 500;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 22px 0 0;
}

.tagline {
  font-family: var(--f-cinzel);
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--c-bone);
  margin: 0;
}

.hero-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--c-bone-dim);
  max-width: 640px;
  margin: 36px auto 0;
  line-height: 1.5;
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute;
  /* Auto-margin centering — translateX(-50%) was being clobbered by the
     fade-up keyframe (which only sets translateY) once the animation ended. */
  bottom: 36px; left: 0; right: 0;
  margin: 0 auto;
  width: max-content;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border: none;
  opacity: 0;
  animation: fade-up 1200ms 3500ms var(--ease-out) forwards;
}
.scroll-cue:hover, .scroll-cue:focus-visible { border: none; }
.scroll-cue-text {
  font-family: var(--f-cinzel);
  font-size: 10px;
  letter-spacing: 0.5em;
  /* Strip the trailing letter-spacing so flex centering uses only glyph width. */
  margin-right: -0.5em;
  color: var(--c-amber);
}
.scroll-cue-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent 0%, var(--c-amber) 50%, transparent 100%);
  animation: scroll-pulse 2400ms ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1;   }
}

/* =====================================================================
   INTROIT — Latin verse
   ===================================================================== */
.introit {
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,147,42,0.04), transparent 70%),
    var(--c-base);
  border-top: 1px solid rgba(200,147,42,0.08);
  border-bottom: 1px solid rgba(200,147,42,0.08);
}
.latin-verse {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.5;
  color: var(--c-bone);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.latin-cite {
  font-family: var(--f-cinzel);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 28px;
}
.latin-en {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--c-bone-mut);
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

/* =====================================================================
   MISSION — THE ALTAR
   ===================================================================== */
.mission {
  padding: clamp(96px, 14vw, 180px) 0;
  text-align: center;
  background: var(--c-base);
  position: relative;
}
.mission .display-h2 {
  font-style: normal;
  font-weight: 500;
  margin-bottom: 56px;
}
.mission-body {
  text-align: left;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--c-bone-dim);
  max-width: 640px;
  margin: 0 auto;
}
.mission-body p { margin: 0 0 22px; }
.mission-body p:last-child { margin-bottom: 0; }

/* Illuminated dropcap — gold gradient with subtle glow */
.dropcap {
  font-family: var(--f-cinzel);
  font-weight: 700;
  font-size: 4.4em;
  line-height: 0.86;
  float: left;
  margin: 0.06em 0.16em -0.04em 0;
  background: linear-gradient(135deg, var(--c-amber-bri) 0%, var(--c-amber) 50%, var(--c-amber-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(200,147,42,0.35));
  letter-spacing: -0.02em;
}

.closer {
  font-family: var(--f-cinzel);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 36px 0 0;
}

/* =====================================================================
   PILLARS WRAP
   ===================================================================== */
.pillars-wrap {
  background: linear-gradient(180deg, var(--c-base) 0%, var(--c-base-2) 100%);
  padding-top: clamp(96px, 14vw, 160px);
}
.pillars-banner {
  text-align: center;
  padding: 0 24px clamp(64px, 8vw, 96px);
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}
.pillars-banner .display-h2 {
  font-family: var(--f-cinzel);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pillars-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--c-bone-dim);
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(200,147,42,0.18);
  border-bottom: 1px solid rgba(200,147,42,0.18);
}
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
}

.pillar {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  padding: clamp(64px, 6vw, 88px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-right: 1px solid rgba(200,147,42,0.18);
  text-align: center;
}
.pillar:last-child { border-right: none; }
@media (max-width: 900px) {
  .pillar { border-right: none; border-bottom: 1px solid rgba(200,147,42,0.18); }
  .pillar:last-child { border-bottom: none; }
}

.pillar-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  filter: saturate(0.5) contrast(1.05) brightness(0.5);
  z-index: -3;
  transition: transform 1400ms var(--ease), filter 1400ms var(--ease);
}
.pillar-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,147,42,0.06), transparent 70%),
    linear-gradient(180deg,
      rgba(8,9,12,0.78) 0%,
      rgba(8,9,12,0.85) 60%,
      rgba(8,9,12,0.97) 100%);
  z-index: -2;
}
.pillar:hover .pillar-image {
  transform: scale(1.06);
  filter: saturate(0.66) contrast(1.1) brightness(0.58);
}

/* Gothic arch outline behind content */
.pillar-arch {
  position: absolute;
  top: 6%; left: 50%; transform: translateX(-50%);
  width: 78%;
  height: 88%;
  color: rgba(200,147,42,0.14);
  z-index: -1;
  pointer-events: none;
  transition: color 600ms var(--ease);
}
.pillar:hover .pillar-arch { color: rgba(200,147,42,0.28); }

.pillar-inner { position: relative; z-index: 1; }

.pillar-roman {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--c-amber-bri);
  letter-spacing: 0.05em;
  margin: 0 0 18px;
}
.pillar-cross {
  width: 38px; height: 38px;
  color: var(--c-amber);
  margin: 0 auto 22px;
  display: block;
  opacity: 0.85;
}
.pillar-title {
  font-family: var(--f-cinzel);
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 52px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--c-bone);
}
.pillar-latin {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--c-amber);
  letter-spacing: 0.04em;
  margin: 0 0 22px;
}
.pillar-body {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--c-bone-dim);
  max-width: 360px;
  margin: 0 auto;
}

/* =====================================================================
   LATEST — THE VIGIL
   ===================================================================== */
.latest {
  padding: clamp(96px, 14vw, 180px) 0;
  text-align: center;
  background: var(--c-base);
}
.latest .display-h2 {
  font-weight: 500;
  margin-bottom: 16px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.latest-h2-sub {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.55em;
  color: var(--c-amber);
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.latest-meta {
  font-family: var(--f-cinzel);
  font-size: 11px;
  color: var(--c-bone-mut);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin: 0 0 56px;
}

.video-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 18px;
  background: linear-gradient(180deg, #15171F 0%, #0E1015 100%);
  border: 1px solid var(--c-amber-fade);
  border-radius: 0;
  box-shadow:
    0 0 0 1px rgba(200,147,42,0.1),
    0 32px 88px rgba(0,0,0,0.6),
    inset 0 0 60px rgba(200,147,42,0.04);
}
.video-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.video-aspect iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Manuscript corner ornaments on video frame */
.corner {
  position: absolute;
  width: 36px; height: 36px;
  color: var(--c-amber);
  opacity: 0.85;
  pointer-events: none;
}
.corner svg { width: 100%; height: 100%; }
.corner-tl { top: -2px; left: -2px; }
.corner-tr { top: -2px; right: -2px; }
.corner-bl { bottom: -2px; left: -2px; }
.corner-br { bottom: -2px; right: -2px; }

.latest-caption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--c-bone-dim);
  max-width: 660px;
  margin: 48px auto 36px;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn-amber, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-cinzel);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1px solid var(--c-amber);
  text-decoration: none;
  border-radius: 0;
  transition: all 320ms var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-amber {
  background: var(--c-amber);
  color: var(--c-base);
  box-shadow: 0 0 0 1px transparent, 0 0 24px rgba(200,147,42,0.25);
}
.btn-amber:hover, .btn-amber:focus-visible {
  background: transparent;
  color: var(--c-amber-bri);
  border-color: var(--c-amber-bri);
  box-shadow: 0 0 0 1px var(--c-amber-bri), 0 0 32px rgba(226,178,72,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--c-bone);
  border-color: var(--c-amber);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--c-amber);
  color: var(--c-base);
}
.btn-arrow { transition: transform 320ms var(--ease); }
.btn-amber:hover .btn-arrow,
.btn-ghost:hover .btn-arrow { transform: translateX(6px); }

/* =====================================================================
   DISPATCH — THE BROTHERHOOD
   ===================================================================== */
.dispatch {
  position: relative;
  padding: clamp(120px, 16vw, 200px) 0;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(200,147,42,0.12);
  border-bottom: 1px solid rgba(200,147,42,0.12);
}
.dispatch-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.4) contrast(1.05) brightness(0.42);
  z-index: -3;
}
.dispatch-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(200,147,42,0.16), transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(110,27,31,0.35), transparent 70%),
    linear-gradient(180deg,
      rgba(8,9,12,0.95) 0%,
      rgba(8,9,12,0.78) 50%,
      rgba(8,9,12,0.97) 100%);
  z-index: -2;
}
.dispatch-content { position: relative; }
.dispatch-cross {
  width: 56px; height: 56px;
  color: var(--c-amber);
  margin: 24px auto 28px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(200,147,42,0.5));
  animation: cross-glow 4s ease-in-out infinite;
}
.dispatch-content .display-h2 {
  font-style: normal;
  font-weight: 500;
  margin-bottom: 32px;
}
.dispatch-body {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--c-bone-dim);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.dispatch-microcopy {
  font-family: var(--f-cinzel);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-bone-mut);
  margin: 28px 0 0;
}
/* Beehiiv inline subscribe embed — wrapped in a hard-clipped frame.
   Beehiiv's form has a natural row height of ~50px (button vertical
   padding + input). Wrapper at 50px universal: tall enough that the
   "Take Your Place" button isn't clipped, tight enough that there's
   no iframe white-bg bleeding below the form. overflow: hidden clips
   anything embed.js tries to render past the wrapper bounds. */
.beehiiv-embed-frame {
  display: block;
  position: relative;
  width: 400px;
  max-width: 100%;
  height: 50px;
  margin: 32px auto 0;
  overflow: hidden;
  background: transparent;
}
.beehiiv-embed {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  margin: 0 !important;
  border: 0;
  background: transparent !important;
}

/* Dispatch archive link below the inline subscribe form on the home page. */
.dispatch-archive-link {
  margin: 18px 0 0;
  text-align: center;
}
.dispatch-archive-link a {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-amber);
  border-bottom: 1px solid transparent;
}
.dispatch-archive-link a:hover, .dispatch-archive-link a:focus-visible {
  color: var(--c-amber-bri);
  border-bottom-color: var(--c-amber-bri);
}

/* =====================================================================
   CONNECT — THE WATCHTOWER
   ===================================================================== */
.connect {
  padding: clamp(96px, 14vw, 180px) 0;
  text-align: center;
  background: var(--c-base);
}
.connect h2 { margin-bottom: 56px; }

.social-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-amber-fade);
  border-bottom: 1px solid var(--c-amber-fade);
}
@media (max-width: 720px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }

.social-grid li { display: flex; }
.social-grid a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 12px;
  border: none;
  border-right: 1px solid rgba(200,147,42,0.12);
  color: var(--c-bone);
  transition: color 280ms var(--ease), background 280ms var(--ease);
  text-decoration: none;
}
.social-grid li:last-child a { border-right: none; }
@media (max-width: 720px) {
  .social-grid a { border-bottom: 1px solid rgba(200,147,42,0.12); }
  .social-grid li:nth-child(3n) a { border-right: none; }
  .social-grid li:nth-last-child(-n+3) a { border-bottom: none; }
}
.social-grid a:hover, .social-grid a:focus-visible {
  color: var(--c-amber-bri);
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,147,42,0.07), transparent 70%);
}

/* Niche — the recess where each icon sits */
.social-niche {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,147,42,0.18);
  margin-bottom: 14px;
  transition: border-color 280ms var(--ease), background 280ms var(--ease), transform 320ms var(--ease);
  position: relative;
}
.social-niche::before, .social-niche::after {
  content: "";
  position: absolute;
  width: 4px; height: 4px;
  background: var(--c-amber);
  opacity: 0.6;
}
.social-niche::before { top: -2px; left: -2px; }
.social-niche::after  { top: -2px; right: -2px; }
.social-grid a:hover .social-niche {
  border-color: var(--c-amber-bri);
  background: rgba(200,147,42,0.06);
  transform: translateY(-2px);
}
.social-niche svg {
  width: 24px; height: 24px;
  fill: currentColor;
}
.social-label {
  font-family: var(--f-cinzel);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.email-line {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--c-bone-mut);
  margin: 0;
}
.email-line a { font-style: normal; color: var(--c-bone); border-bottom: 1px solid var(--c-amber-fade); }

/* =====================================================================
   FOOTER — THE CODA
   ===================================================================== */
.footer {
  padding: clamp(80px, 12vw, 140px) 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(200,147,42,0.05), transparent 70%),
    #06070A;
  border-top: 1px solid rgba(200,147,42,0.1);
}
.footer-cross {
  width: 52px; height: 52px;
  color: var(--c-amber);
  margin: 0 auto 28px;
  display: block;
  opacity: 0.92;
  filter: drop-shadow(0 0 14px rgba(200,147,42,0.4));
}
.footer-prayer-title {
  font-family: var(--f-cinzel);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 22px;
}
.footer-prayer {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--c-bone);
  line-height: 1.7;
  margin: 0 0 18px;
}
.footer-prayer-translation {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--c-bone-mut);
  line-height: 1.6;
  margin: 0 0 32px;
  font-style: italic;
}
.footer-flourish { color: var(--c-amber); margin: 28px auto 36px; opacity: 0.7; }

.footer-mark {
  font-family: var(--f-cinzel);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: 0.1em;
  color: var(--c-bone);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-mid svg {
  width: 10px; height: 10px;
  color: var(--c-amber);
}
.footer-tagline {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 32px;
}
.footer-meta {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-bone-mut);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.85;
}
.footer-meta a { color: var(--c-bone-mut); border-bottom-color: rgba(200,147,42,0.2); }

/* =====================================================================
   Narrow-mobile (≤ 480px) — keep hero type from overflowing the viewport
   ===================================================================== */
@media (max-width: 480px) {
  .hero { padding: 60px 16px; }

  .hero-anno {
    font-size: 10px;
    letter-spacing: 0.34em;
  }

  .wordmark {
    font-size: 38px;
    letter-spacing: 0.04em;
    gap: 12px;
  }
  .wordmark-mid svg {
    width: 9px;
    height: 9px;
  }

  .hero-motto {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .tagline {
    font-size: 17px;
    letter-spacing: 0.2em;
  }

  .hero-sub {
    font-size: 16px;
    margin-top: 28px;
  }

  .hero-flourish {
    width: 160px;
  }

  /* tighten section type so the same overflow risk doesn't repeat */
  .pillars-banner .display-h2 {
    font-size: 24px;
    letter-spacing: 0.16em;
  }
  .pillar-title {
    font-size: 32px;
    letter-spacing: 0.1em;
  }
  .footer-mark {
    font-size: 22px;
    letter-spacing: 0.08em;
  }
  .footer-tagline {
    font-size: 10px;
    letter-spacing: 0.3em;
  }
}

/* =====================================================================
   Scroll-triggered fade-ins
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1100ms var(--ease-out), transform 1100ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-content > * { animation: none !important; }
  .hero-bg { animation: none; }
  .hero-godrays { opacity: 0.5; animation: none; }
  .hero-particles { display: none; }
  .scroll-cue { opacity: 1; animation: none; }
  .cross-glow { animation: none; }
  .stained-pulse { animation: none; }
}

/* =====================================================================
   DISPATCH ARCHIVE — listing + individual posts
   ===================================================================== */

/* ---------- Dispatch nav (replaces full hero on dispatch pages) ---------- */
.dispatch-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(8, 9, 12, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-amber-fade);
}
.dispatch-nav-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-cinzel);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--c-amber);
  border: none;
}
.dispatch-nav-mark:hover, .dispatch-nav-mark:focus-visible {
  color: var(--c-amber-bri);
  border: none;
}
.dispatch-nav-1765, .dispatch-nav-sanctum { display: inline-block; }
.dispatch-nav-mid {
  display: inline-flex;
  width: 8px;
  height: 8px;
  color: var(--c-amber);
}
.dispatch-nav-mid svg { width: 100%; height: 100%; }
.dispatch-nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.dispatch-nav-links a {
  color: var(--c-bone-dim);
  border: none;
  transition: color 200ms var(--ease-out);
}
.dispatch-nav-links a:hover, .dispatch-nav-links a:focus-visible {
  color: var(--c-amber-bri);
  border: none;
}

/* ---------- Hamburger toggle (hidden on desktop, visible on mobile) ---------- */
.dispatch-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.dispatch-nav-toggle:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 2px;
  border-radius: 4px;
}
.hamburger-stack {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-amber);
  transform-origin: center;
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out), background 200ms var(--ease-out);
}
.dispatch-nav-toggle:hover .hamburger-bar { background: var(--c-amber-bri); }
.dispatch-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.dispatch-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.dispatch-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Dispatch hero (article header) ---------- */
.dispatch-hero {
  padding: clamp(64px, 9vw, 112px) 0 clamp(40px, 5vw, 56px);
  text-align: center;
  border-bottom: 1px solid rgba(200, 147, 42, 0.08);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200, 147, 42, 0.05), transparent 70%),
    var(--c-base);
}
.dispatch-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--c-bone);
  margin: 16px 0 18px;
}
.dispatch-subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  color: var(--c-amber-bri);
  max-width: 620px;
  margin: 0 auto 30px;
}
.dispatch-meta {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-bone-mut);
  margin: 0 0 24px;
}
.dispatch-meta time { color: var(--c-bone-dim); }

/* ---------- Dispatch hero figure — sacred art at top of body ---------- */
.dispatch-hero-figure {
  margin: clamp(24px, 4vw, 48px) auto clamp(16px, 3vw, 32px);
  padding: 0;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.4);
  border: 1px solid #1d1a14;
  max-width: 720px;
}
.dispatch-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.dispatch-hero-figure figcaption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.5;
  color: var(--c-bone-mut);
  text-align: center;
  padding: 14px 20px 4px;
  margin: 0;
}

/* ---------- Dispatch body — manuscript prose ---------- */
.dispatch-body {
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 6vw, 80px);
  font-family: var(--f-body);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.8;
  color: var(--c-bone);
}
.dispatch-body p {
  margin: 0 0 26px;
}
.dispatch-greeting {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 26px);
  color: var(--c-amber-bri);
  margin-bottom: 24px;
}
.dispatch-body em { color: var(--c-bone); font-style: italic; }
.dispatch-body strong { color: var(--c-bone); font-weight: 600; }
.dispatch-body a {
  color: var(--c-amber);
  border-bottom: 1px solid var(--c-amber-fade);
}
.dispatch-body a:hover, .dispatch-body a:focus-visible {
  color: var(--c-amber-bri);
  border-bottom-color: var(--c-amber-bri);
}
/* Buttons inside the dispatch body keep their button styling — opt out of
   the inline-link color/underline that would otherwise blend the amber
   button text into its amber background. */
.dispatch-body a.btn-amber,
.dispatch-body a.btn-ghost {
  color: var(--c-base);
  border-bottom: none;
}
.dispatch-body a.btn-ghost { color: var(--c-bone); }
.dispatch-body a.btn-amber:hover,
.dispatch-body a.btn-amber:focus-visible {
  color: var(--c-amber-bri);
  border-bottom: none;
}
.dispatch-body a.btn-ghost:hover,
.dispatch-body a.btn-ghost:focus-visible {
  color: var(--c-base);
  border-bottom: none;
}

.dispatch-h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  color: var(--c-amber-bri);
  margin: 56px 0 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 147, 42, 0.18);
}
.dispatch-h2-meta {
  font-family: var(--f-cinzel);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-bone-mut);
  vertical-align: middle;
  margin-left: 8px;
}

.dispatch-pullquote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--c-amber-bri);
  text-align: center;
  margin: 36px auto;
  max-width: 600px;
  padding: 0 16px;
}

.dispatch-intentions {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.dispatch-intentions li {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--c-bone-dim);
  margin: 0 0 14px;
  padding-left: 24px;
  position: relative;
}
.dispatch-intentions li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--c-amber);
}

/* CTA block (e.g., the EP01 promo) */
.dispatch-cta-block {
  margin: 56px 0 40px;
  padding: 32px clamp(20px, 4vw, 40px);
  background: var(--c-base-3);
  border: 1px solid var(--c-amber-fade);
  text-align: center;
}
.dispatch-cta-eyebrow {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 12px;
}
.dispatch-cta-headline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--c-bone);
  margin: 0 0 16px;
}
.dispatch-cta-body {
  font-family: var(--f-body);
  color: var(--c-bone-dim);
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.6;
}

.dispatch-rhythm {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-bone-mut);
  text-align: center;
  margin: 36px 0 40px;
}

.dispatch-closer {
  font-family: var(--f-cinzel);
  font-weight: 500;
  font-size: clamp(13px, 1.2vw, 14px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-amber);
  text-align: center;
  margin: 32px 0 24px;
}
.dispatch-signature {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-bone);
  text-align: center;
  margin: 0 0 28px;
}
.dispatch-signature em { color: var(--c-bone-dim); }
.dispatch-signature-title {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-bone-mut);
}
.dispatch-ps {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--c-bone-dim);
  text-align: center;
  border-top: 1px solid rgba(200, 147, 42, 0.18);
  padding-top: 28px;
  margin-top: 32px;
}

/* ---------- Dispatch subscribe CTA (after article body) ---------- */
.dispatch-subscribe-cta {
  text-align: center;
  padding: clamp(80px, 10vw, 120px) 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 147, 42, 0.06), transparent 70%),
    var(--c-base);
  border-top: 1px solid rgba(200, 147, 42, 0.12);
}
.dispatch-subscribe-cross {
  width: 48px;
  height: 48px;
  color: var(--c-amber);
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(200, 147, 42, 0.4));
}
.dispatch-subscribe-body {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--c-bone-dim);
  margin: 0 0 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.dispatch-microcopy {
  font-family: var(--f-cinzel);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-bone-mut);
  margin: 28px 0 0;
}

/* Center the Beehiiv subscribe iframe within the dispatch CTA section.
   Default .beehiiv-embed is 100% width (which left-aligns the 400px
   form rendered inside the iframe); in the dispatch CTA we want a
   fixed 400px frame, centered. */
.dispatch-subscribe-cta .beehiiv-embed {
  width: 400px !important;
  max-width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ---------- Dispatch listing page ---------- */
.dispatch-list-hero {
  padding: clamp(80px, 12vw, 144px) 0 clamp(56px, 7vw, 88px);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 147, 42, 0.07), transparent 70%),
    var(--c-base);
  border-bottom: 1px solid rgba(200, 147, 42, 0.12);
}
.dispatch-list-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  color: var(--c-bone);
  margin: 16px 0 18px;
}
.dispatch-list-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--c-amber-bri);
  max-width: 640px;
  margin: 0 auto 18px;
}
.dispatch-list-body {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--c-bone-dim);
  max-width: 640px;
  margin: 0 auto 32px;
}

.dispatch-list-section {
  padding: clamp(56px, 7vw, 96px) 0;
}
.dispatch-list-eyebrow {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-amber);
  text-align: center;
  margin: 0 0 40px;
}

.dispatch-cards {
  display: grid;
  gap: clamp(28px, 3vw, 40px);
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}
.dispatch-card {
  display: block;
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--c-base-3);
  border: 1px solid rgba(200, 147, 42, 0.18);
  text-decoration: none;
  color: var(--c-bone);
  border-bottom: 1px solid rgba(200, 147, 42, 0.18);
  transition: border-color 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.dispatch-card:hover, .dispatch-card:focus-visible {
  border-color: var(--c-amber);
  transform: translateY(-2px);
  color: var(--c-bone);
}
.dispatch-card-meta {
  font-family: var(--f-cinzel);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 14px;
}
.dispatch-card-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2;
  color: var(--c-bone);
  margin: 0 0 14px;
}
.dispatch-card-excerpt {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--c-bone-dim);
  margin: 0 0 20px;
}
.dispatch-card-readmore {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dispatch-card:hover .dispatch-card-readmore { color: var(--c-amber-bri); }

/* ---------- Mobile tweaks ---------- */
@media (max-width: 600px) {
  .dispatch-nav {
    padding: 14px 18px;
    gap: 14px;
  }
  .dispatch-nav-mark {
    font-size: 12px;
    letter-spacing: 0.14em;
    flex-shrink: 0;
  }
  /* Show hamburger on mobile */
  .dispatch-nav-toggle { display: flex; }

  /* Nav-links transforms into a slide-down dropdown drawer.
     Closed by default: pushed up + faded out + non-interactive.
     We use ONLY opacity + transform + pointer-events (no `visibility`)
     because cross-browser `visibility` transitions are flaky and were
     observed to override !important on Chromium during testing. */
  .dispatch-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: rgba(8, 9, 12, 0.96);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--c-amber-fade);
    /* Closed state — no CSS transition, JS handles inline styles */
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }
  .dispatch-nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 13px;
    letter-spacing: 0.20em;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
  }
  .dispatch-nav-links a:last-child { border-bottom: none; }

  /* Open state — toggled by JS adding .is-open to .dispatch-nav.
     !important is required here. Without it, transform/opacity get stuck
     at the initial-state values despite higher selector specificity —
     observed during testing on Chromium-based renderers. */
  .dispatch-nav.is-open .dispatch-nav-links {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .dispatch-cta-block { padding: 24px 18px; }
}


/* ════════════════════════════════════════════════════════════════════════
   BRAND AUDIT v2 — 2026-05-16 — Tools Shelf + full-bleed pillars
   ════════════════════════════════════════════════════════════════════════
   Replaces 4-callout stack with 3 distinct treatments + promotes pillars
   from 3-column grid to full-bleed vertical. Per audit prescription:
   - Manifesto = full-bleed parchment-light break (visual rest)
   - Rule of Life = product card with cover image at scale
   - Examination + Doctrinal Foundations = paired minimal
   - Pillars = full-bleed vertical, masterworks at scale, one Latin per
*/

/* shared shelf tokens */
.shelf-eyebrow {
  font-family: var(--f-cinzel);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--c-bone-dim);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.shelf-h {
  font-family: var(--f-cinzel);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--c-bone);
  margin: 0 0 18px;
}
.shelf-h em {
  font-style: italic;
  color: var(--c-amber);
  font-weight: 500;
}
.shelf-body {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--c-bone-dim);
  margin: 0 0 28px;
  max-width: 38rem;
}
.shelf-body--compact { font-size: 1.06rem; margin-bottom: 22px; }
.shelf-body strong {
  font-style: normal;
  color: var(--c-bone);
}
.shelf-cta,
.shelf-manifesto-cta {
  display: inline-block;
  font-family: var(--f-cinzel);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  padding: 14px 28px;
  background: transparent;
  color: var(--c-amber);
  border: 1px solid var(--c-amber);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.shelf-cta:hover,
.shelf-manifesto-cta:hover {
  background: var(--c-amber);
  color: var(--c-base);
}

/* MANIFESTO BREAK — parchment-light visual rest. */
/* Audit prescription: a moment where the eye is allowed to breathe — */
/* a light-bone panel that breaks the uniformly-dark rhythm. */
.shelf-manifesto {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245,230,200,1) 0%, rgba(232,218,188,1) 70%, rgba(220,206,176,1) 100%);
  padding: clamp(96px, 14vw, 160px) 24px;
  position: relative;
  border-top: 1px solid rgba(184, 134, 11, 0.28);
  border-bottom: 1px solid rgba(184, 134, 11, 0.28);
}
.shelf-manifesto::before,
.shelf-manifesto::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: rgba(110, 27, 31, 0.32);
}
.shelf-manifesto::before { top: 32px; }
.shelf-manifesto::after  { bottom: 32px; }
.shelf-manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.shelf-manifesto-latin {
  font-family: var(--f-cinzel);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: #8b6f1f;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.shelf-manifesto-h {
  font-family: var(--f-cinzel);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #0c0a07;
  margin: 0 0 22px;
}
.shelf-manifesto-h em {
  font-style: italic;
  color: #6e1b1f;
  font-weight: 500;
}
.shelf-manifesto-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  line-height: 1.5;
  color: #3a2f1a;
  max-width: 36rem;
  margin: 0 auto 38px;
}
.shelf-manifesto-cta {
  color: #6e1b1f;
  border-color: #6e1b1f;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  padding: 16px 32px;
}
.shelf-manifesto-cta:hover {
  background: #6e1b1f;
  color: #f5e6c8;
}

/* RULE OF LIFE — product card with cover at scale */
.shelf-rule-of-life {
  background: var(--c-base);
  padding: clamp(80px, 10vw, 128px) 24px;
}
.shelf-rol-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 760px) {
  .shelf-rol-inner { grid-template-columns: 1fr; gap: 32px; }
}
.shelf-rol-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(200, 147, 42, 0.28);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.55),
    0 0 0 1px rgba(200,147,42,0.08) inset;
  filter: saturate(0.78) contrast(1.04) brightness(0.92);
}
.shelf-rol-copy {
  padding: 0;
}

/* PAIRED MINIMAL — Examination + Doctrinal Foundations */
.shelf-pair {
  background: var(--c-base-2);
  padding: clamp(80px, 10vw, 128px) 24px;
  border-top: 1px solid rgba(200, 147, 42, 0.12);
}
.shelf-pair-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
}
@media (max-width: 760px) {
  .shelf-pair-inner { grid-template-columns: 1fr; gap: 56px; }
}
.shelf-min {
  border-left: 1px solid rgba(200, 147, 42, 0.20);
  padding-left: clamp(24px, 3vw, 36px);
}
.shelf-min .shelf-h {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
}
.shelf-doctrinal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.shelf-doctrinal-link {
  font-family: var(--f-cinzel);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--c-amber-bri);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 147, 42, 0.20);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.shelf-doctrinal-link:hover {
  color: var(--c-bone);
  border-bottom-color: var(--c-amber);
}
.shelf-doctrinal-link:last-child { border-bottom: none; }

/* FULL-BLEED VERTICAL PILLARS */
/* Replaces 3-column horizontal grid. Each pillar = ~84vh, masterwork at */
/* near-full-screen scale, single Latin motto + 1 line of body. */
/* Audit: the thesis becomes the spine. */
.pillars-vertical {
  display: block;
  border-top: 1px solid rgba(200,147,42,0.18);
  border-bottom: 1px solid rgba(200,147,42,0.18);
}
.pillar-fb {
  position: relative;
  isolation: isolate;
  min-height: 84vh;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  text-align: left;
  border-bottom: 1px solid rgba(200,147,42,0.18);
}
.pillar-fb:last-child { border-bottom: none; }
@media (max-width: 760px) {
  .pillar-fb { min-height: 78vh; padding: 80px 24px; }
}
.pillar-fb-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  filter: saturate(0.6) contrast(1.07) brightness(0.64);
  z-index: -3;
  transform: scale(1.06);
  /* slow continuous Ken Burns pan; hover lifts the light (filter), the motion owns the transform */
  animation: pillar-pan 34s ease-in-out infinite alternate;
  transition: filter 1200ms var(--ease);
  will-change: transform;
}
.pillar-fb--arms .pillar-fb-image { animation-direction: alternate-reverse; }
.pillar-fb:hover .pillar-fb-image {
  filter: saturate(0.82) contrast(1.12) brightness(0.76);
}
@keyframes pillar-pan {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(1.8%, -1.4%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: hero-bg-in 1ms 0ms forwards; transform: scale(1.06); opacity: 1; }
  .pillar-fb-image { animation: none; transform: scale(1.04); }
}
.pillar-fb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,9,12,0.32) 0%,
    rgba(8,9,12,0.18) 38%,
    rgba(8,9,12,0.55) 76%,
    rgba(8,9,12,0.88) 100%);
  z-index: -2;
}
.pillar-fb-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.pillar-fb-roman {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 2.8vw, 36px);
  color: var(--c-amber-bri);
  letter-spacing: 0.05em;
  margin: 0 0 18px;
}
.pillar-fb-title {
  font-family: var(--f-cinzel);
  font-weight: 700;
  font-size: clamp(62px, 9vw, 128px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 18px;
  color: var(--c-bone);
}
.pillar-fb-latin {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--c-amber);
  letter-spacing: 0.06em;
  margin: 0 0 22px;
}
.pillar-fb-line {
  font-family: var(--f-eb);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--c-bone-dim);
  max-width: 36rem;
  margin: 0;
}
/* Per-pillar image anchor — Caravaggio Madonna, Reni St. Michael, 1776 flag */
.pillar-fb--altar      .pillar-fb-image { background-position: center 22%; }
.pillar-fb--arms       .pillar-fb-image { background-position: center 18%; }
.pillar-fb--allegiance .pillar-fb-image { background-position: center 35%; }

/* ════════════════════════════════════════════════════════════════════════
   BROTHERHOOD CALLOUT on /tools/ — single callout, not a duplicate tool grid
   ════════════════════════════════════════════════════════════════════════
   The 4 paid-tier tools now live on /brotherhood-pass/. The tools page
   keeps a clean, weighted callout that points there instead of duplicating.
*/
.brotherhood-callout {
  margin: 56px auto 24px;
  padding: clamp(48px, 6vw, 72px) clamp(28px, 4vw, 56px);
  max-width: 880px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,147,42,0.06), transparent 70%),
    linear-gradient(180deg, #0e0f14 0%, #0a0b0f 100%);
  border: 1px solid rgba(201, 169, 106, 0.36);
  position: relative;
  text-align: center;
}
.brotherhood-callout::before,
.brotherhood-callout::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 1px;
  background: rgba(201, 169, 106, 0.42);
}
.brotherhood-callout::before { top: 22px; }
.brotherhood-callout::after  { bottom: 22px; }
.brotherhood-callout-inner {
  max-width: 640px;
  margin: 0 auto;
}
.brotherhood-callout-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #9a8d6f;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.brotherhood-callout-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  line-height: 1.16;
  letter-spacing: 0.02em;
  color: #e8e2d3;
  margin: 0 0 22px;
}
.brotherhood-callout-title em {
  font-style: italic;
  color: #c9a96a;
  font-weight: 500;
}
.brotherhood-callout-body {
  font-family: 'EB Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #cfc6b0;
  margin: 0 0 28px;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.brotherhood-callout-body strong {
  color: #e8e2d3;
  font-weight: 600;
}
.brotherhood-callout-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 0 0 22px;
}
.brotherhood-callout-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  padding: 15px 28px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #c9a96a;
  transition: background 0.18s ease, color 0.18s ease;
  min-width: 220px;
}
.brotherhood-callout-cta--primary {
  background: #c9a96a;
  color: #0a0b0f;
}
.brotherhood-callout-cta--primary:hover {
  background: transparent;
  color: #c9a96a;
}
.brotherhood-callout-cta--ghost {
  background: transparent;
  color: #c9a96a;
}
.brotherhood-callout-cta--ghost:hover {
  background: #c9a96a;
  color: #0a0b0f;
}
.brotherhood-callout-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.98rem;
  color: #9a8d6f;
  margin: 0;
}

/* Sign In nav link — visually distinct from other nav items (added 2026-05-18) */
.dispatch-nav-links a.nav-signin-link {
  color: #FFD400;
  border: 1px solid rgba(255, 212, 0, 0.45);
  padding: 4px 12px;
  border-radius: 3px;
  margin-left: 6px;
  letter-spacing: 0.14em;
  transition: background 180ms ease, color 180ms ease;
}
.dispatch-nav-links a.nav-signin-link:hover,
.dispatch-nav-links a.nav-signin-link:focus-visible {
  background: #FFD400;
  color: #08090C;
}
.nav-links a.nav-signin-link {
  color: #FFD400 !important;
  border: 1px solid rgba(255, 212, 0, 0.45);
  padding: 4px 12px;
  border-radius: 3px;
  margin-left: 6px;
}
.nav-links a.nav-signin-link:hover {
  background: #FFD400;
  color: #08090C !important;
}
/* Signed-in state (set by sanctum-motion via data-signed-in) — the member
   indicator: filled gold, near-black ink. Declared HERE so presentation lives
   in the stylesheet, not in JS inline-style battles (2026-06-11). */
.dispatch-nav-links a.nav-signin-link[data-signed-in="1"],
.nav-links a.nav-signin-link[data-signed-in="1"],
a.nav-signin-link[data-signed-in="1"] {
  background: #FFD400 !important;
  color: #08090C !important;
  border-color: #FFD400 !important;
  font-weight: 600;
}

/* =====================================================================
   TENEBRAE ELEVATION — sitewide design-system lift (v14, 2026-06-09)
   Additive: nothing above is removed; cascade overrides only.
   ===================================================================== */
:root {
  --ease-cine: cubic-bezier(0.65, 0, 0.18, 1);
  --c-ink: #060708;
  --seam: linear-gradient(90deg,
      transparent 0%,
      rgba(200,147,42,0.05) 18%,
      rgba(226,178,72,0.85) 50%,
      rgba(200,147,42,0.05) 82%,
      transparent 100%);
}

/* ---------- Gold light-seam divider ---------- */
.seam {
  position: relative; height: 1px; border: 0; margin: 0;
  background: var(--seam); opacity: 0.9;
}
.seam::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px;
  transform: translate(-50%,-50%) rotate(45deg);
  background: var(--c-amber-bri);
  box-shadow: 0 0 18px 4px rgba(226,178,72,0.55);
}

/* ---------- Nav: condensing + animated link underline ---------- */
.dispatch-nav {
  transition: padding 420ms var(--ease), background 420ms var(--ease),
              border-color 420ms var(--ease), box-shadow 420ms var(--ease);
}
.dispatch-nav.is-condensed {
  padding-top: 12px; padding-bottom: 12px;
  background: rgba(8,9,12,0.88);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: rgba(200,147,42,0.3);
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.9);
}
.dispatch-nav-links a { position: relative; padding-bottom: 4px; }
.dispatch-nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--c-amber-bri);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.dispatch-nav-links a:hover::after, .dispatch-nav-links a:focus-visible::after { transform: scaleX(1); }
.dispatch-nav-links a.nav-signin-link::after { display: none; }

/* ---------- Buttons: gold sheen + lift (upgrades .btn-amber, adds .btn-gold) ---------- */
.btn-gold, .btn-amber {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-cinzel);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-base);
  background: linear-gradient(135deg, var(--c-amber-bri) 0%, var(--c-amber) 60%, var(--c-amber-dim) 100%);
  padding: 16px 38px;
  border: 1px solid var(--c-amber-bri);
  border-radius: 2px;
  position: relative; overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(200,147,42,0.5), 0 0 0 1px rgba(226,178,72,0.2);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.btn-gold::before, .btn-amber::before {
  content: "";
  position: absolute; top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg);
  transition: left 720ms var(--ease-out);
}
.btn-gold:hover, .btn-gold:focus-visible, .btn-amber:hover, .btn-amber:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -10px rgba(200,147,42,0.7), 0 0 0 1px rgba(226,178,72,0.4);
  color: var(--c-base); border-color: var(--c-amber-bri);
}
.btn-gold:hover::before, .btn-gold:focus-visible::before,
.btn-amber:hover::before, .btn-amber:focus-visible::before { left: 130%; }
.btn-gold .btn-arrow, .btn-amber .btn-arrow { transition: transform 320ms var(--ease); }
.btn-gold:hover .btn-arrow, .btn-amber:hover .btn-arrow { transform: translateX(5px); }

/* ---------- Reveal variants ---------- */
.reveal-scale { opacity: 0; transform: scale(1.06); transition: opacity 1100ms var(--ease-out), transform 1400ms var(--ease-cine); will-change: opacity, transform; }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }
.reveal-clip { opacity: 0; clip-path: inset(0 0 100% 0); transition: opacity 900ms var(--ease-out), clip-path 1200ms var(--ease-cine); }
.reveal-clip.is-visible { opacity: 1; clip-path: inset(0 0 0 0); }
.reveal-d1 { transition-delay: 110ms; }
.reveal-d2 { transition-delay: 220ms; }
.reveal-d3 { transition-delay: 330ms; }

/* ---------- Scroll wick (progress) ---------- */
.scroll-wick { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; pointer-events: none; }
.scroll-wick-fill {
  height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--c-amber-dim), var(--c-amber) 70%, var(--c-amber-bri));
  transform-origin: left center; transform: scaleX(0);
  box-shadow: 0 0 12px rgba(226,178,72,0.55);
}
.scroll-wick-flame {
  position: absolute; top: -2px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-amber-bri);
  box-shadow: 0 0 14px 4px rgba(226,178,72,0.65);
  transform: translateX(-3px); opacity: 0;
}
.scroll-wick.is-lit .scroll-wick-flame { opacity: 1; }

/* ---------- Cursor candlelight (fine pointers only) ---------- */
.candlelight {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0; transition: opacity 1200ms var(--ease);
  background: radial-gradient(560px circle at var(--cx, 50%) var(--cy, 40%),
    rgba(226,178,72,0.075), rgba(200,147,42,0.03) 38%, transparent 62%);
  mix-blend-mode: screen; will-change: background;
}
.candlelight.is-awake { opacity: 1; }
@media (pointer: coarse), (prefers-reduced-motion: reduce) { .candlelight { display: none; } }

/* ---------- Cinematic film grain (static) ---------- */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
main, .dispatch-nav, footer, .footer { position: relative; z-index: 3; }

/* ---------- MPA view transitions ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-fade-out 260ms var(--ease) both; }
::view-transition-new(root) { animation: vt-fade-in 420ms 80ms var(--ease-out) both; }
@keyframes vt-fade-out { to { opacity: 0; } }
@keyframes vt-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Fine details ---------- */
::selection { background: rgba(200,147,42,0.32); color: var(--c-bone); }
html { scrollbar-width: thin; scrollbar-color: rgba(200,147,42,0.45) #060708; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #060708; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--c-amber-dim), var(--c-amber));
  border-radius: 5px; border: 2px solid #060708;
}
h1, h2, h3 { text-wrap: balance; }

/* ---------- Reduced motion: fail-open for the new layer ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal-scale, .reveal-clip { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
  .btn-gold::before, .btn-amber::before { display: none; }
}
