@font-face {
  font-family: "Arial Narrow";
  src: url("assets/fonts/ArialNarrowBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial Narrow";
  src: url("assets/fonts/ArialNarrowBoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("assets/fonts/PPEditorialNew-Ultralight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("assets/fonts/PPEditorialNew-UltralightItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("assets/fonts/PPEditorialNew-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("assets/fonts/PPEditorialNew-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("assets/fonts/PPEditorialNew-Ultrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #070706;
  --charcoal: #11110f;
  --ink: #15120d;
  --ivory: #f4ead7;
  --paper: #e9ddc6;
  --dim: #b8ab98;
  --gold: #c8a95b;
  --gold-bright: #e8c36a;
  --red: #681f26;
  --red-dark: #341014;
  --line-light: rgba(244, 234, 215, 0.18);
  --serif: "PP Editorial New", Georgia, serif;
  --display: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  --sans: "Inter Tight", Arial, sans-serif;
  --scroll-ratio: 0;
  --scroll-percent: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--black) 0%, #0b0a09 34%, #0d0c0a 66%, var(--black) 100%),
    radial-gradient(circle at 20% 0%, rgba(104, 31, 38, 0.1), transparent 34rem),
    radial-gradient(circle at 84% 38%, rgba(200, 169, 91, 0.045), transparent 28rem),
    var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  overflow-x: hidden;
}

body.home-page {
  background:
    radial-gradient(ellipse at 18% 10%, rgba(104, 31, 38, 0.1), transparent 32rem),
    radial-gradient(ellipse at 86% 52%, rgba(200, 169, 91, 0.04), transparent 34rem),
    linear-gradient(180deg, #070706 0%, #0c0b0a 28%, #11100e 62%, #0b0a09 100%);
}

main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(244, 234, 215, 0.035), transparent 34rem),
    radial-gradient(ellipse at 78% 54%, rgba(104, 31, 38, 0.16), transparent 40rem),
    linear-gradient(180deg, rgba(7, 7, 6, 0) 0%, #090807 34%, #0b0908 68%, var(--black) 100%);
}

body.home-page main {
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0) 0%, rgba(14, 13, 12, 0.98) 18%, #11100e 64%, #0a0908 100%);
}

body.home-page main::before {
  display: none;
}

body.home-page main > * {
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(rgba(244, 234, 215, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 234, 215, 0.045) 1px, transparent 1px);
  background-size: 190px 190px, 38px 38px, 38px 38px;
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 31;
  pointer-events: none;
  background: radial-gradient(circle at 50% 35%, transparent 0 52%, rgba(0, 0, 0, 0.18) 100%);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.8rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ── HEADER ─────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  width: min(1480px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ivory);
  mix-blend-mode: difference;
  transition: color 180ms ease;
}

.site-header::after {
  display: none;
}

.site-header[data-current-tone="light"] {
  color: var(--black);
  mix-blend-mode: normal;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark-img {
  width: auto;
  height: 38px;
  object-fit: contain;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 48px);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.nav-links a.is-active {
  opacity: 1;
}

.nav-links a[aria-current="page"],
.nav-links a.is-active {
  color: var(--ivory);
}

.nav-links a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.42em;
}

.site-header[data-current-tone="light"] .nav-links a[aria-current="page"],
.site-header[data-current-tone="light"] .nav-links a.is-active {
  color: var(--black);
}

/* ── HERO ────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

body.home-page .hero {
  min-height: clamp(560px, 72svh, 780px);
  background: transparent;
}

body.home-page .hero::after {
  height: clamp(260px, 34vw, 460px);
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 6, 0) 0%,
    rgba(8, 7, 6, 0.16) 30%,
    rgba(10, 9, 8, 0.7) 74%,
    #11100e 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: clamp(220px, 32vw, 440px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 6, 0) 0%,
    rgba(7, 7, 6, 0.12) 38%,
    rgba(8, 7, 6, 0.52) 72%,
    rgba(8, 7, 6, 0.96) 100%
  );
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  transform: translate3d(0, calc(var(--scroll-hero-y, 0px) + var(--motion-y, 0px)), 0);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.55) contrast(1.06) brightness(0.7);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(0deg, rgba(7, 7, 6, 0.55) 0%, rgba(7, 7, 6, 0.18) 46%, rgba(7, 7, 6, 0.35) 100%),
    radial-gradient(circle at 88% 20%, rgba(200, 169, 91, 0.08), transparent 28rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 100px 24px clamp(48px, 8vw, 96px);
  text-align: center;
  width: 100%;
  transform: translateY(clamp(-44px, -5vh, -24px));
}

body.home-page .hero-content {
  padding-top: clamp(92px, 12vw, 132px);
  padding-bottom: clamp(78px, 11vw, 132px);
  transform: translateY(clamp(10px, 3svh, 34px));
}

.hero-wordmark-wrap {
  position: relative;
  top: 0;
  margin: 0;
  width: min(820px, 88vw);
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

body.home-page .hero-wordmark-wrap {
  width: min(690px, 72vw);
}

.hero-wordmark {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.hero-tagline {
  margin: clamp(-330px, -23vw, -118px) 0 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  max-width: min(680px, calc(100vw - 40px));
  font-size: clamp(1.25rem, 2.6vw, 2.15rem);
  color: rgba(244, 234, 215, 0.84);
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-wrap: balance;
  mix-blend-mode: difference;
  text-shadow: 0 0 28px rgba(244, 234, 215, 0.16);
  transform: translate3d(0, var(--hero-tagline-lift, 0px), 0);
  transition: opacity 900ms ease, transform 220ms linear, filter 1000ms ease;
  will-change: opacity, transform, filter;
}

.has-js .hero-tagline {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(clamp(-112px, -8vw, -42px), var(--hero-tagline-lift, 0px), 0);
}

.has-js.has-scrolled .hero-tagline {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, var(--hero-tagline-lift, 0px), 0);
}

/* ── HOME LANDING SECTIONS ───────────────────────── */

.home-word,
.home-panel {
  position: relative;
  z-index: 2;
  background: transparent;
  color: var(--ivory);
}

.home-word {
  margin-top: -1px;
  padding: clamp(44px, 7vw, 92px) max(24px, calc((100vw - 1160px) / 2)) clamp(70px, 10vw, 140px);
}

.home-word-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 880px);
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 38vw, 540px);
  margin: 0 auto;
  gap: 0;
}

.home-scripture {
  max-width: min(880px, calc(100vw - 56px));
  justify-self: center;
  text-align: center;
}

.home-word .home-scripture p {
  margin-bottom: clamp(18px, 2.8vw, 32px);
  font-size: clamp(1.55rem, 2.65vw, 2.35rem);
  line-height: 1.1;
  color: rgba(244, 234, 215, 0.78);
}

.home-word .home-scripture p:last-of-type {
  margin-bottom: clamp(14px, 2.4vw, 28px);
}

.home-word .home-scripture cite {
  display: block;
  padding-right: 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  letter-spacing: 0;
  text-align: center;
  color: rgba(244, 234, 215, 0.68);
}

.home-panel {
  display: grid;
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: clamp(82px, 12vw, 168px) max(24px, 4vw);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  isolation: isolate;
}

