:root {
  --black: #050403;
  --black-soft: #0a0806;
  --panel: #0c0a07;
  --ivory: #f4ead6;
  --ivory-soft: #d9cdb8;
  --gold: #d8b66a;
  --gold-bright: #f1d391;
  --gold-deep: #8d6b2e;
  --ash: #988d7c;
  --line: rgba(216, 182, 106, 0.29);
  --line-soft: rgba(244, 234, 214, 0.12);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2,.75,.18,1);
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
html.no-js .site-loader { display: none; }
html.no-js .mobile-menu { display: none; }
body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% -20%, rgba(142, 101, 34, .18), transparent 42rem),
    var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
body.home-page { width: 100%; height: 100vh; height: 100svh; overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
::selection { color: #110d07; background: var(--gold-bright); }

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 1rem;
  top: 1rem;
  padding: .8rem 1rem;
  color: var(--black);
  background: var(--ivory);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Loading and page transition */
.site-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.4rem;
  color: var(--gold-bright);
  background: #030302;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(240, 207, 132, .12), transparent 22rem);
  animation: loader-breathe 2s ease-in-out infinite;
}
.site-loader p {
  position: relative;
  margin: 0;
  font-size: .62rem;
  letter-spacing: .38em;
  text-transform: uppercase;
}
.site-loader p b { margin: 0 .65rem; color: rgba(244, 234, 214, .4); }
.site-loader__mark {
  position: relative;
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 16px rgba(241, 211, 145, .7));
}
.site-loader__mark span:first-child,
.site-loader__mark span:nth-child(2) {
  position: absolute;
  display: block;
  background: var(--gold-bright);
}
.site-loader__mark span:first-child { left: 28px; top: 1px; width: 1px; height: 56px; }
.site-loader__mark span:nth-child(2) { left: 10px; top: 21px; width: 38px; height: 1px; }
.site-loader__mark i {
  position: absolute;
  left: 25px;
  top: 18px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-bright);
  transform: rotate(45deg);
}
.site-loader--compact p { display: none; }
body.is-ready .site-loader { opacity: 0; visibility: hidden; pointer-events: none; }

.transition-veil {
  position: fixed;
  z-index: 9000;
  inset: 0;
  display: grid;
  place-items: center;
  background: #030302;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.transition-veil i {
  position: relative;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px 3px white, 0 0 60px 24px rgba(245, 211, 130, .8), 0 0 180px 80px rgba(245, 211, 130, .28);
  transform: scale(.2);
  transition: transform .8s var(--ease);
}
body.is-leaving .transition-veil { opacity: 1; visibility: visible; }
body.is-leaving .transition-veil i { transform: scale(42); }

@keyframes loader-breathe { 50% { opacity: .48; transform: scale(1.1); } }

/* Grain, cursor and ambient layers */
.grain {
  position: fixed;
  z-index: 80;
  inset: -60%;
  pointer-events: none;
  opacity: .065;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, transparent 0, rgba(255,255,255,.9) .45px, transparent .8px, transparent 3px),
    repeating-radial-gradient(circle at 83% 68%, transparent 0, rgba(255,255,255,.7) .35px, transparent .7px, transparent 2.5px);
  background-size: 5px 5px, 7px 7px;
  animation: grain-shift .24s steps(2) infinite;
  mix-blend-mode: soft-light;
}
@keyframes grain-shift {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(1.5%, -1%,0); }
  50% { transform: translate3d(-1%, 1.4%,0); }
  75% { transform: translate3d(.6%, -.4%,0); }
}
.ambient-canvas { position: fixed; z-index: 0; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.cursor {
  position: fixed;
  z-index: 10050;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240, 208, 139, .6);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: width .2s ease, height .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
  mix-blend-mode: screen;
}
.cursor span { position: absolute; left: 50%; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--gold-bright); transform: translate(-50%,-50%); }
.cursor.is-visible { opacity: 1; }
.cursor.is-active { width: 58px; height: 58px; border-color: rgba(255, 235, 187, .95); background: rgba(220, 173, 80, .08); }

