/* ============================================================================
   The Present Advantage — layout and components
   Built on tokens.css. Mobile-first breakpoints at 700 and 980.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: var(--lh-heading);
  margin: 0;
  text-wrap: balance;
}
h1 { font-weight: var(--fw-black); letter-spacing: -0.01em; }
h2 { font-weight: var(--fw-black); }
h3 { font-weight: var(--fw-bold); }
p  { margin: 0; }

a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--text-link-hover); text-decoration: underline; }

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

.wrap   { max-width: var(--container-max);    margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--surface-dark); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }

/* ---------- overline ---------- */
.overline {
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 10px;
}
.overline--onDark { color: var(--green-200); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-small);
  padding: 13px 24px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--lg { font-size: var(--fs-body); padding: 15px 30px; }

.btn--primary { background: var(--color-primary); color: var(--text-on-primary); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; }

.btn--light { background: #fff; color: var(--indigo-600); box-shadow: var(--shadow-md); }
.btn--light:hover { background: var(--neutral-50); color: var(--indigo-600); }

.btn--outline { background: transparent; color: var(--text-strong); border-color: var(--border-strong); }
.btn--outline:hover { background: var(--neutral-50); color: var(--text-strong); }

.btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--onDark:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn svg { flex: 0 0 auto; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,250,247,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 24px; max-width: var(--container-max); margin: 0 auto;
}
.nav__brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.nav__brand:hover { text-decoration: none; }
.nav__mark {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: var(--radius-sm);
  object-fit: contain; background: transparent;
}
.nav__name {
  font-family: var(--font-display); font-weight: var(--fw-black);
  font-size: 18px; color: var(--text-strong); line-height: 1.1;
}
.nav__tag {
  display: block; font-family: var(--font-body); font-weight: var(--fw-medium);
  font-size: 11px; letter-spacing: 0.06em; color: var(--text-muted);
}
.nav__links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__links a {
  font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--text-body);
}
.nav__links a:hover { color: var(--text-link); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--text-strong); font-weight: var(--fw-bold); }
.nav__cta { margin-left: 4px; }
.nav__toggle { display: none; }

/* ---------- hero ---------- */
.hero { background: var(--surface-dark); color: #fff; position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; top: -140px; right: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,0.30), rgba(38,33,92,0) 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: 84px 24px 92px; max-width: var(--container-max); margin: 0 auto;
}
.hero h1 { color: #fff; font-size: clamp(34px, 4.4vw, 54px); line-height: 1.08; margin: 0 0 20px; }
.hero__lead { font-size: var(--fs-lead); line-height: 1.55; color: rgba(255,255,255,0.80); max-width: 52ch; margin: 0 0 30px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.10); margin-bottom: 22px;
}
.pill span {
  font-size: var(--fs-caption); font-weight: var(--fw-bold);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-200);
}

/* hero card */
.hcard {
  width: 100%; max-width: 400px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: 0 40px 90px rgba(0,0,0,0.4);
  padding: 26px 26px 28px; color: var(--text-body);
}
.hcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hcard__label { font-weight: var(--fw-bold); font-size: var(--fs-caption); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.hcard__live { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--green-600); }
.hcard__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); }
.hcard__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.hcard__row { display: flex; align-items: center; gap: 12px; }
.hcard__tick {
  width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%;
  background: var(--surface-mint); color: var(--green-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.hcard__row span:last-child { font-size: 15.5px; color: var(--text-strong); }
.hcard__foot { border-top: 1px solid var(--border-subtle); padding-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; }
.hcard__big { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 40px; line-height: 1; color: var(--green-600); }
.hcard__mid { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 22px; color: var(--text-strong); }
.hcard__sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ---------- story ---------- */
.story { background: var(--surface-card); }
.story__beats { display: flex; flex-direction: column; gap: 26px; }
.beat { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--text-strong); line-height: 1.32; }
.beat--lead   { font-size: clamp(25px, 3.2vw, 34px); }
.beat--mid    { font-size: clamp(23px, 2.8vw, 30px); }
.beat--accent { font-size: clamp(23px, 2.8vw, 30px); color: var(--coral-600); }
.beat--body   { font-family: var(--font-body); font-weight: var(--fw-regular); font-size: var(--fs-lead); color: var(--text-body); line-height: 1.6; }
.beat--close  { font-size: clamp(26px, 3.4vw, 36px); color: var(--green-600); }

/* ---------- promise ---------- */
.promise { background: var(--surface-mint); text-align: center; position: relative; overflow: hidden; }
.promise__quote { font-family: var(--font-display); font-weight: var(--fw-black); font-size: clamp(28px,3.6vw,40px); line-height: 1.25; color: var(--text-strong); margin: 16px 0 20px; }
.promise__sub { font-size: 19px; color: var(--text-body); margin: 0 0 32px; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  padding: 10px 20px; border-radius: var(--radius-pill); background: #fff;
  box-shadow: var(--shadow-sm); font-family: var(--font-display);
  font-weight: var(--fw-bold); font-size: 17px; color: var(--green-700);
}

/* ---------- section head ---------- */
.shead { text-align: center; max-width: 62ch; margin: 0 auto 44px; }
.shead h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 10px 0 12px; }
.shead p { font-size: 19px; color: var(--text-muted); }
.shead--left { text-align: left; margin-left: 0; }

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar { text-align: center; }
.pillar__icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: grid; place-items: center; margin: 0 auto 18px;
}
.pillar__icon--green  { background: var(--green-100);  color: var(--green-700); }
.pillar__icon--indigo { background: var(--indigo-100); color: var(--indigo-500); }
.pillar__icon--coral  { background: var(--coral-100);  color: var(--coral-600); }
.pillar h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.pillar p { color: var(--text-muted); }