.home-panel-copy {
  min-width: 0;
  max-width: 470px;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.home-serif-title {
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(3rem, 6.3vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  color: rgba(244, 234, 215, 0.92);
}

.home-panel-copy h3 {
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3.1vw, 2.45rem);
  font-weight: 800;
  line-height: 1.04;
  color: rgba(244, 234, 215, 0.9);
  letter-spacing: 0;
  text-wrap: balance;
}

.home-panel-copy p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.9vw, 1.55rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.18;
  color: rgba(244, 234, 215, 0.78);
  overflow-wrap: break-word;
}

.home-text-link {
  display: inline-block;
  margin-top: clamp(42px, 6vw, 72px);
  color: rgba(244, 234, 215, 0.9);
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.home-text-link:hover,
.home-text-link:focus-visible {
  color: var(--gold-bright);
  outline: 0;
  transform: translateX(4px);
}

.home-worship-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-top: clamp(30px, 4vw, 48px);
  padding: clamp(13px, 1.4vw, 17px) clamp(20px, 2vw, 28px);
  border: 1px solid rgba(244, 234, 215, 0.32);
  border-radius: 3px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(244, 234, 215, 0.12), rgba(244, 234, 215, 0.035)),
    rgba(10, 10, 9, 0.46);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.home-worship-cta::after {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.75rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
}

.home-worship-cta:hover,
.home-worship-cta:focus-visible {
  border-color: rgba(200, 169, 91, 0.62);
  background:
    linear-gradient(135deg, rgba(200, 169, 91, 0.18), rgba(244, 234, 215, 0.055)),
    rgba(10, 10, 9, 0.56);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  outline: 0;
}

.home-feature-photo,
.community-shot {
  margin: 0;
  overflow: hidden;
  background: rgba(244, 234, 215, 0.035);
}

.home-feature-photo {
  min-width: 0;
  justify-self: end;
  width: min(100%, 520px);
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.home-feature-photo img {
  aspect-ratio: 1.18 / 1;
  height: auto;
  object-fit: cover;
  filter: saturate(0.58) contrast(1.08) brightness(0.78);
}

.home-worship {
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  padding-top: clamp(66px, 8vw, 118px);
}

.home-community {
  grid-template-columns: minmax(340px, 0.95fr) minmax(330px, 0.9fr);
  padding-top: clamp(74px, 10vw, 146px);
}

.community-collage {
  position: relative;
  min-width: 0;
  min-height: clamp(560px, 54vw, 780px);
}

.community-shot {
  position: absolute;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.community-shot img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.08) brightness(0.82);
}

.community-shot-small {
  left: 4%;
  top: 9%;
  width: clamp(82px, 11vw, 118px);
  height: clamp(110px, 14vw, 156px);
}

.community-shot-mid {
  left: 36%;
  top: 0;
  width: clamp(124px, 17vw, 196px);
  height: clamp(220px, 29vw, 328px);
}

.community-shot-tall {
  left: 0;
  bottom: 0;
  width: clamp(182px, 22vw, 284px);
  height: clamp(300px, 38vw, 472px);
}

.community-shot-low {
  left: 45%;
  bottom: 10%;
  width: clamp(126px, 16vw, 188px);
  height: clamp(190px, 23vw, 286px);
}

.community-copy {
  justify-self: center;
  text-align: center;
}

.community-copy .home-text-link {
  margin-top: clamp(34px, 5vw, 56px);
}

/* ── PHOTO STRIP ─────────────────────────────────── */

.photo-strip {
  position: relative;
  z-index: 3;
  background: transparent;
  margin-top: clamp(-220px, -18vw, -120px);
  padding-top: clamp(60px, 10vw, 160px);
  padding-bottom: clamp(24px, 5vw, 72px);
  overflow: hidden;
  user-select: none;
}

body.home-page .photo-strip {
  margin-top: clamp(-250px, -19vw, -130px);
  padding-top: clamp(74px, 11vw, 178px);
  padding-bottom: clamp(54px, 7vw, 110px);
}

.photo-strip::before,
.photo-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(80px, 12vw, 160px);
  z-index: 2;
  pointer-events: none;
}

.photo-strip::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 6, 0.78) 0%,
    rgba(7, 7, 6, 0.32) 55%,
    rgba(7, 7, 6, 0) 100%
  );
}

body.home-page .photo-strip::before {
  background: linear-gradient(
    to bottom,
    rgba(8, 7, 6, 0.66) 0%,
    rgba(8, 7, 6, 0.24) 52%,
    rgba(8, 7, 6, 0) 100%
  );
}

.photo-strip::after {
  bottom: 0;
  background: linear-gradient(to top, #070706 12%, rgba(7, 7, 6, 0));
}

body.home-page .photo-strip::after {
  background: linear-gradient(to top, rgba(9, 8, 7, 0.42), rgba(9, 8, 7, 0));
}

.strip-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  gap: 3px;
  cursor: grab;
  padding-inline: clamp(18px, 4vw, 70px);
}

body.home-page .strip-track {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 78%, transparent 100%);
}

.strip-track:active {
  cursor: grabbing;
}

.strip-track::-webkit-scrollbar {
  display: none;
}

.strip-item {
  flex: 0 0 auto;
  width: clamp(280px, 40vw, 620px);
  margin: 0;
  scroll-snap-align: start;
  overflow: hidden;
}

.strip-item img {
  width: 100%;
  height: clamp(320px, 58vh, 660px);
  object-fit: cover;
  filter: saturate(0.38) contrast(1.18) brightness(0.74);
  display: block;
  transition: filter 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
}

.strip-item:hover img {
  filter: saturate(0.58) contrast(1.1) brightness(0.88);
  transform: scale(1);
}

/* ── SECTIONS ────────────────────────────────────── */

.section {
  position: relative;
  width: 100%;
  margin-top: -1px;
  padding: clamp(76px, 11vw, 150px) max(24px, calc((100vw - 1280px) / 2));
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 96px;
}

.section-index {
  display: none;
}

[data-motion] {
  --motion-x: 0px;
  --motion-y: 0px;
  --motion-scale: 1;
  --motion-rotate: 0deg;
  --motion-opacity: 1;
  --motion-clip: 0%;
  opacity: var(--motion-opacity, 1);
  will-change: transform;
}

/* ── TONES ───────────────────────────────────────── */

.tone-dark {
  background:
    radial-gradient(circle at 76% 8%, rgba(200, 169, 91, 0.035), transparent 24rem),
    radial-gradient(circle at 12% 100%, rgba(104, 31, 38, 0.05), transparent 28rem);
  color: var(--ivory);
}

.tone-gold {
  background: var(--gold);
  color: var(--ink);
}

.tone-red {
  background:
    radial-gradient(circle at 18% 18%, rgba(104, 31, 38, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 74%, rgba(200, 169, 91, 0.05), transparent 26rem),
    linear-gradient(135deg, rgba(7, 7, 6, 0.2), rgba(13, 11, 9, 0.62));
  color: var(--ivory);
}

body.home-page .tone-dark,
body.home-page .tone-red {
  background: transparent;
}

/* ── EYEBROW ─────────────────────────────────────── */

.eyebrow {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ── MUSIC ───────────────────────────────────────── */

.music-embed {
  display: block;
  margin-top: clamp(-80px, -6vw, -32px);
  padding-top: clamp(96px, 13vw, 176px);
  padding-bottom: clamp(90px, 12vw, 164px);
}

body.home-page .music-embed {
  margin-top: clamp(-108px, -7vw, -44px);
  padding-top: clamp(126px, 15vw, 212px);
  padding-bottom: clamp(130px, 15vw, 220px);
}

body.home-page .music-embed::before {
  content: "";
  position: absolute;
  inset: -18% -14%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 30%, rgba(244, 234, 215, 0.045), transparent 34rem),
    radial-gradient(ellipse at 70% 58%, rgba(104, 31, 38, 0.13), transparent 42rem);
  opacity: 0.9;
}

.music-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 860px);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  max-width: 980px;
}