/* Header */
.site-header {
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(var(--header-h) + env(safe-area-inset-top));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: env(safe-area-inset-top) clamp(1.25rem, 4vw, 4.8rem) 0;
  color: var(--ivory);
}
.site-header--inner {
  background: linear-gradient(to bottom, rgba(5,4,3,.96), rgba(5,4,3,.72), transparent);
  backdrop-filter: blur(8px);
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--serif);
  font-size: .78rem;
  letter-spacing: .3em;
  white-space: nowrap;
}
.brand__mark { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: .8; opacity: .88; filter: drop-shadow(0 0 8px rgba(222, 181, 100, .2)); }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.35rem, 2.6vw, 3rem); }
.desktop-nav a {
  position: relative;
  padding: .45rem 0;
  color: rgba(244, 234, 214, .72);
  font-family: var(--serif);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transform: translateX(-50%);
  transition: width .35s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.is-active { color: var(--ivory); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a.is-active::after { width: 100%; }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 1.2rem; }
.sound-toggle,
.menu-toggle {
  appearance: none;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.sound-toggle { display: inline-flex; align-items: center; gap: .65rem; padding: .5rem; }
.sound-toggle__text { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; }
.sound-toggle__bars { display: flex; align-items: center; gap: 2px; height: 14px; }
.sound-toggle__bars i { display: block; width: 1px; height: 5px; background: currentColor; transform-origin: center; }
.sound-toggle[aria-pressed="true"] .sound-toggle__bars i { animation: sound-bars .85s ease-in-out infinite alternate; }
.sound-toggle[aria-pressed="true"] .sound-toggle__bars i:nth-child(2) { animation-delay: -.35s; }
.sound-toggle[aria-pressed="true"] .sound-toggle__bars i:nth-child(3) { animation-delay: -.6s; }
@keyframes sound-bars { to { height: 14px; } }
.menu-toggle { display: none; position: relative; width: 54px; height: 42px; padding: 0; }
.menu-toggle span { position: absolute; right: 38px; top: 14px; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; }
.menu-toggle i { position: absolute; right: 0; width: 25px; height: 1px; background: currentColor; transition: transform .3s var(--ease), top .3s var(--ease); }
.menu-toggle i:nth-of-type(1) { top: 15px; }
.menu-toggle i:nth-of-type(2) { top: 24px; }
.menu-toggle[aria-expanded="true"] i:nth-of-type(1) { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:nth-of-type(2) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 450;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 7rem 2rem 3rem;
  color: var(--ivory);
  background: rgba(4,3,2,.97);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .45s var(--ease), visibility .45s var(--ease), transform .45s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__light { position: absolute; left: 50%; top: -10rem; width: 30rem; height: 30rem; border-radius: 50%; background: radial-gradient(circle, rgba(226,184,98,.21), transparent 68%); transform: translateX(-50%); }
.mobile-menu nav { position: relative; width: min(100%, 36rem); display: grid; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 1.5rem; padding: .8rem 0; border-bottom: 1px solid var(--line-soft); font-family: var(--serif); font-size: clamp(2rem, 8vw, 4rem); line-height: 1.1; letter-spacing: .04em; }
.mobile-menu nav a span { color: var(--gold); font-family: var(--sans); font-size: .56rem; letter-spacing: .2em; }
.mobile-menu > p { position: absolute; bottom: max(2rem, env(safe-area-inset-bottom)); margin: 0; color: var(--ash); font-size: .56rem; line-height: 1.8; letter-spacing: .22em; text-align: center; }

/* Home */
.home-shell { --mx: 0; --my: 0; position: relative; isolation: isolate; width: 100%; height: 100vh; height: 100svh; min-height: 100svh; overflow: hidden; background: #050403; }
.hero-art { position: absolute; z-index: -5; inset: -2.5%; overflow: hidden; }
.hero-art img {
  width: 105%;
  height: 105%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(calc(var(--mx) * -10px), calc(var(--my) * -7px),0) scale(1.025);
  filter: saturate(.9) contrast(1.05) brightness(.93);
  transition: filter 1s var(--ease);
}
.home-page.is-light-open .hero-art img { filter: saturate(1) contrast(1.02) brightness(1.18); }
.celestial-canvas { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; pointer-events: none; mix-blend-mode: screen; }
.hero-radiance { position: absolute; z-index: -3; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 10%, rgba(255,244,208,.22), transparent 26%), radial-gradient(ellipse at 50% 58%, transparent 20%, rgba(0,0,0,.55) 90%); mix-blend-mode: screen; }
.hero-vignette { position: absolute; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(4,3,2,.24), transparent 18%, transparent 50%, rgba(4,3,2,.4) 72%, rgba(4,3,2,.92) 100%), linear-gradient(90deg, rgba(3,2,2,.55), transparent 22%, transparent 78%, rgba(3,2,2,.55)); }
.home-main { position: relative; z-index: 10; width: 100%; height: 100%; }
.home-hero {
  position: absolute;
  left: 50%;
  bottom: clamp(2.8rem, 5.5vh, 5rem);
  width: min(92vw, 1120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ivory);
  text-align: center;
  transform: translateX(-50%);
  text-shadow: 0 2px 22px rgba(0,0,0,.9);
}
.home-hero__overline { margin: 0 0 .28rem; color: var(--gold-bright); font-size: .56rem; letter-spacing: .55em; }
.home-hero__title { display: flex; justify-content: center; align-items: baseline; margin: 0; font-family: var(--serif); font-size: clamp(4.25rem, 9.2vw, 9.7rem); font-weight: 400; line-height: .82; letter-spacing: .075em; white-space: nowrap; }
.home-hero__title span + span { margin-left: .21em; }
.home-hero__rule { width: min(32rem, 58vw); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; margin: .95rem auto .68rem; color: var(--gold-bright); }
.home-hero__rule span { height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.home-hero__rule span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.home-hero__rule i { font-family: var(--serif); font-size: .72rem; font-style: normal; }
.home-hero__creed { display: flex; align-items: center; justify-content: center; gap: clamp(.55rem,1.7vw,1.35rem); margin: 0; color: var(--gold-bright); font-family: var(--serif); font-size: clamp(.72rem, 1.1vw, .96rem); letter-spacing: .25em; }
.home-hero__creed b { color: rgba(244,234,214,.45); font-size: .5rem; }
.home-hero__statement { max-width: 39rem; margin: .55rem auto .95rem; color: rgba(244,234,214,.8); font-family: var(--serif); font-size: clamp(.82rem, 1.25vw, 1.04rem); line-height: 1.45; }
.home-hero__final { margin: .68rem 0 0; color: rgba(244,234,214,.72); font-size: .5rem; letter-spacing: .48em; }
.portal-button {
  position: relative;
  min-width: 168px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(240,208,139,.75);
  color: var(--ivory);
  background: rgba(5,4,3,.42);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.65), 0 0 0 rgba(218,177,91,0);
  font-family: var(--serif);
  font-size: .67rem;
  letter-spacing: .32em;
  text-indent: .32em;
  transition: color .35s ease, background .35s ease, box-shadow .35s ease, transform .35s var(--ease);
}
.portal-button::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,243,207,.3) 48%, transparent 76%); transform: translateX(-130%); transition: transform .75s var(--ease); }
.portal-button::after { content: ""; position: absolute; inset: 4px; border: 1px solid rgba(240,208,139,.18); }
.portal-button span { position: relative; z-index: 1; }
.portal-button i { position: absolute; z-index: 1; right: 18px; width: 16px; height: 1px; background: currentColor; opacity: .65; }
.portal-button i::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.portal-button:hover, .portal-button:focus-visible { color: #120f09; background: var(--gold-bright); box-shadow: 0 0 45px rgba(228,188,103,.35); transform: translateY(-2px); }
.portal-button:hover::before, .portal-button:focus-visible::before { transform: translateX(130%); }
.portal-button--static { min-width: 240px; }

.home-rail { position: absolute; z-index: 20; top: 50%; display: flex; align-items: center; gap: 1.1rem; color: rgba(244,234,214,.52); font-size: .48rem; letter-spacing: .32em; pointer-events: none; }
.home-rail i { width: 54px; height: 1px; background: var(--line); }
.home-rail--left { left: clamp(1rem,2.3vw,2.8rem); transform: translate(-42%,-50%) rotate(-90deg); }
.home-rail--right { right: clamp(1rem,2.3vw,2.8rem); transform: translate(42%,-50%) rotate(90deg); }
.home-footer { position: absolute; z-index: 20; left: clamp(1.25rem,4vw,4.8rem); right: clamp(1.25rem,4vw,4.8rem); bottom: max(.85rem, env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: rgba(244,234,214,.43); font-size: .45rem; letter-spacing: .25em; pointer-events: none; }
.home-footer p { margin: 0; }
.home-footer p:last-child { text-align: right; }
.home-footer__sigil { position: relative; width: 30px; height: 30px; }
.home-footer__sigil i, .home-footer__sigil b { position: absolute; display: block; background: var(--gold); }
.home-footer__sigil i { left: 14px; top: 0; width: 1px; height: 30px; }
.home-footer__sigil b { left: 5px; top: 13px; width: 20px; height: 1px; }

/* Shared inner-page typography and structure */
.inner-page { overflow-x: hidden; background: #070604; }
.inner-page main { position: relative; z-index: 1; }
.kicker { margin: 0 0 1.1rem; color: var(--gold); font-size: .62rem; font-weight: 500; letter-spacing: .35em; text-transform: uppercase; }
.text-arrow { display: inline-flex; align-items: center; gap: 1rem; padding: .5rem 0; color: var(--gold-bright); font-family: var(--serif); font-size: .88rem; letter-spacing: .08em; border-bottom: 1px solid var(--line); }
.text-arrow span { transition: transform .25s ease; }
.text-arrow:hover span { transform: translateX(5px); }
.site-footer { position: relative; z-index: 2; min-height: 130px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 2rem clamp(1.25rem,5vw,6rem); color: rgba(244,234,214,.48); border-top: 1px solid var(--line-soft); background: #050403; font-size: .56rem; letter-spacing: .13em; text-transform: uppercase; }
.site-footer p { margin: 0; }
.site-footer p:last-child { text-align: right; }
.site-footer__brand { color: var(--ivory); font-family: var(--serif); font-size: .86rem; letter-spacing: .28em; }

/* Manifesto */
.page-hero { position: relative; min-height: 94svh; display: grid; place-items: center; overflow: hidden; }
.page-hero__image { position: absolute; inset: 0; background-image: url("../images/hero-celestial-desktop.webp"); background-size: cover; background-position: center; filter: saturate(.8) brightness(.72); transform: scale(1.04); }
.page-hero__veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,4,3,.18), rgba(5,4,3,.2) 35%, rgba(5,4,3,.96)), radial-gradient(circle at 50% 20%, transparent, rgba(5,4,3,.34) 75%); }
.page-hero__content { position: relative; width: min(90vw, 980px); padding-top: var(--header-h); text-align: center; }
.page-hero__content h1 { margin: 0; font-family: var(--serif); font-size: clamp(5rem, 14vw, 13rem); font-weight: 400; line-height: .82; letter-spacing: .08em; }
.page-hero__lead { max-width: 47rem; margin: 2rem auto 0; color: rgba(244,234,214,.8); font-family: var(--serif); font-size: clamp(1.1rem,2vw,1.55rem); line-height: 1.55; }
.down-cue { display: inline-flex; flex-direction: column; align-items: center; gap: .55rem; margin-top: 2.8rem; color: var(--gold); font-size: .52rem; letter-spacing: .35em; }
.down-cue i { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); }
.manifesto-principle { position: relative; min-height: 100svh; display: grid; grid-template-columns: minmax(90px,.35fr) minmax(320px,1fr) minmax(320px,.8fr); align-items: center; gap: clamp(2rem,5vw,7rem); padding: 8rem clamp(1.5rem,7vw,9rem); border-top: 1px solid var(--line-soft); background: linear-gradient(120deg, #070604, #0d0a06 58%, #070604); }
.manifesto-principle--reverse { grid-template-columns: minmax(90px,.35fr) minmax(320px,.8fr) minmax(320px,1fr); }
.manifesto-principle--reverse .manifesto-principle__copy { grid-column: 3; }
.manifesto-principle--reverse .manifesto-principle__art { grid-column: 2; grid-row: 1; }
.manifesto-principle__number { align-self: start; color: rgba(216,182,106,.24); font-family: var(--serif); font-size: clamp(5rem,11vw,10rem); line-height: .8; }
.manifesto-principle__copy h2 { margin: 0 0 1.5rem; font-family: var(--serif); font-size: clamp(3rem,6vw,6.5rem); font-weight: 400; line-height: .94; letter-spacing: -.035em; }
.manifesto-principle__copy > p:not(.kicker) { max-width: 42rem; color: rgba(244,234,214,.72); font-family: var(--serif); font-size: clamp(1.05rem,1.5vw,1.28rem); line-height: 1.8; }
.manifesto-principle__copy blockquote { margin: 2.6rem 0 0; padding-left: 1.5rem; color: var(--gold-bright); border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.art-panel { position: relative; height: min(68svh,760px); margin: 0; overflow: hidden; border: 1px solid var(--line); background: #0a0806; box-shadow: 0 28px 80px rgba(0,0,0,.45); }
.art-panel::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(244,234,214,.08); margin: 10px; box-shadow: inset 0 0 70px rgba(0,0,0,.8); pointer-events: none; }
.art-panel img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.12) saturate(.72) contrast(1.08); transition: transform 1.2s var(--ease), filter 1.2s var(--ease); }
.art-panel:hover img { transform: scale(1.04); filter: sepia(.05) saturate(.9) contrast(1.05); }
.art-panel--cross img { object-position: center; }
.art-panel--angel img { object-position: center 20%; }
.art-panel--engraving img { object-position: center; filter: grayscale(1) contrast(1.1); }
.art-panel--host img { object-position: center 20%; }
.closing-creed { min-height: 88svh; display: grid; place-items: center; align-content: center; gap: 1rem; padding: 7rem 1.5rem; text-align: center; background: radial-gradient(circle at 50% 15%, rgba(203,153,66,.15), transparent 38rem), #050403; }
.closing-creed__mark { position: relative; width: 54px; height: 70px; margin-bottom: 2rem; }
.closing-creed__mark span { position: absolute; background: var(--gold); }
.closing-creed__mark span:first-child { left: 26px; width: 1px; height: 70px; }
.closing-creed__mark span:last-child { left: 8px; top: 24px; width: 38px; height: 1px; }
.closing-creed > p { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem,4.5vw,4.6rem); line-height: 1.05; letter-spacing: .08em; }
.closing-creed > p:last-of-type { color: var(--gold-bright); }
.closing-creed .text-arrow { margin-top: 2.5rem; }

/* Journal */
.editorial-hero { min-height: 72svh; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 3rem; padding: calc(var(--header-h) + 6rem) clamp(1.5rem,7vw,9rem) 6rem; background: radial-gradient(circle at 70% 0, rgba(180,128,48,.19), transparent 33rem), linear-gradient(180deg,#0c0906,#060504); border-bottom: 1px solid var(--line); }
.editorial-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(5rem,15vw,13rem); font-weight: 400; line-height: .78; letter-spacing: .07em; }
.editorial-hero > p { max-width: 34rem; margin: 0 0 1rem; color: rgba(244,234,214,.68); font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.55rem); }
.journal-index { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); }
.journal-index a { min-height: 180px; display: grid; grid-template-columns: auto 1fr; align-content: center; column-gap: 1.2rem; padding: 2.4rem clamp(1.5rem,4vw,4.5rem); border-right: 1px solid var(--line-soft); transition: background .3s ease; }
.journal-index a:last-child { border-right: 0; }
.journal-index a:hover { background: rgba(216,182,106,.06); }
.journal-index span { grid-row: 1 / 3; color: var(--gold); font-size: .55rem; letter-spacing: .2em; }
.journal-index strong { font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.8rem); font-weight: 400; }
.journal-index em { color: var(--ash); font-size: .56rem; font-style: normal; letter-spacing: .22em; text-transform: uppercase; }
.journal-entry { min-height: 92svh; display: grid; grid-template-columns: minmax(90px,.25fr) minmax(0,1fr); gap: clamp(2rem,6vw,8rem); align-items: center; padding: 8rem clamp(1.5rem,13vw,15rem); border-bottom: 1px solid var(--line-soft); }
.journal-entry__meta { align-self: start; color: var(--gold); }
.journal-entry__meta span { display: block; font-family: var(--serif); font-size: clamp(4rem,8vw,8rem); line-height: 1; opacity: .25; }
.journal-entry__meta p { writing-mode: vertical-rl; margin: 2rem 0 0; font-size: .54rem; letter-spacing: .36em; }
.journal-entry__body { max-width: 790px; }
.journal-entry__body h2 { margin: 0 0 1.6rem; font-family: var(--serif); font-size: clamp(3.2rem,7.8vw,8rem); font-weight: 400; line-height: .9; letter-spacing: -.04em; }
.journal-entry__lede { color: var(--gold-bright) !important; font-size: clamp(1.25rem,2.3vw,1.8rem) !important; line-height: 1.55 !important; }
.journal-entry__body > p:not(.kicker) { color: rgba(244,234,214,.7); font-family: var(--serif); font-size: clamp(1.02rem,1.5vw,1.23rem); line-height: 1.9; }
.journal-entry__body blockquote { margin: 3rem 0 0; color: var(--ivory); font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.8rem); font-style: italic; line-height: 1.25; }
.journal-entry--image { grid-template-columns: minmax(280px,.7fr) minmax(80px,.18fr) minmax(0,1fr); padding-left: clamp(1.5rem,6vw,7rem); padding-right: clamp(1.5rem,7vw,9rem); }
.journal-entry--image figure { height: 70svh; margin: 0; overflow: hidden; border: 1px solid var(--line); }
.journal-entry--image figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.08); }
.journal-closing { min-height: 72svh; display: grid; place-items: center; align-content: center; padding: 7rem 1.5rem; text-align: center; background: radial-gradient(circle, rgba(195,143,55,.12), transparent 32rem); }
.journal-closing > p { color: var(--gold); font-size: .56rem; letter-spacing: .34em; }
.journal-closing h2 { max-width: 980px; margin: 1rem auto 2.5rem; font-family: var(--serif); font-size: clamp(2.5rem,6vw,6rem); font-weight: 400; line-height: 1.06; }

