/* =========================================================================
   Advent — landing page
   Grounded in DESIGN.md. Four palettes on two axes {weekday|sabbath}×{light|dark}.
   The accent rotates teal → amber at sundown; the whole page cross-fades 2400ms.
   No pure #fff / #000. No purple gradients, no blobs, no equal-tile grids,
   no integer shadows, no Inter/Roboto. Serif = Literata (scripture/display),
   grotesque = Plus Jakarta Sans (the app's own voice).
   ========================================================================= */

@font-face {
  font-family: 'Literata';
  src: url('/fonts/Literata.ttf') format('truetype-variations');
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/PlusJakartaSans.ttf') format('truetype-variations');
  font-weight: 200 800;
  font-display: swap;
}

/* ---------- palette: weekday light (default) ---------- */
:root {
  --canvas: #f7f4ef;
  --surface: #fffdf9;
  --sunk: #efeae2;
  --ink: #1f1b17;
  --ink-muted: #6b625a;
  --ink-faint: #9b9188;
  --hairline: #e2dbd1;
  --accent: #2a6154;
  --accent-ink: #fffdf9;
  --accent-soft: #dceae5;
  --hl-yellow: #e8d48a;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow: 0 1px 2px rgba(31, 27, 23, 0.04), 0 6px 14px -6px rgba(31, 27, 23, 0.09);
  --shadow-lg: 0 2px 4px rgba(31, 27, 23, 0.05), 0 22px 48px -18px rgba(31, 27, 23, 0.22);

  --e-enter: cubic-bezier(0.2, 0.8, 0.2, 1);
  --e-exit: cubic-bezier(0.4, 0, 1, 1);
  --e-move: cubic-bezier(0.4, 0, 0.2, 1);
  --sun-dur: 2400ms;

  --maxw: 1120px;
  color-scheme: light;
}

/* ---------- palette: sabbath light ---------- */
body[data-phase='sabbath'] {
  --canvas: #f2e9dc;
  --surface: #faf3e8;
  --sunk: #eadfcd;
  --ink: #2b2118;
  --ink-muted: #75665a;
  --ink-faint: #a2917e;
  --hairline: #e0d2bf;
  --accent: #8a5a32;
  --accent-ink: #faf3e8;
  --accent-soft: #ebdac3;
  --hl-yellow: #e6ce8b;
}

/* ---------- palette: weekday dark ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #171614;
    --surface: #1f1e1b;
    --sunk: #121110;
    --ink: #edeae4;
    --ink-muted: #9a958c;
    --ink-faint: #6e6960;
    --hairline: #2c2a26;
    --accent: #5fb3a0;
    --accent-ink: #12211e;
    --accent-soft: #22322e;
    --hl-yellow: #6e5f32;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 10px 24px -10px rgba(0, 0, 0, 0.55);
    --shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.4), 0 28px 60px -20px rgba(0, 0, 0, 0.7);
    color-scheme: dark;
  }
  body[data-phase='sabbath'] {
    --canvas: #17120e;
    --surface: #201a14;
    --sunk: #120e0a;
    --ink: #ede3d4;
    --ink-muted: #a0917e;
    --ink-faint: #73675a;
    --hairline: #2f261d;
    --accent: #d9a05b;
    --accent-ink: #20170d;
    --accent-soft: #332617;
    --hl-yellow: #6b5730;
  }
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color var(--sun-dur) var(--e-move), color var(--sun-dur) var(--e-move);
}
.serif {
  font-family: 'Literata', Georgia, serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

/* palette elements cross-fade with the body at sundown */
.nav,
.feature-visual .phone-screen,
.phone,
.phone-screen,
.btn,
.chip,
.belong-card,
.swatch,
.pillars,
.get,
.foot,
.cite,
.reader-controls .rc {
  transition:
    background-color var(--sun-dur) var(--e-move),
    color var(--sun-dur) var(--e-move),
    border-color var(--sun-dur) var(--e-move),
    box-shadow var(--sun-dur) var(--e-move);
}

