/* =========================================================================
   His Show

   Two zones, one design. Pages that carry a feeling are dark; pages you
   actually work in — read, fill out, look something up — are light. Both
   share the same type, the same red, the same clay.

   Every rule below reads from tokens. `.t-dark` and `.t-light` on <body>
   swap the tokens; nothing else changes. That's what makes the nav and
   footer work on both without a second copy of them.

   The dark is a warm charcoal with clay in it, not a neutral black, and
   the light is chalk-coloured paper, not white. Neither is grey.
   ========================================================================= */

:root {
  /* Brand, constant in both zones. */
  --red:      #d4432f;
  --red-deep: #a93524;
  --clay:     #8a5437;

  --display: 'Instrument Serif', Georgia, serif;
  --body: 'Archivo', system-ui, -apple-system, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --measure: 34rem;
}

/* ── the dark zone: home, the story ─────────────────────────────────────── */
.t-dark {
  --bg:        #13110f;  /* warm charcoal, clay in the mix */
  --bg-alt:    #181c15;  /* grass under the lights */
  --ink:       #f6f2e9;  /* chalk, matches the logo */
  --ink-soft:  #ada497;
  --ink-faint: #7a7166;
  --rule:      rgba(246, 242, 233, .15);
  --wash:      rgba(246, 242, 233, .05);
  --clay-ink:  #c98a63;  /* clay lifted enough to read on the dark */
  --btn-line:  rgba(246, 242, 233, .42);
}

/* ── the light zone: everything you read or fill in ─────────────────────── */
.t-light {
  --bg:        #faf5ec;  /* chalk paper, never white */
  --bg-alt:    #f1e8d8;  /* infield dust */
  --ink:       #191510;
  --ink-soft:  #5d544a;
  --ink-faint: #8d8375;
  --rule:      rgba(25, 21, 16, .16);
  --wash:      rgba(25, 21, 16, .04);
  --clay-ink:  #8a5437;
  --btn-line:  rgba(25, 21, 16, .3);
}

/* ── reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--red); color: #fff; }

.inner {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.inner.narrow { max-width: 52rem; }

/* ── nav ────────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--gutter);
  background: transparent;
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}

.site-nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 1px 0 var(--rule);
}

/* The mark only appears once you've scrolled past the one in the hero. */
.site-nav__mark img {
  height: 2.3rem;
  width: auto;
  opacity: 0;
  transform: translateY(-.4rem);
  transition: opacity .35s ease, transform .35s ease;
}
.site-nav.is-scrolled .site-nav__mark img { opacity: 1; transform: none; }

/* Interior pages have no hero to scroll past, so the bar is there from the
   first pixel. */
.t-light .site-nav,
.site-nav--solid {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 1px 0 var(--rule);
}
.t-light .site-nav__mark img,
.site-nav--solid .site-nav__mark img { opacity: 1; transform: none; }

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.9rem, 2.2vw, 1.9rem);
  justify-content: flex-end;
}

.site-nav__links a {
  position: relative;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  padding-block: .2rem;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.2, .7, .3, 1);
}
.site-nav__links a:hover::after { transform: scaleX(1); }

/* ── hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding-block: 7rem 5rem;
}

.hero__media {
  position: absolute;
  inset: -4%;
  background: url('/images/hero-bg.jpg') center / cover no-repeat;
  animation: drift 34s ease-in-out infinite alternate;
}

/* A clay-warm scrim rather than a neutral black one, so the photo reads
   like late light on dirt instead of a switched-off screen. */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(19,17,15,.32) 0%, rgba(19,17,15,.82) 72%, rgba(19,17,15,.95) 100%),
    linear-gradient(180deg, rgba(138,84,55,.24) 0%, transparent 45%, rgba(19,17,15,.5) 100%);
}

@keyframes drift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.09) translate3d(1.5%, -1.5%, 0); }
}

.hero__inner { position: relative; z-index: 1; padding-inline: var(--gutter); }

.hero__mark {
  height: clamp(6.5rem, 17vw, 11rem);
  width: auto;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
}