/* Work */
.work-hero { min-height: 92svh; display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; padding-top: var(--header-h); border-bottom: 1px solid var(--line); }
.work-hero__copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 5rem clamp(1.5rem,6vw,7rem) 7rem; background: linear-gradient(135deg,#0b0805,#050403); }
.work-hero__copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(6rem,15vw,14rem); font-weight: 400; line-height: .8; }
.work-hero__copy > p:last-child { max-width: 36rem; margin: 2rem 0 0; color: rgba(244,234,214,.7); font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.55rem); }
.work-hero__image { overflow: hidden; }
.work-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; filter: saturate(.65) contrast(1.05); }
.work-streams { display: grid; grid-template-columns: repeat(3,1fr); }
.work-streams article { min-height: 68svh; padding: 6rem clamp(1.5rem,4vw,5rem); border-right: 1px solid var(--line-soft); background: linear-gradient(180deg,#090705,#050403); }
.work-streams article:last-child { border-right: 0; }
.work-streams article > span { display: block; color: rgba(216,182,106,.28); font-family: var(--serif); font-size: 5rem; line-height: 1; }
.work-streams h2 { margin: 1rem 0 1.4rem; font-family: var(--serif); font-size: clamp(3rem,5vw,5.5rem); font-weight: 400; }
.work-streams article > p:not(.kicker) { color: rgba(244,234,214,.68); font-family: var(--serif); font-size: 1.08rem; }
.work-streams ul { margin: 2.5rem 0 0; padding: 0; list-style: none; }
.work-streams li { padding: .8rem 0; color: var(--ivory-soft); border-bottom: 1px solid var(--line-soft); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.work-standard { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; padding: 9rem clamp(1.5rem,7vw,9rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: radial-gradient(circle at 20% 20%,rgba(186,133,45,.12),transparent 32rem); }
.work-standard h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem,6vw,6rem); font-weight: 400; line-height: .95; }
.work-standard ol { margin: 0; padding: 0; list-style: none; }
.work-standard li { display: grid; grid-template-columns: 80px 180px 1fr; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid var(--line-soft); }
.work-standard li span { color: var(--gold); font-size: .55rem; letter-spacing: .2em; }
.work-standard li strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.work-standard li p { margin: 0; color: rgba(244,234,214,.62); }
.work-cta { min-height: 78svh; display: grid; place-items: center; align-content: center; padding: 7rem 1.5rem; text-align: center; background: linear-gradient(rgba(5,4,3,.6),rgba(5,4,3,.93)), url("../images/cross-battle.webp") center/cover; }
.work-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(4rem,9vw,9rem); font-weight: 400; line-height: .9; }
.work-cta > p:not(.kicker) { margin: 1.5rem 0 2rem; color: var(--ivory-soft); font-family: var(--serif); font-size: 1.2rem; }

/* About */
.about-intro { min-height: 100svh; display: grid; grid-template-columns: minmax(340px,.8fr) minmax(420px,1.2fr); align-items: center; gap: clamp(3rem,8vw,10rem); padding: calc(var(--header-h) + 4rem) clamp(1.5rem,9vw,11rem) 7rem; }
.about-intro__portrait { position: relative; margin: 0; }
.about-intro__portrait::before { content: ""; position: absolute; z-index: -1; inset: -18px 18px 18px -18px; border: 1px solid var(--line); }
.about-intro__portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.72) contrast(1.03); }
.about-intro__portrait > span { position: absolute; right: -2.2rem; bottom: 1rem; color: var(--gold); font-size: .5rem; letter-spacing: .25em; writing-mode: vertical-rl; }
.about-intro__copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.5rem,10vw,10rem); font-weight: 400; line-height: .85; }
.about-intro__lead { color: var(--gold-bright) !important; font-size: clamp(1.35rem,2.5vw,2rem) !important; }
.about-intro__copy > p:not(.kicker) { max-width: 44rem; color: rgba(244,234,214,.7); font-family: var(--serif); font-size: clamp(1.06rem,1.5vw,1.25rem); }
.about-intro__copy blockquote { margin: 2.5rem 0 0; padding-left: 1.4rem; color: var(--ivory); border-left: 1px solid var(--gold); font-family: var(--serif); font-size: clamp(1.35rem,2.6vw,2.2rem); line-height: 1.35; }
.about-axis { display: grid; grid-template-columns: .65fr 1.35fr; gap: 6vw; padding: 9rem clamp(1.5rem,8vw,10rem); border-top: 1px solid var(--line); background: #090705; }
.about-axis__title h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem,6vw,6rem); font-weight: 400; line-height: .95; }
.about-axis ol { margin: 0; padding: 0; list-style: none; }
.about-axis li { display: grid; grid-template-columns: 70px 1fr 1.3fr; align-items: baseline; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid var(--line-soft); }
.about-axis li span { color: var(--gold); font-size: .55rem; }
.about-axis h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.6rem,2.8vw,2.5rem); font-weight: 400; }
.about-axis li p { margin: 0; color: rgba(244,234,214,.58); }
.about-pursuits { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; padding: 9rem clamp(1.5rem,8vw,10rem); }
.about-pursuits h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem,6vw,6rem); font-weight: 400; line-height: .96; }
.about-pursuits__list p { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; margin: 0; padding: 1.35rem 0; color: rgba(244,234,214,.67); border-bottom: 1px solid var(--line-soft); font-family: var(--serif); font-size: 1.08rem; }
.about-pursuits__list span { color: var(--gold); font-family: var(--sans); font-size: .52rem; letter-spacing: .2em; }
.about-closing { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 82svh; border-top: 1px solid var(--line); background: linear-gradient(90deg,#070604,#0c0906); }
.about-closing figure { height: 82svh; margin: 0; overflow: hidden; }
.about-closing figure img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) saturate(.75) contrast(1.03); }
.about-closing > div { padding: 5rem clamp(2rem,8vw,9rem); }
.about-closing h2 { margin: 0 0 2.5rem; font-family: var(--serif); font-size: clamp(3rem,6vw,6rem); font-weight: 400; line-height: .98; }