.music-top::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 215, 0.13), transparent);
  transform: rotate(-1.2deg);
  transform-origin: center;
  opacity: 0.7;
  pointer-events: none;
}

.selah-title {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.track-list {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  padding: 0;
  list-style: none;
  color: rgba(244, 234, 215, 0.78);
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  letter-spacing: 0.01em;
}

.track-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid rgba(244, 234, 215, 0.11);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.track-list li:hover,
.track-list li:focus-within {
  color: var(--ivory);
  border-color: rgba(244, 234, 215, 0.24);
  transform: translateX(4px);
}

.track-play {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(200, 169, 91, 0.44);
  border-radius: 999px;
  color: rgba(244, 234, 215, 0.88);
  background: rgba(244, 234, 215, 0.035);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.track-play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.track-play:hover,
.track-play:focus-visible,
.track-play.is-playing {
  background: rgba(244, 234, 215, 0.9);
  border-color: rgba(244, 234, 215, 0.9);
  color: var(--black);
  transform: scale(1.04);
}

.track-play.is-playing span {
  width: 12px;
  height: 14px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 34%, transparent 34% 66%, currentColor 66%);
}

.track-title {
  color: rgba(244, 234, 215, 0.82);
}

.track-status {
  min-height: 1.1em;
  margin: clamp(14px, 2vw, 22px) 0 0;
  color: rgba(200, 169, 91, 0.78);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.music-links {
  display: flex;
  gap: clamp(12px, 2vw, 22px);
  flex-wrap: wrap;
  margin-top: clamp(22px, 3vw, 34px);
}

.music-links a {
  border: 0;
  border-bottom: 1px solid rgba(244, 234, 215, 0.22);
  padding: 0 0 5px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: rgba(244, 234, 215, 0.56);
  mix-blend-mode: difference;
  transition: color 180ms ease, border-color 180ms ease;
}

.music-links a:hover,
.music-links a:focus-visible {
  color: var(--ivory);
  border-color: rgba(200, 169, 91, 0.78);
  outline: 0;
}

/* ── MISSION PAGE ───────────────────────────────── */

.mission-main {
  min-height: 100svh;
  overflow: hidden;
}

.mission-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(130px, 16vw, 210px) max(24px, calc((100vw - 1280px) / 2)) clamp(82px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
}

.mission-media,
.mission-shade {
  position: absolute;
  inset: 0;
}

.mission-media {
  z-index: -3;
  transform: translate3d(0, var(--scroll-hero-y, 0px), 0);
}

.mission-media img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  filter: saturate(0.34) contrast(1.18) brightness(0.58);
}

.mission-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.9) 0%, rgba(7, 7, 6, 0.58) 44%, rgba(7, 7, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 7, 6, 0.84) 0%, rgba(7, 7, 6, 0.16) 62%, rgba(7, 7, 6, 0.5) 100%),
    radial-gradient(circle at 78% 24%, rgba(200, 169, 91, 0.08), transparent 30rem);
}

.mission-content {
  max-width: 900px;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.mission-content h1 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(5.4rem, 15vw, 13.5rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.mission-content p {
  max-width: 720px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  color: rgba(244, 234, 215, 0.86);
  text-wrap: balance;
}

.mission-statement {
  position: relative;
  margin-top: clamp(-86px, -6vw, -36px);
  padding: clamp(120px, 16vw, 210px) max(24px, calc((100vw - 1080px) / 2)) clamp(110px, 14vw, 180px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 30% 28%, rgba(104, 31, 38, 0.22), transparent 36rem),
    radial-gradient(ellipse at 76% 68%, rgba(200, 169, 91, 0.055), transparent 32rem),
    linear-gradient(180deg, rgba(7, 7, 6, 0), rgba(7, 7, 6, 0.78) 32%, rgba(7, 7, 6, 0.94) 100%);
}

.mission-statement::before {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  top: -1px;
  height: clamp(120px, 14vw, 220px);
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, #070706 8%, rgba(7, 7, 6, 0));
}

.mission-copy {
  max-width: 940px;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0) scale(var(--motion-scale, 1));
}

.mission-copy p {
  margin: 0 0 clamp(26px, 4vw, 48px);
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 5.1rem);
  line-height: 1.05;
  color: rgba(244, 234, 215, 0.9);
  text-wrap: balance;
}

.mission-copy p:last-child {
  margin-bottom: 0;
  color: rgba(244, 234, 215, 0.72);
}

/* ── NIGHT 7 PAGE ───────────────────────────────── */

.night-main {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #070706;
}

.night-name-atmosphere {
  --names-drift-a: 0px;
  --names-drift-b: 0px;
  position: fixed;
  inset: 0 -34vw auto -34vw;
  z-index: 2;
  height: 102vh;
  display: grid;
  align-content: space-around;
  gap: 0;
  padding-block: clamp(48px, 7vh, 92px);
  pointer-events: none;
  opacity: 0.86;
  overflow: hidden;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 84%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 84%, transparent 100%);
}

.night-name-atmosphere .night-name-row {
  width: max-content;
  gap: clamp(48px, 7vw, 124px);
  transform: translate3d(0, 0, 0);
  animation: night-atmosphere-rotate-left 35s linear infinite;
  will-change: transform;
}

.night-name-atmosphere .night-name-row.is-reverse {
  justify-self: end;
  animation-name: night-atmosphere-rotate-right;
  animation-duration: 37s;
}

.night-name-atmosphere .night-name-row:nth-child(3) {
  animation-name: night-atmosphere-rotate-left;
  animation-duration: 33s;
}

.night-name-atmosphere .night-name-row:nth-child(4) {
  animation-name: night-atmosphere-rotate-right;
  animation-duration: 39s;
}

.night-name-atmosphere .night-name-row:nth-child(5) {
  animation-name: night-atmosphere-rotate-left;
  animation-duration: 34s;
}

.night-name-atmosphere .night-name-row span {
  padding-bottom: 12px;
  border-bottom-color: rgba(244, 234, 215, 0.24);
  font-size: clamp(1.08rem, 2.08vw, 1.82rem);
  letter-spacing: 0.08em;
  color: rgba(244, 234, 215, 0.88);
  opacity: 0.74;
  text-shadow: 0 0 30px rgba(244, 234, 215, 0.28);
  transition:
    opacity 520ms ease,
    color 520ms ease,
    text-shadow 520ms ease;
}

.night-name-atmosphere .night-name-row span:nth-child(even) {
  color: rgba(200, 169, 91, 0.92);
}

.night-name-atmosphere .night-name-row span.is-glowing {
  color: rgba(244, 234, 215, 0.98);
  opacity: 0.96;
  text-shadow: 0 0 42px rgba(244, 234, 215, 0.5);
}

