/* ==========================================================================
   Faithwalk Outreach Ministry
   Design system + page styles

   Palette, type and motion are derived from the ministry's physical signage:
   deep forest green, warm champagne gold, cream and charcoal.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — greens */
  --green-900: #04291f;
  --green-800: #06372b;
  --green-700: #0b4d3b;
  --green-600: #12654c;
  --green-500: #1c7d5f;

  /* Brand — golds */
  --gold-600: #82632b; /* text-safe gold: 4.6:1 on the darkest cream, 5.5:1 on white */
  --gold-500: #c9a45c;
  --gold-400: #e2c98f;

  /* Neutrals */
  --cream: #f7f4ec;
  --cream-deep: #efeadd;
  --white: #ffffff;
  --ink: #1b1b1b;
  --ink-soft: #4a4d48;
  --ink-muted: #6b6f68;
  --on-dark: #efece3;
  --on-dark-muted: rgba(239, 236, 227, 0.68);

  --line: rgba(27, 27, 27, 0.12);
  --line-dark: rgba(239, 236, 227, 0.16);
  --line-gold: rgba(201, 164, 92, 0.38);

  /* Type */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-eyebrow: 0.72rem;
  --fs-small: 0.875rem;
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-lede: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --fs-h3: clamp(1.25rem, 1.14rem + 0.5vw, 1.5rem);
  --fs-h2: clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
  --fs-display: clamp(2.35rem, 1.35rem + 5.2vw, 5.5rem);
  --fs-quote: clamp(1.6rem, 1.1rem + 2.4vw, 3rem);

  /* Space */
  --space-section: clamp(4.5rem, 3rem + 6.5vw, 9rem);
  --space-gutter: clamp(1.25rem, 0.6rem + 2.4vw, 2.5rem);
  --shell: 1240px;
  --shell-narrow: 820px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.72, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur: 340ms;
  --dur-slow: 720ms;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(6, 55, 43, 0.05), 0 2px 8px rgba(6, 55, 43, 0.05);
  --shadow-md: 0 10px 24px -12px rgba(6, 55, 43, 0.22), 0 2px 8px rgba(6, 55, 43, 0.05);
  --shadow-lg: 0 32px 64px -32px rgba(4, 41, 31, 0.42), 0 8px 24px -12px rgba(4, 41, 31, 0.16);

  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;

  --nav-h: 84px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

/* Overlays below set display:grid/flex, which would otherwise beat the UA
   stylesheet's [hidden] rule and leave closed dialogs in the layout. */