/* Contact */
.contact-shell { min-height: 100svh; display: grid; grid-template-columns: .9fr 1.1fr; padding-top: var(--header-h); }
.contact-shell__copy { display: flex; flex-direction: column; justify-content: center; padding: 7rem clamp(1.5rem,7vw,8rem); background: radial-gradient(circle at 20% 20%,rgba(202,148,55,.14),transparent 28rem), #080604; }
.contact-shell__copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.2rem,9vw,9rem); font-weight: 400; line-height: .9; }
.contact-shell__copy > p:not(.kicker) { max-width: 42rem; color: rgba(244,234,214,.7); font-family: var(--serif); font-size: clamp(1.12rem,2vw,1.5rem); }
.contact-shell__direct { margin-top: 3rem; display: grid; gap: .5rem; }
.contact-shell__direct span { color: var(--gold); font-size: .54rem; letter-spacing: .3em; }
.contact-shell__direct a { font-family: var(--serif); font-size: clamp(1.4rem,3vw,2.6rem); }
.contact-shell__copy blockquote { max-width: 36rem; margin: 4rem 0 0; color: var(--gold-bright); font-family: var(--serif); font-size: 1.2rem; font-style: italic; }
.contact-shell__form-wrap { display: flex; flex-direction: column; justify-content: center; padding: 7rem clamp(1.5rem,7vw,8rem); border-left: 1px solid var(--line); background: #050403; }
.contact-form { width: min(100%, 700px); }
.contact-form label:not(.consent) { display: grid; gap: .55rem; margin-bottom: 1.5rem; }
.contact-form label > span { color: var(--gold); font-size: .56rem; letter-spacing: .25em; text-transform: uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; padding: .85rem 0; color: var(--ivory); border: 0; border-bottom: 1px solid rgba(244,234,214,.24); border-radius: 0; outline: none; background: transparent; font-family: var(--serif); font-size: 1.1rem; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold-bright); box-shadow: 0 1px 0 var(--gold-bright); }
.contact-form .consent { display: flex; align-items: flex-start; gap: .8rem; margin: 1.7rem 0 2rem; color: rgba(244,234,214,.54); font-size: .75rem; }
.contact-form .consent input { width: 16px; height: 16px; margin-top: .2rem; accent-color: var(--gold); }
.contact-form__note { margin: 1rem 0 0; color: rgba(244,234,214,.36); font-size: .65rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; margin-bottom: 2rem; padding: 1rem 1.2rem; color: var(--ivory); border: 1px solid var(--line); background: rgba(216,182,106,.06); }
.form-status.is-visible { display: block; }
.form-status.is-error { border-color: rgba(179,78,59,.75); background: rgba(118,40,27,.15); }

