:root {
  --ivory: oklch(0.965 0.012 82);
  --white: oklch(0.99 0.004 82);
  --ink: oklch(0.22 0.047 245);
  --navy: oklch(0.285 0.07 240);
  --deep: oklch(0.16 0.045 245);
  --logo-blue: oklch(0.6754 0.1199 241.89);
  --hero-blue: oklch(0.64 0.13 242);
  --logo-gold: oklch(0.8138 0.1475 79.72);
  --gold: oklch(0.72 0.13 78);
  --gold-text: oklch(0.43 0.12 72);
  --pale: oklch(0.91 0.05 82);
  --muted: oklch(0.42 0.035 245);
  --line: color-mix(in oklch, var(--navy) 18%, transparent);
  --font-body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-editorial: Georgia, Cambria, "Times New Roman", serif;
  --font-signature: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  --text-caption: .875rem;
  --text-body: 1rem;
  --text-subheading: 1.25rem;
  --text-title: clamp(2rem, 4vw, 3rem);
  --text-display: clamp(2.5rem, 6vw, 4rem);
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --section-space: clamp(3rem, 7vw, 6rem);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --z-nav: 20;
  --z-overlay: 30;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: var(--font-body); font-size: var(--text-body); line-height: 1.6; font-kerning: normal; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
button:disabled, input:disabled, select:disabled, textarea:disabled { cursor: not-allowed; opacity: .72; }
a, button, input, select, textarea { outline-offset: var(--space-1); }
:focus-visible { outline: 3px solid var(--gold-text); }
h1, h2, h3 { margin-block: 0; font-family: var(--font-editorial); line-height: 1.12; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: var(--text-display); }
h2 { font-size: var(--text-title); }
h3 { font-size: var(--text-subheading); }
p { max-width: 65ch; margin-block: 0; text-wrap: pretty; }
.shell { width: min(72rem, calc(100% - 3rem)); margin-inline: auto; }
.skip-link { position: fixed; top: var(--space-4); left: var(--space-4); z-index: var(--z-overlay); padding: var(--space-3) var(--space-4); background: var(--white); transform: translateY(-200%); }
.skip-link:focus { transform: none; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: var(--z-nav); background: color-mix(in oklch, var(--ivory) 96%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { width: min(76rem, calc(100% - 3rem)); min-height: 5.5rem; display: flex; align-items: center; gap: var(--space-6); }
.brand { margin-right: auto; display: flex; align-items: center; gap: var(--space-3); flex: 0 0 auto; }
.brand img { width: 4rem; height: 4rem; border-radius: 50%; object-fit: cover; }
.brand > span { min-width: 20rem; text-align: center; }
.brand b { display: block; font-family: var(--font-signature); font-size: clamp(1.75rem, 2.5vw, 2.5rem); font-weight: 700; line-height: 1; white-space: nowrap; letter-spacing: -.03em; }
.brand small { display: block; margin-top: var(--space-2); color: var(--gold-text); font-family: var(--font-editorial); font-size: var(--text-caption); font-weight: 700; letter-spacing: .12em; }
.brand small span, .footer-brand small span { display: inline; }
.nav { display: flex; align-items: center; gap: var(--space-6); font-size: var(--text-caption); font-weight: 700; }
.nav a { min-height: 2.75rem; display: grid; place-items: center; border-bottom: 2px solid transparent; white-space: nowrap; }
.nav a:hover, .nav a.active { color: var(--gold-text); border-color: var(--gold-text); }
.language-switch { position: relative; display: grid; grid-template-columns: repeat(2, 2.75rem); flex: 0 0 auto; padding: var(--space-1); border: 1px solid var(--navy); border-radius: 999px; isolation: isolate; }
.language-switch::before { content: ""; position: absolute; z-index: -1; top: var(--space-1); left: var(--space-1); width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--deep); transition: transform .3s var(--ease); }
.language-switch[data-active="en"]::before { transform: translateX(2.75rem); }
.language-option { width: 2.75rem; height: 2.75rem; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--ink); font-size: var(--text-caption); font-weight: 800; transition: color .2s ease; }
.language-option.active { color: white; }
.search-link, .menu-button { width: 2.75rem; height: 2.75rem; flex: 0 0 auto; }
.search-link { display: grid; place-items: center; }
.search-link svg { width: 1.5rem; fill: none; stroke: currentColor; stroke-width: 1.7; }
.menu-button { display: none; padding: var(--space-3); border: 0; background: transparent; }
.menu-button span { display: block; height: 2px; margin-block: var(--space-1); background: var(--ink); }
.menu-button i { position: absolute; overflow: hidden; width: 1px; height: 1px; }

.view { display: none; }
.view.active { display: block; animation: view-in .3s var(--ease); }
@keyframes view-in { from { opacity: .7; transform: translateY(var(--space-1)); } }
.button { min-height: 2.75rem; display: inline-flex; align-items: center; justify-content: center; padding: var(--space-3) var(--space-6); border: 1px solid transparent; border-radius: var(--space-1); font-size: var(--text-caption); font-weight: 800; line-height: 1.2; }
.primary { background: var(--navy); color: white; }
.gold { background: var(--gold); color: var(--deep); }
.button:disabled { border-color: var(--line); background: color-mix(in oklch, var(--navy) 12%, var(--white)); color: var(--muted); }

.landing-hero { position: relative; width: 100%; height: auto; aspect-ratio: 2400 / 1018; overflow: hidden; border-radius: 0 0 50% 50% / 0 0 3% 3%; background: var(--deep); }
.landing-hero-art { position: absolute; inset: 0; overflow: hidden; }
.hero-animated-scene { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.hero-animated-base { width: 100%; height: 100%; display: block; }
.hero-animation-layer { position: absolute; inset: 0; pointer-events: none; }
.hero-bird-clean, .hero-bird { position: absolute; }
.hero-bird-clean img, .hero-bird-part, .hero-bird-part img { width: 100%; height: 100%; display: block; }
.hero-bird-upper-position { top: 15.717%; left: 7.083%; width: 12.5%; height: 21.611%; }
.hero-bird-lower-position { top: 34.381%; left: 11.667%; width: 12.5%; height: 23.576%; }
.hero-bird-clean { z-index: 1; }
.hero-bird { z-index: 2; transform-origin: 56% 50%; will-change: transform, opacity; animation: hero-bird-glide var(--bird-duration) var(--bird-delay) linear infinite; }
.hero-bird-part { position: absolute; inset: 0; }
.hero-bird-body { z-index: 2; }
.hero-bird-wing { z-index: 1; transform-origin: var(--wing-root-x) var(--wing-root-y); will-change: transform; animation: hero-bird-wing-flap var(--bird-duration) var(--bird-delay) linear infinite; }
.hero-bird-wing-near { z-index: 3; }
.hero-bird-upper { z-index: 4; --bird-duration: 17s; --bird-delay: -3s; --bird-x: 290%; --bird-y: 20%; --bird-rotate: 2.5deg; }
.hero-bird-upper .hero-bird-body { clip-path: polygon(48% 53%, 53% 50%, 60% 52%, 64% 57%, 63% 64%, 59% 69%, 55% 72%, 51% 70%, 48% 65%, 48% 73%, 40% 73%, 43% 68%, 46% 62%, 47% 57%); }
.hero-bird-upper .hero-bird-wing { animation-name: hero-bird-upper-wing-flap; }
.hero-bird-upper .hero-bird-wing-far { --wing-root-x: 53%; --wing-root-y: 55%; --flap-down: 27deg; --flap-up: -11deg; clip-path: polygon(49% 39%, 53% 39%, 57% 44%, 58% 51%, 57% 57%, 54% 59%, 51% 55%, 50% 49%); }
.hero-bird-upper .hero-bird-wing-near { --wing-root-x: 52%; --wing-root-y: 57%; --flap-down: -35deg; --flap-up: 14deg; clip-path: polygon(42% 40%, 46% 40%, 50% 45%, 53% 52%, 54% 58%, 52% 61%, 48% 59%, 44% 53%); }
.hero-bird-lower { --bird-duration: 13.5s; --bird-delay: -8s; --bird-x: 258%; --bird-y: -34%; --bird-rotate: -1.5deg; }
.hero-bird-lower .hero-bird-body { clip-path: polygon(38% 49%, 47% 50%, 51% 51%, 55% 51%, 60% 53%, 60% 59%, 56% 62%, 51% 61%, 47% 58%, 42% 58%, 38% 55%, 44% 54%); }
.hero-bird-lower .hero-bird-wing-far { --wing-root-x: 53%; --wing-root-y: 55%; --flap-down: 17deg; --flap-up: -6deg; clip-path: polygon(48% 38%, 51% 38%, 55% 43%, 57% 50%, 57% 56%, 54% 58%, 51% 54%, 49% 48%); }
.hero-bird-lower .hero-bird-wing-near { --wing-root-x: 52%; --wing-root-y: 56%; --flap-down: -20deg; --flap-up: 7deg; clip-path: polygon(42% 52%, 47% 51%, 52% 54%, 55% 59%, 54% 65%, 50% 68%, 46% 65%, 43% 60%); }
.hero-cross-occluder { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; display: block; clip-path: polygon(48.75% 26.7%, 51.05% 26.7%, 51.05% 39.65%, 57.05% 39.65%, 57.05% 44.9%, 51.05% 44.9%, 51.05% 76%, 48.75% 76%, 48.75% 44.9%, 42.65% 44.9%, 42.65% 39.65%, 48.75% 39.65%); }
.hero-sun-clip { position: absolute; inset: 0; overflow: hidden; -webkit-mask-image: linear-gradient(to right, #000 0%, #000 34%, transparent 45%); mask-image: linear-gradient(to right, #000 0%, #000 34%, transparent 45%); }
.hero-sun-glow { position: absolute; top: 51.57%; left: 41.79%; width: 22%; height: 22%; border-radius: 50%; background: radial-gradient(circle, rgba(255,252,230,.98) 0%, rgba(255,244,200,.7) 30%, rgba(255,228,160,.28) 58%, rgba(255,225,150,0) 78%); mix-blend-mode: screen; animation: hero-sun-pulse 5s ease-in-out infinite; }
.hero-sky-flash { position: absolute; top: 0; left: 52%; width: 48%; height: 65%; background: radial-gradient(ellipse at 55% 35%, rgba(210,225,255,.55) 0%, rgba(210,225,255,.2) 35%, rgba(210,225,255,0) 65%); opacity: 0; mix-blend-mode: screen; }
.hero-sky-flash-a { animation: hero-sky-pulse 6.4s .3s infinite; }
.hero-sky-flash-b { animation: hero-sky-pulse 8.6s 2.6s infinite; }
.hero-bolt-glow { position: absolute; opacity: 0; mix-blend-mode: screen; }
.hero-bolt-glow img { width: 100%; height: 100%; display: block; }
.hero-bolt-a { top: 38.8%; left: 55.83%; width: 7.08%; height: 29.96%; animation: hero-bolt-flash-a 6.4s .3s infinite; }
.hero-bolt-b { top: 29.47%; left: 66.67%; width: 20%; height: 38.31%; animation: hero-bolt-flash-b 8.6s 2.6s infinite; }
@keyframes hero-sun-pulse { 0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(.85); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.35); } }
@keyframes hero-bird-glide {
  0% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
  12% { opacity: 1; transform: translate3d(calc(var(--bird-x) * .14), calc(var(--bird-y) * .14), 0) rotate(calc(var(--bird-rotate) * .14)) scale(.995); }
  24% { opacity: 1; transform: translate3d(calc(var(--bird-x) * .27), calc(var(--bird-y) * .27), 0) rotate(calc(var(--bird-rotate) * .27)) scale(.99); }
  36% { opacity: 1; transform: translate3d(calc(var(--bird-x) * .41), calc(var(--bird-y) * .41), 0) rotate(calc(var(--bird-rotate) * .41)) scale(.985); }
  48% { opacity: 1; transform: translate3d(calc(var(--bird-x) * .55), calc(var(--bird-y) * .55), 0) rotate(calc(var(--bird-rotate) * .55)) scale(.98); }
  60% { opacity: 1; transform: translate3d(calc(var(--bird-x) * .68), calc(var(--bird-y) * .68), 0) rotate(calc(var(--bird-rotate) * .68)) scale(.975); }
  72% { opacity: 1; transform: translate3d(calc(var(--bird-x) * .8), calc(var(--bird-y) * .8), 0) rotate(calc(var(--bird-rotate) * .8)) scale(.97); }
  78% { opacity: .75; transform: translate3d(calc(var(--bird-x) * .87), calc(var(--bird-y) * .87), 0) rotate(calc(var(--bird-rotate) * .87)) scale(.966); }
  84% { opacity: .3; transform: translate3d(calc(var(--bird-x) * .94), calc(var(--bird-y) * .94), 0) rotate(calc(var(--bird-rotate) * .94)) scale(.962); }
  88% { opacity: 0; transform: translate3d(var(--bird-x), var(--bird-y), 0) rotate(var(--bird-rotate)) scale(.96); }
  89%, 94% { opacity: 0; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
  98%, 100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}
@keyframes hero-bird-wing-flap {
  0%, 16%, 22%, 40%, 46%, 64%, 70%, 100% { transform: rotate(0); }
  18%, 42%, 66% { transform: rotate(var(--flap-down)); }
  20%, 44%, 68% { transform: rotate(var(--flap-up)); }
}
@keyframes hero-bird-upper-wing-flap {
  0%, 9%, 13%, 19%, 23%, 29%, 33%, 39%, 43%, 49%, 53%, 59%, 63%, 100% { transform: rotate(0); }
  11%, 21%, 31%, 41%, 51%, 61% { transform: rotate(var(--flap-down)); }
  12%, 22%, 32%, 42%, 52%, 62% { transform: rotate(var(--flap-up)); }
}
@keyframes hero-bolt-flash-a { 0% { opacity: 0; } 1% { opacity: 1; } 2% { opacity: .25; } 3% { opacity: .95; } 5%, 100% { opacity: 0; } }
@keyframes hero-bolt-flash-b { 0%, 1.3% { opacity: 0; } 2.1% { opacity: 1; } 2.9% { opacity: .2; } 3.6% { opacity: .85; } 5.5%, 100% { opacity: 0; } }
@keyframes hero-sky-pulse { 0% { opacity: 0; } 1.5% { opacity: .8; } 3%, 100% { opacity: 0; } }
.hero-season-composition { position: absolute; inset: 0; z-index: 5; margin: 0; font-family: var(--font-signature); font-size: clamp(1.3rem, 6.2vw, 6rem); font-weight: 700; line-height: 1; letter-spacing: 0; pointer-events: none; }
.hero-season-composition > span { position: absolute; top: 3%; display: block; white-space: nowrap; text-align: center; -webkit-text-stroke: clamp(.6px, .09vw, 1.35px) var(--deep); paint-order: stroke fill; text-shadow: 0 .04em .08em oklch(0.16 0.045 245 / .58); }
.hero-season-line { display: block; line-height: .84; }
.hero-season-left { left: 15%; width: 38%; color: var(--hero-blue); }
.hero-season-join { top: 12% !important; left: 50%; color: var(--white); font-size: .8em; transform: translateX(-50%); }
.hero-season-right { right: 11%; width: 43%; color: var(--logo-gold); }
.hero-scripture { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.hero-scripture text { font-family: var(--font-signature); font-size: 44px; font-weight: 700; transform: rotate(-.28deg); transform-origin: 1200px 447px; }
.hero-scripture-groove { fill: transparent; stroke: oklch(0.12 0.04 55 / .72); stroke-width: 5px; stroke-linejoin: round; }
.hero-scripture-paint { fill: oklch(0.965 0.012 88); stroke: oklch(0.18 0.045 58 / .9); stroke-width: 1.4px; paint-order: stroke fill; filter: drop-shadow(1px 1.5px .7px oklch(0.12 0.035 55 / .8)); }

.hero-support { background: var(--white); border-bottom: 1px solid var(--line); }
.hero-support-inner { display: grid; justify-items: center; gap: var(--space-6); padding-block: var(--space-6) var(--space-8); }
.hero-welcome-wrap { display: grid; justify-items: center; gap: var(--space-3); text-align: center; }
.hero-welcome { max-inline-size: 52rem; color: var(--navy); font-family: var(--font-editorial); font-size: clamp(1.25rem, 2.3vw, 1.8rem); font-weight: 700; line-height: 1.2; text-align: center; text-wrap: balance; }
.hero-intro { max-width: 60ch; color: var(--muted); font-family: var(--font-editorial); font-size: var(--text-subheading); line-height: 1.55; text-align: center; }
.hero-next { width: min(100%, 56rem); display: grid; grid-template-columns: auto minmax(22rem, 34rem); align-items: center; justify-content: center; gap: var(--space-8); }
.welcome-reserve { width: 100%; display: grid; grid-template-columns: 8rem 1fr; align-items: center; gap: var(--space-4); }
.welcome-reserve-visual { aspect-ratio: 16 / 9; display: grid; place-items: center; background: var(--deep); color: var(--pale); }
.welcome-reserve-visual span { font-family: var(--font-editorial); font-size: var(--text-caption); letter-spacing: .08em; }
.welcome-reserve strong, .welcome-reserve small { display: block; }
.welcome-reserve strong { font-family: var(--font-editorial); font-size: var(--text-body); }
.welcome-reserve small { margin-top: var(--space-1); color: var(--muted); font-size: var(--text-caption); line-height: 1.45; }

.home-section { padding-top: var(--section-space); }
.formats-section { padding-bottom: 0; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(16rem, .6fr); align-items: end; gap: var(--space-8); margin-bottom: var(--space-6); }
.section-heading h2 { font-size: var(--text-title); }
.section-heading p { color: var(--muted); }
.content-directory { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.content-directory a { min-height: 8rem; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-6) var(--space-4); border-left: 1px solid var(--line); transition: background .25s ease, color .25s ease; }
.content-directory a:first-child { border-left: 0; }
.content-directory a:hover { background: var(--white); color: var(--gold-text); }
.content-directory strong, .content-directory small { display: block; }
.content-directory strong { font-family: var(--font-editorial); font-size: var(--text-subheading); }
.content-directory small { margin-top: var(--space-2); color: var(--muted); font-size: var(--text-caption); line-height: 1.45; }
.content-directory b { flex: 0 0 auto; color: var(--gold-text); font-size: var(--text-subheading); }

.feature-teaching { display: grid; grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr); align-items: stretch; gap: var(--space-12); }
.feature-copy { align-self: center; padding-block: var(--space-8); }
.feature-copy h2 { margin-bottom: var(--space-6); }
.status-line { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); color: var(--gold-text); font-size: var(--text-caption); }
.status-line span { width: var(--space-8); height: 1px; background: currentColor; }
.feature-copy h3 { margin-bottom: var(--space-3); font-size: var(--text-subheading); }
.feature-copy > p:last-child { color: var(--muted); }
.media-reserve { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; gap: var(--space-2); padding: var(--space-6); background-color: var(--deep); background-image: linear-gradient(115deg, transparent 49.7%, rgba(255,255,255,.09) 50%, transparent 50.3%), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, 100% 3rem; color: white; }
.media-reserve::after { content: ""; position: absolute; top: var(--space-6); right: var(--space-6); width: var(--space-12); height: var(--space-12); border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.media-reserve span { position: relative; font-size: var(--text-caption); color: var(--pale); }
.media-reserve strong { position: relative; font-family: var(--font-editorial); font-size: var(--text-subheading); }
.feature-media { min-height: 24rem; }

.editorial-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); }
.list-heading { min-height: 4rem; display: flex; align-items: end; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-4); }
.list-heading h2 { font-size: var(--text-subheading); }
.list-heading a { color: var(--gold-text); font-size: var(--text-caption); font-weight: 700; }
.preview-row { min-height: 4rem; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); border-top: 1px solid var(--line); }
.preview-row span { font-size: var(--text-body); }
.preview-row strong { color: var(--muted); font-size: var(--text-caption); font-weight: 600; }