.hero__lead {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  color: var(--ink-soft);
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.6rem, 15vw, 9rem);
  line-height: .92;
  letter-spacing: -.015em;
  margin-block: .15em .35em;
}

.hero__sub {
  font-size: clamp(.95rem, 2.2vw, 1.12rem);
  color: var(--ink-soft);
  max-width: 30rem;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(var(--red), transparent);
  transform: translateX(-50%);
  z-index: 1;
}

/* One orchestrated entrance, here and nowhere else on the site. */
.hero__mark,
.hero__lead,
.hero__title,
.hero__sub,
.hero__actions,
.hero__cue {
  animation: rise .9s cubic-bezier(.2, .7, .3, 1) backwards;
}
.hero__mark    { animation-delay: .05s; }
.hero__lead    { animation-delay: .22s; }
.hero__title   { animation-delay: .32s; }
.hero__sub     { animation-delay: .48s; }
.hero__actions { animation-delay: .6s; }
.hero__cue     { animation-delay: .9s; animation-name: riseCue; }

@keyframes rise {
  from { opacity: 0; transform: translateY(1.4rem); }
  to   { opacity: 1; transform: none; }
}
@keyframes riseCue {
  from { opacity: 0; transform: translateX(-50%) scaleY(0); }
  to   { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

/* ── buttons and links ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: .92rem;
  font-weight: 500;
  padding: .85rem 1.7rem;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--solid { background: var(--red); color: #fff; border-color: var(--red); }
.btn--solid:hover { background: var(--red-deep); border-color: var(--red-deep); }

.btn--line { border-color: var(--btn-line); color: var(--ink); }
.btn--line:hover { border-color: var(--ink); background: var(--wash); }

.link-more {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: .2rem;
  border-bottom: 2px solid var(--red);
  transition: color .25s ease;
}
.link-more:hover { color: var(--red); }

/* A small red label above a heading. Used sparingly. */
.kicker {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  color: var(--red);
  margin-bottom: .9rem;
}

/* ── bands ──────────────────────────────────────────────────────────────── */
.band { padding-block: clamp(4.5rem, 12vw, 9rem); }
.band--field { background: var(--bg-alt); }

.band__head {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

/* ── photographs ────────────────────────────────────────────────────────── */
/* Two things happen to every photo: a clay wash grades it into the palette so
   it doesn't look pasted in from somewhere else, and a hairline sits inset
   from the edge like a print mark. Nothing protrudes, nothing is captioned.
   On hover the wash lifts and the frame brightens, so a photo that links
   somewhere feels live. */
.shot { position: relative; overflow: hidden; }

.shot img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}

/* The grade. soft-light keeps the highlights and warms the mid-tones rather
   than flattening everything toward brown. */
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clay);
  mix-blend-mode: soft-light;
  opacity: .45;
  pointer-events: none;
  transition: opacity .4s ease;
}

/* The frame, drawn inside the image so nothing sticks out of the layout. */
.shot::before {
  content: "";
  position: absolute;
  inset: clamp(.55rem, 1.6vw, .9rem);
  border: 1px solid rgba(246, 242, 233, .5);
  pointer-events: none;
  z-index: 2;
  transition: border-color .4s ease;
}

.shot:hover::after { opacity: .22; }
.shot:hover::before { border-color: rgba(246, 242, 233, .8); }

/* A photo that opens a page, sitting on the measure rather than full bleed.
   The source files aren't big enough to go edge to edge on a desktop and
   still look sharp. */
.shot--lead { margin-top: clamp(2.5rem, 6vw, 3.5rem); max-width: 46rem; }

/* A photo wrapped in a link gets a slow push in as well. */
a.shot:hover img { transform: scale(1.03); }

/* ── premise, on the home page ──────────────────────────────────────────── */
.premise {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 60rem) {
  .premise { grid-template-columns: 1.05fr .95fr; }
}

.premise__question {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  max-width: 18ch;
}
.premise__question em { color: var(--red); font-style: italic; }