.night-name-atmosphere .night-name-row span:nth-child(even).is-glowing {
  color: rgba(200, 169, 91, 1);
  text-shadow: 0 0 38px rgba(200, 169, 91, 0.48);
}

.night-8-main .night-hero,
.night-8-main .night-word,
.night-8-main .night-lyrics {
  isolation: auto;
}

.night-8-main .night-media {
  z-index: 0;
}

.night-8-main .night-shade {
  z-index: 1;
}

.night-8-main .night-layout,
.night-8-main .night-verse-wrap,
.night-8-main .night-lyrics-shell {
  z-index: 4;
}

@keyframes night-atmosphere-rotate-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes night-atmosphere-rotate-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.night-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(132px, 15vw, 206px) max(24px, calc((100vw - 1280px) / 2)) clamp(72px, 9vw, 126px);
  overflow: hidden;
  isolation: isolate;
}

.night-media,
.night-shade {
  position: absolute;
  inset: 0;
}

.night-media {
  z-index: -3;
  transform: translate3d(0, var(--scroll-hero-y, 0px), 0);
}

.night-media img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  filter: saturate(0.36) contrast(1.18) brightness(0.52);
}

.night-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.92) 0%, rgba(7, 7, 6, 0.62) 46%, rgba(7, 7, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 7, 6, 0.9) 0%, rgba(7, 7, 6, 0.12) 58%, rgba(7, 7, 6, 0.54) 100%),
    radial-gradient(circle at 82% 24%, rgba(200, 169, 91, 0.12), transparent 30rem),
    radial-gradient(circle at 30% 78%, rgba(104, 31, 38, 0.28), transparent 32rem);
}

.night-layout {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
}

.night-8-main .night-layout {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1180px;
}

.night-content {
  position: relative;
  isolation: isolate;
  max-width: 840px;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.night-8-main .night-content {
  max-width: min(100%, 1120px);
}

.night-8-main .night-content::before,
.night-8-main .night-details::before,
.night-8-main .night-verse-wrap::before,
.night-8-main .night-lyrics-shell::before {
  content: "";
  position: absolute;
  inset: clamp(-56px, -4.8vw, -34px);
  z-index: 0;
  pointer-events: none;
  border-radius: 54px;
  background: rgba(7, 7, 6, 0.88);
  box-shadow: 0 0 54px 30px rgba(7, 7, 6, 0.9);
  filter: blur(10px);
}

.night-8-main .night-content::before {
  inset: clamp(-54px, -4.2vw, -34px) clamp(-52px, -4vw, -34px) clamp(-48px, -3.4vw, -32px) clamp(-36px, -2.4vw, -22px);
}

.night-8-main .night-details::before {
  inset: clamp(-38px, -3.2vw, -26px) clamp(-44px, -3.8vw, -30px);
}

.night-8-main .night-verse-wrap::before,
.night-8-main .night-lyrics-shell::before {
  inset: clamp(-82px, -7vw, -56px) clamp(-104px, -9vw, -72px);
  box-shadow: 0 0 98px 76px rgba(7, 7, 6, 0.94);
  filter: blur(18px);
}

.night-8-main .night-content > *,
.night-8-main .night-details > *,
.night-8-main .night-verse-wrap > *,
.night-8-main .night-lyrics-shell > * {
  position: relative;
  z-index: 1;
}

.night-content h1 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(5.4rem, 15vw, 13.5rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.night-content p {
  max-width: 660px;
  margin: clamp(22px, 3vw, 36px) 0 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  color: rgba(244, 234, 215, 0.86);
  text-wrap: balance;
}

.night-content .night-hero-theme {
  max-width: 9ch;
  margin-top: clamp(18px, 2.8vw, 32px);
  font-size: clamp(2.7rem, 7vw, 6.25rem);
  line-height: 0.94;
  color: rgba(244, 234, 215, 0.94);
}

.night-detail-list.night-title-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  width: min(100%, 820px);
  margin: clamp(18px, 2.2vw, 30px) 0 0;
}

.night-detail-list.night-title-details div {
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 12px;
}

.night-hero-copy {
  min-width: 0;
  margin-top: clamp(20px, 3.2vw, 42px);
}

.night-hero-copy .night-hero-theme {
  margin-top: 0;
}

.night-content .night-hero-references {
  margin-top: clamp(22px, 2.8vw, 34px);
  font-size: clamp(1.12rem, 1.9vw, 1.62rem);
  line-height: 1.18;
  color: rgba(200, 169, 91, 0.82);
}

.night-hero-copy .night-hero-references {
  margin-top: clamp(16px, 2vw, 26px);
}

.night-poster {
  position: relative;
  overflow: hidden;
  min-height: clamp(330px, 34vw, 500px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(244, 234, 215, 0.18);
  border-left-color: rgba(200, 169, 91, 0.58);
  background:
    linear-gradient(160deg, rgba(244, 234, 215, 0.1), rgba(244, 234, 215, 0.025) 42%, rgba(104, 31, 38, 0.22)),
    rgba(7, 7, 6, 0.38);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.night-poster::before {
  content: "7";
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(-42px, -4vw, -20px);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(13rem, 22vw, 20rem);
  line-height: 0.75;
  color: rgba(244, 234, 215, 0.06);
  pointer-events: none;
}

.night-poster-label {
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.night-theme {
  position: relative;
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(2.9rem, 6.4vw, 5.5rem);
  line-height: 0.92;
  color: rgba(244, 234, 215, 0.96);
}

.night-meta-grid {
  position: relative;
  display: grid;
  gap: 0;
  margin: clamp(42px, 6vw, 72px) 0 0;
  padding: 0;
}

.night-meta-grid div {
  display: grid;
  grid-template-columns: minmax(72px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid rgba(244, 234, 215, 0.16);
}

.night-meta-grid dt,
.night-meta-grid dd {
  margin: 0;
}

.night-meta-grid dt {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 169, 91, 0.8);
}

.night-meta-grid dd {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  line-height: 1.1;
  color: rgba(244, 234, 215, 0.84);
}

.night-details {
  position: relative;
  z-index: 3;
  isolation: isolate;
  align-self: center;
  max-width: 430px;
  justify-self: end;
  padding: clamp(12px, 2vw, 22px) 0;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.night-details h2 {
  max-width: 8ch;
  margin: 0 0 clamp(34px, 5vw, 62px);
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  line-height: 0.88;
  color: rgba(244, 234, 215, 0.96);
}

.night-detail-list {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  margin: 0;
}

.night-detail-list div {
  display: grid;
  grid-template-columns: minmax(82px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid rgba(244, 234, 215, 0.15);
}

.night-detail-list dt,
.night-detail-list dd {
  margin: 0;
}

.night-detail-list dt {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 169, 91, 0.78);
}

.night-detail-list dd {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(0.98rem, 1.55vw, 1.18rem);
  line-height: 1.1;
  color: rgba(244, 234, 215, 0.86);
}

.night-word {
  position: relative;
  margin-top: clamp(-74px, -5vw, -28px);
  padding: clamp(112px, 15vw, 198px) max(24px, calc((100vw - 1120px) / 2)) clamp(100px, 13vw, 170px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(104, 31, 38, 0.24), transparent 34rem),
    radial-gradient(ellipse at 82% 72%, rgba(200, 169, 91, 0.07), transparent 28rem),
    linear-gradient(180deg, rgba(7, 7, 6, 0), rgba(7, 7, 6, 0.84) 34%, rgba(7, 7, 6, 0.96) 100%);
}

.night-word::before {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  top: -1px;
  height: clamp(110px, 14vw, 210px);
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, #070706 8%, rgba(7, 7, 6, 0));
}

.night-question-wrap {
  position: relative;
  width: min(100%, 940px);
  margin: 0 auto;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0) scale(var(--motion-scale, 1));
}

.night-question-frame {
  position: relative;
  margin: 0;
  display: grid;
  align-items: center;
  min-height: clamp(260px, 36vw, 430px);
  padding: clamp(42px, 7vw, 88px) 0;
}

.night-question-copy {
  position: relative;
  margin: 0;
}

.night-question-copy p {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Bradley Hand", "Segoe Print", "Marker Felt", "Comic Sans MS", cursive;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
  color: rgba(244, 234, 215, 0.92);
  transform: rotate(-1.1deg);
  text-shadow: 0 22px 72px rgba(0, 0, 0, 0.42);
}

.night-names-section {
  padding-top: clamp(104px, 13vw, 174px);
  padding-bottom: clamp(120px, 15vw, 210px);
}

.night-verse-section {
  min-height: 82svh;
  display: grid;
  align-items: center;
  padding-top: clamp(110px, 14vw, 184px);
  padding-bottom: clamp(118px, 15vw, 206px);
}

.night-verse-wrap {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.night-verse-kicker {
  margin: 0 0 clamp(24px, 3vw, 42px);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 169, 91, 0.82);
}

.night-verse-text {
  max-width: 960px;
  margin: 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(2.35rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: rgba(244, 234, 215, 0.92);
  text-wrap: balance;
}

.night-verse-text mark {
  position: relative;
  display: inline;
  padding: 0 0.05em;
  background: transparent;
  color: rgba(200, 169, 91, 0.98);
  text-shadow: 0 0 30px rgba(200, 169, 91, 0.18);
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 91, 0.38);
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.08em;
}

.night-verse-text mark::after {
  display: none;
}

.night-names-wrap {
  position: relative;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.night-names-kicker {
  margin: 0 0 clamp(24px, 3vw, 38px);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 169, 91, 0.78);
}

.night-names-lead {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(2.35rem, 6.2vw, 6.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: rgba(244, 234, 215, 0.94);
  text-wrap: balance;
}

.night-names-field {
  --names-drift-a: 0px;
  --names-drift-b: 0px;
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(46px, 7vw, 86px);
  overflow: hidden;
}

.night-name-row {
  display: flex;
  width: max-content;
  max-width: none;
  gap: clamp(22px, 4vw, 54px);
  transform: translate3d(var(--names-drift-a), 0, 0);
  transition: transform 160ms linear;
}

.night-name-row.is-reverse {
  justify-self: end;
  transform: translate3d(var(--names-drift-b), 0, 0);
}

.night-name-row span {
  flex: 0 0 auto;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(244, 234, 215, 0.15);
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(0.82rem, 1.25vw, 1.02rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 234, 215, 0.68);
}

.night-name-row span:nth-child(even) {
  color: rgba(200, 169, 91, 0.74);
}

.night-lyrics {
  position: relative;
  padding: clamp(96px, 13vw, 168px) max(24px, calc((100vw - 1120px) / 2)) clamp(112px, 14vw, 188px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 14% 18%, rgba(200, 169, 91, 0.08), transparent 30rem),
    radial-gradient(ellipse at 82% 64%, rgba(104, 31, 38, 0.24), transparent 34rem),
    linear-gradient(180deg, rgba(7, 7, 6, 0.96), rgba(7, 7, 6, 0.9) 52%, rgba(7, 7, 6, 0.98));
}

.night-lyrics::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 215, 0.18), transparent);
}

.night-lyrics-shell {
  position: relative;
  z-index: 3;
  isolation: isolate;
  max-width: 900px;
  margin: 0 auto;
}

.night-lyrics-list {
  display: grid;
  gap: 16px;
}

.night-lyrics-card,
.night-lyrics-empty {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 234, 215, 0.14);
  border-left-color: rgba(200, 169, 91, 0.48);
  background:
    linear-gradient(150deg, rgba(244, 234, 215, 0.08), rgba(244, 234, 215, 0.025) 44%, rgba(104, 31, 38, 0.14)),
    rgba(12, 11, 10, 0.62);
}

.night-lyrics-card {
  padding: clamp(22px, 3vw, 34px);
}

.night-lyrics-card header {
  display: block;
}

.night-lyrics-card h3 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.05;
  color: rgba(244, 234, 215, 0.92);
}