.evidence-band { margin-top: var(--section-space); padding-block: var(--section-space); background: var(--white); }
.evidence-layout { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: var(--space-16); }
.evidence-media { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: var(--space-4); }
.portrait-photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--deep); }
.portrait-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 48% center; }
.artifact-reserve { aspect-ratio: 4 / 3; }
.evidence-copy h2 { margin-bottom: var(--space-6); }
.evidence-copy p { color: var(--muted); font-size: var(--text-subheading); line-height: 1.55; }

.newsletter-preview { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: var(--space-16); margin-block: var(--section-space); padding-block: var(--space-8); border-block: 1px solid var(--line); }
.newsletter-preview h2 { margin-bottom: var(--space-2); font-size: var(--text-subheading); }
.newsletter-preview p { color: var(--muted); }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; }
.newsletter-form input { min-width: 0; min-height: 2.75rem; padding: var(--space-3) var(--space-4); border: 1px solid var(--line); border-radius: var(--space-1) 0 0 var(--space-1); background: var(--white); }
.newsletter-form .button { border-radius: 0 var(--space-1) var(--space-1) 0; }
.availability { grid-column: 1 / -1; margin-top: var(--space-2); font-size: var(--text-caption); }

.page { min-height: 70vh; padding-block: var(--section-space); }
.page-heading { max-width: 48rem; margin-bottom: var(--space-8); }
.page-heading h1 { margin-bottom: var(--space-4); }
.page-heading > p { color: var(--muted); font-size: var(--text-subheading); line-height: 1.55; }
.preview-notice { max-width: 65ch; margin-bottom: var(--space-8); padding-block: var(--space-4); border-block: 1px solid var(--line); color: var(--muted); }
.filters { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-4); margin-bottom: var(--space-4); padding: var(--space-4); background: var(--white); border: 1px solid var(--line); }
label span { display: block; margin-bottom: var(--space-2); font-size: var(--text-caption); font-weight: 800; }
.filters input, .filters select, .contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 3rem; padding: var(--space-3); border: 1px solid var(--line); background: white; }
.result-count { margin-bottom: var(--space-4); color: var(--muted); font-size: var(--text-caption); }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: var(--space-6); }
.post-card { display: flex; flex-direction: column; min-height: 24rem; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.post-placeholder-art { min-height: 11rem; display: grid; place-items: center; background-color: var(--deep); background-image: linear-gradient(135deg, transparent 49.7%, rgba(255,255,255,.1) 50%, transparent 50.3%); color: var(--pale); font-family: var(--font-editorial); }
.post-placeholder-art span { padding: var(--space-2) var(--space-3); border: 1px solid rgba(255,255,255,.35); font-size: var(--text-caption); }
.post-copy { flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: var(--space-6); }
.tag { display: inline-block; margin-bottom: var(--space-3); color: var(--gold-text); font-size: var(--text-caption); font-weight: 800; }
.post-copy h2 { margin-bottom: var(--space-3); font-size: var(--text-subheading); }
.post-copy p { margin-bottom: var(--space-6); color: var(--muted); }
.post-copy .button { margin-top: auto; }
.empty-state { padding-block: var(--space-16); text-align: center; }
.empty-state h2 { margin-bottom: var(--space-3); }
.empty-state p { margin-inline: auto; }
.text-button { min-height: 2.75rem; margin-top: var(--space-4); border: 0; background: transparent; color: var(--gold-text); font-weight: 800; text-decoration: underline; }

.article-hero { padding-block: var(--section-space); background: var(--deep); color: white; }
.article-hero .shell { max-width: 48rem; }
.article-hero h1 { margin-bottom: var(--space-4); }
.article-hero p { color: var(--pale); font-size: var(--text-subheading); }
.article-placeholder { width: min(48rem, calc(100% - 3rem)); margin-inline: auto; padding-block: var(--section-space); }
.article-placeholder h2 { margin-bottom: var(--space-4); }
.article-placeholder p { margin-bottom: var(--space-6); color: var(--muted); }
.back-link { display: inline-flex; min-height: 2.75rem; align-items: center; margin-bottom: var(--space-6); color: var(--pale); font-weight: 800; }

.sermon-layout { display: grid; grid-template-columns: 16rem 1fr; gap: var(--space-16); }
.sermon-layout aside { position: sticky; top: 7rem; align-self: start; }
.sermon-layout aside h2 { margin-bottom: var(--space-4); font-size: var(--text-subheading); }
.series-options { display: grid; }
.series-filter { min-height: 2.75rem; padding: var(--space-3) 0; border: 0; border-top: 1px solid var(--line); background: transparent; text-align: left; }
.series-filter.active { color: var(--gold-text); font-weight: 800; }
.sermon-list { display: grid; }
.sermon-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--space-6); min-height: 8rem; padding-block: var(--space-6); border-top: 1px solid var(--line); }
.sermon-item:first-child { border-top: 0; }
.sermon-item small { display: block; margin-bottom: var(--space-2); color: var(--gold-text); font-size: var(--text-caption); }
.sermon-item h2 { margin-bottom: var(--space-2); font-size: var(--text-subheading); }
.sermon-item p { color: var(--muted); }