[hidden] { display: none !important; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  /* Keeps anchored sections clear of the fixed navigation */
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--gold-400); color: var(--green-900); }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--green-800);
  color: var(--on-dark);
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: var(--fs-small);
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: min(100% - (var(--space-gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell--narrow { max-width: var(--shell-narrow); }

.section { padding-block: var(--space-section); position: relative; }
.section--cream { background: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }
.section--white { background: var(--white); }
.section--green { background: var(--green-800); color: var(--on-dark); }
.section--ink { background: var(--green-900); color: var(--on-dark); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }

.section--green h2,
.section--ink h2,
.section--green h3,
.section--ink h3 { color: var(--on-dark); }

.stack > * + * { margin-top: 1.1rem; }

/* --------------------------------------------------------------------------
   4. Typography components
   -------------------------------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: none;
  opacity: 0.8;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: none;
  opacity: 0.8;
}
.section--green .eyebrow,
.section--ink .eyebrow,
.hero .eyebrow { color: var(--gold-400); }

.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}
.section--green .lede,
.section--ink .lede,
.hero .lede { color: var(--on-dark-muted); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }
.section-head > .h2 + .lede { margin-top: 1.1rem; }

/* Body copy that follows a heading outside .section-head */
h2 + .lede,
h2 + .stack,
h2 + p,
.leader__role + .leader__quote { margin-top: 1.1rem; }
.stack + .motto { margin-top: 2rem; }

/* Motto pill — "Winning Souls • Transforming Lives • Taking Dominion" */
.motto {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.9rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  background: rgba(201, 164, 92, 0.07);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green-700);
}
.motto span { white-space: nowrap; }
.motto i { font-style: normal; color: var(--gold-600); }
.section--green .motto,
.section--ink .motto { color: var(--gold-400); border-color: rgba(226, 201, 143, 0.35); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: var(--cream);
  --btn-bd: var(--green-700);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--btn-bd);
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover .arrow { transform: translateX(5px); }
.btn:active { transform: translateY(0); }

.btn--gold { --btn-bg: var(--gold-500); --btn-bd: var(--gold-500); --btn-fg: var(--green-900); }
.btn--gold:hover { --btn-bg: var(--gold-400); --btn-bd: var(--gold-400); }

.btn--solid:hover { --btn-bg: var(--green-600); --btn-bd: var(--green-600); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--green-700); --btn-bd: rgba(11, 77, 59, 0.35); }
.btn--ghost:hover { --btn-bg: var(--green-700); --btn-fg: var(--cream); --btn-bd: var(--green-700); }

.btn--ghost-light { --btn-bg: transparent; --btn-fg: var(--on-dark); --btn-bd: rgba(239, 236, 227, 0.4); }
.btn--ghost-light:hover { --btn-bg: var(--on-dark); --btn-fg: var(--green-900); --btn-bd: var(--on-dark); }

.btn--sm { padding: 0.75rem 1.2rem; font-size: 0.68rem; }
.btn--block { width: 100%; }

/* Quiet text link with a sliding rule */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  padding-bottom: 4px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color var(--dur) var(--ease), background-size var(--dur) var(--ease);
}
.link .arrow { transition: transform var(--dur) var(--ease-out); }
.link:hover { color: var(--gold-600); }
.link:hover .arrow { transform: translateX(5px); }
.section--green .link,
.section--ink .link { color: var(--gold-400); }
.section--green .link:hover,
.section--ink .link:hover { color: var(--on-dark); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: height var(--dur) var(--ease), background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: min(100% - (var(--space-gutter) * 2), var(--shell));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Scrolled state: compact, blurred, bordered */
.nav.is-stuck {
  --nav-h: 68px;
  background: rgba(247, 244, 236, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px -8px rgba(6, 55, 43, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
  color: var(--cream);
  transition: color var(--dur) var(--ease);
}
.brand__mark {
  width: 38px;
  height: 38px;
  flex: none;
  color: var(--gold-500);
  transition: width var(--dur) var(--ease), height var(--dur) var(--ease);
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-top: 3px;
}
.nav.is-stuck .brand { color: var(--green-800); }
.nav.is-stuck .brand__mark { width: 32px; height: 32px; }

/* On the narrowest phones the full "World Outreach Ministry" lockup would wrap
   to two lines and unbalance the mark. Tighten it instead. */
@media (max-width: 400px) {
  .nav__inner { gap: 0.75rem; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: 1rem; }
  .brand__sub { font-size: 0.54rem; letter-spacing: 0.16em; }
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(1rem, 0.2rem + 1.5vw, 2rem);
  list-style: none;
  padding: 0;
}
.nav__link {
  position: relative;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0.9;
  padding: 0.4rem 0;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover,
.nav__link.is-active { opacity: 1; }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav.is-stuck .nav__link { color: var(--green-800); }

.nav__cta { display: none; }

/* Hamburger */
.burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-right: -10px;
  color: var(--cream);
  transition: color var(--dur) var(--ease);
}
.nav.is-stuck .burger { color: var(--green-800); }
.burger__box { width: 22px; height: 14px; position: relative; }
.burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease),
    width var(--dur) var(--ease);
}
.burger__line:nth-child(1) { top: 0; }
.burger__line:nth-child(2) { top: 50%; transform: translateY(-50%); width: 70%; }
.burger__line:nth-child(3) { bottom: 0; }
.burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translateY(6.25px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { opacity: 0; width: 100%; }
.burger[aria-expanded="true"] .burger__line:nth-child(3) { transform: translateY(-6.25px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--green-900);
  color: var(--on-dark);
  padding: calc(var(--nav-h) + 2rem) var(--space-gutter) 3rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { opacity: 1; pointer-events: auto; transform: none; }
.drawer__links { list-style: none; padding: 0; margin: 0; }
.drawer__links li {
  border-bottom: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateY(12px);
}
.drawer.is-open .drawer__links li {
  animation: drawer-in 460ms var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 45ms + 90ms);
}
@keyframes drawer-in { to { opacity: 1; transform: none; } }
.drawer__link {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.drawer__link span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-500);
}
.drawer__foot { margin-top: auto; padding-top: 2.5rem; }
.drawer__phone {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-400);
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .burger { display: none; }
  .drawer { display: none; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: clamp(3.5rem, 2rem + 6vw, 7rem);
  background: var(--green-900);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  opacity: 0;
  animation: hero-media 2400ms var(--ease-out) forwards;
}
@keyframes hero-media { to { opacity: 1; transform: scale(1); } }

/* Legibility scrim — dark at the base, softened at the top */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 41, 31, 0.72) 0%, rgba(4, 41, 31, 0.28) 32%, rgba(4, 41, 31, 0.88) 88%),
    linear-gradient(100deg, rgba(4, 41, 31, 0.7) 0%, rgba(4, 41, 31, 0.1) 62%);
}