.night-lyrics-body {
  margin: clamp(20px, 3vw, 30px) 0 0;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.32;
  color: rgba(244, 234, 215, 0.88);
  white-space: pre-wrap;
}

.night-lyrics-pending {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(200, 169, 91, 0.72);
}

.night-lyrics-empty {
  padding: clamp(28px, 4vw, 44px);
}

.night-lyrics-empty span {
  display: block;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.night-lyrics-empty p {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.04;
  color: rgba(244, 234, 215, 0.86);
}

.night-lyrics-empty a {
  display: inline-flex;
  margin-top: clamp(24px, 3vw, 34px);
  border-bottom: 1px solid rgba(244, 234, 215, 0.24);
  padding-bottom: 5px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244, 234, 215, 0.7);
  transition: color 180ms ease, border-color 180ms ease;
}

.night-lyrics-empty a:hover,
.night-lyrics-empty a:focus-visible {
  color: var(--ivory);
  border-color: rgba(200, 169, 91, 0.82);
  outline: 0;
}

/* ── EVENTS PAGE ────────────────────────────────── */

.events-main {
  min-height: 100svh;
  overflow: visible;
}

.events-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(132px, 15vw, 206px) max(24px, calc((100vw - 1280px) / 2)) clamp(72px, 9vw, 126px);
  overflow: hidden;
  isolation: isolate;
}

.events-media,
.events-shade {
  position: absolute;
  inset: 0;
}

.events-media {
  z-index: -3;
  transform: translate3d(0, var(--scroll-hero-y, 0px), 0);
}

.events-media img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  filter: saturate(0.34) contrast(1.18) brightness(0.5);
}

.events-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.92) 0%, rgba(7, 7, 6, 0.68) 45%, rgba(7, 7, 6, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 7, 6, 0.9) 0%, rgba(7, 7, 6, 0.16) 58%, rgba(7, 7, 6, 0.54) 100%),
    radial-gradient(circle at 82% 26%, rgba(200, 169, 91, 0.12), transparent 30rem),
    radial-gradient(circle at 18% 78%, rgba(104, 31, 38, 0.24), transparent 34rem);
}

.events-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
}

