/* =====================================================================
   1765 SANCTUM — TENEBRAE · Cinematic Cathedral
   A descent through holy darkness toward light.
   Self-contained award-tier redesign. Vanilla CSS, GPU transforms only.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-base:      #08090C;
  --c-base-2:    #0A0B0F;
  --c-base-3:    #101218;
  --c-ink:       #060708;        /* deepest section floor */
  --c-bone:      #F5E6C8;
  --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;
  --c-blue:      #143049;

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

  --maxw:        1240px;
  --maxw-narrow: 760px;

  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cine:   cubic-bezier(0.65, 0, 0.18, 1);

  --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%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--c-base);
  color: var(--c-bone);
  font-family: var(--f-body);
  font-size: 19px;
  line-height: 1.74;
  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; z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

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

/* ---------- Glowing gold light-seam (the divider motif) ---------- */
.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);
}

/* =====================================================================
   TYPE PRIMITIVES
   ===================================================================== */
.eyebrow {
  font-family: var(--f-cinzel);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 30px;
  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: 15px;
  letter-spacing: 0.05em;
  color: var(--c-amber-bri);
  text-transform: none;
}

.display-h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-bone);
  margin: 0 0 36px;
  text-wrap: balance;
}
.display-h2 em { font-style: italic; color: var(--c-amber-bri); font-weight: 400; }

/* =====================================================================
   NAV — sticky, condensing
   ===================================================================== */
.dispatch-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(8,9,12,0.7) 0%, rgba(8,9,12,0) 100%);
  border-bottom: 1px solid transparent;
  transition: padding 420ms var(--ease), background 420ms var(--ease), border-color 420ms var(--ease), backdrop-filter 420ms var(--ease);
}
.dispatch-nav.is-condensed {
  padding: 13px clamp(22px, 5vw, 56px);
  background: rgba(8,9,12,0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: rgba(200,147,42,0.28);
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.9);
}
.dispatch-nav-mark {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--f-cinzel);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--c-bone);
  border: none;
}
.dispatch-nav-mark:hover, .dispatch-nav-mark:focus-visible { color: var(--c-amber-bri); border: none; }
.dispatch-nav-1765 { color: var(--c-amber); }
.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;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.dispatch-nav-links a {
  position: relative;
  color: var(--c-bone-dim);
  border: none;
  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, .dispatch-nav-links a:focus-visible { color: var(--c-amber-bri); border: none; }
.dispatch-nav-links a:hover::after, .dispatch-nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-signin-link {
  border: 1px solid var(--c-amber-fade) !important;
  padding: 7px 16px !important;
  color: var(--c-amber) !important;
  border-radius: 2px;
}
.nav-signin-link::after { display: none; }
.nav-signin-link:hover, .nav-signin-link:focus-visible {
  background: var(--c-amber); color: var(--c-base) !important; border-color: var(--c-amber) !important;
}

/* Hamburger */
.dispatch-nav-toggle {
  display: none;
  background: transparent; border: none; padding: 0; cursor: pointer;
  width: 40px; height: 40px; 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: 6px; width: 24px; }
.hamburger-bar {
  display: block; width: 24px; height: 2px; background: var(--c-amber);
  transform-origin: center;
  transition: transform 240ms var(--ease-out), opacity 240ms 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(8px) 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(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .dispatch-nav-toggle { display: inline-flex; }
  .dispatch-nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; height: 100svh;
    width: min(86vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 80px 40px;
    background: rgba(6,7,8,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid rgba(200,147,42,0.3);
    transform: translateX(100%);
    transition: transform 480ms var(--ease-cine);
    font-size: 13px;
  }
  .dispatch-nav-links.is-open { transform: translateX(0); }
}

/* =====================================================================
   HERO — THE THRESHOLD · multi-layer parallax descent
   ===================================================================== */
.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: 120px 24px 90px;
}

/* Layer 1 — background battle (slowest parallax + slow Ken Burns) */
.hero-bg {
  position: absolute; inset: -8% -4%;
  background: url("/assets/hero-lepanto.jpg") center 30% / cover no-repeat;
  filter: saturate(0.6) contrast(1.12) brightness(0.62);
  z-index: -6;
  transform: scale(1.08) translate3d(0,0,0);
  will-change: transform;
  animation: hero-bg-in 2400ms 120ms var(--ease-out) both;
}
@keyframes hero-bg-in { from { opacity: 0; transform: scale(1.16); } to { opacity: 1; transform: scale(1.08); } }
@media (prefers-reduced-motion: no-preference) {
  .hero-bg { animation: hero-bg-in 2400ms 120ms var(--ease-out) both, hero-kenburns 42s 2400ms ease-in-out infinite alternate; }
}
@keyframes hero-kenburns {
  from { transform: scale(1.08) translate3d(0,0,0); }
  to   { transform: scale(1.2) translate3d(-2.4%,-2%,0); }
}

/* Layer 2 — stained-glass color wash */
.hero-stained {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 46%, rgba(200,147,42,0.2), transparent 60%),
    radial-gradient(ellipse 52% 80% at 2% 26%, rgba(20,48,73,0.55), transparent 62%),
    radial-gradient(ellipse 52% 80% at 98% 74%, rgba(110,27,31,0.5), transparent 62%);
  mix-blend-mode: screen;
  z-index: -5; pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-stained { animation: stained-pulse 11s ease-in-out infinite; }
}
@keyframes stained-pulse { 0%,100% { opacity: 0.82; } 50% { opacity: 1; } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,9,12,0.78) 0%,
    rgba(8,9,12,0.42) 36%,
    rgba(8,9,12,0.6) 72%,
    rgba(8,9,12,0.96) 100%);
  z-index: -4;
}

