/*
 * LIGHT — Lab for Innovation in Global Health Technology
 * V3 — Good Ritual palette + grid refinement
 *
 * Palette: warm cream + deep forest green primary + mustard / sage / mint / blush
 * accents. No navy. No EC orange (single-page palette exception).
 * Goal vs V1: -30% scroll length via grid layout + accordion FAQ + copy cuts.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Fraunces:opsz,wght@9..144,400;9..144,500&display=swap');

/* ─── Tokens ─────────────────────────────────────────────────────────────── */

:root {
  --cream:       #F4EFE0;
  --cream-2:     #EBE5D2;
  --cream-3:     #FAF6E9;
  --paper:       #FFFFFF;
  --forest:      #0D2A1F;
  --forest-2:    #1A3D2E;
  --forest-soft: #2E4F3D;
  --mustard:     #F2C84B;
  --mustard-soft:#F8E3A0;
  --sage:        #C8D9A7;
  --sage-soft:   #DCE6BF;
  --olive:       #8E9D5B;
  --mint:        #C7E5DA;
  --mint-soft:   #DDEEE5;
  --blush:       #F4C2C5;
  --blush-soft:  #F9DBDC;
  --ash:         #6F7468;
  --ash-2:       #9DA098;
  --rule:        rgba(13, 42, 31, 0.14);
  --rule-soft:   rgba(13, 42, 31, 0.07);

  --max:         1200px;
  --pad:         clamp(20px, 4vw, 48px);
}

/* ─── Reset & base ───────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; interpolate-size: allow-keywords; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--forest);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--olive); }
p { margin: 0 0 1em; }

/* ─── Site nav ───────────────────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(244, 239, 224, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--forest);
  white-space: nowrap;
}
.nav-divider { width: 1px; height: 18px; background: var(--rule); }
.nav-program {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.btn-sm { padding: 9px 18px !important; font-size: 14px !important; }
@media (max-width: 540px) {
  .nav-logo-text { display: none; }
  .nav-divider   { display: none; }
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { padding: clamp(48px, 5.5vw, 80px) 0; position: relative; }

/* ─── Typography ─────────────────────────────────────────────────────────── */

.eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-block;
}
.eyebrow.gold   { color: var(--olive); }
.eyebrow.mustard{ color: #A88018; }
.eyebrow.muted  { color: var(--ash); }

h1, h2, h3, h4 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
  color: var(--forest);
}
h1 { font-size: clamp(40px, 6vw, 72px);   letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 4vw, 48px);   letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; }

p.lead { font-size: 19px; line-height: 1.5; color: var(--forest); max-width: 62ch; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  cursor: pointer;
  border: 1px solid var(--forest);
}
.btn-primary { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn-primary:hover { background: var(--forest-2); border-color: var(--forest-2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

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

.hero {
  padding: clamp(120px, 11vw, 160px) 0 clamp(48px, 5vw, 80px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(242, 200, 75, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(199, 229, 218, 0.5) 0%, transparent 38%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-3) 100%);
}
.hero-head { max-width: 920px; }
.hero-eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}
.hero-eyebrow-row .dot-sep {
  width: 4px; height: 4px;
  background: var(--forest);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--olive);
}
.hero .sub {
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--forest-soft);
  max-width: 58ch;
  margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.hero .ticker {
  font-size: 13px;
  color: var(--ash);
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero .ticker .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mustard);
  box-shadow: 0 0 0 0 rgba(242, 200, 75, 0.6);
  animation: pulse-warm 2.4s infinite;
}
@keyframes pulse-warm {
  0%   { box-shadow: 0 0 0 0    rgba(242, 200, 75, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(242, 200, 75, 0); }
  100% { box-shadow: 0 0 0 0    rgba(242, 200, 75, 0); }
}

/* Decorative splashes */
.splash {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero .splash-1 { top: 80px; right: -120px; width: 460px; height: 460px; background: var(--mustard-soft); }
.hero .splash-2 { bottom: -200px; left: -180px; width: 380px; height: 380px; background: var(--mint); }
.hero > .container { position: relative; z-index: 1; }

/* ─── Stats strip ────────────────────────────────────────────────────────── */

.stats {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 0;
  background: var(--paper);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-grid .stat {
  padding: 22px 26px;
  border-right: 1px solid var(--rule);
}
.stats-grid .stat:last-child { border-right: 0; }
.stats-grid .stat .num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 4.2vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--forest);
}
.stats-grid .stat .lbl {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.4;
}
.stats-grid .stat.featured {
  background: var(--mustard);
  color: var(--forest);
  border-right: 0;
}
.stats-grid .stat.featured .num { color: var(--forest); }
.stats-grid .stat.featured .lbl { color: var(--forest-soft); }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .stats-grid .stat:nth-child(2n)    { border-right: 0; }
  .stats-grid .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ─── Two-col editorial ──────────────────────────────────────────────────── */

.twocol {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4.5vw, 72px);
  align-items: start;
}
.twocol .col-left h2 { margin-top: 10px; max-width: 12ch; }
.twocol .col-right p { margin-bottom: 16px; }
.twocol .col-right p:last-child { margin-bottom: 0; }
@media (max-width: 800px) { .twocol { grid-template-columns: 1fr; } }