.premise__answer p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: var(--measure);
}
.premise__answer p + p { margin-top: 1rem; }

.premise__media { max-width: 34rem; }

/* ── feature ────────────────────────────────────────────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .feature { grid-template-columns: 1fr 1fr; }
}

.feature__head {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.feature p { color: var(--ink-soft); max-width: var(--measure); }
.feature p + p { margin-top: 1rem; }
.feature__media { max-width: 32rem; }

/* ── interior pages ─────────────────────────────────────────────────────── */
.page { padding-block: clamp(8rem, 16vw, 12rem) clamp(4.5rem, 10vw, 8rem); }

.page--center {
  min-height: 70svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.page__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.page__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 42rem;
}
.page__lead p + p { margin-top: 1rem; }

.soon {
  font-family: var(--display);
  font-size: clamp(2.5rem, 9vw, 5rem);
  color: var(--ink);
}

.section-head {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin-top: clamp(3.5rem, 8vw, 5.5rem);
}
.section-note { color: var(--ink-soft); max-width: var(--measure); margin-top: .75rem; }

/* ── scripture ──────────────────────────────────────────────────────────── */
.scripture {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 38rem;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-left: clamp(1rem, 3vw, 1.75rem);
  border-left: 2px solid var(--red);
}
.scripture span {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .05em;
  color: var(--clay-ink);
  margin-top: .9rem;
}

/* ── gear list ──────────────────────────────────────────────────────────── */
.gear { margin-top: 2.5rem; border-top: 1px solid var(--rule); }

.gear__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: .4rem 2.5rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 52rem) {
  .gear__item { grid-template-columns: 13rem 1fr; }
}

.gear__item dt { font-family: var(--display); font-size: 1.35rem; color: var(--ink); }
.gear__item dd { color: var(--ink-soft); max-width: var(--measure); }

/* ── faq ────────────────────────────────────────────────────────────────── */
.faq { margin-top: 2.5rem; }
.faq__group { margin-bottom: clamp(2.5rem, 6vw, 4rem); }

.faq__group h3 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  color: var(--red);
  padding-bottom: .65rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--rule);
}

.faq__item { margin-bottom: 1.75rem; max-width: 42rem; }
.faq__q { font-weight: 600; margin-bottom: .45rem; }
.faq__a { color: var(--ink-soft); max-width: var(--measure); white-space: pre-line; }
.faq__a a { border-bottom: 1px solid var(--red); color: var(--ink); }
.faq__a a:hover { color: var(--red); }

/* ── the story ──────────────────────────────────────────────────────────── */
.story { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
@media (min-width: 62rem) {
  .story { grid-template-columns: 20rem 1fr; }
  .story__aside { position: sticky; top: 7rem; align-self: start; }
}

.story__quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--ink);
}
.story__quote em { color: var(--red); }

.story__media { margin-top: clamp(2rem, 5vw, 3rem); }

.story__body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: var(--measure);
}
.story__body p + p { margin-top: 1.4rem; }
.story__body em { color: var(--ink); font-style: italic; }

.story__welcome {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--ink);
  margin-top: 2rem;
}

.signoff { display: flex; justify-content: center; margin-top: clamp(4rem, 10vw, 7rem); }
.signoff img { height: clamp(6rem, 14vw, 9.5rem); width: auto; }

/* ── events ─────────────────────────────────────────────────────────────── */
.events { border-top: 1px solid var(--rule); }

.event {
  display: flex;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding-block: 1.9rem;
  border-bottom: 1px solid var(--rule);
}

.event__when { flex: 0 0 3.5rem; text-align: center; padding-top: .15rem; }

.event__day {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--red);
}
.event__month {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--ink-faint);
  margin-top: .2rem;
}

.event__what h2,
.event__what h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  line-height: 1.2;
}
.event__meta { color: var(--ink-soft); font-size: .92rem; margin-top: .35rem; }
.event__note { color: var(--ink-soft); max-width: var(--measure); margin-top: .75rem; }