/* ---------- offerings ---------- */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.offer {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 34px 32px;
  display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm);
}
.offer__eyebrow { font-size: var(--fs-overline); font-weight: var(--fw-bold); letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-600); }
.offer h3 { font-size: var(--fs-h3); }
.offer__tag { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h4); color: var(--coral-600); }
.offer p { color: var(--text-body); }
.offer__label { font-size: var(--fs-caption); font-weight: var(--fw-bold); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: var(--fs-caption); font-weight: var(--fw-medium);
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--green-50); color: var(--green-700);
}
.offer__cta { margin-top: auto; padding-top: 12px; }

/* ---------- why different ---------- */
.why { background: var(--surface-card); }
.contrasts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 12px; }
.contrast {
  border-left: 3px solid var(--coral-400); padding: 4px 0 4px 20px;
}
.contrast__a { color: var(--text-muted); font-size: var(--fs-small); margin-bottom: 4px; }
.contrast__b { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 21px; line-height: 1.35; color: var(--green-600); }
.why__close { margin-top: 40px; font-size: 19px; color: var(--text-body); max-width: 70ch; }

/* ---------- final cta ---------- */
.finalcta { padding: 24px 24px 0; }
.finalcta__box {
  max-width: var(--container-max); margin: 0 auto;
  background: var(--surface-dark); border-radius: var(--radius-xl);
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.finalcta__box::after {
  content: ""; position: absolute; top: -80px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,0.28), rgba(38,33,92,0) 70%);
  pointer-events: none;
}
.finalcta h2 { color: #fff; font-size: clamp(30px,3.8vw,46px); margin: 0 0 14px; position: relative; }
.finalcta p { font-size: 19px; color: rgba(255,255,255,0.80); max-width: 46ch; margin: 0 auto 30px; position: relative; }
.finalcta .btn { position: relative; }

/* ---------- footer ---------- */
.foot { background: var(--surface-page); color: var(--text-muted); margin-top: 88px; border-top: 1px solid var(--border-subtle); }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 62px 0 44px; }
.foot__brandline { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h4); color: var(--text-strong); margin: 16px 0 10px; }
.foot p { font-size: var(--fs-small); line-height: 1.6; }
.foot h4 { color: var(--text-strong); font-size: var(--fs-caption); letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); font-weight: var(--fw-bold); margin-bottom: 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot a { color: var(--text-body); font-size: var(--fs-small); }
.foot a:hover { color: var(--text-link); text-decoration: none; }
.foot__mission {
  border-top: 1px solid var(--border-subtle);
  padding: 28px 0; text-align: center;
}
.foot__mission strong { display: block; font-family: var(--font-display); font-weight: var(--fw-black); font-size: var(--fs-h4); color: var(--text-strong); margin-bottom: 6px; }
.foot__legal {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0 30px; display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; font-size: var(--fs-caption); color: var(--text-muted);
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 64px 24px 72px; }
  .pillars { grid-template-columns: 1fr; gap: 34px; }
  .offers  { grid-template-columns: 1fr; }
  .contrasts { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--surface-card); border-bottom: 1px solid var(--border-subtle);
    padding: 8px 24px 18px; box-shadow: var(--shadow-md);
  }
  .nav__links.is-open a { padding: 12px 0; width: 100%; }
  .nav__toggle {
    display: inline-flex; margin-left: auto; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: var(--radius-sm);
    background: transparent; border: 1px solid var(--border-subtle);
    color: var(--text-strong); cursor: pointer;
  }
  .nav__cta { display: none; }
}
@media (max-width: 700px) {
  .section { padding: 62px 0; }
  .finalcta__box { padding: 46px 24px; }
  .foot__top { grid-template-columns: 1fr; }
  .foot { margin-top: 62px; }
  .hcard { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================================================
   Inner pages: about, workshops, audit, done-for-you
   ========================================================================== */

/* ---------- page hero (lighter than the home hero) ---------- */
.phero { background: var(--surface-dark); color: #fff; position: relative; overflow: hidden; }
.phero::after {
  content: ""; position: absolute; top: -120px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,0.28), rgba(38,33,92,0) 70%);
  pointer-events: none;
}
.phero__inner { position: relative; z-index: 1; padding: 72px 24px 76px; max-width: var(--container-max); margin: 0 auto; }
.phero h1 { color: #fff; font-size: clamp(30px, 4vw, 48px); margin: 0 0 18px; max-width: 20ch; }
.phero p { font-size: var(--fs-lead); color: rgba(255,255,255,0.80); max-width: 60ch; margin: 0 0 28px; }

/* stat strip inside a page hero */
.hstats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 34px; }
.hstat__n { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 30px; color: var(--green-200); line-height: 1.1; }
.hstat__l { font-size: var(--fs-small); color: rgba(255,255,255,0.68); margin-top: 2px; }

/* ---------- numbered steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
/* Column-count modifiers, not inline styles: an inline grid-template-columns outranks the
   media queries below, which left 5 steps squeezed into 5 columns on a phone. */
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
.step__n {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center; margin-bottom: 16px;
  font-family: var(--font-display); font-weight: var(--fw-black); font-size: 17px;
}
.step h3 { font-size: var(--fs-h4); margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: var(--fs-small); }

/* ---------- value / card grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.vcard {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-xs);
}
.vcard h3 { font-size: var(--fs-h4); margin-bottom: 8px; }
.vcard p { color: var(--text-muted); font-size: var(--fs-small); }
.vcard__mark { width: 40px; height: 4px; border-radius: 999px; background: var(--coral-400); margin-bottom: 18px; }

/* ---------- workshop list ---------- */
.wlist { display: flex; flex-direction: column; gap: 14px; }
.wrow {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 24px; align-items: center;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-xs);
}
.wdate { text-align: center; }
.wdate__d { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 21px; color: var(--text-strong); line-height: 1.1; }
.wdate__w { font-size: var(--fs-caption); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.wrow h3 { font-size: var(--fs-h4); margin-bottom: 5px; }
.wmeta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: var(--fs-small); color: var(--text-muted); }
.wmeta .where { color: var(--green-700); font-weight: var(--fw-medium); }
.wspots { font-size: var(--fs-caption); color: var(--coral-600); font-weight: var(--fw-bold); margin-top: 6px; }