.hero__content { max-width: 60rem; }
.hero__title {
  font-size: var(--fs-display);
  line-height: 1.03;
  letter-spacing: -0.025em;
}
.hero__title span { display: block; }
.hero__title span:nth-child(2) { color: var(--gold-400); }
.hero .lede { margin-top: 1.75rem; max-width: 46ch; }

/* Sequential entrance for hero elements */
.hero [data-hero] {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-in 900ms var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 1ms + 220ms);
}
@keyframes hero-in { to { opacity: 1; transform: none; } }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  opacity: 0;
  animation: hero-in 900ms var(--ease-out) 1500ms forwards;
}
.hero__scroll-rail {
  width: 1px;
  height: 46px;
  background: var(--line-dark);
  position: relative;
  overflow: hidden;
}
.hero__scroll-rail::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, var(--gold-400));
  animation: scroll-rail 2200ms var(--ease) infinite;
}
@keyframes scroll-rail {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* --------------------------------------------------------------------------
   8. Quick information bar
   -------------------------------------------------------------------------- */
.infobar { background: var(--green-700); color: var(--on-dark); }
.infobar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.infobar__item {
  padding: 1.65rem clamp(0.5rem, 2vw, 2rem);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.infobar__item:last-child { border-bottom: 0; }
.infobar__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.infobar__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
}
.infobar__value a { transition: color var(--dur) var(--ease); }
.infobar__value a:hover { color: var(--gold-400); }
.infobar__note { font-size: var(--fs-small); color: var(--on-dark-muted); }

@media (min-width: 720px) {
  .infobar__grid { grid-template-columns: repeat(2, 1fr); }
  .infobar__item { border-bottom: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark); }
  .infobar__item:nth-child(2n) { border-right: 0; }
  .infobar__item:nth-last-child(-n + 2) { border-bottom: 0; }
}
@media (min-width: 1024px) {
  .infobar__grid { grid-template-columns: repeat(4, 1fr); }
  .infobar__item { border-bottom: 0; border-right: 1px solid var(--line-dark); }
  .infobar__item:last-child { border-right: 0; }
  .infobar__item:nth-child(2n) { border-right: 1px solid var(--line-dark); }
  .infobar__item:nth-child(4n) { border-right: 0; }
}

/* --------------------------------------------------------------------------
   9. Split sections (About, Apostle, Giving)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, 1fr); }
  .split--wide-text { grid-template-columns: 0.9fr 1.1fr; }
  .split--top { align-items: start; }
  .split--reverse .split__media { order: 2; }
}

.split__body { max-width: 56ch; }

/* Image reveal mask — the frame wipes open as it scrolls into view */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-800);
}
.frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1200ms var(--ease-out);
}
.frame--wide img { aspect-ratio: 3 / 2; }
.frame--square img { aspect-ratio: 1 / 1; }
.frame.is-visible img { transform: scale(1); }
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform-origin: right;
  transition: transform 900ms var(--ease-out);
}
.frame.is-visible::after { transform: scaleX(0); }