.empty { padding-block: clamp(2.5rem, 6vw, 4rem); border-block: 1px solid var(--rule); }
.empty p { color: var(--ink-soft); }

/* ── tally ──────────────────────────────────────────────────────────────── */
.tally {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: clamp(1.25rem, 4vw, 2.5rem);
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid var(--rule);
}

.tally__item { display: flex; flex-direction: column; }

.tally__num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: 1;
  color: var(--red);
}
.tally__label { font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); margin-top: .4rem; }
.tally__note { font-size: .78rem; color: var(--ink-faint); margin-top: 1.25rem; }

/* ── drop-off spots ─────────────────────────────────────────────────────── */
.spots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 46rem) { .spots { grid-template-columns: 1fr 1fr; } }

.spot { background: var(--bg); padding: clamp(1.5rem, 4vw, 2.25rem); }

.spot h3 { font-family: var(--display); font-weight: 400; font-size: 1.35rem; margin-bottom: .5rem; }
.spot__addr { color: var(--ink-soft); font-size: .95rem; }
.spot__hours { font-size: .9rem; color: var(--clay-ink); margin-top: .5rem; }
.spot__note { color: var(--ink-soft); font-size: .9rem; margin-top: .6rem; }

/* ── forms ──────────────────────────────────────────────────────────────── */
.form { max-width: 40rem; }

.form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 40rem) { .form__row { grid-template-columns: 1fr 1fr; } }

.form__field { margin-bottom: 1.25rem; }
.form__row .form__field { margin-bottom: 0; }
.form__row + .form__field { margin-top: 1.25rem; }

.form label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--ink-faint);
  margin-bottom: .45rem;
}
.form__opt { color: var(--ink-faint); font-weight: 400; }

.form input,
.form select,
.form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: .6rem 0;
  transition: border-color .25s ease;
}
.form select { appearance: none; padding-right: 1.5rem; }
.form select option { background: var(--bg); color: var(--ink); }
.form textarea { resize: vertical; line-height: 1.6; }

.form input:hover,
.form select:hover,
.form textarea:hover { border-bottom-color: var(--ink-faint); }

.form input:focus,
.form select:focus,
.form textarea:focus { outline: none; border-bottom-color: var(--red); }

.form .btn { margin-top: 1.75rem; }

/* Left empty by people, filled in by bots. */
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice { margin-top: 2rem; padding-left: clamp(1rem, 3vw, 1.5rem); border-left: 2px solid var(--red); }
.notice p { color: var(--ink); font-size: 1.05rem; }
.notice--warn p { color: var(--ink-soft); }

/* ── content page: the podcast ──────────────────────────────────────────── */
.listen {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: clamp(1rem, 3vw, 2rem);
}
@media (min-width: 58rem) {
  .listen { grid-template-columns: 22rem 1fr; }
}

.listen__art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(1rem, 3vw, 2rem);
}
.listen__art img { width: 100%; max-width: 17rem; height: auto; }

.listen__meta { font-size: .88rem; color: var(--ink-soft); letter-spacing: .01em; }
.listen__meta strong { color: var(--ink); font-weight: 600; }

.listen__hosts {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--ink);
  margin-top: .5rem;
}

.listen__blurb { margin-top: 1rem; max-width: var(--measure); }
.listen__blurb p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.listen__blurb p + p { margin-top: 1rem; }

/* Each platform keeps its own colour on hover, so the two read as two
   different destinations rather than two identical pills. */
.platforms { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: clamp(1.75rem, 4vw, 2.5rem); }

.platform {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.4rem;
  border: 1px solid var(--btn-line);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}
.platform svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.platform span { white-space: nowrap; }
.platform small {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  color: var(--ink-faint);
  margin-top: .1rem;
}