/* 404 */
.error-page { min-height: 100svh; overflow: hidden; }
.error-shell { position: relative; z-index: 1; min-height: 100svh; display: grid; place-items: center; align-content: center; padding: 2rem; text-align: center; background: radial-gradient(circle,rgba(211,160,69,.15),transparent 30rem); }
.error-shell h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem,12vw,11rem); font-weight: 400; line-height: .88; }
.error-shell > p:not(.kicker) { margin: 1.4rem 0 2.5rem; color: var(--ivory-soft); font-family: var(--serif); font-size: 1.2rem; }

/* Reveal utilities */
.reveal-line, .home-hero__title, .home-hero__rule, .home-hero__creed, .home-hero__statement, .home-hero .portal-button, .home-hero__final { opacity: 0; transform: translateY(18px); }
body.is-ready .reveal-line { animation: reveal-up .7s .1s var(--ease) forwards; }
body.is-ready .home-hero__title { animation: reveal-up 1s .18s var(--ease) forwards; }
body.is-ready .home-hero__rule { animation: reveal-up .7s .38s var(--ease) forwards; }
body.is-ready .home-hero__creed { animation: reveal-up .7s .48s var(--ease) forwards; }
body.is-ready .home-hero__statement { animation: reveal-up .7s .58s var(--ease) forwards; }
body.is-ready .home-hero .portal-button { animation: reveal-up .7s .68s var(--ease) forwards; }
body.is-ready .home-hero__final { animation: reveal-up .7s .78s var(--ease) forwards; }
@keyframes reveal-up { to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1080px) {
  :root { --header-h: 82px; }
  .desktop-nav { gap: 1.25rem; }
  .desktop-nav a { font-size: .58rem; }
  .brand { font-size: .68rem; }
  .home-rail { display: none; }
  .manifesto-principle { grid-template-columns: 70px 1fr .75fr; gap: 2.5rem; padding-left: 3rem; padding-right: 3rem; }
  .manifesto-principle--reverse { grid-template-columns: 70px .75fr 1fr; }
  .journal-entry { padding-left: 4rem; padding-right: 4rem; }
  .journal-entry--image { grid-template-columns: .7fr 70px 1fr; }
  .work-standard, .about-axis, .about-pursuits { padding-left: 4rem; padding-right: 4rem; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; padding-left: 1.25rem; padding-right: 1.25rem; }
  .desktop-nav, .sound-toggle { display: none; }
  .header-tools { justify-self: end; }
  .menu-toggle { display: block; }
  .site-header--inner > .menu-toggle { display: block; justify-self: end; }
  .home-footer p:first-child { display: none; }
  .home-footer { grid-template-columns: auto 1fr; }
  .home-footer__sigil { order: -1; }
  .home-footer p:last-child { justify-self: end; }
  .home-hero__title { font-size: clamp(4rem,14vw,7rem); }

  .page-hero { min-height: 88svh; }
  .manifesto-principle, .manifesto-principle--reverse { min-height: auto; grid-template-columns: 1fr; gap: 2.5rem; padding: 7rem 1.5rem; }
  .manifesto-principle__number { grid-column: 1; grid-row: 1; font-size: 5rem; }
  .manifesto-principle__copy, .manifesto-principle--reverse .manifesto-principle__copy { grid-column: 1; grid-row: 2; }
  .manifesto-principle__art, .manifesto-principle--reverse .manifesto-principle__art { grid-column: 1; grid-row: 3; height: 62svh; }

  .editorial-hero { grid-template-columns: 1fr; min-height: 68svh; padding: calc(var(--header-h) + 5rem) 1.5rem 4rem; }
  .journal-index { grid-template-columns: 1fr; }
  .journal-index a { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .journal-entry, .journal-entry--image { grid-template-columns: 55px 1fr; gap: 1.5rem; padding: 6rem 1.5rem; }
  .journal-entry--image figure { grid-column: 1 / -1; grid-row: 3; height: 62svh; }

  .work-hero { grid-template-columns: 1fr; }
  .work-hero__copy { min-height: 60svh; padding: 5rem 1.5rem; }
  .work-hero__image { height: 64svh; }
  .work-streams { grid-template-columns: 1fr; }
  .work-streams article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .work-standard { grid-template-columns: 1fr; gap: 3rem; padding: 7rem 1.5rem; }
  .work-standard li { grid-template-columns: 55px 140px 1fr; }

  .about-intro { grid-template-columns: 1fr; padding: calc(var(--header-h) + 4rem) 1.5rem 6rem; }
  .about-intro__portrait { width: min(100%,560px); }
  .about-axis, .about-pursuits { grid-template-columns: 1fr; gap: 3rem; padding: 7rem 1.5rem; }
  .about-closing { grid-template-columns: 1fr; }
  .about-closing figure { height: 68svh; }
  .about-closing > div { padding: 5rem 1.5rem; }

  .contact-shell { grid-template-columns: 1fr; }
  .contact-shell__copy, .contact-shell__form-wrap { padding: 6rem 1.5rem; }
  .contact-shell__form-wrap { border-left: 0; border-top: 1px solid var(--line); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer p:last-child { text-align: center; }
}

@media (max-width: 700px) {
  :root { --header-h: 74px; }
  .brand { gap: .55rem; font-size: .58rem; letter-spacing: .24em; }
  .brand__mark { width: 29px; height: 29px; }
  .menu-toggle { width: 43px; }
  .menu-toggle span { display: none; }
  .hero-art img { object-position: center top; }
  .hero-vignette { background: linear-gradient(to bottom, rgba(4,3,2,.18), transparent 35%, rgba(4,3,2,.38) 52%, rgba(4,3,2,.96) 78%, #050403 100%), linear-gradient(90deg,rgba(3,2,2,.35),transparent 25%,transparent 75%,rgba(3,2,2,.35)); }
  .home-shell { min-height: 100svh; }
  .home-hero { bottom: max(2.7rem, calc(env(safe-area-inset-bottom) + 2rem)); width: calc(100vw - 2.2rem); }
  .home-hero__overline { margin-bottom: .4rem; font-size: .47rem; }
  .home-hero__title { flex-direction: column; line-height: .75; font-size: clamp(3.8rem,17vw,5.5rem); letter-spacing: .09em; }
  .home-hero__title span + span { margin: .15em 0 0; }
  .home-hero__rule { width: min(74vw,20rem); margin: .9rem auto .65rem; }
  .home-hero__creed { gap: .45rem; font-size: .58rem; letter-spacing: .12em; }
  .home-hero__statement { max-width: 23rem; margin: .5rem auto .8rem; font-size: .78rem; line-height: 1.42; }
  .home-hero__final { margin-top: .55rem; font-size: .42rem; letter-spacing: .34em; }
  .portal-button { min-width: 150px; height: 46px; font-size: .58rem; }
  .home-footer { left: 1.15rem; right: 1.15rem; bottom: .6rem; font-size: .38rem; }
  .home-footer__sigil { display: none; }
  .home-footer { display: flex; justify-content: center; }
  .home-footer p:last-child { text-align: center; }
  .mobile-menu nav a { font-size: clamp(2rem,11vw,3.6rem); }

  .page-hero__image { background-image: url("../images/hero-celestial-mobile.webp"); background-position: center top; }
  .page-hero__content h1 { font-size: clamp(4rem,18vw,7rem); }
  .page-hero__lead { font-size: 1.05rem; }
  .manifesto-principle__copy h2 { font-size: clamp(2.8rem,14vw,5rem); }
  .closing-creed > p { font-size: clamp(1.45rem,7vw,2.7rem); }

  .editorial-hero h1 { font-size: clamp(4rem,19vw,7rem); }
  .journal-entry, .journal-entry--image { grid-template-columns: 1fr; }
  .journal-entry__meta { display: flex; align-items: center; gap: 1rem; }
  .journal-entry__meta span { font-size: 3rem; }
  .journal-entry__meta p { writing-mode: initial; margin: 0; }
  .journal-entry__body h2 { font-size: clamp(2.8rem,14vw,5rem); }
  .journal-entry--image figure { grid-column: 1; }

  .work-hero__copy h1 { font-size: clamp(5rem,23vw,8rem); }
  .work-streams article { padding: 5rem 1.5rem; }
  .work-standard li { grid-template-columns: 45px 1fr; }
  .work-standard li p { grid-column: 2; }
  .work-cta h2 { font-size: clamp(3.2rem,15vw,6rem); }

  .about-intro__copy h1 { font-size: clamp(4.2rem,19vw,7rem); }
  .about-axis li { grid-template-columns: 45px 1fr; }
  .about-axis li p { grid-column: 2; }
  .about-pursuits__list p { grid-template-columns: 1fr; gap: .35rem; }
  .about-closing h2 { font-size: clamp(2.8rem,14vw,5rem); }

  .contact-shell__copy h1 { font-size: clamp(3.8rem,17vw,6.5rem); }
  .contact-shell__direct a { overflow-wrap: anywhere; font-size: 1.4rem; }
}

@media (max-height: 730px) and (min-width: 701px) {
  .home-hero { bottom: 2.25rem; }
  .home-hero__title { font-size: clamp(4rem,8.5vw,7.2rem); }
  .home-hero__rule { margin-top: .65rem; margin-bottom: .5rem; }
  .home-hero__statement { margin-top: .4rem; margin-bottom: .65rem; }
  .portal-button { height: 46px; }
  .home-hero__final { margin-top: .45rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .grain { animation: none; }
  .cursor { display: none; }
}

@media (pointer: coarse) { .cursor { display: none; } }

/* Progressive inner-page reveals and header state */
.site-header--inner.is-scrolled {
  background: rgba(5,4,3,.92);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.scroll-reveal.is-in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1; transform: none; }
}

/* Complete no-JavaScript fallback */
html.no-js .reveal-line,
html.no-js .home-hero__title,
html.no-js .home-hero__rule,
html.no-js .home-hero__creed,
html.no-js .home-hero__statement,
html.no-js .home-hero .portal-button,
html.no-js .home-hero__final {
  opacity: 1;
  transform: none;
}
@media (max-width: 820px) {
  html.no-js .site-header { grid-template-columns: 1fr; }
  html.no-js .menu-toggle { display: none; }
  html.no-js .desktop-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: .8rem;
    overflow-x: auto;
    padding: .8rem 1rem max(.8rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line-soft);
    background: rgba(5,4,3,.94);
  }
  html.no-js .desktop-nav a { font-size: .48rem; }
}
@media (max-width: 700px) and (max-height: 680px) {
  .home-hero { bottom: max(1.65rem, env(safe-area-inset-bottom)); }
  .home-hero__title { font-size: clamp(3.25rem, 14.5vw, 4.35rem); }
  .home-hero__rule { margin-top: .55rem; margin-bottom: .4rem; }
  .home-hero__creed { font-size: .5rem; }
  .home-hero__statement { margin: .35rem auto .55rem; font-size: .68rem; }
  .portal-button { height: 41px; }
  .home-hero__final { margin-top: .35rem; }
  .home-footer { display: none; }
}

/* ========================================================================== 
   2026 FULL-SCREEN DIVINE INTRODUCTION
   The front page is deliberately one scene, one name, and one hierarchy.
   ========================================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.divine-home-page {
  --scene-x: 0;
  --scene-y: 0;
  --light-x: 50%;
  --light-y: 35%;
  background: #030302;
}

.divine-home {
  position: relative;
  isolation: isolate;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #030302;
}

.divine-backdrop {
  position: absolute;
  z-index: -20;
  inset: -7%;
  background:
    linear-gradient(rgba(3,3,2,.28), rgba(3,3,2,.72)),
    url("../images/hero-divine-backdrop.webp") center / cover no-repeat;
  filter: blur(21px) saturate(.82) contrast(1.05);
  transform: scale(1.08);
  opacity: .96;
}

.divine-stage {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: min(100vw, calc(100svh * 1.7777778));
  height: min(100svh, calc(100vw * .5625));
  overflow: hidden;
  background: #060503;
  box-shadow: 0 0 110px rgba(0,0,0,.58);
  transform:
    translate(-50%, -50%)
    perspective(1700px)
    rotateX(calc(var(--scene-y) * -.16deg))
    rotateY(calc(var(--scene-x) * .19deg));
  transform-origin: 50% 50%;
  transition: filter .8s var(--ease);
}

.divine-art,
.divine-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.divine-art { z-index: 0; }
.divine-art img {
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.035) brightness(.99);
  transform: translate3d(calc(var(--scene-x) * -3px), calc(var(--scene-y) * -2px), 0) scale(1.006);
  transition: filter .8s var(--ease), transform .16s linear;
  will-change: transform;
}

.divine-stage__top-wash,
.divine-stage__center-veil,
.divine-stage__bottom-wash,
.divine-stage__radiance,
.divine-stage__pointer-light {
  position: absolute;
  pointer-events: none;
}

/* Covers the typography baked into the selected concept's header while keeping the gate visible. */
.divine-stage__top-wash {
  z-index: 2;
  inset: 0 0 auto;
  height: 13.5%;
  background: linear-gradient(to bottom, rgba(3,3,2,.96) 0%, rgba(3,3,2,.76) 39%, rgba(3,3,2,.26) 74%, transparent 100%);
}

/* A borderless tenebrist cloud removes the old tagline/button and lets the name stand alone. */
.divine-stage__center-veil {
  z-index: 3;
  left: 14%;
  top: 25.3%;
  width: 72%;
  height: 25.8%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 47%, rgba(3,3,2,.985) 0%, rgba(4,3,2,.955) 25%, rgba(4,3,2,.82) 43%, rgba(4,3,2,.46) 58%, rgba(4,3,2,.12) 70%, transparent 78%),
    radial-gradient(ellipse at 50% 12%, rgba(204,153,62,.12), transparent 54%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 54%, rgba(0,0,0,.82) 65%, transparent 81%);
  mask-image: radial-gradient(ellipse at center, #000 0 54%, rgba(0,0,0,.82) 65%, transparent 81%);
  backdrop-filter: blur(10px) saturate(.62);
  transform: translate3d(calc(var(--scene-x) * 2px), calc(var(--scene-y) * 1px),0);
}

/* Covers the old bottom labels; the hierarchy is rebuilt above as live HTML. */
.divine-stage__bottom-wash {
  z-index: 4;
  inset: auto 0 0;
  height: 17%;
  background: linear-gradient(to bottom, transparent 0%, rgba(3,3,2,.48) 42%, rgba(3,3,2,.94) 90%, #030302 100%);
}

.divine-stage__radiance {
  z-index: 5;
  inset: -8%;
  background:
    radial-gradient(ellipse at 50% 4%, rgba(255,247,218,.31), rgba(244,199,105,.12) 14%, transparent 36%),
    radial-gradient(ellipse at 50% 61%, rgba(255,224,151,.09), transparent 27%);
  mix-blend-mode: screen;
  opacity: .78;
  transition: opacity .8s var(--ease), filter .8s var(--ease), transform 1s var(--ease);
}

.divine-stage__pointer-light {
  z-index: 8;
  left: var(--light-x);
  top: var(--light-y);
  width: 31vmin;
  height: 31vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,242,199,.20) 0%, rgba(239,190,91,.08) 31%, transparent 70%);
  mix-blend-mode: screen;
  filter: blur(8px);
  opacity: .56;
  transform: translate(-50%,-50%);
  transition: opacity .45s ease;
}

.divine-canvas {
  z-index: 7;
  mix-blend-mode: screen;
  opacity: .9;
}

.site-header--cinematic {
  --header-h: 78px;
  height: calc(var(--header-h) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) clamp(1.1rem, 3.2vw, 3.9rem) 0;
  background: linear-gradient(to bottom, rgba(3,3,2,.94), rgba(3,3,2,.56) 60%, transparent);
  text-shadow: 0 2px 16px rgba(0,0,0,.9);
}

.brand--mark-only { gap: 0; }
.brand--mark-only .brand__mark {
  width: 38px;
  height: 38px;
  color: var(--gold-bright);
  stroke-width: .72;
  opacity: .95;
  filter: drop-shadow(0 0 15px rgba(241,211,145,.28));
}

.site-header--cinematic .desktop-nav a {
  color: rgba(244,234,214,.78);
  font-size: clamp(.56rem, .64vw, .7rem);
  letter-spacing: .25em;
}

.sound-toggle {
  position: relative;
  min-height: 38px;
  padding: .48rem .72rem;
  border: 1px solid rgba(216,182,106,.34);
  border-radius: 999px;
  color: rgba(244,234,214,.84);
  background: rgba(4,3,2,.38);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35), 0 0 20px rgba(224,179,89,.05);
  transition: color .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.sound-toggle:hover,
.sound-toggle:focus-visible,
.sound-toggle[aria-pressed="true"] {
  color: var(--gold-bright);
  border-color: rgba(241,211,145,.68);
  background: rgba(29,22,11,.62);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.4), 0 0 25px rgba(224,179,89,.16);
}
.sound-toggle__disc {
  position: relative;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .9;
}
.sound-toggle__disc::before,
.sound-toggle__disc::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .55;
}
.sound-toggle__disc::before { width: 7px; height: 7px; }
.sound-toggle__disc::after { width: 2px; height: 2px; background: currentColor; }
.sound-toggle__disc i { position: absolute; top: -1px; right: -1px; width: 5px; height: 1px; background: currentColor; transform: rotate(-38deg); transform-origin: right; }
.sound-toggle[aria-pressed="true"] .sound-toggle__disc { animation: record-spin 5s linear infinite; }
@keyframes record-spin { to { transform: rotate(360deg); } }