/* ---------- language toggle visibility ---------- */
[data-lang='en'] {
  display: none;
}
html[lang='en'] [data-lang='en'] {
  display: inline;
}
html[lang='en'] [data-lang='id'] {
  display: none;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  z-index: 100;
}
.skip:focus {
  left: 12px;
  top: 12px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: color-mix(in srgb, var(--canvas) 82%, transparent);
  backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  border-bottom-color: var(--hairline);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--accent) 55%, #fff 25%), var(--accent) 70%);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.brand-word {
  font-size: 19px;
}
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 160ms var(--e-move);
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
  width: 40px;
  height: 34px;
  cursor: pointer;
  transition: color 160ms, border-color 160ms;
}
.lang:hover {
  color: var(--ink);
  border-color: var(--ink-faint);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 220ms var(--e-enter), background-color 200ms, border-color 200ms, box-shadow 200ms;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn-solid {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow);
}
.btn-solid:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover {
  border-color: var(--ink-faint);
}
.btn-lg {
  padding: 15px 24px;
  font-size: 15px;
}
.btn-ghost .dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 40px) clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero-sky {
  position: absolute;
  inset: -10% -40% auto -40%;
  height: 130%;
  z-index: -1;
  pointer-events: none;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.5;
  mask-image: radial-gradient(120% 90% at 60% 15%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 60% 15%, #000 25%, transparent 72%);
  transition: opacity var(--sun-dur) var(--e-move);
}
.hero-wash-weekday {
  background-image: url('/backgrounds/mountain-mist-veil-weekday.webp');
}
.hero-wash-sabbath {
  background-image: url('/backgrounds/mountain-mist-veil-sabbath.webp');
  opacity: 0;
}
body[data-phase='sabbath'] .hero-wash-weekday {
  opacity: 0;
}
body[data-phase='sabbath'] .hero-wash-sabbath {
  opacity: 0.62;
}
.hero-sun {
  position: absolute;
  top: 14%;
  right: 24%;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 60%, #fff 30%), transparent 68%);
  filter: blur(6px);
  opacity: 0.5;
  transition: opacity var(--sun-dur), transform var(--sun-dur) var(--e-move);
}
body[data-phase='sabbath'] .hero-sun {
  transform: translateY(60px) scale(1.25);
  opacity: 0.75;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.hero-title span {
  display: block;
}
.hero-accentword {
  color: var(--accent);
  font-style: italic;
}
.hero-lede {
  margin-top: 22px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 30em;
}
.hero-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* hero device */
.hero-device {
  justify-self: center;
}
.phone {
  position: relative;
  width: 264px;
  aspect-ratio: 9 / 19;
  background: var(--surface);
  border-radius: 34px;
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--hairline);
}
.phone-sm {
  width: 232px;
}
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 20px;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  border-radius: var(--radius-full);
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: var(--canvas);
  padding: 30px 20px 22px;
  display: flex;
  flex-direction: column;
}

/* rest doorway screen */
#phone-rest {
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 60%, var(--canvas)), var(--canvas) 62%);
}
.rest-sun {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--accent) 70%, #fff 20%), var(--accent) 72%);
  box-shadow: 0 0 32px -4px var(--accent);
  margin-bottom: 14px;
}
.rest-greet {
  font-size: 26px;
  color: var(--ink);
}
.rest-sub {
  font-size: 12.5px;
  color: var(--ink-muted);
  max-width: 18em;
  margin: 4px auto 18px;
  line-height: 1.5;
}
.rest-doors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.rest-door {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
  padding: 9px 12px;
}

/* ---------- pillars ---------- */
.pillars {
  max-width: var(--maxw);
  margin: 8px auto 0;
  padding: 22px clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pillar-n {
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
}
.pillar-l {
  font-size: 13px;
  color: var(--ink-muted);
  max-width: 15em;
}

/* ---------- features ---------- */
.feature {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) clamp(16px, 4vw, 40px);
}
.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.kicker.light {
  color: color-mix(in srgb, var(--accent) 70%, var(--ink) 30%);
}
.feature h2 {
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 14em;
}
.feature-text {
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 34em;
}
.ticks {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 11px;
}
.ticks li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink);
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.ticks li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* split feature (copy + visual side by side, alternating) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.feature-split.reverse .feature-visual {
  order: 2;
}
.feature-visual {
  display: flex;
  justify-content: center;
}

/* wide feature (rest) */
.feature-wide {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.rest-visual {
  align-self: center;
}
.swatch-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.swatch {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fffdf9;
  box-shadow: var(--shadow);
}
.swatch span {
  font-weight: 700;
  font-size: 17px;
}
.swatch small {
  font-size: 11px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.swatch.teal {
  background: #2a6154;
}
.swatch.amber {
  background: #8a5a32;
}
.swatch-arrow {
  color: var(--ink-faint);
  font-size: 22px;
}
.swatch-caption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-muted);
  font-style: italic;
}