.platform--spotify:hover { border-color: #1db954; background: rgba(29, 185, 84, .12); }
.platform--apple:hover   { border-color: #8f4ca3; background: rgba(143, 76, 163, .12); }
.platform--soon { opacity: .45; pointer-events: none; }

.listen__where { font-size: .85rem; color: var(--ink-faint); margin-top: 1.25rem; }

/* ── content page: the devotional ───────────────────────────────────────── */
/* Deliberately unlike the podcast block above it: no columns, no art, just a
   title set large on an open measure. */
.book {
  margin-top: clamp(4.5rem, 10vw, 7rem);
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
  border-top: 1px solid var(--rule);
  max-width: 46rem;
}

.book__kicker {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.book__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 4rem);
  line-height: 1.04;
}

.book__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  line-height: 1.3;
  color: var(--clay-ink);
  margin-top: .5rem;
}

.book__body { margin-top: clamp(1.75rem, 4vw, 2.5rem); }
.book__body p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; max-width: var(--measure); }
.book__body p + p { margin-top: 1.15rem; }

.book__cta { margin-top: clamp(1.75rem, 4vw, 2.5rem); }
.book__soon { margin-top: clamp(1.75rem, 4vw, 2.5rem); font-size: .9rem; color: var(--ink-faint); }

/* ── donate ─────────────────────────────────────────────────────────────── */
.legal-lead {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.35;
  max-width: 38rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--red);
}

.legal { margin-top: clamp(2.5rem, 6vw, 3.5rem); max-width: 40rem; }
.legal p { color: var(--ink-soft); font-size: .95rem; }
.legal p + p { margin-top: 1.1rem; }

/* ── devotionals ────────────────────────────────────────────────────────── */
.crumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.crumb a { border-bottom: 1px solid var(--red); transition: color .25s ease; }
.crumb a:hover { color: var(--red); }

.series-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin: clamp(1.5rem, 4vw, 2.25rem) 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  font-size: .9rem;
}
.series-nav a { color: var(--ink-faint); transition: color .25s ease; }
.series-nav a:hover, .series-nav a.on { color: var(--ink); }

/* The archive is a table of contents, not a grid of cards. */
.dev-list__item { border-bottom: 1px solid var(--rule); }
.dev-list__item:first-child { border-top: 1px solid var(--rule); }

.dev-list__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: .25rem;
  padding: 1.35rem 0;
  transition: background .25s ease, padding-inline .25s ease;
}
.dev-list__link:hover { background: var(--wash); padding-inline: .9rem; }

@media (min-width: 42rem) {
  .dev-list__link { grid-template-columns: 10rem 1fr auto; align-items: baseline; gap: 1.5rem; }
}

.dev-list__date { font-size: .82rem; color: var(--ink-faint); }
.dev-list__title {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.25;
  color: var(--ink);
}
.dev-list__ref { font-size: .82rem; color: var(--clay-ink); }

.dev-recent { margin-top: clamp(1.75rem, 4vw, 2.25rem); max-width: var(--measure); }
.dev-recent__item { border-top: 1px solid var(--rule); }
.dev-recent__item:last-child { border-bottom: 1px solid var(--rule); }

.dev-recent__link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .3rem 1rem;
  padding: .9rem 0;
}
.dev-recent__link:hover .dev-recent__title { color: var(--red); }
.dev-recent__date { flex: 0 0 7rem; font-size: .78rem; color: var(--ink-faint); }
.dev-recent__title { font-size: 1rem; color: var(--ink); transition: color .25s ease; }

/* ── one devotional, built for reading ──────────────────────────────────── */
.devotional { max-width: 40rem; }

.devotional__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.5vw, 3.2rem);
  line-height: 1.08;
}
.devotional__date { font-size: .85rem; color: var(--ink-faint); margin-top: .7rem; }

.devotional__ref {
  font-size: .9rem;
  color: var(--clay-ink);
  margin-top: 1.5rem;
  padding-left: .9rem;
  border-left: 2px solid var(--red);
}

.devotional__body { margin-top: clamp(2rem, 5vw, 3rem); }
.devotional__body p { font-size: 1.1rem; line-height: 1.85; color: var(--ink-soft); }
.devotional__body p + p { margin-top: 1.4rem; }
.devotional__body em { font-style: italic; color: var(--ink); }