.events-content {
  max-width: 900px;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.events-content h1 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(5.4rem, 15vw, 13.5rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.events-content p {
  max-width: 720px;
  margin: clamp(22px, 3vw, 36px) 0 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  color: rgba(244, 234, 215, 0.86);
  text-wrap: balance;
}

.events-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(244, 234, 215, 0.18);
  border-left-color: rgba(200, 169, 91, 0.58);
  background:
    linear-gradient(160deg, rgba(244, 234, 215, 0.1), rgba(244, 234, 215, 0.026) 44%, rgba(104, 31, 38, 0.2)),
    rgba(7, 7, 6, 0.38);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.events-feature::before {
  content: "";
  position: absolute;
  left: clamp(26px, 4vw, 42px);
  right: clamp(26px, 4vw, 42px);
  bottom: clamp(78px, 8vw, 118px);
  height: 1px;
  background: rgba(244, 234, 215, 0.16);
}

.events-feature-label,
.events-kicker {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.events-feature h2 {
  margin: clamp(18px, 2.5vw, 28px) 0 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(3.2rem, 6.8vw, 5.8rem);
  line-height: 0.9;
  color: rgba(244, 234, 215, 0.96);
}

.events-feature p {
  margin: clamp(34px, 5vw, 58px) 0 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(244, 234, 215, 0.88);
}

.events-feature span {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 169, 91, 0.82);
}

.events-feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: clamp(24px, 3vw, 34px);
}

.events-feature a {
  display: inline-flex;
  margin-top: 0;
  border-bottom: 1px solid rgba(244, 234, 215, 0.24);
  padding-bottom: 5px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244, 234, 215, 0.7);
  transition: color 180ms ease, border-color 180ms ease;
}

.events-feature a:hover,
.events-feature a:focus-visible {
  color: var(--ivory);
  border-color: rgba(200, 169, 91, 0.82);
  outline: 0;
}

.events-schedule {
  position: relative;
  margin-top: clamp(-74px, -5vw, -28px);
  padding: clamp(96px, 12vw, 158px) max(24px, calc((100vw - 1120px) / 2)) clamp(104px, 13vw, 172px);
  overflow: visible;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(104, 31, 38, 0.22), transparent 34rem),
    radial-gradient(ellipse at 82% 72%, rgba(200, 169, 91, 0.07), transparent 28rem),
    linear-gradient(180deg, rgba(7, 7, 6, 0), rgba(7, 7, 6, 0.84) 34%, rgba(7, 7, 6, 0.96) 100%);
}

.events-schedule::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(110px, 14vw, 210px);
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, #070706 8%, rgba(7, 7, 6, 0));
}

.events-schedule-head {
  max-width: 900px;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0) scale(var(--motion-scale, 1));
}

.events-schedule-head h2 {
  margin: clamp(18px, 3vw, 30px) 0 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(2.4rem, 6.5vw, 6.2rem);
  line-height: 1;
  color: rgba(244, 234, 215, 0.9);
  text-wrap: balance;
}

.events-calendar-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  margin-top: 0;
}

.events-calendar-card {
  position: sticky;
  top: clamp(86px, 10vw, 124px);
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(244, 234, 215, 0.13);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(244, 234, 215, 0.08), rgba(244, 234, 215, 0.025)),
    rgba(12, 11, 10, 0.58);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.events-calendar-card::before {
  display: none;
}

.events-calendar-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid rgba(244, 234, 215, 0.16);
}

.events-calendar-top span {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 169, 91, 0.74);
}

.events-calendar-top strong {
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.85;
  color: rgba(244, 234, 215, 0.86);
}

.events-weekdays,
.events-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.events-weekdays {
  gap: 6px;
  margin-top: clamp(20px, 3vw, 28px);
}

.events-weekdays span {
  text-align: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(0.55rem, 1vw, 0.65rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 234, 215, 0.5);
}

.events-calendar-grid {
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.events-calendar-grid li {
  display: grid;
  place-items: center;
  min-height: clamp(38px, 5.4vw, 58px);
  border: 1px solid rgba(244, 234, 215, 0.08);
  border-radius: 4px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(0.76rem, 1.3vw, 0.96rem);
  color: rgba(244, 234, 215, 0.64);
  background: rgba(244, 234, 215, 0.022);
}

.events-calendar-grid li time {
  color: inherit;
}

.events-calendar-grid .is-muted {
  color: rgba(244, 234, 215, 0.34);
  background: rgba(244, 234, 215, 0.018);
}

.events-calendar-grid .is-event {
  position: relative;
  border-color: rgba(200, 169, 91, 0.32);
  color: rgba(244, 234, 215, 0.86);
  background: rgba(200, 169, 91, 0.075);
  box-shadow: none;
}

.events-calendar-grid .is-event::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(200, 169, 91, 0.78);
  transform: translateX(-50%);
}

.events-calendar-grid .is-skip {
  border-color: rgba(244, 234, 215, 0.12);
  color: rgba(244, 234, 215, 0.45);
  background: rgba(104, 31, 38, 0.12);
}

.events-card-stack {
  display: grid;
  gap: clamp(34px, 4.8vw, 64px);
  padding-top: clamp(8px, 1.2vw, 16px);
  padding-bottom: clamp(260px, 32vw, 430px);
}

.event-stack-card {
  position: sticky;
  top: clamp(86px, 10vw, 124px);
  z-index: var(--event-stack-z, 1);
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  min-height: clamp(190px, 21vw, 260px);
  margin-top: 0;
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid rgba(244, 234, 215, 0.15);
  border-left-color: rgba(200, 169, 91, 0.38);
  border-radius: 6px;
  background:
    linear-gradient(150deg, rgba(244, 234, 215, 0.08), rgba(244, 234, 215, 0.025) 48%, rgba(104, 31, 38, 0.13)),
    rgba(10, 9, 8, 0.97);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  filter: blur(var(--event-stack-blur, 0px));
  transform: scale(var(--event-stack-scale, 1));
  transform-origin: top center;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform, filter;
}

.event-stack-card:first-child {
  margin-top: 0;
}

.event-stack-card.is-featured {
  border-left-color: rgba(200, 169, 91, 0.72);
}

.event-stack-card time {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 169, 91, 0.82);
}

.event-stack-card h3 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  line-height: 0.95;
  color: rgba(244, 234, 215, 0.94);
}

.event-stack-card p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(0.92rem, 1.45vw, 1.1rem);
  line-height: 1.24;
  color: rgba(244, 234, 215, 0.72);
}

.event-stack-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.event-stack-card dl div {
  display: grid;
  grid-template-columns: minmax(78px, 0.28fr) minmax(0, 1fr);
  gap: 14px;
}

.event-stack-card dt,
.event-stack-card dd {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.1;
}

.event-stack-card dt {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 234, 215, 0.42);
}

.event-stack-card dd {
  color: rgba(244, 234, 215, 0.82);
}

.event-stack-card a {
  justify-self: start;
  border-bottom: 1px solid rgba(244, 234, 215, 0.24);
  padding-bottom: 5px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244, 234, 215, 0.74);
  transition: color 180ms ease, border-color 180ms ease;
}

.event-stack-card a:hover,
.event-stack-card a:focus-visible {
  color: var(--ivory);
  border-color: rgba(200, 169, 91, 0.82);
  outline: 0;
}

/* ── IMAGE STAGE ─────────────────────────────────── */