.channel-feature { display: flex; align-items: end; justify-content: space-between; gap: var(--space-12); margin-bottom: var(--space-8); padding-block: var(--space-6); border-block: 1px solid var(--line); }
.channel-feature > div { max-width: 48rem; }
.channel-feature h2 { margin-bottom: var(--space-2); font-size: var(--text-title); }
.channel-feature p { color: var(--muted); }
.channel-feature .button { flex: 0 0 auto; }
.video-feed-status { min-height: 2.75rem; margin-bottom: var(--space-6); color: var(--muted); font-size: var(--text-caption); }
.video-feed-message { min-height: 9rem; display: flex; align-items: center; justify-content: space-between; gap: var(--space-8); padding-block: var(--space-6); border-block: 1px solid var(--line); color: var(--ink); }
.video-feed-message h2 { margin-bottom: var(--space-2); font-size: var(--text-subheading); }
.video-feed-message p { color: var(--muted); }
.video-feed-message .button { flex: 0 0 auto; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: var(--space-6); row-gap: var(--space-12); }
.video-entry { min-width: 0; }
.video-card { width: 100%; display: grid; gap: var(--space-4); padding: 0; border: 0; background: transparent; color: inherit; text-align: left; }
.video-thumbnail { position: relative; aspect-ratio: 16 / 9; overflow: hidden; display: block; background: var(--deep); }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.video-play { position: absolute; left: var(--space-3); bottom: var(--space-3); width: 3rem; height: 3rem; display: grid; place-items: center; border: 2px solid white; border-radius: 50%; background: var(--navy); color: white; font-size: var(--text-caption); transform: translateZ(0); transition: background .2s ease, transform .2s var(--ease); }
.video-duration { position: absolute; right: var(--space-2); bottom: var(--space-2); padding: var(--space-1) var(--space-2); background: rgba(2,16,31,.9); color: white; font-size: var(--text-caption); font-variant-numeric: tabular-nums; line-height: 1.2; }
.video-card-copy { min-width: 0; display: grid; gap: var(--space-2); }
.video-card-copy strong { font-family: var(--font-editorial); font-size: var(--text-subheading); line-height: 1.3; text-wrap: pretty; }
.video-meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); color: var(--muted); font-size: var(--text-caption); font-variant-numeric: tabular-nums; }
.video-card:focus-visible { outline-offset: var(--space-2); }
.dialog-open { overflow: hidden; }
.video-player-dialog { width: min(60rem, calc(100% - 2rem)); max-width: none; max-height: calc(100dvh - 2rem); padding: 0; border: 0; border-radius: var(--space-3); overflow: auto; background: var(--deep); color: white; box-shadow: 0 var(--space-6) var(--space-8) rgba(1,10,20,.42); }
.video-player-dialog::backdrop { background: rgba(1,10,20,.78); }
.video-player-dialog[open] { animation: video-dialog-in .25s var(--ease); }
@keyframes video-dialog-in { from { opacity: 0; transform: translateY(var(--space-3)) scale(.985); } }
.video-player-panel { min-width: 0; }
.video-player-header { display: flex; align-items: start; justify-content: space-between; gap: var(--space-6); padding: var(--space-4) var(--space-6); border-bottom: 1px solid rgba(255,255,255,.18); }
.video-player-header h2 { font-size: var(--text-subheading); }
.video-player-header p { margin-top: var(--space-1); color: var(--pale); font-size: var(--text-caption); line-height: 1.45; }
.video-player-close { width: 2.75rem; height: 2.75rem; flex: 0 0 auto; padding: 0; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: white; font-size: var(--text-subheading); line-height: 1; }
.video-player-close:hover { background: rgba(255,255,255,.12); }
.video-player-frame { aspect-ratio: 16 / 9; background: black; }
.video-player-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-player-footer { display: flex; justify-content: flex-end; padding: var(--space-4) var(--space-6); }