/* Layer 3 — volumetric godrays (mid parallax) */
.hero-godrays {
  position: absolute; inset: -20% -10%;
  background:
    conic-gradient(from 210deg at 50% -10%,
      transparent 0deg,
      rgba(245,230,200,0.06) 6deg,
      transparent 12deg,
      transparent 18deg,
      rgba(245,230,200,0.04) 24deg,
      transparent 30deg);
  mix-blend-mode: screen;
  z-index: -3; opacity: 0; pointer-events: none;
  will-change: transform, opacity;
  animation: godrays-fade 3200ms 700ms var(--ease-out) forwards;
}
@keyframes godrays-fade { to { opacity: 0.85; } }
@media (prefers-reduced-motion: no-preference) {
  .hero-godrays { animation: godrays-fade 3200ms 700ms var(--ease-out) forwards, godrays-sweep 16s 3000ms ease-in-out infinite alternate; }
}
@keyframes godrays-sweep { from { transform: translate3d(0,0,0) rotate(0deg); } to { transform: translate3d(-3%,2%,0) rotate(3deg); } }

/* Layer 4 — drifting embers / incense motes (fastest motion) */
.hero-particles { position: absolute; inset: 0; z-index: -3; pointer-events: none; }
.hero-particles span {
  position: absolute; display: block;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--c-amber-bri);
  box-shadow: 0 0 14px rgba(226,178,72,0.8);
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-particles span { animation: mote-drift 17s linear infinite; }
}
.hero-particles span:nth-child(1){left:7%;bottom:-10px;animation-delay:0s;width:2px;height:2px}
.hero-particles span:nth-child(2){left:17%;bottom:-10px;animation-delay:3s;width:4px;height:4px}
.hero-particles span:nth-child(3){left:27%;bottom:-10px;animation-delay:6.5s}
.hero-particles span:nth-child(4){left:35%;bottom:-10px;animation-delay:1.6s;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:4.2s;width:5px;height:5px}
.hero-particles span:nth-child(7){left:63%;bottom:-10px;animation-delay:7.6s}
.hero-particles span:nth-child(8){left:72%;bottom:-10px;animation-delay:11s;width:2px;height:2px}
.hero-particles span:nth-child(9){left:81%;bottom:-10px;animation-delay:2.2s}
.hero-particles span:nth-child(10){left:90%;bottom:-10px;animation-delay:5.4s;width:3px;height:3px}
.hero-particles span:nth-child(11){left:13%;bottom:-10px;animation-delay:12s}
.hero-particles span:nth-child(12){left:67%;bottom:-10px;animation-delay:14s}
@keyframes mote-drift {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: 0.7; }
  88% { opacity: 0.6; }
  100% { transform: translateY(-112vh) translateX(46px); opacity: 0; }
}

/* Layer 5 — foreground vignette (deepest dark frame) */
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 92% 74% at center, rgba(0,0,0,0) 34%, rgba(0,0,0,0.85) 100%);
  z-index: -2; pointer-events: none;
}

.hero-content { max-width: 980px; position: relative; }

.hero-anno {
  font-family: var(--f-cinzel);
  font-size: 11px;
  letter-spacing: 0.56em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 30px;
  font-weight: 500;
  opacity: 0;
  animation: fade-up 1100ms 700ms var(--ease-out) both;
}