.image-stage {
  position: relative;
  min-height: 88svh;
  margin-top: clamp(-90px, -6vw, -38px);
  display: grid;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

body.home-page .image-stage {
  min-height: clamp(620px, 86svh, 940px);
  margin-top: clamp(-180px, -11vw, -88px);
  margin-bottom: clamp(-170px, -10vw, -82px);
  opacity: 0.92;
}

.image-stage::before {
  content: "";
  position: absolute;
  left: -12vw;
  right: -12vw;
  top: -1px;
  height: clamp(120px, 16vw, 240px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, #070706 12%, rgba(7, 7, 6, 0));
}

body.home-page .image-stage::before {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(7, 7, 6, 0.86), rgba(7, 7, 6, 0) 64%),
    linear-gradient(to bottom, rgba(8, 7, 6, 0.74), rgba(8, 7, 6, 0));
}

.image-stage::after {
  content: "";
  position: absolute;
  left: -12vw;
  right: -12vw;
  bottom: -1px;
  height: clamp(120px, 16vw, 240px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, #070706 14%, rgba(7, 7, 6, 0));
}

body.home-page .image-stage::after {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(7, 7, 6, 0.9), rgba(7, 7, 6, 0) 66%),
    linear-gradient(to top, rgba(8, 7, 6, 0.78), rgba(8, 7, 6, 0));
}

.image-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: translate3d(0, calc(var(--scroll-stage-y, 0px) + var(--motion-y, 0px)), 0) scale(var(--motion-scale, 1));
  filter: saturate(0.32) contrast(1.16) brightness(0.68);
}

body.home-page .image-stage img {
  height: 118%;
  filter: saturate(0.24) contrast(1.12) brightness(0.52);
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 76%, transparent 100%);
}

/* ── SCRIPTURE / STATEMENT ───────────────────────── */

.statement {
  position: relative;
  min-height: 60svh;
  display: grid;
  place-items: center;
  margin-top: clamp(-72px, -5vw, -28px);
  padding: clamp(100px, 14vw, 190px) max(24px, 8vw) clamp(90px, 12vw, 160px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(104, 31, 38, 0.19), transparent 38rem),
    linear-gradient(180deg, rgba(7, 7, 6, 0), rgba(7, 7, 6, 0.66) 26%, rgba(7, 7, 6, 0.78) 76%, rgba(7, 7, 6, 0));
}

body.home-page .statement {
  margin-top: clamp(-130px, -8vw, -58px);
  padding-top: clamp(136px, 16vw, 230px);
  padding-bottom: clamp(118px, 14vw, 210px);
  background:
    radial-gradient(ellipse at 50% 42%, rgba(104, 31, 38, 0.17), transparent 39rem),
    radial-gradient(ellipse at 50% 80%, rgba(200, 169, 91, 0.055), transparent 30rem);
}

.statement::before {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  top: -1px;
  height: clamp(90px, 12vw, 180px);
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(to bottom, #070706 6%, rgba(7, 7, 6, 0));
}

body.home-page .statement::before {
  top: -18%;
  bottom: auto;
  height: 42%;
  background: linear-gradient(to bottom, rgba(8, 7, 6, 0.7), rgba(8, 7, 6, 0));
}

.statement::after {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  bottom: -1px;
  height: clamp(90px, 12vw, 180px);
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(to top, #070706 6%, rgba(7, 7, 6, 0));
}

body.home-page .statement::after {
  top: auto;
  bottom: -1px;
  height: 40%;
  background: linear-gradient(to top, rgba(7, 7, 6, 0.86), rgba(7, 7, 6, 0));
}

.scripture {
  margin: 0;
  max-width: 820px;
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0) scale(var(--motion-scale, 1));
}

.scripture p {
  margin: 0 0 clamp(20px, 3vw, 36px);
  font-family: var(--serif);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(1.9rem, 4.4vw, 4rem);
  line-height: 1.18;
  color: rgba(244, 234, 215, 0.9);
  letter-spacing: 0.005em;
}

.scripture p:last-of-type {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.creo-oword {
  display: inline-block;
  opacity: 0.2;
  transition: opacity 0.65s ease;
  will-change: opacity;
}

.creo-oword.is-lit {
  opacity: 1;
}

.scripture cite {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.06em;
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .creo-oword,
  .creo-oword.is-lit {
    opacity: 1;
    transition: none;
  }
}

/* ── FOOTER ──────────────────────────────────────── */

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  margin-top: -1px;
  padding: 54px max(24px, calc((100vw - 1280px) / 2)) 66px;
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0), rgba(7, 7, 6, 0.92) 36%),
    radial-gradient(circle at 50% 0%, rgba(200, 169, 91, 0.07), transparent 24rem),
    var(--black);
  color: rgba(244, 234, 215, 0.6);
}

body.home-page .footer {
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0), rgba(7, 7, 6, 0.8) 42%, #070706 100%),
    radial-gradient(circle at 50% 0%, rgba(200, 169, 91, 0.055), transparent 24rem);
}

.footer-brand {
  display: block;
  text-decoration: none;
}