.divine-order {
  position: absolute;
  z-index: 30;
  left: 50%;
  top: clamp(82px, 10.2%, 126px);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ivory);
  text-align: center;
  text-shadow: 0 3px 23px rgba(0,0,0,.94), 0 0 22px rgba(223,174,75,.24);
  transform: translateX(-50%);
}

.divine-order a { position: relative; display: block; }
.divine-order__god {
  color: #f3d68f;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.7vw, 4.8rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: .28em;
  text-indent: .28em;
  transition: color .35s ease, text-shadow .35s ease, transform .35s var(--ease);
}
.divine-order__axis {
  position: relative;
  width: clamp(150px, 20vw, 330px);
  height: 20px;
  margin: .24rem 0 .12rem;
}
.divine-order__axis::before,
.divine-order__axis::after {
  content: "";
  position: absolute;
  top: 10px;
  width: calc(50% - 14px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241,211,145,.72));
}
.divine-order__axis::before { left: 0; }
.divine-order__axis::after { right: 0; transform: scaleX(-1); }
.divine-order__axis i,
.divine-order__axis b { position: absolute; display: block; left: 50%; top: 50%; background: var(--gold-bright); transform: translate(-50%,-50%); }
.divine-order__axis i { width: 1px; height: 20px; }
.divine-order__axis b { width: 12px; height: 1px; }
.divine-order__virtues {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3.6vw, 4.4rem);
}
.divine-order__virtues a {
  color: rgba(244,234,214,.86);
  font-family: var(--serif);
  font-size: clamp(.58rem, .77vw, .84rem);
  letter-spacing: .28em;
  text-indent: .28em;
  transition: color .3s ease, text-shadow .3s ease, transform .3s var(--ease);
}
.divine-order__god:hover,
.divine-order__god:focus-visible,
.divine-order__virtues a:hover,
.divine-order__virtues a:focus-visible {
  color: #fff1c5;
  text-shadow: 0 0 10px rgba(255,239,191,.92), 0 0 38px rgba(224,168,57,.58), 0 3px 23px rgba(0,0,0,.95);
  transform: translateY(-2px);
}