/* ---------- Coat of arms — igniting cross ---------- */
.hero-arms {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 1100ms 1000ms var(--ease-out) both;
}
.hero-cross {
  width: clamp(58px, 7vw, 88px);
  height: clamp(58px, 7vw, 88px);
  color: var(--c-amber);
  animation: cross-ignite 1800ms 1400ms var(--ease-out) both;
}
@keyframes cross-ignite {
  0%   { filter: drop-shadow(0 0 0 rgba(200,147,42,0)) brightness(0.3); opacity: 0; transform: scale(0.82); }
  55%  { filter: drop-shadow(0 0 38px rgba(226,178,72,0.95)) brightness(1.7); opacity: 1; transform: scale(1.05); }
  100% { filter: drop-shadow(0 0 18px rgba(200,147,42,0.55)) brightness(1); opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-cross { animation: cross-ignite 1800ms 1400ms var(--ease-out) both, cross-glow 4.4s 3200ms 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 30px rgba(226,178,72,0.78)); }
}
.hero-laurel {
  width: clamp(28px, 3vw, 46px);
  height: clamp(50px, 6vw, 80px);
  color: var(--c-amber);
  opacity: 0.65;
}
.hero-laurel-r { transform: scaleX(-1); }

/* ---------- Wordmark — clip + blur-to-sharp resolve out of shadow ---------- */
.wordmark {
  font-family: var(--f-cinzel);
  font-weight: 700;
  font-size: clamp(46px, 9.4vw, 128px);
  letter-spacing: 0.05em;
  line-height: 0.96;
  margin: 6px 0 0;
  color: var(--c-bone);
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 30px);
  max-width: 100%;
}
.wordmark-1765, .wordmark-sanctum {
  display: inline-block;
  clip-path: inset(0 0 110% 0);
  filter: blur(14px);
  opacity: 0;
  animation: wordmark-resolve 1700ms 1500ms var(--ease-cine) both;
}
.wordmark-sanctum { animation-delay: 1750ms; }
@keyframes wordmark-resolve {
  0%   { clip-path: inset(0 0 110% 0); filter: blur(16px); opacity: 0; transform: translateY(0.16em); }
  60%  { filter: blur(3px); opacity: 1; }
  100% { clip-path: inset(0 0 0 0); filter: blur(0); opacity: 1; transform: translateY(0); }
}
.wordmark-mid svg {
  width: clamp(11px, 1.5vw, 18px); height: clamp(11px, 1.5vw, 18px);
  color: var(--c-amber); display: inline-block;
  opacity: 0;
  animation: fade-up 1000ms 2300ms var(--ease-out) both;
  filter: drop-shadow(0 0 10px rgba(226,178,72,0.6));
}

.hero-motto {
  font-family: var(--f-cinzel);
  font-weight: 500;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 28px 0 0;
  opacity: 0;
  animation: fade-up 1100ms 2600ms var(--ease-out) both;
}

.hero-flourish {
  display: block;
  width: clamp(170px, 26vw, 250px); height: 24px;
  margin: 26px auto;
  color: var(--c-amber); opacity: 0;
  animation: fade-up 1100ms 2850ms var(--ease-out) both;
}

.tagline {
  font-family: var(--f-cinzel);
  font-weight: 600;
  font-size: clamp(19px, 2.6vw, 32px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-bone);
  margin: 0;
  opacity: 0;
  animation: fade-up 1100ms 3050ms var(--ease-out) both;
}
.hero-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--c-bone-dim);
  max-width: 660px;
  margin: 34px auto 0;
  line-height: 1.5;
  opacity: 0;
  animation: fade-up 1100ms 3300ms var(--ease-out) both;
}
.hero-start-here { margin: 40px 0 0; opacity: 0; animation: fade-up 1100ms 3550ms var(--ease-out) both; }

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

/* CTA button — gold, animated sheen */
.btn-gold {
  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 {
  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 {
  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 { left: 130%; }
.btn-gold .btn-arrow { transition: transform 320ms var(--ease); }
.btn-gold:hover .btn-arrow { transform: translateX(5px); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 34px; 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 1100ms 3900ms 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; margin-right: -0.5em; color: var(--c-amber);
}
.scroll-cue-line {
  width: 1px; height: 58px;
  background: linear-gradient(to bottom, transparent 0%, var(--c-amber) 50%, transparent 100%);
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue-line { animation: scroll-pulse 2400ms ease-in-out infinite; }
}
@keyframes scroll-pulse {
  0%,100% { transform: scaleY(0.55); opacity: 0.4; }
  50%     { transform: scaleY(1); opacity: 1; }
}

/* =====================================================================
   SCROLL REVEALS (IntersectionObserver-driven)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1000ms var(--ease-out), transform 1000ms var(--ease-out); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(1.06); transition: opacity 1100ms var(--ease-out), transform 1400ms var(--ease-cine); }
.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; }

/* =====================================================================
   INTROIT — Latin verse, emerges from black
   ===================================================================== */
.section-flourish {
  display: block;
  width: clamp(160px, 26vw, 240px); height: 24px;
  margin: 40px auto; color: var(--c-amber); opacity: 0.85;
}
.introit {
  padding: clamp(96px, 13vw, 160px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,147,42,0.05), transparent 70%),
    var(--c-ink);
}
.latin-verse {
  font-family: var(--f-display);
  font-style: italic; font-weight: 500;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.5; color: var(--c-bone);
  margin: 0 0 20px; letter-spacing: 0.01em;
}
.latin-cite {
  font-family: var(--f-cinzel); font-size: 10px;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--c-amber); margin: 0 0 30px;
}
.latin-en {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--c-bone-mut); margin: 0; line-height: 1.6;
}