/* Gold rule along the base of the frame, echoing the signage band */
.frame--offset {
  box-shadow: var(--shadow-lg);
  border-bottom: 5px solid var(--gold-500);
}

/* --------------------------------------------------------------------------
   10. Apostle / leadership
   -------------------------------------------------------------------------- */
.leader__quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.05rem + 1.3vw, 1.9rem);
  line-height: 1.42;
  color: var(--on-dark);
  margin-top: 1.75rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold-500);
}
.leader__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.5rem);
}
.leader__role {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 0.6rem;
}
.leader__sign {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.leader__sign-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.65rem;
  color: var(--gold-400);
  transform: rotate(-4deg);
}
.leader__sign-rule { flex: 1; height: 1px; background: var(--line-dark); }
.leader__sign-note {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* Badge treatment lifted from the ministry roundel */
.badge {
  position: absolute;
  left: clamp(-0.5rem, -1vw, 1rem);
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  width: clamp(112px, 16vw, 148px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green-900);
  border: 2px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
}
.badge span {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  line-height: 1.7;
}
.badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--on-dark);
  margin-block: 0.15rem;
}

/* --------------------------------------------------------------------------
   11. Card grids (What to expect, Ministries)
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1rem, 0.5rem + 1.4vw, 1.75rem);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }

.card {
  position: relative;
  padding: clamp(1.6rem, 1.2rem + 1vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  height: 100%;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-gold);
}
.card__icon {
  display: block;
  width: 44px;
  height: 44px;
  color: var(--green-700);
  margin-bottom: 1.35rem;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card__icon svg { width: 100%; height: 100%; }
.card:hover .card__icon { color: var(--gold-600); transform: translateY(-2px); }
.card__title { font-size: var(--fs-h3); margin-bottom: 0.6rem; }
.card__text { color: var(--ink-muted); font-size: var(--fs-small); line-height: 1.7; }

/* Ministry card variant with an index number */
.card--ministry { background: var(--cream); border-color: transparent; }
.card--ministry::before {
  content: counter(ministry, decimal-leading-zero);
  counter-increment: ministry;
  position: absolute;
  top: clamp(1.6rem, 1.2rem + 1vw, 2.25rem);
  right: clamp(1.6rem, 1.2rem + 1vw, 2.25rem);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-600);
  opacity: 0.5;
}
.grid--ministries { counter-reset: ministry; }
.card--ministry:hover { background: var(--white); border-color: var(--line-gold); }

/* --------------------------------------------------------------------------
   12. Featured verse
   -------------------------------------------------------------------------- */
.verse { text-align: center; }
.verse__mark {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 2rem;
  color: var(--gold-500);
  opacity: 0.85;
}
.verse__text {
  font-family: var(--font-display);
  font-size: var(--fs-quote);
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance;
}
.verse__ref {
  margin-top: 2rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   13. Events
   -------------------------------------------------------------------------- */
.events { display: grid; gap: 1rem; }
.event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.1rem, 0.6rem + 2vw, 2.25rem);
  align-items: start;
  padding: clamp(1.35rem, 1rem + 1.4vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.event:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }

.event__date {
  display: grid;
  place-items: center;
  align-content: center;
  width: clamp(72px, 12vw, 92px);
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--green-800);
  color: var(--on-dark);
  line-height: 1;
}
.event__day { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); }
.event__month {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 0.4rem;
}
.event__title { font-size: var(--fs-h3); }
.event__desc { color: var(--ink-muted); font-size: var(--fs-small); margin-top: 0.35rem; }
.event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.event__meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.event__meta svg { width: 14px; height: 14px; color: var(--gold-600); flex: none; }
.event__cta { display: none; }
@media (min-width: 860px) {
  .event { grid-template-columns: auto 1fr auto; align-items: center; }
  .event__cta { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   14. Sermon
   -------------------------------------------------------------------------- */
.sermon { display: grid; gap: clamp(2rem, 1rem + 3vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .sermon { grid-template-columns: 1.15fr 0.85fr; } }

.player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-900);
  box-shadow: var(--shadow-lg);
}
.player img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), filter var(--dur) var(--ease);
}
.player:hover img { transform: scale(1.04); filter: brightness(0.92); }
.player__btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  color: var(--white);
}
.player__ring {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(66px, 9vw, 88px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(247, 244, 236, 0.14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(247, 244, 236, 0.5);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.player__ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--gold-400);
  opacity: 0;
  animation: pulse-ring 2600ms var(--ease-out) infinite;
}
@keyframes pulse-ring {
  0% { opacity: 0.7; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.45); }
}
.player__btn:hover .player__ring { background: var(--gold-500); color: var(--green-900); transform: scale(1.06); }
.player__ring svg { width: 26px; height: 26px; margin-left: 4px; }
.player__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  background: rgba(4, 41, 31, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.player__embed { width: 100%; aspect-ratio: 16 / 9; border: 0; }

.sermon__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--on-dark-muted);
}
.sermon__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.sermon__meta span::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* --------------------------------------------------------------------------
   15. Gallery
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.5rem, 0.3rem + 0.8vw, 1rem);
  grid-auto-flow: dense;
}
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-deep);
  padding: 0;
  width: 100%;
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 800ms var(--ease-out);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 41, 31, 0.7));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; }
.gallery__cap {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery__item:hover .gallery__cap,
.gallery__item:focus-visible .gallery__cap { opacity: 1; transform: none; }

/* Asymmetric emphasis on wider screens */
@media (min-width: 760px) {
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--tall img { aspect-ratio: 1 / 2.06; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--wide img { aspect-ratio: 2.06 / 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(4, 41, 31, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__figure { max-width: min(100%, 1100px); text-align: center; }
.lightbox__img {
  max-width: 100%;
  max-height: 76vh;
  margin-inline: auto;
  border-radius: var(--radius);
  object-fit: contain;
  transform: scale(0.97);
  transition: transform var(--dur) var(--ease-out);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__cap {
  margin-top: 1.25rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.lightbox__count { margin-top: 0.5rem; font-size: 0.75rem; color: var(--on-dark-muted); }
.lb-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  color: var(--on-dark);
  background: rgba(6, 55, 43, 0.5);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.lb-btn:hover { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); }
.lb-btn svg { width: 18px; height: 18px; }
.lb-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lb-prev { left: clamp(0.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(0.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* --------------------------------------------------------------------------
   16. Giving
   -------------------------------------------------------------------------- */
.give-methods { display: grid; gap: 0.75rem; margin-top: 2rem; }
.give-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
}
.give-method svg { width: 22px; height: 22px; color: var(--gold-600); flex: none; }
.give-method__name { font-weight: 600; font-size: var(--fs-small); }
.give-method__detail { font-size: 0.78rem; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   17. Plan your visit
   -------------------------------------------------------------------------- */
.visit { display: grid; gap: clamp(2rem, 1rem + 3vw, 4rem); }
@media (min-width: 900px) { .visit { grid-template-columns: 1fr 1fr; align-items: start; } }

.detail-list { display: grid; gap: 0; margin-top: 2rem; }
.detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-dark);
  align-items: start;
}
.detail:last-child { border-bottom: 1px solid var(--line-dark); }
.detail svg { width: 20px; height: 20px; color: var(--gold-400); margin-top: 3px; }
.detail__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.3rem;
}
.detail__value { font-size: 1.0625rem; line-height: 1.55; }
.detail__value a { border-bottom: 1px solid rgba(226, 201, 143, 0.4); transition: border-color var(--dur) var(--ease); }
.detail__value a:hover { border-color: var(--gold-400); }

/* Map slot — swap for an embedded map once the address is confirmed */
.map-slot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    repeating-linear-gradient(45deg, rgba(239, 236, 227, 0.03) 0 12px, transparent 12px 24px),
    var(--green-900);
  min-height: clamp(320px, 34vw, 460px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.map-slot__inner { max-width: 32ch; }
.map-slot svg { width: 34px; height: 34px; color: var(--gold-500); margin: 0 auto 1rem; }
.map-slot p { font-size: var(--fs-small); color: var(--on-dark-muted); }
.map-slot strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   18. Forms
   -------------------------------------------------------------------------- */
.form__note { font-size: 0.78rem; color: var(--ink-muted); }

/* Contact channels */
.channels { display: grid; gap: 1rem; }
.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.channel:hover { transform: translateX(4px); border-color: var(--line-gold); background: var(--white); }
.channel svg { width: 20px; height: 20px; color: var(--green-700); flex: none; }

/* Three-up variant: icon above the text, sized to carry the contact section */
.channels--grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(1rem, 0.5rem + 1.4vw, 1.75rem);
}
.channels--grid .channel {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
  padding: clamp(1.6rem, 1.2rem + 1vw, 2.25rem);
  border-radius: var(--radius-lg);
  height: 100%;
}
.channels--grid .channel svg { width: 26px; height: 26px; }
.channels--grid .channel:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.channels--grid .channel__value { display: block; margin-top: 0.35rem; }
.channels--grid .channel__note {
  display: block;
  margin-top: 0.6rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.6;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.channel__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.channel__value { font-family: var(--font-display); font-size: 1.2rem; }

.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.socials--center { justify-content: center; margin-top: clamp(2rem, 1.5rem + 2vw, 3rem); }
.social {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--green-700);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover { background: var(--green-700); color: var(--cream); border-color: var(--green-700); transform: translateY(-3px); }
.social--light { border-color: var(--line-dark); color: var(--on-dark); }
.social--light:hover { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--green-900); color: var(--on-dark); padding-top: clamp(3.5rem, 2rem + 5vw, 6rem); }
.footer__grid {
  display: grid;
  gap: clamp(2.25rem, 1rem + 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 2rem + 3vw, 4rem);
}
@media (min-width: 860px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--gold-400);
  margin-top: 1.25rem;
  max-width: 24ch;
}
.footer__heading {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
}
.footer__links { list-style: none; padding: 0; display: grid; gap: 0.65rem; }
.footer__links a {
  font-size: var(--fs-small);
  color: var(--on-dark-muted);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--gold-400); padding-left: 5px; }
.footer__phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--on-dark);
  transition: color var(--dur) var(--ease);
}
.footer__phone:hover { color: var(--gold-400); }
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--on-dark-muted);
}