/* ─── Photo grid ─────────────────────────────────────────────────────────── */

.photo-grid {
  columns: 2;
  column-gap: 14px;
  margin-top: 36px;
}
.photo-grid figure {
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-2);
}
.photo-grid img { width: 100%; height: auto; display: block; }
@media (min-width: 900px) { .photo-grid { columns: 4; } }
@media (max-width: 560px) { .photo-grid { columns: 1; } }

/* ─── Benefits grid (new — replaces V1's vertical row layout) ──────────── */

.benefits {
  background: var(--cream-2);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--paper);
  border-radius: 16px;
  padding: clamp(22px, 2.2vw, 28px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--rule-soft);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(13, 42, 31, 0.25);
}
.benefit-card.bg-cream  { background: var(--cream-3); }
.benefit-card.bg-mint   { background: var(--mint-soft); }
.benefit-card.bg-sage   { background: var(--sage-soft); }
.benefit-card.bg-blush  { background: var(--blush-soft); }
.benefit-card.bg-mustard{ background: var(--mustard-soft); }

.benefit-card .num-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  color: var(--olive);
}
.benefit-card .title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 19px);
  letter-spacing: -0.01em;
  color: var(--forest);
  line-height: 1.25;
}
.benefit-card .note {
  font-size: 14px;
  color: var(--forest-soft);
  line-height: 1.5;
  margin-top: 2px;
}

/* Featured tile in the benefits grid (pull quote slot) */
.benefit-card.quote-tile {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.benefit-card.quote-tile .mark {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  line-height: 0.7;
  color: var(--mustard);
}
.benefit-card.quote-tile blockquote {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.benefit-card.quote-tile cite {
  font-style: normal;
  font-size: 12px;
  color: rgba(244, 239, 224, 0.7);
  margin-top: auto;
}
.benefit-card.quote-tile cite .who { color: var(--cream); font-weight: 500; }

/* Featured tile (stat callout) */
.benefit-card.stat-tile {
  background: var(--mustard);
  border-color: var(--mustard);
  justify-content: center;
  text-align: center;
}
.benefit-card.stat-tile .big {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(54px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--forest);
}
.benefit-card.stat-tile .lbl {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin-top: 8px;
}

/* ─── CTA strip ──────────────────────────────────────────────────────────── */

.cta-strip {
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h3 { font-size: clamp(22px, 2.4vw, 30px); color: var(--forest); }
.cta-strip-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Comparison cards (3 paths) ────────────────────────────────────────── */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }

.card {
  border-radius: 18px;
  padding: 30px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--rule-soft);
}
.card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -22px rgba(13, 42, 31, 0.25); }
.card .tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--cream-2);
  color: var(--forest);
  border-radius: 999px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.card.warn  { background: var(--blush-soft); border-color: var(--blush); }
.card.warn .tag { background: var(--blush); color: var(--forest); }
.card.mid   { background: var(--mint-soft); border-color: var(--mint); }
.card.mid .tag  { background: var(--mint); color: var(--forest); }
.card.hero-card {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.card.hero-card h3 { color: var(--cream); }
.card.hero-card p  { color: rgba(244, 239, 224, 0.85); }
.card.hero-card .tag { background: var(--mustard); color: var(--forest); }
.card h3 { margin-bottom: 12px; color: var(--forest); }
.card p  { color: var(--forest-soft); font-size: 15px; line-height: 1.5; flex: 1; margin: 0; }

/* ─── Full-bleed image break ─────────────────────────────────────────────── */

.bleed { padding: 0; margin: clamp(28px, 5vw, 64px) 0; }
.bleed img {
  width: 100%;
  height: clamp(300px, 50vh, 560px);
  object-fit: cover;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 800px) { .testimonial-grid { grid-template-columns: 1fr; } }

.quote-card {
  border-radius: 16px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
}
.quote-card.tinted-sage  { background: var(--sage-soft); border-color: var(--sage); }
.quote-card.tinted-mint  { background: var(--mint-soft); border-color: var(--mint); }
.quote-card.tinted-blush { background: var(--blush-soft); border-color: var(--blush); }
.quote-card.tinted-cream { background: var(--cream-3); }

.quote-card .mark {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 0.7;
  color: var(--olive);
  margin-bottom: 8px;
}
.quote-card blockquote {
  margin: 0 0 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.quote-card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--ash);
  display: block;
}
.quote-card cite .who { color: var(--forest); font-weight: 500; }