/* =====================================================================
   MISSION — THE ALTAR
   ===================================================================== */
.mission {
  padding: clamp(110px, 15vw, 200px) 0;
  text-align: center;
  background: var(--c-base);
  position: relative;
}
.mission::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(200,147,42,0.045), transparent 70%);
  pointer-events: none;
}
.mission .display-h2 { font-style: normal; font-weight: 500; margin-bottom: 60px; }
.mission-body {
  text-align: left;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--c-bone-dim);
  max-width: 660px; margin: 0 auto; position: relative;
}
.mission-body p { margin: 0 0 24px; }
.mission-body p:last-child { margin-bottom: 0; }

.dropcap {
  font-family: var(--f-cinzel); font-weight: 700;
  font-size: 4.6em; line-height: 0.84; 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 8px rgba(200,147,42,0.4));
  letter-spacing: -0.02em;
}
.closer {
  font-family: var(--f-cinzel); font-weight: 500;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--c-amber); margin: 40px 0 0;
}

/* =====================================================================
   THREE PILLARS — full-bleed cinematic panels w/ parallax
   ===================================================================== */
.pillars-wrap {
  background: linear-gradient(180deg, var(--c-base) 0%, var(--c-ink) 100%);
  padding-top: clamp(110px, 15vw, 180px);
}
.pillars-banner {
  text-align: center;
  padding: 0 24px clamp(72px, 9vw, 110px);
  max-width: var(--maxw-narrow); margin: 0 auto;
}
.pillars-banner .display-h2 {
  font-family: var(--f-cinzel); font-weight: 700;
  font-size: clamp(30px, 4.2vw, 56px);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 26px;
}
.pillars-sub {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--c-bone-dim); max-width: 560px; margin: 0 auto;
}

.pillars-vertical { display: flex; flex-direction: column; }

.pillar-fb {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 86vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(200,147,42,0.22);
}
.pillar-fb:last-child { border-bottom: 1px solid rgba(200,147,42,0.22); }

.pillar-fb-image {
  position: absolute;
  inset: -14% 0;          /* extra height for parallax travel */
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.62) contrast(1.1) brightness(0.5);
  z-index: -3;
  will-change: transform;
  transform: translate3d(0,0,0) scale(1.04);
  transition: filter 1400ms var(--ease);
}
.pillar-fb:hover .pillar-fb-image { filter: saturate(0.78) contrast(1.14) brightness(0.6); }

.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 30%; }

.pillar-fb-overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 80% 70% at 50% 55%, rgba(200,147,42,0.07), transparent 65%),
    linear-gradient(105deg, rgba(8,9,12,0.95) 0%, rgba(8,9,12,0.7) 42%, rgba(8,9,12,0.32) 100%);
}
.pillar-fb--arms .pillar-fb-overlay {
  background:
    radial-gradient(ellipse 80% 70% at 50% 55%, rgba(200,147,42,0.07), transparent 65%),
    linear-gradient(255deg, rgba(8,9,12,0.95) 0%, rgba(8,9,12,0.7) 42%, rgba(8,9,12,0.3) 100%);
}

.pillar-fb-inner {
  position: relative; z-index: 1;
  max-width: 540px;
  padding: clamp(48px, 7vw, 92px) clamp(28px, 7vw, 96px);
  margin-right: auto;
}
/* True alternation (2026-06-11, Will: Allegiance sat too far right):
   Altar left · Arms right · Allegiance left. */
.pillar-fb--arms .pillar-fb-inner { margin-left: auto; margin-right: 0; text-align: right; }

.pillar-fb-roman {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--c-amber-bri); margin: 0 0 12px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
}
.pillar-fb-title {
  font-family: var(--f-cinzel); font-weight: 700;
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 0.96; margin: 0 0 18px; color: var(--c-bone);
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.pillar-fb-latin {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--c-amber); letter-spacing: 0.05em; margin: 0 0 22px;
}
.pillar-fb-line {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65; color: var(--c-bone-dim);
  margin: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}