@media (hover: hover) and (pointer: fine) {
  .video-card:hover .video-thumbnail img { transform: scale(1.025); }
  .video-card:hover .video-play { background: var(--gold-text); transform: scale(1.05); }
  .video-card:hover .video-card-copy strong { color: var(--gold-text); }
}

.about-hero { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: var(--space-16); padding-block: var(--section-space); }
.about-hero h1 { margin-bottom: var(--space-6); }
.lead { font-family: var(--font-editorial); font-size: var(--text-subheading); line-height: 1.6; }
.about-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--deep); }
.about-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-band { padding-block: var(--section-space); background: var(--navy); color: white; }
.about-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-12); }
.about-notes article { padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,.28); }
.about-notes h2 { margin-bottom: var(--space-4); font-size: var(--text-subheading); }
.about-notes p { margin-bottom: var(--space-4); color: var(--pale); }
.about-notes strong { color: var(--gold); font-size: var(--text-caption); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-16); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); padding: var(--space-8); background: var(--white); border: 1px solid var(--line); }
.contact-form label:nth-child(4), .contact-form .button { grid-column: 1 / -1; }
.contact-form textarea { resize: vertical; }
.not-found { text-align: center; }
.not-found p { margin: var(--space-4) auto var(--space-6); }

.footer { background: var(--navy); color: white; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-grid > div:not(.footer-brand) { padding: var(--space-8); border-right: 1px solid rgba(255,255,255,.16); }
.footer-grid > div:last-child { border-right: 0; }
.footer-grid h2 { margin-bottom: var(--space-4); color: var(--pale); font-family: var(--font-body); font-size: var(--text-caption); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand { grid-column: 1 / -1; padding-block: var(--space-16); border-bottom: 1px solid rgba(255,255,255,.16); text-align: center; }
.footer-brand img { width: clamp(11rem, 17vw, 13rem); height: clamp(11rem, 17vw, 13rem); margin-inline: auto; border: 3px solid color-mix(in oklch, var(--gold) 80%, white); border-radius: 50%; object-fit: cover; }
.footer-brand b { display: block; margin-top: var(--space-4); font-family: var(--font-signature); font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1; }
.footer-brand small { display: block; margin-top: var(--space-2); color: var(--pale); font-family: var(--font-editorial); font-size: var(--text-caption); letter-spacing: .08em; }
.footer-nav { text-align: center; }
.footer-nav > div { width: min(18rem, 100%); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); margin-inline: auto; }
.footer-nav a { min-height: 2.75rem; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.9); font-size: var(--text-caption); text-align: center; }
.footer-ministry p, .footer-connect p { margin-bottom: var(--space-4); color: rgba(255,255,255,.84); font-size: var(--text-caption); line-height: 1.7; }
.footer-ministry strong { color: var(--pale); font-family: var(--font-editorial); }
.social-placeholders { display: flex; gap: var(--space-3); margin-bottom: var(--space-4); }
.social-placeholders span { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-weight: 800; }
.footer-bottom { min-height: 3.25rem; display: grid; place-items: center; padding-block: var(--space-3) max(var(--space-3), env(safe-area-inset-bottom)); background: var(--deep); color: rgba(255,255,255,.78); text-align: center; font-size: var(--text-caption); }

