/* ================================================================
   FRESHREACH — Organic / Warm / Alive
   Inspired by: Graza, Flamingo Estate, Ottolenghi, Good Food Institute
   NOT: dark editorial / tech / media sites
   ================================================================ */

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #FAFAF7;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  --teal:        #0E4A50;
  --teal-mid:    #1A6E74;
  --teal-soft:   #D4ECEE;
  --teal-xsoft:  #EBF6F7;
  --coral:       #D85C3C;
  --coral-soft:  #F5C9BA;
  --coral-xsoft: #FDF0EB;
  --peach:       #FCEAE0;
  --mint:        #E4F1EC;
  --stone:       #EDEBE4;
  --cream:       #FAFAF7;
  --ink:         #141414;
  --gray:        #6E6B65;
  --border:      rgba(20,20,20,0.09);

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Typography ───────────────────────────────────────────────────── */
h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.05; letter-spacing: -0.02em; }
h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.5rem, 2.5vw, 2.2rem); line-height: 1.1; }
em { font-style: italic; }

/* ── Shared ───────────────────────────────────────────────────────── */
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--coral);
  display: block; margin-bottom: 1.5rem;
}
.section-label.light { color: rgba(255,255,255,0.6); }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 1.9rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--coral      { background: var(--coral); color: #fff; box-shadow: 0 6px 20px rgba(216,92,60,0.35); }
.btn--coral:hover { background: #c2512f; box-shadow: 0 10px 28px rgba(216,92,60,0.45); }

.btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }

.btn--teal-solid { background: var(--teal); color: #fff; box-shadow: 0 6px 20px rgba(14,74,80,0.25); }
.btn--teal-solid:hover { background: var(--teal-mid); }

.btn--outline-teal { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn--outline-teal:hover { background: var(--teal); color: #fff; }

.btn--white-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn--white-outline:hover { background: rgba(255,255,255,0.1); }

/* ── NAV ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset-block-start: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s ease, padding 0.4s ease;
}
.nav.solid {
  background: rgba(14,74,80,0.96);
  backdrop-filter: blur(20px);
  padding: 0.85rem clamp(1.5rem, 5vw, 4rem);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__logo img {
  height: 64px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s, opacity 0.3s;
}
.nav__logo:hover img { opacity: 0.8; }
.nav__links {
  display: flex; gap: clamp(1.5rem, 3vw, 3rem); align-items: center;
}
.nav__links a {
  font-size: 0.83rem; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  transition: color 0.25s;
}
.nav__links a:hover { color: #fff; }
.nav__pill {
  font-size: 0.83rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff;
  background: var(--coral); border-radius: 100px;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 14px rgba(216,92,60,0.4);
  transition: all 0.3s var(--ease);
}
.nav__pill:hover { background: #c2512f; transform: translateY(-1px); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* Mobile drawer */
.nav__drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px; z-index: 300;
  background: var(--teal);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.nav__drawer.open { transform: translateX(0); }
.drawer__close {
  align-self: flex-end; background: none; border: none; color: #fff;
  font-size: 1.5rem; cursor: pointer; margin-bottom: 1rem;
}
.drawer__link { color: #fff; font-size: 1.3rem; font-weight: 500; }
.drawer__cta { color: var(--coral-soft); font-weight: 700; }
.drawer__backdrop {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,0.4); opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer__backdrop.show { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════════════════════
   HERO — Split panel with huge bleed wordmark
══════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  height: 100svh; /* Ensure both panels fill viewport */
  position: relative;
  overflow: hidden;
}

/* Left panel */
.hero__left {
  background: var(--teal);
  padding: clamp(5rem, 8vh, 7rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 1.25rem; position: relative; z-index: 2;
  height: 100%;
}
.hero__uptag {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
/* BIG HERO HEADLINE */
.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.25rem;
}
.hero__headline em {
  font-style: italic; font-weight: 400;
  color: var(--coral-soft);
}
.hero__tag-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__pill {
  display: inline-block;
  padding: 0.45rem 1rem; border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}
.hero__mission {
  color: rgba(255,255,255,0.75); font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.75; font-weight: 300; max-width: 46ch;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Right panel */
.hero__right {
  position: relative; overflow: hidden;
  height: 100%; /* Fill grid cell so image covers fully */
}
.hero__photo {
  width: 100%; height: 100%; object-fit: cover;
  animation: photoZoom 18s ease-in-out infinite alternate;
}
@keyframes photoZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
/* Floating ring badge */
.hero__badge {
  position: absolute; top: 12%; right: 8%;
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,74,80,0.85);
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  animation: floatBadge 6s ease-in-out infinite;
}
.hero__badge-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.3);
  animation: spinRing 20s linear infinite;
}
@keyframes spinRing { to { transform: rotate(360deg); } }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero__badge-label {
  color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; text-align: center;
  line-height: 1.4; font-family: var(--f-display); font-style: italic;
}

/* Giant bleed wordmark — spans bottom of both panels */
.hero__wordmark {
  position: absolute; bottom: 0; left: 0; right: 0;
  text-align: center; z-index: 10; pointer-events: none; /* Above everything */
  line-height: 0.85; font-family: var(--f-display);
  font-size: clamp(5rem, 13vw, 16rem); font-weight: 900;
  display: flex; justify-content: center; gap: 0.06em;
  user-select: none;
  /* Reliable visibility on both teal and image backgrounds */
  opacity: 0.22;
  mix-blend-mode: screen; /* Lightens against dark image, stays white on teal */
}
.hero__wordmark span { color: #fff; letter-spacing: -0.04em; }
.hero__wordmark em   { font-style: italic; color: #fff; }

/* ══════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--coral); overflow: hidden;
  padding: 0.85rem 0; border-top: none;
}
.ticker__track {
  display: flex; gap: 2.5rem; align-items: center;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker__track span {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
}
.ticker__track .sep { color: rgba(255,255,255,0.5); font-size: 0.6rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ══════════════════════════════════════════════════════════════
   INTRO
══════════════════════════════════════════════════════════════ */
.intro {
  background: #fff; padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 5rem);
}
.intro__inner { max-width: 1200px; margin-inline: auto; }
.intro__headline {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 2.5rem; color: var(--ink);
}
.intro__headline em { color: var(--teal); font-style: italic; }
.intro__body {
  font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.8;
  color: var(--gray); max-width: 68ch; font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   PROGRAMS BENTO
══════════════════════════════════════════════════════════════ */
.programs {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 5rem);
}
.programs__inner { max-width: 1440px; margin-inline: auto; }

.programs__top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
}
.programs__top h2 { color: var(--ink); }
.view-link {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 2px solid var(--teal); padding-bottom: 2px;
  transition: opacity 0.25s;
}
.view-link:hover { opacity: 0.7; }

/* Grid — explicit placement so no orphaned cells */
.bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 400px 360px; /* Two explicit rows */
  gap: 1.25rem;
}

.bcard {
  border-radius: 28px; overflow: hidden;
  position: relative; display: flex;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.bcard:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(0,0,0,0.12); }
/* Explicit grid placement avoids auto-flow gaps */
.bcard--xl   { grid-column: 1 / span 3; grid-row: 1; }
.bcard--peach { grid-column: 4 / span 2; grid-row: 1; }
.bcard--stone { grid-column: 1 / span 2; grid-row: 2; }
.bcard--wide  { grid-column: 3 / span 3; grid-row: 2; }

.bcard__body {
  position: relative; z-index: 2; padding: 2.5rem;
  display: flex; flex-direction: column;
}
.bcard__num {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.bcard__body h3 { margin-bottom: 1rem; }
.bcard__body p  { font-size: 0.95rem; line-height: 1.7; flex: 1; font-weight: 300; }
.bcard__link {
  margin-top: 1.5rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
  width: fit-content; transition: gap 0.3s;
}
.bcard__link:hover { gap: 0.65rem; }

/* Card: teal / image background */
.bcard--teal { background: var(--teal); flex-direction: column; }
.bcard--teal .bcard__img-wrap {
  position: absolute; inset: 0;
}
.bcard--teal .bcard__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bcard--teal .bcard__img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,74,80,0.92) 0%, rgba(14,74,80,0.35) 60%, transparent 100%);
}
.bcard--teal .bcard__body { justify-content: flex-end; }
.bcard--teal .bcard__num  { color: var(--coral-soft); }
.bcard--teal h3, .bcard--teal p { color: #fff; }
.bcard--teal p { font-weight: 400; opacity: 0.9; } /* Already white — keep bright & clear */
.bcard--teal .bcard__link { color: #fff; }

/* Card: peach — image with warm peach overlay */
.bcard--peach {
  background: var(--peach);
  flex-direction: column;
}
.bcard--peach .bcard__img-wrap {
  position: absolute; inset: 0;
  z-index: 0; /* Explicitly below body */
}
.bcard--peach .bcard__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bcard--peach .bcard__img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(252, 234, 224, 0.96) 0%,
    rgba(252, 234, 224, 0.75) 50%,
    rgba(252, 234, 224, 0.3) 100%
  );
}
.bcard--peach .bcard__body { justify-content: flex-end; position: relative; z-index: 3; }
.bcard--peach .bcard__num  { color: var(--coral); }
.bcard--peach h3 { color: var(--teal); }
.bcard--peach p  { color: #2B2B2B; font-weight: 400; } /* Dark charcoal — max legibility on peach */
.bcard__link--rust { color: var(--coral); }

/* Card: stone — image with warm stone overlay */
.bcard--stone {
  background: var(--stone);
  flex-direction: column;
}
.bcard--stone .bcard__img-wrap {
  position: absolute; inset: 0;
  z-index: 0; /* Explicitly below body */
}
.bcard--stone .bcard__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bcard--stone .bcard__img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(237, 235, 228, 0.96) 0%,
    rgba(237, 235, 228, 0.75) 50%,
    rgba(237, 235, 228, 0.35) 100%
  );
}
.bcard--stone .bcard__body { justify-content: flex-end; position: relative; z-index: 3; }
.bcard--stone .bcard__num  { color: var(--teal-mid); }
.bcard--stone h3 { color: var(--ink); }
.bcard--stone p  { color: #3D3830; font-weight: 400; } /* Warm dark brown — suits the earthy stone tone */
.bcard__link--dark { color: var(--teal); }

/* Card: mint/wide */
.bcard--mint { background: var(--mint); flex-direction: row; }
.bcard--mint .bcard__num   { color: var(--teal-mid); }
.bcard--mint h3 { color: var(--teal); }
.bcard--mint p  { color: #1F4A3A; font-weight: 400; } /* Deep forest — readable on soft mint */
.bcard__link--forest { color: var(--teal); }
.bcard__img-right {
  flex: 0 0 42%; overflow: hidden;
  border-radius: 0 28px 28px 0;
  height: 100%;          /* Must be explicit for img height: 100% to resolve */
  align-self: stretch;   /* Fill the full card height in the row flex container */
  min-height: 0;         /* Prevent flex overflow */
}
.bcard__img-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   IMPACT
══════════════════════════════════════════════════════════════ */
.impact {
  background: var(--teal);
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 5rem);
}
.impact__inner {
  max-width: 1440px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(4rem, 8vw, 10rem);
  align-items: start;
}
.impact__left h2 { color: #fff; margin-bottom: 1.75rem; }
.impact__left h2 em { color: var(--coral-soft); }
.impact__left p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }

.impact__right {
  display: flex; flex-direction: column;
  gap: 0; border-top: 1px solid rgba(255,255,255,0.12);
}
.istat {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.istat__top {
  display: flex; align-items: baseline; gap: 0.15em;
  margin-bottom: 0.5rem;
}
.istat__n {
  font-family: var(--f-display); font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400; line-height: 1; color: #fff;
}
.istat__plus {
  font-family: var(--f-display); font-size: 2.5rem; font-weight: 400;
  color: var(--coral-soft); line-height: 1;
}
.istat__l {
  font-size: 0.9rem; font-weight: 400;
  color: rgba(255,255,255,0.55); line-height: 1.5; max-width: 40ch;
}

/* ══════════════════════════════════════════════════════════════
   CONNECT
══════════════════════════════════════════════════════════════ */
.connect {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 5rem);
  position: relative; overflow: hidden;
}
.connect__inner {
  max-width: 800px; margin-inline: auto; text-align: center; position: relative; z-index: 2;
}
.connect__eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 1.5rem;
}
.connect__headline {
  color: var(--ink); margin-bottom: 3rem;
}
.connect__headline em { color: var(--teal); }
.connect__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Decorative background photos */
.connect__photos {
  position: absolute; inset: 0; display: flex;
  align-items: stretch; pointer-events: none;
}
.cp { position: absolute; overflow: hidden; border-radius: 20px; }
.cp img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.cp-1 { left: -4rem; top: 50%; transform: translateY(-50%); width: 240px; height: 360px; }
.cp-2 { right: -4rem; top: 50%; transform: translateY(-50%); width: 240px; height: 360px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.55);
  padding: 4rem clamp(2rem, 5vw, 5rem) 2.5rem;
}
.footer__inner { max-width: 1440px; margin-inline: auto; }
.footer__top {
  display: flex; justify-content: space-between; gap: 4rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem; flex-wrap: wrap;
  align-items: flex-start;
}
.footer__brand {
  max-width: 320px;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.footer__logo {
  height: 68px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.9);
}
.footer__desc {
  font-size: 0.92rem; line-height: 1.75;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.footer__nav { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer__nav > div { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__nav h4 { color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; }
.footer__nav a { font-size: 0.9rem; transition: color 0.25s; }
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}
.footer__bottom div { display: flex; gap: 2rem; }
.footer__bottom a:hover { color: #fff; }

/* ── Scroll Animations ────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.42s; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  /* Reset explicit placement and let auto-flow handle it */
  .bcard--xl, .bcard--peach, .bcard--stone, .bcard--wide {
    grid-column: unset; grid-row: unset;
  }
  .bcard--xl   { grid-column: span 2; min-height: 360px; }
  .bcard--peach { grid-column: span 1; min-height: 300px; }
  .bcard--stone { grid-column: span 1; min-height: 300px; }
  .bcard--wide  { grid-column: span 2; min-height: 350px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero__left { height: auto; min-height: auto; padding-bottom: 5rem; } /* Match content */
  .hero__headline { font-size: clamp(2.5rem, 9vw, 4rem); }
  .hero__right { height: 55vw; min-height: 260px; }
  .hero__wordmark { font-size: clamp(4rem, 20vw, 8rem); opacity: 0.2; }
  .impact__inner { grid-template-columns: 1fr; }
  .istat__n { font-size: clamp(3.5rem, 10vw, 5.5rem); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__pill   { display: none; }
  .nav__burger { display: flex; }

  .bento { grid-template-columns: 1fr; }
  .bcard--xl, .bcard--peach, .bcard--stone, .bcard--wide { grid-column: span 1; min-height: 320px; }
  .bcard--mint { flex-direction: column; }
  .bcard__img-right { flex: none; height: 200px; border-radius: 0 0 28px 28px; }

  .programs__top { flex-direction: column; align-items: flex-start; }
  .connect__ctas { flex-direction: column; align-items: stretch; }
  .connect__ctas .btn { text-align: center; justify-content: center; }
  .cp-1, .cp-2 { display: none; }

  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