.footer-brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 32px);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a {
  text-decoration: none;
  color: rgba(244, 234, 215, 0.65);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-copy {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ── REVEAL ANIMATION ────────────────────────────── */

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal.is-visible[data-motion] {
  opacity: 1;
  transition: none;
}

.music-copy {
  transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0);
}

.reactive-text {
  mix-blend-mode: difference;
}

/* ── KEYFRAMES ───────────────────────────────────── */

/* ── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 960px) {
  .site-header {
    min-height: 72px;
  }

  .home-word-shell {
    grid-template-columns: minmax(0, 1fr) minmax(82px, 132px);
    gap: clamp(22px, 5vw, 54px);
  }

  .home-panel,
  .home-worship,
  .home-community {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
  }

  .home-panel-copy {
    max-width: 560px;
  }

  .home-feature-photo {
    justify-self: start;
    width: min(100%, 560px);
  }

  .community-collage {
    width: min(100%, 430px);
    min-height: 590px;
  }

  .community-copy {
    justify-self: start;
    text-align: left;
  }

  .music-top {
    grid-template-columns: 1fr;
    gap: clamp(24px, 7vw, 48px);
  }

  .music-top::before {
    left: 0;
    right: 0;
    top: 58%;
  }

  .night-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .night-poster {
    max-width: 520px;
  }

  .events-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .events-feature {
    max-width: 520px;
  }
}

@media (max-width: 600px) {
  .site-header {
    width: 100%;
    min-height: 72px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 6px;
    padding: 0 8px;
    box-sizing: border-box;
    padding-top: 0;
  }

  [id] {
    scroll-margin-top: 88px;
  }

  .brand-mark-img {
    height: 27px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    flex: 0 1 min(328px, calc(100vw - 62px));
    width: min(328px, calc(100vw - 62px));
    min-width: 0;
    justify-content: stretch;
    gap: clamp(4px, 1.2vw, 8px);
    font-size: clamp(0.39rem, 1.34vw, 0.48rem);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .nav-links a {
    min-width: 0;
    text-align: center;
  }

  .strip-item {
    width: clamp(240px, 82vw, 340px);
  }

  .strip-item img {
    height: clamp(300px, 55vh, 480px);
  }

  .hero-wordmark-wrap {
    width: min(96vw, 480px);
  }

  body.home-page .hero {
    min-height: clamp(510px, 76svh, 660px);
  }

  body.home-page .hero-content {
    transform: translateY(clamp(6px, 2svh, 20px));
  }

  body.home-page .hero-wordmark-wrap {
    width: min(72vw, 280px);
  }

  .hero-tagline {
    max-width: min(330px, calc(100vw - 32px));
    font-size: clamp(1.1rem, 5.1vw, 1.5rem);
    line-height: 1.12;
  }

  .home-word {
    padding: 42px 20px 62px;
  }

  .home-word-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
    gap: 28px;
  }

  .home-scripture {
    text-align: center;
    max-width: 318px;
  }

  .home-word .home-scripture p {
    font-size: clamp(1.06rem, 4.9vw, 1.36rem);
  }

  .home-word .home-scripture br {
    display: none;
  }

  .home-word .home-scripture cite {
    padding-right: 0;
  }

  .home-panel {
    padding: 70px 20px;
    gap: 34px;
  }

  .home-panel-copy {
    width: 100%;
    max-width: 318px;
  }

  .home-serif-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .home-panel-copy h3 {
    font-size: clamp(1.08rem, 5vw, 1.42rem);
  }

  .home-panel-copy p {
    font-size: clamp(0.9rem, 4vw, 1.06rem);
  }

  .home-text-link {
    margin-top: 36px;
    font-size: clamp(1.12rem, 5.6vw, 1.45rem);
  }

  .home-feature-photo img {
    aspect-ratio: 1 / 0.88;
  }

  .home-community {
    gap: 42px;
  }

  .community-collage {
    min-height: 430px;
    width: min(100%, 330px);
  }

  .community-shot-small {
    width: 74px;
    height: 102px;
  }

  .community-shot-mid {
    left: 38%;
    width: 118px;
    height: 190px;
  }

  .community-shot-tall {
    width: 150px;
    height: 250px;
  }

  .community-shot-low {
    left: 51%;
    width: 112px;
    height: 168px;
  }

  .community-copy,
  .music-copy {
    max-width: 318px;
    text-align: center;
    justify-self: center;
  }

  .music-embed {
    margin-top: -40px;
    padding-top: 132px;
  }

  .selah-title {
    font-size: clamp(4.8rem, 29vw, 7.2rem);
  }

  .track-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
  }

  .track-play {
    width: 32px;
    height: 32px;
  }

  .scripture p {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 24px;
    padding-inline: 20px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 16px;
  }

  .music-links {
    gap: 14px;
  }

  .music-links a {
    font-size: 0.6rem;
  }

  .mission-hero {
    align-items: end;
    padding: 124px 20px 88px;
  }

  .mission-content h1 {
    font-size: clamp(3.2rem, 14.5vw, 3.7rem);
  }

  .mission-content p {
    font-size: clamp(1.22rem, 6vw, 1.6rem);
  }

  .mission-statement {
    padding: 116px 20px 110px;
  }

  .mission-copy p {
    font-size: clamp(1.7rem, 10vw, 2.8rem);
  }

  .night-hero {
    align-items: end;
    min-height: auto;
    padding: 104px 20px 58px;
  }

  .night-layout {
    gap: 24px;
  }

  .night-8-main .night-layout {
    max-width: 100%;
  }

  .night-content h1 {
    font-size: clamp(4.6rem, 23vw, 6.2rem);
  }

  .night-content p {
    font-size: clamp(1.22rem, 6vw, 1.6rem);
  }

  .night-name-atmosphere {
    inset: 4vh -90vw auto -90vw;
    height: 96vh;
    opacity: 0.66;
    padding-block: 44px;
  }

  .night-name-atmosphere .night-name-row {
    gap: 28px;
  }

  .night-name-atmosphere .night-name-row span {
    padding-bottom: 8px;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    opacity: 0.72;
  }

  .night-8-main .night-content::before,
  .night-8-main .night-details::before,
  .night-8-main .night-verse-wrap::before,
  .night-8-main .night-lyrics-shell::before {
    inset: -22px -16px;
    border-radius: 24px;
    box-shadow: 0 0 58px 42px rgba(7, 7, 6, 0.92);
    filter: blur(12px);
  }

  .night-8-main .night-content::before {
    inset: -46px -34px -38px -22px;
  }

  .night-8-main .night-details::before,
  .night-8-main .night-verse-wrap::before,
  .night-8-main .night-lyrics-shell::before {
    inset: -34px -22px;
  }

  .night-content .night-hero-theme {
    max-width: 8ch;
    margin-top: 16px;
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }

  .night-detail-list.night-title-details {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 360px);
    margin-top: 18px;
  }

  .night-hero-copy {
    margin-top: 22px;
  }

  .night-content .night-hero-references {
    margin-top: 18px;
    font-size: clamp(1rem, 4.6vw, 1.25rem);
  }

  .night-poster {
    min-height: 310px;
    padding: 24px;
  }

  .night-details {
    justify-self: start;
    max-width: 100%;
  }

  .night-details h2 {
    margin-bottom: 26px;
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .night-detail-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .night-theme {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .night-meta-grid div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .night-word {
    margin-top: 0;
    padding: 82px 20px 130px;
  }

  .night-question-frame {
    min-height: 330px;
    margin-top: 28px;
    padding: 56px 0 42px;
  }

  .night-question-copy p {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
    line-height: 1.2;
  }

  .night-names-section {
    padding: 78px 20px 104px;
  }

  .night-verse-section {
    min-height: auto;
    padding: 84px 20px 112px;
  }

  .night-verse-kicker {
    margin-bottom: 22px;
  }

  .night-verse-text {
    font-size: clamp(1.75rem, 8.8vw, 2.85rem);
    line-height: 1.08;
  }

  .night-names-lead {
    font-size: clamp(2.05rem, 11vw, 3.5rem);
  }

  .night-names-field {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
  }

  .night-name-row {
    gap: 24px;
  }

  .night-name-row span {
    font-size: 0.72rem;
  }

  .night-lyrics {
    padding: 78px 20px 104px;
  }

  .night-lyrics-body {
    margin-left: 0;
  }

  .night-lyrics-empty p {
    font-size: clamp(1.65rem, 9vw, 2.45rem);
  }

  .events-hero {
    align-items: end;
    min-height: auto;
    padding: 104px 20px 58px;
  }

  .events-layout {
    gap: 24px;
  }

  .events-content h1 {
    font-size: clamp(4.6rem, 23vw, 6.2rem);
  }

  .events-content p {
    font-size: clamp(1.22rem, 6vw, 1.6rem);
  }

  .events-feature {
    padding: 24px;
  }

  .events-feature::before {
    left: 24px;
    right: 24px;
  }

  .events-feature h2 {
    font-size: clamp(3.1rem, 16vw, 4.3rem);
  }

  .events-schedule {
    margin-top: 0;
    padding: 70px 20px 86px;
  }

  .events-calendar-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .events-calendar-card {
    position: relative;
    top: auto;
    padding: 22px;
  }

  .events-calendar-top strong {
    font-size: clamp(2.9rem, 17vw, 4.2rem);
  }

  .events-weekdays,
  .events-calendar-grid {
    gap: 4px;
  }

  .events-calendar-grid li {
    min-height: 38px;
    border-radius: 5px;
    font-size: 0.72rem;
  }

  .events-card-stack {
    gap: 24px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .event-stack-card {
    position: relative;
    top: auto;
    min-height: 0;
    margin-top: 0;
    filter: none !important;
    transform: none !important;
  }

  .event-stack-card h3 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .event-stack-card dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  [data-motion] {
    transform: none !important;
  }
}