@media (max-width: 760px) {
  .pillar-fb-inner,
  .pillar-fb--arms .pillar-fb-inner { text-align: center; margin: 0 auto; }
  .pillar-fb-overlay,
  .pillar-fb--arms .pillar-fb-overlay {
    background:
      radial-gradient(ellipse 90% 60% at 50% 50%, rgba(200,147,42,0.08), transparent 60%),
      linear-gradient(180deg, rgba(8,9,12,0.78) 0%, rgba(8,9,12,0.7) 50%, rgba(8,9,12,0.92) 100%);
  }
}

/* =====================================================================
   MANIFESTO break — single shaft of light on black
   ===================================================================== */
.shelf-manifesto {
  position: relative;
  padding: clamp(110px, 16vw, 190px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 46% 80% at 50% 50%, rgba(200,147,42,0.12), transparent 60%),
    var(--c-ink);
  overflow: hidden;
}
.shelf-manifesto::before {
  content: "";
  position: absolute; top: -10%; left: 50%;
  width: 60%; height: 120%;
  transform: translateX(-50%);
  background: conic-gradient(from 180deg at 50% 0%, transparent 0deg, rgba(245,230,200,0.05) 4deg, transparent 9deg);
  pointer-events: none;
}
.shelf-manifesto-inner { position: relative; max-width: 680px; margin: 0 auto; padding: 0 24px; }
.shelf-manifesto-latin {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--c-amber); letter-spacing: 0.04em; margin: 0 0 22px;
}
.shelf-manifesto-h {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(34px, 5vw, 62px); line-height: 1.08;
  color: var(--c-bone); margin: 0 0 22px; text-wrap: balance;
}
.shelf-manifesto-h em { font-style: italic; color: var(--c-amber-bri); }
.shelf-manifesto-sub {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--c-bone-dim); margin: 0 0 38px;
}
.shelf-manifesto-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-cinzel); font-weight: 500;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--c-amber); padding: 15px 34px;
  border: 1px solid var(--c-amber-fade); border-radius: 2px;
  transition: background 320ms var(--ease), color 320ms var(--ease), border-color 320ms var(--ease), transform 320ms var(--ease);
}
.shelf-manifesto-cta:hover, .shelf-manifesto-cta:focus-visible {
  background: var(--c-amber); color: var(--c-base); border-color: var(--c-amber);
  transform: translateY(-2px); border-bottom-color: var(--c-amber);
}

/* =====================================================================
   PAIRED MINIMAL SHELVES — Examination + Doctrinal
   ===================================================================== */
.shelf-pair {
  padding: clamp(96px, 13vw, 160px) 0;
  background: var(--c-base);
}
.shelf-pair-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 56px);
}
@media (max-width: 880px) { .shelf-pair-inner { grid-template-columns: 1fr; gap: 64px; } }

.shelf-min {
  padding: clamp(34px, 4vw, 50px);
  border: 1px solid rgba(200,147,42,0.16);
  border-radius: 3px;
  background: linear-gradient(160deg, rgba(16,18,24,0.7), rgba(8,9,12,0.7));
  position: relative;
  transition: border-color 360ms var(--ease), transform 360ms var(--ease), box-shadow 360ms var(--ease);
}
.shelf-min::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 3px;
  background: linear-gradient(160deg, rgba(200,147,42,0.08), transparent 40%);
  opacity: 0; transition: opacity 360ms var(--ease); pointer-events: none;
}
.shelf-min:hover {
  border-color: rgba(200,147,42,0.42);
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -28px rgba(0,0,0,0.9);
}
.shelf-min:hover::before { opacity: 1; }

.shelf-eyebrow {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--c-amber); margin: 0 0 14px;
}
.shelf-h {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(26px, 3vw, 40px); line-height: 1.12;
  color: var(--c-bone); margin: 0 0 18px;
}
.shelf-h em { font-style: italic; color: var(--c-amber-bri); }
.shelf-body {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7; color: var(--c-bone-dim); margin: 0 0 16px;
}
.shelf-body--compact { margin-bottom: 24px; }
.shelf-body strong { color: var(--c-bone); }
.shelf-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-cinzel); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-amber); border: none; border-bottom: 1px solid var(--c-amber-fade);
  padding-bottom: 3px;
}
.shelf-cta:hover, .shelf-cta:focus-visible { color: var(--c-amber-bri); border-bottom-color: var(--c-amber-bri); }

.shelf-doctrinal-links { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.shelf-doctrinal-link {
  font-family: var(--f-cinzel); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-bone-dim);
  border: none; border-left: 2px solid rgba(200,147,42,0.3);
  padding: 6px 0 6px 16px;
  transition: color 280ms var(--ease), border-color 280ms var(--ease), padding-left 280ms var(--ease);
}
.shelf-doctrinal-link:hover, .shelf-doctrinal-link:focus-visible {
  color: var(--c-amber-bri); border-left-color: var(--c-amber-bri); padding-left: 22px;
}