/* ─── Founding partners block ────────────────────────────────────────────── */

.partners-block {
  background: var(--forest);
  color: var(--cream);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
  margin-top: 32px;
}
.partners-block .eyebrow { color: var(--mustard); }
.partners-block h2 { color: var(--cream); max-width: 22ch; margin-bottom: 16px; }
.partners-block p  { color: rgba(244, 239, 224, 0.82); max-width: 62ch; font-size: 16px; line-height: 1.55; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 800px) { .partners-grid { grid-template-columns: 1fr; } }

.partner-card {
  background: rgba(244, 239, 224, 0.05);
  border: 1px solid rgba(244, 239, 224, 0.14);
  border-radius: 14px;
  padding: 20px 22px;
  transition: background .25s, border-color .25s;
}
.partner-card:hover { background: rgba(244, 239, 224, 0.08); border-color: rgba(244, 239, 224, 0.25); }
.partner-card .partner-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.25;
}
.partner-card .partner-role {
  font-size: 12px;
  color: rgba(244, 239, 224, 0.65);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* ─── Get-more-info panel ────────────────────────────────────────────────── */

.info-panel {
  background: var(--paper);
  border-radius: 24px;
  padding: clamp(32px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: start;
  border: 1px solid var(--rule-soft);
}
@media (max-width: 800px) { .info-panel { grid-template-columns: 1fr; } }
.info-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.info-form label { display: flex; flex-direction: column; gap: 6px; }
.info-form label.full { grid-column: 1 / -1; }
.info-form .lbl {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
}
.info-form input {
  appearance: none;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--cream-3);
  color: var(--forest);
  transition: border-color .2s, background .2s;
}
.info-form input:focus {
  outline: 2px solid var(--olive);
  outline-offset: 0;
  border-color: var(--olive);
  background: var(--paper);
}
.info-form button { grid-column: 1 / -1; justify-self: start; margin-top: 6px; }
.info-form .form-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--ash);
  margin: 4px 0 0;
}
@media (max-width: 540px) { .info-form { grid-template-columns: 1fr; } }

/* ─── FAQ — accordion (native <details>) ─────────────────────────────────── */

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  transition: background .2s;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 20px 4px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--forest);
  letter-spacing: -0.01em;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary:hover { color: var(--olive); }

.faq-item .marker {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-3);
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  transition: transform .25s, background .25s, border-color .25s;
  flex-shrink: 0;
}
.faq-item[open] .marker {
  transform: rotate(45deg);
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.faq-item .a {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--forest-soft);
  line-height: 1.6;
  max-width: 68ch;
}

/* Smooth open animation where supported (Chrome 129+, Edge) */
.faq-item::details-content {
  height: 0;
  overflow: hidden;
  transition: height .35s cubic-bezier(.2, .7, .2, 1), content-visibility .35s;
  transition-behavior: allow-discrete;
}
.faq-item[open]::details-content { height: auto; }

/* ─── Final CTA ──────────────────────────────────────────────────────────── */

.final {
  text-align: center;
  padding: clamp(64px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(199, 229, 218, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.final h2 { max-width: 22ch; margin: 0 auto 20px; }
.final h2 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--olive);
}
.final .sub { color: var(--forest-soft); max-width: 56ch; margin: 0 auto 28px; font-size: 17px; }
.final-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.final .btn { font-size: 16px; padding: 16px 30px; }

/* ─── Sticky mobile CTA ──────────────────────────────────────────────────── */

.cta-sticky {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 40;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  padding: 14px 22px;
  text-align: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 14px 36px -10px rgba(13, 42, 31, 0.4);
}
.cta-sticky:hover { background: var(--forest-2); color: var(--cream); }
@media (max-width: 720px) { .cta-sticky { display: block; } }

/* ─── Site footer ────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--forest);
  color: rgba(244, 239, 224, 0.7);
  padding: clamp(36px, 5vw, 56px) 0;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-address { color: rgba(244, 239, 224, 0.6); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer-links a { color: rgba(244, 239, 224, 0.7); transition: color .2s; }
.footer-links a:hover { color: var(--mustard); }
.footer-copy { color: rgba(244, 239, 224, 0.45); font-size: 13px; width: 100%; margin-top: 20px; }
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; gap: 22px; }
  .footer-links { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ─── Accessibility ──────────────────────────────────────────────────────── */

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 4px;
}
