/* ============================================================================
   Light — modern. White, off-white, one gold hairline, no serif anywhere.
   ----------------------------------------------------------------------------
   The only one of the six templates with no serif face at all: headings are
   large, tight, heavy sans, and the whole design is carried by white space
   rather than by boxes, rules or panels. Nothing here has a border except one
   gold hairline in the hero.

   Palette matches the `light` row in `ministry_templates`. The bronze below is
   NOT in that row deliberately: #C59A4A measures 2.59:1 on white, so the brand
   gold stays a decorative fill and small text uses a darkened version. This is
   the same rule the marketing site's --accent follows, for the same reason.
   ========================================================================== */

.demo-body--light {
  --white: #ffffff;
  --off: #f7f4ee;
  --gold: #c59a4a;      /* the hairline and other fills — never small text */
  --bronze: #7d5c20;    /* 6.13:1 on white, 5.59:1 on the off-white */
  --ink: #20252b;
  --ink-mute: #55606b;  /* 6.42:1 / 5.85:1 */
  --line: rgba(32, 37, 43, 0.1);

  background: var(--white);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.003em;
}

.l-shell {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

h1, h2, h3 { font-weight: 700; line-height: 1.08; letter-spacing: -0.028em; }

.l-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}
.l-label--light { color: #e0c489; }

.l-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.l-button:hover { background: #0e1216; border-color: #0e1216; }
.l-button--sm { min-height: 42px; padding: 0.4rem 1.1rem; font-size: 0.86rem; }
.l-button--quiet { background: transparent; color: var(--ink); }
.l-button--quiet:hover { background: var(--off); border-color: var(--ink); color: var(--ink); }
.l-button--light { background: var(--white); border-color: var(--white); color: var(--ink); }
.l-button--light:hover { background: var(--off); border-color: var(--off); color: var(--ink); }

.l-arrow {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bronze);
  text-decoration: none;
}
.l-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }
.l-arrow--light { color: #e0c489; }

/* ── Header ──────────────────────────────────────────────────────────────── */

.l-header { border-bottom: 1px solid var(--line); }
.l-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }
.l-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.4rem;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: inherit;
}
.l-brand span { font-weight: 400; color: var(--ink-mute); }
.l-nav { display: flex; gap: 1.9rem; margin-inline-start: auto; }
.l-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-mute);
  text-decoration: none;
}
.l-nav a:hover { color: var(--ink); }

@media (max-width: 880px) {
  .l-nav { display: none; }
  .l-header__inner { justify-content: space-between; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.l-hero { padding-block: clamp(3.5rem, 10vw, 8rem) clamp(3rem, 7vw, 5.5rem); }
.l-hero__title {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.l-hero__foot {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  /* The single ornament in the whole template. */
  border-top: 2px solid var(--gold);
}
@media (max-width: 820px) {
  .l-hero__foot { grid-template-columns: 1fr; align-items: start; }
}
.l-hero__lede { max-width: 34rem; color: var(--ink-mute); font-size: 1.06rem; }
.l-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }

/* ── The facts strip ─────────────────────────────────────────────────────── */

.l-strip { padding-block: clamp(2.25rem, 5vw, 3.5rem); background: var(--off); }
.l-strip__inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}
.l-strip .l-label { margin-bottom: 0.5rem; }
.l-strip__big { font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.l-strip__text { font-size: 0.95rem; color: var(--ink-mute); line-height: 1.55; }

/* ── Sections ────────────────────────────────────────────────────────────── */

.l-section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.l-section--tint { background: var(--off); }

.l-head { max-width: 44rem; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.l-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.l-head__lede { margin-top: 1.1rem; color: var(--ink-mute); }

/* ── The series list ─────────────────────────────────────────────────────── */

.l-series { border-top: 1px solid var(--line); }
.l-series__row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding-block: clamp(1.1rem, 2.4vw, 1.75rem);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
  .l-series__row { grid-template-columns: 3rem minmax(0, 1fr); gap: 0.75rem 1rem; }
  .l-series__play { grid-column: 2; }
}
/* --bronze, not --gold. The header of this file says the brand gold is a
   decorative fill and never small text, and then this rule used it for a 0.9rem
   numeral on white: 2.59:1. Caught by the audit, which is the point of having
   the demos in it. */
.l-series__n { font-size: 0.9rem; font-weight: 600; color: var(--bronze); }
.l-series__body a {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: inherit;
}
.l-series__body a:hover { text-decoration: underline; text-underline-offset: 5px; }
.l-series__meta { display: block; margin-top: 0.3rem; font-size: 0.88rem; color: var(--ink-mute); }
.l-more { margin-top: clamp(2rem, 4vw, 3rem); }

/* ── Groups ──────────────────────────────────────────────────────────────── */

.l-two {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 900px) { .l-two { grid-template-columns: 1fr; } }
.l-two__title { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 1.1rem; }
.l-two__text { color: var(--ink-mute); }

.l-groups { display: grid; }
.l-groups li { padding-block: 1.4rem; border-top: 1px solid var(--line); }
.l-groups li:last-child { border-bottom: 1px solid var(--line); }
.l-groups h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.l-groups p { color: var(--ink-mute); font-size: 0.95rem; }

/* ── Giving ──────────────────────────────────────────────────────────────── */

.l-give { padding-block: clamp(3.5rem, 7vw, 5.5rem); background: var(--ink); color: #f4f2ee; }
/* .l-give__inner is also .l-shell. Setting a narrower max-width on the element
   that does the centring re-centred the whole block instead of constraining the
   text inside it, so the giving band was the only section off the page's axis.
   The measure belongs on the children. */
.l-give__inner > * { max-width: 44rem; }
.l-give h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1.1rem; color: #fff; }
.l-give p { color: #b3bac1; }
.l-give__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */

.l-footer { padding-block: clamp(2.25rem, 4.5vw, 3rem); }
.l-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--ink-mute);
}
.l-footer__brand { font-weight: 700; color: var(--ink); }