/* reader screen */
.reader-screen {
  background: var(--surface);
  padding: 26px 20px;
  gap: 14px;
}
.reader-ref {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.reader-line {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}
.reader-line b {
  color: var(--accent);
  font-weight: 600;
  font-size: 11px;
  vertical-align: super;
  margin-right: 3px;
}
mark.hl-yellow,
mark {
  background: var(--hl-yellow);
  color: var(--ink);
  padding: 1px 2px;
  border-radius: 3px;
}
.reader-controls {
  margin-top: auto;
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.rc {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
  padding: 6px 12px;
}
.rc-on {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.rc-on em {
  font-style: normal;
}

/* ask screen */
.ask-screen {
  background: var(--surface);
  gap: 12px;
}
.ask-q {
  align-self: flex-end;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 13px;
  padding: 10px 13px;
  border-radius: 16px 16px 4px 16px;
  max-width: 85%;
}
.ask-a {
  background: var(--sunk);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  padding: 12px 14px;
  border-radius: 16px 16px 16px 4px;
  max-width: 92%;
}
.cite {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 11px;
  color: var(--ink-muted);
  background: var(--accent-soft);
  border-radius: var(--radius-full);
  padding: 7px 12px;
  align-self: flex-start;
}
.cite-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--accent);
  flex-shrink: 0;
}

/* chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.chip {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
  padding: 8px 14px;
}
.chip.hl-yellow-chip {
  background: var(--hl-yellow);
  border-color: transparent;
}

/* belong grid — deliberately varied, not equal tiles */
.feature-grid {
  display: block;
}
.feature-copy-center {
  text-align: center;
  max-width: 40em;
  margin: 0 auto;
}
.feature-copy-center h2,
.feature-copy-center .feature-text {
  margin-left: auto;
  margin-right: auto;
}
.belong-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: minmax(150px, auto);
  gap: 16px;
}
.belong-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 260ms var(--e-enter), box-shadow 260ms;
}
.belong-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.belong-card h3 {
  font-size: 18px;
  font-weight: 600;
}
.belong-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.belong-ic {
  font-size: 22px;
  color: var(--accent);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  margin-bottom: 4px;
}
/* varied weight/height */
.b-church {
  grid-row: span 2;
  justify-content: flex-end;
  background: linear-gradient(180deg, var(--accent-soft), var(--surface) 55%);
}
.b-church h3 {
  font-size: 22px;
}
.b-date {
  grid-column: 2;
}

/* ethos band */
.ethos {
  background: var(--sunk);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(56px, 9vw, 100px) clamp(16px, 4vw, 40px);
}
.ethos-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.ethos h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 auto;
  max-width: 16em;
}
.ethos-text {
  margin-top: 22px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
}

/* get / cta */
.get {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) clamp(16px, 4vw, 40px);
}
.get-inner {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.get-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 50% -20%, var(--accent-soft), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.get h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  position: relative;
}
.get p {
  margin: 16px auto 0;
  max-width: 34em;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}
.get-form {
  margin: 28px auto 0;
  display: flex;
  gap: 10px;
  max-width: 460px;
  position: relative;
}
.get-form input {
  flex: 1;
  font: inherit;
  font-size: 15px;
  padding: 15px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--hairline);
  background: var(--canvas);
  color: var(--ink);
}
.get-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.get-thanks {
  margin-top: 16px;
  color: var(--accent);
  font-weight: 600;
  position: relative;
}

/* footer */
.foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px clamp(16px, 4vw, 40px) 64px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}
.foot-tag {
  color: var(--ink-muted);
  font-size: 14px;
}
.foot-fine {
  color: var(--ink-faint);
  font-size: 12px;
  max-width: 40em;
}

/* ---------- reveal on scroll ----------
   Content is visible by default. It is only hidden for the animation once JS has
   added html.anim — so if JS never runs, or the observer never fires, nothing is
   ever stranded invisible. landing.ts also reveals everything on a failsafe timer. */
html.anim .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms var(--e-enter), transform 640ms var(--e-enter);
}
html.anim .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-lede,
  .feature-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-device {
    margin-top: 8px;
  }
  .feature-split,
  .feature-wide {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feature-split.reverse .feature-visual {
    order: 0;
  }
  .feature h2,
  .ticks {
    margin-left: auto;
    margin-right: auto;
  }
  .ticks {
    display: inline-grid;
    text-align: left;
  }
  .chips {
    justify-content: center;
  }
  .belong-grid {
    grid-template-columns: 1fr;
  }
  .b-church,
  .b-date {
    grid-row: auto;
    grid-column: auto;
  }
  .nav-links {
    display: none;
  }
  .pillars {
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
  }
}
@media (max-width: 460px) {
  .get-form {
    flex-direction: column;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  :root {
    --sun-dur: 1ms;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: opacity 200ms linear;
    transform: none;
  }
  * {
    animation-duration: 1ms !important;
    transition-duration: 200ms !important;
  }
}