/* ---------- checklist ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks svg { flex: 0 0 auto; color: var(--green-600); margin-top: 3px; }
/* Disqualifier lists: same rhythm, quieter mark. Muted rather than red on purpose. */
.checks--no svg { color: var(--text-muted); }
.checks--no li { color: var(--text-muted); }

/* ---------- forms ---------- */
.formbox {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 34px 32px; box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--text-strong); }
.field input, .field textarea, .field select {
  font: inherit; font-size: var(--fs-small); color: var(--text-body);
  padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle); background: var(--neutral-25);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--border-focus); box-shadow: var(--shadow-focus);
}
.field textarea { min-height: 96px; resize: vertical; }
.formnote { font-size: var(--fs-caption); color: var(--text-muted); margin-top: 12px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards, .cards--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .wrow { grid-template-columns: 72px 1fr; }
  .wrow > .btn { grid-column: 2; justify-self: start; }
}
@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; }
  .hstats { gap: 24px; }
  .formbox { padding: 26px 20px; }
}

/* ---------- portrait ---------- */
.portrait { position: relative; }
.portrait img {
  width: 100%; height: auto; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); object-fit: cover; background: var(--surface-mint);
}
.portrait::after {
  content: ""; position: absolute; inset: auto -14px -14px auto;
  width: 120px; height: 120px; border-radius: var(--radius-xl);
  background: var(--coral-200); z-index: -1;
}
@media (max-width: 980px) {
  .portrait { max-width: 340px; }
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 2px; }
.faq__item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 34px 18px 0; position: relative;
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-h4); color: var(--text-strong);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 10px; height: 10px; margin-top: -7px;
  border-right: 2px solid var(--green-600); border-bottom: 2px solid var(--green-600);
  transform: rotate(45deg); transition: transform var(--dur-base) var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq__item summary:hover { color: var(--text-link); }
.faq__item summary:focus-visible { outline: 2px solid var(--border-focus); outline-offset: 2px; }
.faq__item p { padding: 0 34px 20px 0; color: var(--text-body); max-width: 68ch; }

@media (max-width: 980px) {
  .steps[style*="repeat(5"] { grid-template-columns: repeat(2, 1fr) !important; }
  .steps[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 700px) {
  .steps[style*="repeat(5"] { grid-template-columns: 1fr !important; }
}

/* ---------- long-form prose (the story page) ---------- */
.prose p { margin: 0 0 20px; font-size: 17.5px; line-height: 1.72; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 {
  font-size: clamp(25px, 3.2vw, 34px); margin: 0 0 20px;
}
.prose .pullquote {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: clamp(19px, 2.2vw, 23px); line-height: 1.5; color: var(--green-700);
  border-left: 3px solid var(--coral-400); padding: 4px 0 4px 22px; margin: 26px 0;
}
.section--tight { padding: 56px 0; }

/* honeypot: hidden from people, visible to bots */
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