/* FAQ uses shelf-pair shell but single column */
#home-faq .shelf-min { background: transparent; border-color: rgba(200,147,42,0.14); }
#home-faq .shelf-min:hover { transform: none; box-shadow: none; border-color: rgba(200,147,42,0.3); }

/* =====================================================================
   APP BAND
   ===================================================================== */
.app-band {
  position: relative;
  padding: clamp(96px, 13vw, 150px) 0;
  border-top: 1px solid rgba(200,147,42,0.16);
  background:
    radial-gradient(ellipse 60% 70% at 78% 50%, rgba(20,48,73,0.3), transparent 60%),
    linear-gradient(180deg, var(--c-base-2), var(--c-base));
}
.app-band-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.app-band-phone {
  display: inline-block; border-radius: 36px; padding: 11px;
  background: linear-gradient(160deg, #17181e, #0a0b0e);
  border: 1px solid rgba(200,147,42,0.45);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.85), 0 0 60px -20px rgba(200,147,42,0.3);
  transition: transform 600ms var(--ease-cine);
}
.app-band-phone:hover { transform: translateY(-8px) rotate(-1deg); }
.app-band-phone img { display: block; width: 272px; height: auto; border-radius: 28px; border: 1px solid rgba(0,0,0,0.55); }
.app-band-copy {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.72; color: var(--c-bone-dim);
  max-width: 36em; margin: 0 0 30px;
}
.app-band-copy strong { color: #e8e2d3; font-weight: 600; }
.app-band-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.app-band-note {
  margin: 20px 0 0; font-family: var(--f-cinzel);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-bone-mut);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-cinzel); font-weight: 500;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-bone); background: transparent;
  border: 1px solid var(--c-amber-fade); border-radius: 2px;
  padding: 15px 30px;
  transition: all 320ms var(--ease);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--c-amber); color: var(--c-base); border-color: var(--c-amber);
}
.btn-ghost .btn-arrow { transition: transform 320ms var(--ease); }
.btn-ghost:hover .btn-arrow { transform: translateX(5px); }
@media (max-width: 820px) {
  .app-band-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .app-band-copy { margin-left: auto; margin-right: auto; }
  .app-band-cta { justify-content: center; }
  .app-band-phone img { width: 234px; }
  .app-band-note { text-align: center; }
}

/* =====================================================================
   LATEST VIDEO — Currently Airing
   ===================================================================== */
.latest {
  padding: clamp(110px, 15vw, 200px) 0;
  text-align: center;
  background: var(--c-ink);
}
.latest .display-h2 { font-weight: 500; margin-bottom: 16px; max-width: 940px; 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: 10px; letter-spacing: 0.04em;
}
.latest-meta {
  font-family: var(--f-cinzel); font-size: 11px;
  color: var(--c-bone-mut); letter-spacing: 0.42em; text-transform: uppercase;
  margin: 0 0 60px;
}
.video-frame {
  position: relative; max-width: 980px; margin: 0 auto; padding: 16px;
  background: linear-gradient(180deg, #14161d 0%, #0c0e12 100%);
  border: 1px solid var(--c-amber-fade);
  box-shadow: 0 0 0 1px rgba(200,147,42,0.1), 0 40px 100px -30px rgba(0,0,0,0.8), inset 0 0 70px rgba(200,147,42,0.05);
}
.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; }
.corner { position: absolute; width: 38px; height: 38px; color: var(--c-amber); opacity: 0.85; pointer-events: none; }
.corner svg { width: 100%; height: 100%; }
.corner-tl { top: -3px; left: -3px; }
.corner-tr { top: -3px; right: -3px; }
.corner-bl { bottom: -3px; left: -3px; }
.corner-br { bottom: -3px; right: -3px; }
.latest-caption {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--c-bone-dim); max-width: 680px;
  margin: 52px auto 40px; line-height: 1.62;
}

/* =====================================================================
   DISPATCH — THE BROTHERHOOD
   ===================================================================== */
