/* ============================================================
   The Bold City Battle — marketing site
   Field Sheet identity (Brand Kit v2). See BRAND.md.

     Paper   #FBFBFA   ground, everywhere
     Ink     #141414   all body and display type
     Teal    #0089A0   the crest, rules, fills — LARGE TYPE ONLY
     Gold    #B4801F   numerals and reward fills — LARGE TYPE ONLY

   Text-safe variants (both clear 4.5:1 on paper):
     Teal deep #00636F   Gold deep #8A6115

   Display: Archivo, width 125, weight 800, UPPERCASE.
   Body:    Instrument Sans.  Data/labels: Sometype Mono.
   No red. No drop shadows. Never condense the display face.
   ============================================================ */

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

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

/* ---------- tokens ---------- */
:root {
  --paper:     #fbfbfa;
  --surface:   #ffffff;
  --ink:       #141414;
  --teal:      #0089a0;
  --teal-deep: #00636f;
  --gold:      #b4801f;
  --gold-deep: #8a6115;
  --wash-teal: #e3f1f4;
  --wash-gold: #fbf3db;

  --text:      var(--ink);
  --text-2:    #5e5b55;
  --text-3:    #78746d;
  --line:      #e6e4df;
  --line-2:    #f1efeb;

  --radius:    10px;
  --radius-sm: 6px;
  --wrap:      1180px;
  --gutter:    clamp(20px, 5vw, 48px);

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Instrument Sans", -apple-system, "Segoe UI", Helvetica, sans-serif;
  --mono:    "Sometype Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* the display face is a variable font; width 125 IS the identity */
.exp,
h1, h2, h3, .display {
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-weight: 800;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.015em;
}

/* ---------- base ---------- */
body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -120%);
  z-index: 100;
  background: var(--ink); color: var(--paper);
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 700;
  text-transform: uppercase; letter-spacing: .02em;
  padding: 12px 20px; text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal-deep);
  line-height: 1.2;
}

.section-head { margin-bottom: 38px; }
.section-head h2 {
  font-size: clamp(28px, 4.6vw, 50px);
  margin-top: 12px;
}
.section-head p {
  margin-top: 16px;
  max-width: 60ch;
  color: var(--text-2);
  font-size: 17px;
}
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }

/* the teal rule is the structural device that replaced the gold bar */
.rule {
  height: 3px;
  background: var(--teal);
  width: 56px;
}
.section-head--center .rule { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bd);
  border-radius: var(--radius-sm);
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .12s ease;
}
.btn:active { transform: scale(.985); }
.btn svg { width: 17px; height: 17px; flex: none; }