.devotional__nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(3.5rem, 8vw, 5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  font-size: .95rem;
}
.devotional__nav a { max-width: 15rem; color: var(--ink-soft); transition: color .25s ease; }
.devotional__nav a:hover { color: var(--red); }
.devotional__nav span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--ink-faint);
  margin-bottom: .3rem;
}
.devotional__next { text-align: right; }

.devotional__back { margin-top: 2rem; font-size: .88rem; }
.devotional__back a { color: var(--ink-soft); border-bottom: 1px solid var(--red); }
.devotional__back a:hover { color: var(--red); }

/* ── footer ─────────────────────────────────────────────────────────────── */
/* Always dark, whatever the page above it. It closes every page the same way,
   which is what keeps two zones feeling like one site. */
.site-footer {
  background: #13110f;
  color: #f6f2e9;
  padding-block: clamp(3.5rem, 9vw, 6rem);
  border-top: 3px solid var(--red);
}

.site-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.site-footer__home { display: block; transition: opacity .25s ease; }
.site-footer__home:hover { opacity: .72; }
.site-footer__mark { height: 4.25rem; width: auto; }

.site-footer__line {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: #ada497;
}

.site-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.site-footer__links a { font-size: .9rem; color: #f6f2e9; transition: color .25s ease; }
.site-footer__links a:hover { color: var(--red); }

.site-footer__fine { font-size: .8rem; color: #7a7166; }
.site-footer__fine + .site-footer__fine {
  max-width: 44rem;
  font-size: .72rem;
  line-height: 1.5;
  margin-top: -.5rem;
}

/* ── email signup, in the footer ────────────────────────────────────────── */
.subscribe { width: 100%; max-width: 30rem; padding-block: clamp(.75rem, 2vw, 1.25rem); }

.subscribe__note { font-size: .92rem; color: #ada497; margin-bottom: .9rem; }
.subscribe__warn { font-size: .85rem; color: var(--red); margin-bottom: .75rem; }

.subscribe__done {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: #f6f2e9;
  padding-left: 1rem;
  border-left: 2px solid var(--red);
  text-align: left;
}

.subscribe__form { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

.subscribe__form input[type="email"] {
  flex: 1 1 14rem;
  min-width: 0;
  font: inherit;
  font-size: .95rem;
  color: #f6f2e9;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(246, 242, 233, .28);
  border-radius: 0;
  padding: .6rem 0;
  text-align: center;
  transition: border-color .25s ease;
}
.subscribe__form input[type="email"]::placeholder { color: #7a7166; }
.subscribe__form input[type="email"]:hover { border-bottom-color: rgba(246, 242, 233, .5); }
.subscribe__form input[type="email"]:focus { outline: none; border-bottom-color: var(--red); }

.subscribe__form .btn { flex: 0 0 auto; }

@media (min-width: 34rem) {
  .subscribe__form input[type="email"] { text-align: left; }
}

/* Visible to screen readers, not to eyes. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

/* ── who we are, at the foot of the story ─────────────────────────────── */
.who {
  margin-top: clamp(4rem, 10vw, 6.5rem);
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
  border-top: 1px solid var(--rule);
}

.who__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 3.5rem);
  margin-top: 1.5rem;
}
@media (min-width: 54rem) {
  .who__list { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
}

.who__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  line-height: 1.1;
}

.who__role {
  font-size: .82rem;
  letter-spacing: .05em;
  color: var(--clay-ink);
  margin-top: .4rem;
}

.who__bio { margin-top: 1rem; }
.who__bio p { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.who__bio p + p { margin-top: .9rem; }

/* ── giving ───────────────────────────────────────────────────────────── */
.give__lead {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  max-width: 34rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.give {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 44rem;
}
@media (min-width: 42rem) {
  .give { grid-template-columns: 1fr 1fr; }
}

/* Each option is a whole-card link, so the target is the size of the card
   rather than four words of text. */
.give__card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: var(--bg);
  padding: clamp(1.5rem, 4vw, 2rem);
  transition: background .25s ease;
}
.give__card:hover { background: var(--bg-alt); }

.give__cadence {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .09em;
  color: var(--red);
}

.give__label {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 1.9rem);
  line-height: 1.15;
  color: var(--ink);
}

.give__blurb { font-size: .92rem; color: var(--ink-soft); }

.give__go {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
}
.give__card:hover .give__go { color: var(--red); }

.give__note {
  font-size: .85rem;
  color: var(--ink-faint);
  max-width: 34rem;
  margin-top: 1.25rem;
}

/* The legal block is secondary once there are buttons above it. */
.give + .give__note + .legal-lead,
.give__lead + .legal-lead {
  margin-top: clamp(3.5rem, 8vw, 5rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--rule);
}

/* ── contact email ────────────────────────────────────────────────────── */
.contact__alt { color: var(--ink-soft); margin-top: 1rem; }
.contact__alt a { color: var(--ink); border-bottom: 1px solid var(--red); transition: color .25s ease; }
.contact__alt a:hover { color: var(--red); }

.site-footer__email {
  font-size: .95rem;
  color: #f6f2e9;
  border-bottom: 1px solid var(--red);
  padding-bottom: .1rem;
  transition: color .25s ease;
}
.site-footer__email:hover { color: var(--red); }

.site-footer__fine a { color: #ada497; border-bottom: 1px solid rgba(173, 164, 151, .4); transition: color .25s ease; }
.site-footer__fine a:hover { color: #f6f2e9; }

/* One quiet line under each form. It answers "what happens to this?" at
   the moment someone is deciding whether to press send. */
.form__privacy { font-size: .8rem; color: var(--ink-faint); margin-top: 1rem; }
.form__privacy a { color: var(--ink-soft); border-bottom: 1px solid var(--rule); }
.form__privacy a:hover { color: var(--red); border-bottom-color: var(--red); }

/* ── privacy policy ───────────────────────────────────────────────────── */
.policy__date { font-size: .85rem; color: var(--ink-faint); margin: -.75rem 0 1.75rem; }

.policy__section {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: clamp(1.75rem, 4vw, 2.25rem);
  border-top: 1px solid var(--rule);
  max-width: 40rem;
}

.policy__section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.policy__section h3 {
  font-size: .95rem;
  font-weight: 600;
  margin: 1.5rem 0 .4rem;
}
.policy__section h2 + h3 { margin-top: 0; }

.policy__section p { color: var(--ink-soft); line-height: 1.75; }
.policy__section p + p { margin-top: .9rem; }

.policy__section a { color: var(--ink); border-bottom: 1px solid var(--red); transition: color .25s ease; }
.policy__section a:hover { color: var(--red); }

.policy__list { margin: 1rem 0; }
.policy__list li {
  color: var(--ink-soft);
  line-height: 1.7;
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: .75rem;
}
.policy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: .4rem;
  height: 2px;
  background: var(--red);
}
.policy__list strong { color: var(--ink); font-weight: 600; }

/* ── 404 ──────────────────────────────────────────────────────────────── */
.lost {
  min-height: 80svh;
  display: grid;
  align-items: center;
}

/* The arc sits behind the heading, a ball sailing out down the line. It's
   drawn once on arrival, then holds still. */
.lost__arc {
  display: block;
  width: min(100%, 26rem);
  height: auto;
  color: var(--red);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  opacity: .85;
}
.lost__arc path {
  stroke-dashoffset: 0;
  animation: flight 1.4s cubic-bezier(.3, .6, .3, 1) backwards;
}
.lost__arc circle { animation: land .3s ease 1.25s backwards; }

@keyframes flight {
  from { stroke-dasharray: 0 600; }
  to   { stroke-dasharray: 3 7; }
}
@keyframes land {
  from { opacity: 0; transform: scale(.4); transform-origin: 390px 60px; }
  to   { opacity: 1; transform: none; }
}

.lost__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.4rem, 13vw, 7.5rem);
  line-height: .95;
  letter-spacing: -.015em;
}

.lost__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 30rem;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.lost__links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: clamp(2rem, 5vw, 2.75rem);
}