/* --------------------------------------------------------------------------
   20. Modal (all events / giving)
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(4, 41, 31, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(86vh, 760px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1rem + 3vw, 3rem);
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(0.985);
  transition: transform var(--dur) var(--ease-out);
}
.modal.is-open .modal__panel { transform: none; }
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--ink-muted);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.modal__close:hover { background: var(--green-800); color: var(--cream); }
.modal__close svg { width: 16px; height: 16px; }
.modal__title { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); margin-bottom: 0.6rem; }
.modal__list { display: grid; gap: 0.75rem; margin-top: 1.75rem; }
.modal__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.modal__row-date {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  white-space: nowrap;
}
.modal__row-title { font-family: var(--font-display); font-size: 1.15rem; }
.modal__row-meta { font-size: 0.8rem; color: var(--ink-muted); margin-top: 0.2rem; }

/* --------------------------------------------------------------------------
   21. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal="scale"] { transform: translateY(26px) scale(0.97); }
[data-reveal="scale"].is-visible { transform: none; }

/* When JS is unavailable, everything must still be visible */
.no-js [data-reveal],
.no-js .hero [data-hero] { opacity: 1; transform: none; animation: none; }
.no-js .frame::after { transform: scaleX(0); }
.no-js .frame img { transform: none; }

/* --------------------------------------------------------------------------
   22. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .hero [data-hero], .hero__scroll { opacity: 1 !important; transform: none !important; }
  .hero__media img { opacity: 1; transform: none; }
  .frame::after { transform: scaleX(0); }
  .frame img { transform: none; }
  .btn:hover, .card:hover, .event:hover, .channel:hover, .social:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   23. Print
   -------------------------------------------------------------------------- */
@media print {
  .nav, .drawer, .hero__scroll, .lightbox, .modal, .btn, .burger { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