/* one dark button per view — the primary action */
.btn--primary { --btn-bg: var(--ink); --btn-fg: var(--paper); --btn-bd: var(--ink); }
.btn--primary:hover { --btn-bg: #2c2c2c; --btn-bd: #2c2c2c; }

.btn--ghost { --btn-bd: #cfccc6; --btn-fg: var(--ink); }
.btn--ghost:hover { --btn-bd: var(--ink); }

/* teal is reserved for giving */
.btn--teal { --btn-bg: var(--teal-deep); --btn-fg: #fff; --btn-bd: var(--teal-deep); }
.btn--teal:hover { --btn-bg: #00505a; --btn-bd: #00505a; }

.btn--lg { min-height: 58px; font-size: 18px; padding: 0 30px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* a payment/registration link that has not been wired up yet */
.btn.is-unset {
  --btn-bg: transparent;
  --btn-fg: var(--text-3);
  --btn-bd: #d8d5cf;
  border-style: dashed;
  cursor: not-allowed;
  transform: none;
}
.link-note {
  display: none;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-deep);
}
.link-note.is-shown { display: block; }

/* ---------- pills & panels ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-2);
}
.pill--gold { border-color: rgba(180,128,31,.45); color: var(--gold-deep); background: var(--wash-gold); }
.pill--fill { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.pill-row { display: flex; flex-wrap: wrap; gap: 9px; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 250, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(10px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
}

/* the header is the one place crest and wordmark sit together small,
   and it works because the crest is doing favicon duty */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand__name {
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: 17px;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.brand__name span { color: var(--teal-deep); }

.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-2);
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--teal); }
.nav a[aria-current="page"] { color: var(--teal-deep); border-bottom-color: var(--teal); }

.site-header .btn { min-height: 42px; font-size: 14px; padding: 0 16px; }

@media (max-width: 900px) { .nav { display: none; } }
@media (max-width: 460px) {
  .brand__name { font-size: 15px; }
  .brand img { width: 32px; height: 32px; }
  .site-header .btn { font-size: 13px; padding: 0 13px; }
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(40px, 6vw, 76px) 0 0;
  border-bottom: 1px solid var(--line);
}
.hero__crest {
  width: clamp(56px, 7vw, 74px);
  height: auto;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(40px, 8.8vw, 108px);
  letter-spacing: -.02em;
}
.hero h1 .l1 { display: block; color: var(--ink); }
.hero h1 .l2 { display: block; color: var(--teal-deep); }

/* the strap replaced the gold-star tagline device */
.hero__strap {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 3px solid var(--teal);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: baseline;
}
.hero__tagline {
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 700;
  font-size: clamp(16px, 2.2vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  color: var(--ink);
}
.hero__meta {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-2);
}

.hero__lede {
  max-width: 56ch;
  margin-top: 24px;
  color: var(--text-2);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.55;
}

.hero .btn-row { margin-top: 28px; }

.hero__benefit {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
}
.hero__benefit strong { color: var(--teal-deep); font-weight: 500; }

/* ---------- fact strip ---------- */
.facts {
  margin-top: clamp(38px, 5vw, 56px);
  border-top: 3px solid var(--teal);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 26px 18px 30px;
  border-left: 1px solid var(--line);
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact svg { width: 22px; height: 22px; color: var(--teal); }
.fact__label {
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: clamp(18px, 2.3vw, 26px);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--ink);
}
.fact__sub {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
  line-height: 1.5;
  color: var(--text-3);
}
@media (max-width: 760px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(odd) { border-left: 0; padding-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- generic section ---------- */
.section { padding: clamp(58px, 8vw, 96px) 0; }
.section--line { border-top: 1px solid var(--line); }

/* ---------- why play ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  transition: box-shadow .2s ease;
}
.why-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.04); }

/* the numeral device: one large number per card */
.why-card__num {
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: 34px;
  line-height: .85;
  letter-spacing: -.02em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}
.why-card svg { width: 26px; height: 26px; color: var(--teal); margin-bottom: 14px; }
.why-card h3 { font-size: 19px; line-height: 1; margin-bottom: 10px; }
.why-card p { color: var(--text-2); font-size: 16px; line-height: 1.55; }

/* ---------- schedule ---------- */
.schedule { display: grid; gap: 10px; }
.sched-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: baseline;
  gap: 22px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.sched-row__time {
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.sched-row__what {
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
}
.sched-row__note {
  display: block;
  margin-top: 7px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-2);
  line-height: 1.5;
}
@media (max-width: 560px) {
  .sched-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- scoring ---------- */
.scoring-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) { .scoring-layout { grid-template-columns: 1fr; } }

.score-rows { display: grid; gap: 8px; }
.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.score-row__name {
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 700;
  font-size: clamp(15px, 2vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
}
.score-chip {
  flex: none;
  min-width: 62px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 2px solid var(--line);
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 800;
  font-size: 22px;
  line-height: 1;
  text-align: center;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
}
/* gold fill is the reward state — ink on gold clears 5.3:1 */
.score-chip--reward { background: var(--gold); border-color: var(--gold); color: var(--ink); }
/* a negative is teal, never red */
.score-chip--neg { color: var(--teal-deep); border-color: var(--teal); }

.starting {
  background: var(--wash-teal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.starting h3 { font-size: 21px; margin-bottom: 12px; }
.starting p { color: var(--text-2); font-size: 16px; }

.chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}
.chain__step {
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 700;
  font-size: 17px;
  line-height: 1;
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.chain__step--end { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.chain__arrow { color: var(--teal); font-weight: 700; }
.chain__caption {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
}

.tiebreak { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.tiebreak h4 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.tiebreak ol { counter-reset: tb; display: grid; gap: 8px; }
.tiebreak li {
  counter-increment: tb;
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 16px;
  color: var(--text-2);
}
.tiebreak li::before {
  content: counter(tb);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold-deep);
  min-width: 14px;
}

/* ---------- companies ---------- */
.companies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.company {
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: clamp(16px, 2.1vw, 22px);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}
.company--more { color: var(--teal-deep); border-color: var(--teal); background: var(--wash-teal); }

/* ---------- charity band ---------- */
.charity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
@media (max-width: 820px) { .charity { grid-template-columns: 1fr; } }
.charity h2 { font-size: clamp(24px, 3.8vw, 40px); margin-top: 12px; }
.charity p { margin-top: 16px; color: var(--text-2); max-width: 54ch; }
.charity img { width: 120px; height: auto; justify-self: center; }

/* circular price badge — gold disc, ink numeral */
.price-disc {
  width: 152px; height: 152px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-content: center;
  text-align: center;
  justify-self: center;
  flex: none;
}
.price-disc__num {
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: 46px;
  line-height: .85;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.price-disc__qual {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-top: 6px;
}

/* ---------- closing CTA ---------- */
.cta-band {
  text-align: center;
  border-top: 1px solid var(--line);
  padding: clamp(58px, 8vw, 96px) 0;
}
.cta-band h2 { font-size: clamp(30px, 5.4vw, 64px); }
.cta-band p { margin: 18px auto 0; max-width: 52ch; color: var(--text-2); }
.cta-band .price-disc { margin: 0 auto 30px; }
.cta-band .btn-row { margin-top: 30px; }
.cta-band__fine {
  margin-top: 22px;
  max-width: none;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 3px solid var(--teal);
  padding: 44px 0 56px;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.site-footer .brand { margin-right: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.footer-links a:hover { color: var(--ink); border-bottom-color: var(--teal); }
.site-footer__meta {
  width: 100%;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ---------- donate page ---------- */
.page-hero {
  padding: clamp(44px, 6vw, 74px) 0 clamp(38px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(34px, 6.6vw, 76px); letter-spacing: -.02em; }
.page-hero h1 .l2 { color: var(--teal-deep); display: block; }
.page-hero p {
  max-width: 56ch;
  margin-top: 22px;
  color: var(--text-2);
  font-size: clamp(17px, 2vw, 19px);
}
.page-hero__strap {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 3px solid var(--teal);
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 700;
  font-size: clamp(15px, 2vw, 20px);
  text-transform: uppercase;
  color: var(--ink);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--text-3);
  text-decoration: none;
  margin-bottom: 24px;
}
.back-link:hover { color: var(--teal-deep); }
.back-link svg { width: 14px; height: 14px; }

.give-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 14px;
}
.give-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease;
}
.give-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.give-card--feature { border-color: var(--teal); background: var(--wash-teal); }
.give-card__tag { align-self: flex-start; margin-bottom: 18px; }

/* the numeral device again — the amount is the largest thing on the card */
.give-card__amt {
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: clamp(40px, 5.4vw, 58px);
  line-height: .84;
  letter-spacing: -.025em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.give-card__unit {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  margin-top: 10px;
}
.give-card h3 { font-size: 19px; margin: 18px 0 8px; }
.give-card p { color: var(--text-2); font-size: 16px; line-height: 1.55; }
.give-card .btn { margin-top: 24px; }
.give-card__foot { margin-top: auto; }

.step-list { counter-reset: st; display: grid; gap: 12px; }
.step-list li {
  counter-increment: st;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.step-list li::before {
  content: "0" counter(st);
  font-family: var(--display);
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: 30px;
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.step-list h3 { font-size: 18px; margin-bottom: 7px; }
.step-list p { color: var(--text-2); font-size: 16px; }

.callout {
  background: var(--wash-gold);
  border: 1px solid rgba(180,128,31,.3);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 26px;
}
.callout h3 { font-size: 17px; margin-bottom: 10px; color: var(--gold-deep); }
.callout p { color: #4a453a; font-size: 16px; }

/* ---------- small screens ---------- */
@media (max-width: 560px) {
  .btn-row .btn { width: 100%; }
}

/* ---------- reveal on scroll (JS-gated so no-JS still shows content) ---------- */
.js .reveal { opacity: 0; transform: translateY(12px); }
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .55s cubic-bezier(.16, 1, .3, 1),
              transform .55s cubic-bezier(.16, 1, .3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}