.dispatch {
  position: relative;
  padding: clamp(130px, 18vw, 220px) 0;
  text-align: center; isolation: isolate; overflow: hidden;
  border-top: 1px solid rgba(200,147,42,0.16);
  border-bottom: 1px solid rgba(200,147,42,0.16);
}
.dispatch-bg {
  position: absolute; inset: -10% 0;
  background-size: cover; background-position: center 28%;
  filter: saturate(0.46) contrast(1.06) brightness(0.4);
  z-index: -3; will-change: transform;
}
.dispatch-overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(200,147,42,0.18), transparent 58%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(110,27,31,0.36), transparent 70%),
    linear-gradient(180deg, rgba(8,9,12,0.95) 0%, rgba(8,9,12,0.72) 50%, rgba(8,9,12,0.97) 100%);
}
.dispatch-content { position: relative; }
.dispatch-cross {
  width: 58px; height: 58px; color: var(--c-amber);
  margin: 24px auto 30px; display: block;
  filter: drop-shadow(0 0 18px rgba(200,147,42,0.55));
}
@media (prefers-reduced-motion: no-preference) {
  .dispatch-cross { animation: cross-glow 4.4s ease-in-out infinite; }
}
.dispatch-content .display-h2 { font-style: normal; font-weight: 500; margin-bottom: 34px; }
.dispatch-body {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--c-bone-dim); max-width: 640px; margin: 0 auto 48px; line-height: 1.72;
}
.dispatch-magnet {
  display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: center;
  max-width: 780px; margin: 36px auto 24px; padding: 28px 24px;
  border: 1px solid rgba(201,169,106,0.24);
  background: rgba(8,9,12,0.62);
  border-radius: 3px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8);
}
.dispatch-magnet-img { flex: 0 0 200px; display: block; line-height: 0; border: none; }
.dispatch-magnet-img img {
  width: 200px; height: auto; display: block;
  border: 1px solid rgba(201,169,106,0.32);
  box-shadow: 0 10px 34px rgba(0,0,0,0.6);
}
.dispatch-magnet-copy { flex: 1 1 280px; text-align: left; }
.dispatch-magnet-eyebrow {
  font-family: var(--f-cinzel); font-size: 0.7rem; letter-spacing: 0.22em;
  color: var(--c-amber); text-transform: uppercase; margin: 0 0 10px;
}
.dispatch-magnet-h {
  font-family: var(--f-cinzel); font-weight: 600; font-size: 1.28rem;
  line-height: 1.25; color: #e8e2d3; margin: 0 0 12px;
}
.dispatch-magnet-h em { font-style: italic; color: var(--c-amber); }
.dispatch-magnet-text {
  font-family: var(--f-display); font-style: italic; font-size: 1.06rem;
  color: var(--c-bone-dim); line-height: 1.5; margin: 0;
}
.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-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 { 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);
}
@media (max-width: 600px) { .dispatch-magnet-copy { text-align: center; } }

/* =====================================================================
   CONNECT — THE WATCHTOWER
   ===================================================================== */
.connect { padding: clamp(96px, 13vw, 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: 38px 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);
}
.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.08), transparent 70%);
}
.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; position: relative;
  transition: border-color 280ms var(--ease), background 280ms var(--ease), transform 320ms var(--ease);
}
.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.08); transform: translateY(-3px);
}
.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); }

/* FAQ heading helpers */
.shelf-h--center { text-align: center; }
.faq-q { font-size: 1.2rem !important; }

/* =====================================================================
   FOOTER — THE CODA
   ===================================================================== */
.footer {
  padding: clamp(90px, 12vw, 150px) 0 64px;
  text-align: center;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(200,147,42,0.06), transparent 70%), var(--c-ink);
  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.42));
}
.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-style: italic;
  font-size: clamp(13px, 1.2vw, 16px); color: var(--c-bone-mut); line-height: 1.6; margin: 0 0 32px;
}
.footer-flourish { display: block; width: clamp(160px,26vw,240px); height: 24px; 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, 32px);
  letter-spacing: 0.1em; color: var(--c-bone); margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 14px;
}
.footer-1765 { color: var(--c-amber); }
.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
   ===================================================================== */
@media (max-width: 480px) {
  body { font-size: 18px; }
  .hero { padding: 110px 16px 80px; }
  .wordmark { font-size: 46px; letter-spacing: 0.04em; gap: 12px; }
  .wordmark-mid svg { width: 10px; height: 10px; }
  .hero-motto { font-size: 10px; letter-spacing: 0.3em; }
  .tagline { font-size: 18px; letter-spacing: 0.22em; }
  .hero-sub { font-size: 17px; margin-top: 28px; }
  .pillars-banner .display-h2 { font-size: 26px; letter-spacing: 0.14em; }
  .pillar-fb-title { font-size: 52px; }
  .footer-mark { font-size: 22px; letter-spacing: 0.08em; }
  .footer-tagline { font-size: 10px; letter-spacing: 0.3em; }
}

/* =====================================================================
   ELEVATION LAYER — cinema beyond the comp
   ===================================================================== */