.divine-introduction {
  position: absolute;
  z-index: 25;
  inset: 0;
  pointer-events: none;
}

.divine-name {
  position: absolute;
  left: 50%;
  top: 35.9%;
  width: 100%;
  margin: 0;
  padding: 0 3vw;
  color: #e8c988;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.25vw, 9.1rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: .115em;
  text-align: center;
  text-indent: .115em;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(255,241,193,.22),
    0 5px 9px rgba(0,0,0,.95),
    0 0 28px rgba(0,0,0,.92),
    0 0 52px rgba(219,167,64,.16);
  transform: translate(-50%,-50%);
  opacity: 0;
}
.divine-name span + span { margin-left: .21em; }
body.is-ready .divine-name { animation: divine-name-reveal 1.35s .22s var(--ease) forwards; }
@keyframes divine-name-reveal {
  0% { opacity: 0; letter-spacing: .19em; filter: blur(8px); transform: translate(-50%,-45%); }
  100% { opacity: 1; letter-spacing: .115em; filter: blur(0); transform: translate(-50%,-50%); }
}

body.is-ready .divine-order { animation: divine-order-reveal 1.1s .55s var(--ease) both; }
@keyframes divine-order-reveal {
  from { opacity: 0; transform: translate(-50%,-10px); }
  to { opacity: 1; transform: translate(-50%,0); }
}