@media (max-width: 70rem) {
  .brand > span { min-width: 15rem; }
  .brand b { font-size: 1.75rem; }
  .nav { gap: var(--space-3); }
}

@media (max-width: 74rem) {
  .nav-wrap { min-height: 4.5rem; gap: var(--space-2); }
  .brand img { width: 3rem; height: 3rem; }
  .brand > span { display: none; }
}

@media (max-width: 64rem) {
  .menu-button { display: block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: var(--space-4) var(--space-6) var(--space-6); border-bottom: 1px solid var(--line); background: var(--ivory); box-shadow: 0 var(--space-2) var(--space-6) rgba(2,16,31,.12); }
  .nav.open { display: flex; }
  .nav a { justify-items: start; border-bottom: 1px solid var(--line); }
}

@media (max-width: 56rem) {
  .section-heading, .feature-teaching, .evidence-layout, .newsletter-preview, .about-hero, .contact-layout { grid-template-columns: 1fr; }
  .hero-next { grid-template-columns: 1fr; justify-items: center; gap: var(--space-4); }
  .hero-next .button { width: min(100%, 34rem); }
  .content-directory { grid-template-columns: 1fr 1fr; }
  .content-directory a:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .content-directory a:nth-child(4) { border-top: 1px solid var(--line); }
  .feature-media { min-height: 20rem; }
  .editorial-pair { gap: var(--space-12); }
  .newsletter-preview { gap: var(--space-8); }
  .newsletter-form { width: 100%; }
  .sermon-layout { grid-template-columns: 1fr; gap: var(--space-8); }
  .sermon-layout aside { position: static; }
  .series-options { grid-template-columns: 1fr 1fr; }
  .series-filter { padding-inline: var(--space-3); border: 1px solid var(--line); }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-notes { grid-template-columns: 1fr; }
  .about-photo { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-connect { grid-column: 1 / -1; text-align: center; }
  .footer-connect .social-placeholders { justify-content: center; }
}

@media (max-width: 40rem) {
  :root { --text-title: clamp(1.625rem, 6vw, 2rem); --text-display: clamp(2.125rem, 8vw, 2.5rem); }
  .shell { width: min(72rem, calc(100% - 2rem)); }
  .nav-wrap { width: calc(100% - 2rem); }
  .brand { min-width: 0; }
  .landing-hero { border-radius: 0 0 50% 50% / 0 0 2% 2%; }
  .hero-welcome { font-size: clamp(1.125rem, 5.5vw, 1.375rem); }
  .hero-support-inner { gap: var(--space-6); padding-block: var(--space-6); }
  .hero-intro { font-size: var(--text-body); }
  .hero-next .button { width: 100%; }
  .welcome-reserve { grid-template-columns: 7rem 1fr; }
  .section-heading { gap: var(--space-3); }
  .content-directory { grid-template-columns: 1fr; }
  .content-directory a { min-height: 4.5rem; border-top: 1px solid var(--line); border-left: 0; }
  .content-directory a:first-child { border-top: 0; }
  .feature-teaching { gap: var(--space-6); }
  .feature-copy { padding-block: 0; }
  .feature-media { min-height: 15rem; }
  .editorial-pair { grid-template-columns: 1fr; gap: var(--space-12); }
  .list-heading { display: block; }
  .list-heading a { display: inline-flex; min-height: 2.75rem; align-items: center; }
  .evidence-layout { gap: var(--space-8); }
  .evidence-media { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .evidence-media .media-reserve { padding: var(--space-3); }
  .evidence-media .media-reserve strong { font-size: var(--text-body); }
  .media-reserve { padding: var(--space-4); }
  .media-reserve::after { top: var(--space-4); right: var(--space-4); }
  .evidence-copy p { font-size: var(--text-body); }
  .newsletter-form { grid-template-columns: 1fr; gap: var(--space-2); }
  .newsletter-form input, .newsletter-form .button { border-radius: var(--space-1); }
  .filters { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .post-card { min-height: 22rem; }
  .article-placeholder { width: calc(100% - 2rem); }
  .series-options { grid-template-columns: 1fr; }
  .sermon-item { grid-template-columns: 1fr; }
  .sermon-item .button { width: 100%; }
  .channel-feature, .video-feed-message { align-items: stretch; flex-direction: column; gap: var(--space-4); }
  .channel-feature .button, .video-feed-message .button { width: 100%; }
  .video-grid { grid-template-columns: 1fr; gap: 0; }
  .video-entry { border-top: 1px solid var(--line); }
  .video-card { grid-template-columns: 8rem minmax(0, 1fr); align-items: start; gap: var(--space-3); padding-block: var(--space-4); }
  .video-card-copy strong { font-size: var(--text-body); }
  .video-play { left: var(--space-2); bottom: var(--space-2); width: 2.5rem; height: 2.5rem; }
  .video-duration { font-size: var(--text-caption); }
  .video-player-dialog { width: calc(100% - 1rem); max-height: calc(100dvh - max(1rem, env(safe-area-inset-top)) - max(1rem, env(safe-area-inset-bottom))); border-radius: var(--space-2); }
  .video-player-header { padding: var(--space-3) var(--space-4); }
  .video-player-header p { max-width: 28ch; }
  .video-player-footer { padding: var(--space-3) var(--space-4) max(var(--space-3), env(safe-area-inset-bottom)); }
  .video-player-footer .button { width: 100%; }
  .about-photo { min-height: 0; }
  .contact-form { grid-template-columns: 1fr; padding: var(--space-6); }
  .contact-form label:nth-child(4), .contact-form .button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-connect { grid-column: auto; }
  .footer-grid > div:not(.footer-brand) { padding: var(--space-8) var(--space-4); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); text-align: center; }
  .footer-nav > div { width: min(20rem, 100%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-sun-glow { opacity: .75; transform: translate(-50%, -50%); }
  .hero-bolt-glow, .hero-sky-flash { opacity: 0; }
  .hero-bird { opacity: 1; transform: none; }
  .hero-bird-wing { transform: none; }
}