/* ---------- Next-gen image formats (AVIF where supported) ---------- */
@supports (background-image: image-set(url("x.avif") type("image/avif"))) {
  .hero-bg {
    background-image: image-set(
      url("/assets/hero-lepanto.avif") type("image/avif"),
      url("/assets/hero-lepanto.jpg") type("image/jpeg"));
  }
  .pillar-fb--altar .pillar-fb-image {
    background-image: image-set(
      url("/assets/altar-madonna-rosary.avif") type("image/avif"),
      url("/assets/altar-madonna-rosary.jpg") type("image/jpeg")) !important;
  }
  .pillar-fb--arms .pillar-fb-image {
    background-image: image-set(
      url("/assets/arms-st-michael.avif") type("image/avif"),
      url("/assets/arms-st-michael.jpg") type("image/jpeg")) !important;
  }
  .pillar-fb--allegiance .pillar-fb-image {
    background-image: image-set(
      url("/assets/allegiance-pillar.avif") type("image/avif"),
      url("/assets/allegiance-pillar.jpg") type("image/jpeg")) !important;
  }
  .dispatch-bg {
    background-image: image-set(
      url("/assets/dispatch-confraternity.avif") type("image/avif"),
      url("/assets/dispatch-confraternity.jpg") type("image/jpeg")) !important;
  }
}

/* ---------- Liturgical day line (hero) ---------- */
.hero-liturgical {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.06em;
  color: var(--c-bone-mut);
  margin: 18px 0 0;
  opacity: 0;
  animation: fade-up 1100ms 3450ms var(--ease-out) both;
  min-height: 1.4em;
}
.hero-liturgical .lit-diamond {
  width: 7px; height: 7px; flex: 0 0 7px;
  transform: rotate(45deg);
  background: var(--c-amber);
  box-shadow: 0 0 10px rgba(226,178,72,0.4);
}
.hero-liturgical[data-color="green"]  .lit-diamond { background: #3E6B4F; box-shadow: 0 0 10px rgba(82,143,106,0.5); }
.hero-liturgical[data-color="red"]    .lit-diamond { background: #8B2326; box-shadow: 0 0 10px rgba(176,58,62,0.55); }
.hero-liturgical[data-color="violet"] .lit-diamond { background: #553266; box-shadow: 0 0 10px rgba(122,79,144,0.55); }
.hero-liturgical[data-color="white"]  .lit-diamond { background: #E8E2D3; box-shadow: 0 0 10px rgba(245,230,200,0.6); }
.hero-liturgical[data-color="rose"]   .lit-diamond { background: #B06A77; box-shadow: 0 0 10px rgba(196,128,140,0.55); }
.hero-liturgical[data-color="black"]  .lit-diamond { background: #30343C; box-shadow: 0 0 10px rgba(110,120,140,0.4); }

/* ---------- Tagline — one-time gold sheen after resolve ---------- */
@media (prefers-reduced-motion: no-preference) {
  .tagline {
    background: linear-gradient(100deg,
      var(--c-bone) 0%, var(--c-bone) 38%,
      var(--c-amber-bri) 50%,
      var(--c-bone) 62%, var(--c-bone) 100%);
    background-size: 280% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: fade-up 1100ms 3050ms var(--ease-out) both,
               tagline-sheen 2200ms 4400ms var(--ease-cine) 1 both;
  }
}
@keyframes tagline-sheen {
  from { background-position: 100% 0; }
  to   { background-position: 0% 0; }
}

/* ---------- Scroll progress — the burning wick ---------- */
.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, ~3.5%) ---------- */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 2; pointer-events: none;
  opacity: 0.035;
  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;
}

/* ---------- Scroll-driven pillar-title tracking (progressive) ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .pillar-fb-title {
      animation: pillar-track linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 45%;
    }
  }
}
@keyframes pillar-track {
  from { letter-spacing: 0.22em; opacity: 0.25; }
  to   { letter-spacing: 0.06em; opacity: 1; }
}

/* ---------- MPA view transitions (cross-document fade) ---------- */
@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;
}

/* Content sits above candlelight(z1) + grain(z2) */
main, .hero-content, .dispatch-nav, .footer { position: relative; z-index: 3; }

/* =====================================================================
   REDUCED MOTION — fail-open: everything visible + static
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  /* Force every entrance/reveal element fully visible + neutral transform */
  .hero-anno, .hero-arms, .hero-cross, .hero-motto, .hero-flourish,
  .tagline, .hero-sub, .hero-start-here, .scroll-cue,
  .wordmark-1765, .wordmark-sanctum, .wordmark-mid svg {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }
  .reveal, .reveal-scale, .reveal-clip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .hero-particles { display: none; }
  .hero-bg, .hero-godrays, .pillar-fb-image, .dispatch-bg { transform: none !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
  .hero-liturgical { opacity: 1 !important; }
  .tagline {
    background: none; -webkit-text-fill-color: currentColor; color: var(--c-bone);
  }
}