body[data-principle="god"] .divine-stage__radiance,
body.music-playing .divine-stage__radiance { opacity: 1; filter: brightness(1.23); }
body[data-principle="truth"] .divine-art img { filter: saturate(.78) contrast(1.11) brightness(.98); }
body[data-principle="light"] .divine-stage__radiance { opacity: 1; filter: brightness(1.38); }
body[data-principle="righteousness"] .divine-art img { filter: saturate(1.02) contrast(1.11) brightness(.97); }
body[data-principle] .divine-stage__pointer-light { opacity: .9; }

.divine-loader p { letter-spacing: .52em; text-indent: .52em; }

/* Inner pages also receive the supplied music control. */
.site-header--inner .header-tools { justify-self: end; }
.site-header--inner .sound-toggle { background: rgba(5,4,3,.52); }

@media (max-width: 1080px) {
  .site-header--cinematic .desktop-nav { gap: 1.1rem; }
  .site-header--cinematic .desktop-nav a { font-size: .54rem; }
}

@media (max-width: 820px) {
  .site-header--cinematic,
  .site-header--inner {
    grid-template-columns: 1fr auto;
  }
  .site-header--cinematic .desktop-nav,
  .site-header--inner .desktop-nav { display: none; }
  .site-header--cinematic .sound-toggle,
  .site-header--inner .sound-toggle { display: inline-flex; }
  .site-header--cinematic .menu-toggle,
  .site-header--inner .menu-toggle { display: block; }
  .header-tools { gap: .68rem; }
  .sound-toggle__text { display: none; }
  .sound-toggle { width: 39px; min-width: 39px; height: 39px; justify-content: center; padding: 0; }
  .sound-toggle__bars { display: none; }
}

@media (max-width: 800px) {
  .divine-stage {
    width: 100vw;
    height: 100svh;
    transform:
      translate(-50%,-50%)
      perspective(1400px)
      rotateX(calc(var(--scene-y) * -.09deg))
      rotateY(calc(var(--scene-x) * .1deg));
  }
  .divine-art img { object-position: center; transform: translate3d(calc(var(--scene-x) * -2px), calc(var(--scene-y) * -1px),0) scale(1.004); }
  .divine-stage__top-wash { height: 11.5%; }
  .divine-stage__center-veil {
    left: -18%;
    top: 25%;
    width: 136%;
    height: 27%;
    backdrop-filter: blur(9px) saturate(.62);
  }
  .divine-stage__bottom-wash { height: 14%; }
  .divine-order {
    top: max(calc(env(safe-area-inset-top) + 82px), 10.5%);
    width: 96vw;
  }
  .divine-order__god { font-size: clamp(2.4rem, 11vw, 4rem); letter-spacing: .22em; text-indent: .22em; }
  .divine-order__axis { width: min(48vw, 230px); margin-top: .1rem; }
  .divine-order__virtues { width: 100%; gap: clamp(.75rem, 5vw, 2.1rem); }
  .divine-order__virtues a { font-size: clamp(.49rem, 2.35vw, .69rem); letter-spacing: .18em; text-indent: .18em; }
  .divine-name {
    top: 38%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .12em;
    padding: 0 1rem;
    font-size: clamp(3.55rem, 17vw, 6.4rem);
    line-height: .78;
    letter-spacing: .105em;
    text-indent: .105em;
    white-space: normal;
  }
  .divine-name span + span { margin-left: 0; }
  @keyframes divine-name-reveal {
    0% { opacity: 0; letter-spacing: .17em; filter: blur(7px); transform: translate(-50%,-44%); }
    100% { opacity: 1; letter-spacing: .105em; filter: blur(0); transform: translate(-50%,-50%); }
  }
  .divine-stage__pointer-light { width: 52vmin; height: 52vmin; }
}

@media (max-width: 460px) {
  .site-header--cinematic { padding-left: .85rem; padding-right: .85rem; }
  .brand--mark-only .brand__mark { width: 31px; height: 31px; }
  .header-tools { gap: .35rem; }
  .divine-order__virtues { gap: .72rem; }
  .divine-order__virtues a { font-size: .46rem; }
  .divine-name { font-size: clamp(3.25rem, 17.5vw, 5.35rem); }
}

@media (max-height: 740px) and (min-width: 801px) {
  .divine-order { top: 11.7%; }
  .divine-order__god { font-size: clamp(2rem, 3.2vw, 3.4rem); }
  .divine-name { top: 36.7%; font-size: clamp(3.5rem, 6.6vw, 7rem); }
}

@media (prefers-reduced-motion: reduce) {
  .divine-stage { transform: translate(-50%,-50%); }
  .divine-art img,
  .divine-stage__center-veil { transform: none; }
  .divine-name { opacity: 1; animation: none !important; }
  .divine-order { opacity: 1; animation: none !important; }
  .sound-toggle[aria-pressed="true"] .sound-toggle__disc { animation: none; }
}

html.no-js .divine-name,
html.no-js .divine-order { opacity: 1; }
