/* ============================================================
   It's All Peachy Frozen Yogurt — style.css
   Design tokens mirror the reference template's variable names,
   re-colored to the peach + sprinkle brand palette.
   ============================================================ */

:root {
  --font-family--body-font-family: 'Plus Jakarta Sans', sans-serif;
  --font-family--heading-font-family: Unbounded, sans-serif;

  /* Brand colors sampled from the official logo: the red-orange wordmark,
     the sky-blue cloud + tagline, the green "FROZEN YOGURT" and the peach. */
  --colors--brand-red: #f03c11;
  --colors--brand-blue: #7cc9f2;
  --colors--brand-green: #62ad10;
  --colors--brand-leaf: #4ca82a;
  --colors--brand-peach: #f4a57c;

  --colors--body-font-color: #5f5751;
  --colors--secondary-color: #3a120b;
  --colors--bg-color: #fff8f3;
  --colors--primary-color: #f7a97e;
  /* Darkened a touch from the logo red so link + hover text still clears
     WCAG AA (4.5:1) on the cream background. */
  --colors--primary-deep: #d63a12;
  --colors--tertiary-color: #fdeadd;
  --colors--light-color: #fff8f3;
  --colors--border-color: #e5c0ac;
  --colors--transparent: transparent;

  --colors--sprinkle-pink: #f65fa4;
  --colors--sprinkle-mint: var(--colors--brand-green);
  --colors--sprinkle-sky: var(--colors--brand-blue);
  --colors--sprinkle-sun: #ffd166;
  --colors--star-gold: #ffb936;

  --_typography---body--body-font-size: 16px;
  --_typography---body--body-line-height: 26px;
  --_typography---body--body-font-weight-400: 400;
  --_typography---body--body-font-weight-500: 500;
  --_typography---body--body-font-weight-600: 600;
  --_typography---body--body-font-size-small: 14px;
  --_typography---h1--h1-font-size: clamp(38px, 11vw, 80px);
  --_typography---h1--h1-line-height: 1.13;
  --_typography---h1--h1-font-weight: 700;
  --_typography---h2--h2-font-size: 46px;
  --_typography---h2--h2-line-height: 54px;
  --_typography---h2--h2-font-weight: 600;
  --_typography---h3--h3-font-size: 34px;
  --_typography---h3--h3-line-height: 44px;
  --_typography---h3--h3-font-weight: 600;
  --_typography---h4--h4-font-size: 28px;
  --_typography---h4--h4-line-height: 38px;
  --_typography---h4--h4-font-weight: 600;
  --_typography---h5--h5-font-size: 24px;
  --_typography---h5--h5-line-height: 30px;
  --_typography---h5--h5-font-weight: 600;
  --_typography---h6--h6-font-size: 18px;
  --_typography---h6--h6-line-height: 28px;
  --_typography---h6--h6-font-weight: 600;
  --_typography---links--links-font-size: 16px;
  --_typography---links--links-line-height: 28px;
  --_typography---links--links-font-weight: 600;
  --_typography---button--button-font-size: 16px;
  --_typography---button--button-line-height: 18px;
  --_typography---button--button-font-weight: 500;

  --_layout-width---containers--container-medium: 1650px;
  --_layout-width---containers--container-small: 1330px;
  --_spacings---section-padding: 100px;

  --border-radius--border-extra-large: 40px;
  --border-radius--border-large: 30px;
  --border-radius--border-regular: 20px;
  --border-radius--border-small: 15px;
  --border-radius--border-extra-small: 10px;
  --border-radius--border-none: 0px;
  --border-radius--border-circle: 50%;
}

@media screen and (min-width: 1280px) {
  :root {
    --_typography---h1--h1-font-size: 138px;
    --_typography---h1--h1-line-height: 148px;
    --_typography---h2--h2-font-size: 62px;
    --_typography---h2--h2-line-height: 68px;
    --_typography---h3--h3-font-size: 40px;
    --_typography---h3--h3-line-height: 50px;
    --_typography---h4--h4-font-size: 32px;
    --_typography---h4--h4-line-height: 44px;
  }
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; }
a { text-decoration: none; color: inherit; }

body {
  font-family: var(--font-family--body-font-family);
  color: var(--colors--body-font-color);
  background-color: var(--colors--bg-color);
  font-size: var(--_typography---body--body-font-size);
  line-height: var(--_typography---body--body-line-height);
  font-weight: var(--_typography---body--body-font-weight-400);
  min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family--heading-font-family);
  color: var(--colors--secondary-color);
}
h1 {
  font-size: var(--_typography---h1--h1-font-size);
  line-height: var(--_typography---h1--h1-line-height);
  font-weight: var(--_typography---h1--h1-font-weight);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h2 {
  font-size: var(--_typography---h2--h2-font-size);
  line-height: var(--_typography---h2--h2-line-height);
  font-weight: var(--_typography---h2--h2-font-weight);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
h3 { font-size: var(--_typography---h3--h3-font-size); line-height: var(--_typography---h3--h3-line-height); font-weight: var(--_typography---h3--h3-font-weight); }
h4 { font-size: var(--_typography---h4--h4-font-size); line-height: var(--_typography---h4--h4-line-height); font-weight: var(--_typography---h4--h4-font-weight); }
h5 { font-size: var(--_typography---h5--h5-font-size); line-height: var(--_typography---h5--h5-line-height); font-weight: var(--_typography---h5--h5-font-weight); }
h6 { font-size: var(--_typography---h6--h6-font-size); line-height: var(--_typography---h6--h6-line-height); font-weight: var(--_typography---h6--h6-font-weight); }

.center { text-align: center; }

/* ---------- layout ---------- */
.container { width: 100%; margin: 0 auto; padding: 0 40px; }
.container--medium { max-width: var(--_layout-width---containers--container-medium); }
.container--small { max-width: var(--_layout-width---containers--container-small); }

.section { padding: calc(var(--_spacings---section-padding) / 2) 0; }
.section--tight { padding: 30px 0; }

/* grid/flex items shrink to their track instead of forcing overflow from long words */
.flavor-grid > *, .feature > *, .stats-card > *, .promo-grid > *, .promo-col > *,
.testimonial-grid > *, .footer__cols > *, .perk-strip__items > * { min-width: 0; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family--body-font-family);
  font-size: var(--_typography---button--button-font-size);
  line-height: var(--_typography---button--button-line-height);
  font-weight: var(--_typography---button--button-font-weight);
  padding: 16px 26px;
  border-radius: 50px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.btn--primary { background: var(--colors--primary-color); color: var(--colors--secondary-color); }
.btn--primary:hover { background: var(--colors--primary-deep); transform: translateY(-2px); }
.btn__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--colors--secondary-color); }

.link-underline {
  font-size: var(--_typography---links--links-font-size);
  line-height: var(--_typography---links--links-line-height);
  font-weight: var(--_typography---links--links-font-weight);
  color: var(--colors--secondary-color);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.link-underline:hover { color: var(--colors--primary-deep); }
.link-underline--light { color: var(--colors--light-color); }
.link-underline--light:hover { color: var(--colors--primary-color); }

/* ---------- announcement bar ---------- */
.announce-bar {
  background: var(--colors--primary-color);
  color: var(--colors--secondary-color);
  text-align: center;
  padding: 8px 16px;
  font-size: var(--_typography---body--body-font-size-small);
  font-weight: var(--_typography---body--body-font-weight-500);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--colors--bg-color);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(58, 18, 11, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand__peach { width: 38px; height: 38px; }
/* Real logo artwork, when assets/img/logo.png exists. Until then the inline
   peach mark + wordmark below it stay visible (see the onerror in the HTML). */
.brand__logo { height: 64px; width: auto; display: block; }
.brand__fallback { display: flex; align-items: center; gap: 10px; }
.brand__fallback[hidden] { display: none; }
.brand__name {
  font-family: var(--font-family--heading-font-family);
  font-weight: 600;
  font-size: 24px;
  color: var(--colors--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.site-nav { display: flex; gap: 34px; }
.nav-link {
  font-size: var(--_typography---links--links-font-size);
  line-height: var(--_typography---links--links-line-height);
  font-weight: var(--_typography---body--body-font-weight-500);
  color: var(--colors--secondary-color);
  position: relative;
}
.nav-link:hover, .nav-link.is-active { color: var(--colors--primary-deep); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--colors--border-color);
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: var(--_typography---body--body-font-weight-500);
  color: var(--colors--secondary-color);
  white-space: nowrap;
  transition: background-color 0.25s ease;
}
.phone-pill:hover { background: var(--colors--tertiary-color); }
.phone-pill svg { width: 18px; height: 18px; }

/* ---------- social buttons ---------- */
.socials { display: flex; align-items: center; gap: 10px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--border-radius--border-circle);
  border: 1px solid var(--colors--border-color);
  color: var(--colors--secondary-color);
  background: #fff;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.social-btn svg { width: 19px; height: 19px; }
.social-btn:hover { transform: translateY(-2px); color: #fff; }
.social-btn--facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-btn--instagram:hover { background: var(--colors--brand-red); border-color: var(--colors--brand-red); }
.social-btn--tiktok:hover { background: #010101; border-color: #010101; }

/* Footer variant sits on the cream footer, so it needs its own ground. */
.socials--footer { margin-top: 4px; }
.socials--footer .social-btn { background: var(--colors--tertiary-color); border-color: transparent; }

@media screen and (max-width: 1100px) {
  /* Header socials would crowd the hamburger — they stay in the footer only. */
  .header-actions .socials { display: none; }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--colors--secondary-color); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 var(--border-radius--border-extra-large) var(--border-radius--border-extra-large);
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__fallback {
  position: absolute; inset: 0;
  background:
    url("../assets/video/hero-poster.jpg") center / cover no-repeat,
    radial-gradient(1100px 700px at 78% 30%, rgba(255, 158, 109, 0.55), transparent 60%),
    radial-gradient(800px 600px at 15% 85%, rgba(246, 95, 164, 0.28), transparent 60%),
    linear-gradient(160deg, #4a1c11 0%, #3a120b 45%, #61250f 100%);
  z-index: 2;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.hero.has-video .hero__fallback {
  opacity: 0;
  visibility: hidden;
}
.hero__sprinkles { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; animation: drift 26s linear infinite alternate; }
@keyframes drift { from { transform: translateY(-1.5%) scale(1.04); } to { transform: translateY(1.5%) scale(1.04); } }

.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30, 8, 4, 0.74) 0%, rgba(30, 8, 4, 0.38) 58%, rgba(30, 8, 4, 0.52) 100%);
  z-index: 3;
}

.hero__grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero__overline {
  display: block;
  font-family: var(--font-family--body-font-family);
  font-size: 15px;
  line-height: 1;
  font-weight: var(--_typography---body--body-font-weight-600);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--colors--primary-color);
  margin-bottom: 26px;
}
.hero__title { color: var(--colors--light-color); letter-spacing: 0.05em; }

/* verbatim rule from the reference template */
.hero-info-box {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  padding-right: 40px;
  display: flex;
}
@media screen and (min-width: 1280px) {
  .hero-info-box { padding-right: 100px; }
}

.hero__lead {
  color: rgba(255, 248, 243, 0.92);
  font-size: 18px;
  line-height: 30px;
}
.hero__cta-row { display: flex; gap: 16px; }

/* ---------- stats card ---------- */
.stats-card {
  background: var(--colors--tertiary-color);
  border-radius: var(--border-radius--border-extra-large);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.stats-card__quote { margin-bottom: 30px; }
.stats-card__owner { display: flex; align-items: center; gap: 16px; }
.stats-card__avatar { width: 56px; height: 56px; border-radius: var(--border-radius--border-circle); }
.stats-card__owner-line { font-weight: var(--_typography---body--body-font-weight-500); color: var(--colors--secondary-color); }

.stats-card__rating { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.stats-card__number {
  font-family: var(--font-family--heading-font-family);
  font-size: 56px;
  font-weight: 600;
  color: var(--colors--secondary-color);
  line-height: 1;
}
.stats-card__rating-sub { font-size: var(--_typography---body--body-font-size-small); }

.stars { display: inline-flex; align-items: center; gap: 3px; }
.star { width: 20px; height: 20px; display: inline-block; background: var(--colors--star-gold); clip-path: polygon(50% 0%, 63% 36%, 100% 38%, 71% 61%, 82% 100%, 50% 76%, 18% 100%, 29% 61%, 0% 38%, 37% 36%); }
.stars--small .star { width: 15px; height: 15px; }
.stars--small em { font-style: normal; font-size: 13px; margin-left: 8px; color: var(--colors--body-font-color); }

.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: var(--colors--light-color);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: var(--_typography---body--body-font-size-small);
  font-weight: var(--_typography---body--body-font-weight-500);
  color: var(--colors--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.chip b {
  background: var(--colors--primary-color);
  border-radius: 50px;
  min-width: 28px;
  text-align: center;
  padding: 1px 8px;
  font-weight: var(--_typography---body--body-font-weight-600);
  font-size: 13px;
}

/* ---------- filter pills ---------- */
.filter-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
  border: 1px solid var(--colors--border-color);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: var(--_typography---body--body-font-size-small);
  font-weight: var(--_typography---body--body-font-weight-500);
  color: var(--colors--secondary-color);
  background: var(--colors--transparent);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.pill:hover { background: var(--colors--tertiary-color); }
.pill.is-active { background: var(--colors--primary-color); border-color: var(--colors--primary-color); }

/* ---------- flavor cards ---------- */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.flavor-card {
  background: #fff;
  border-radius: var(--border-radius--border-large);
  padding: 14px 14px 22px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.flavor-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(58, 18, 11, 0.1); }
.flavor-card.is-hidden { display: none; }

.flavor-card__img { border-radius: var(--border-radius--border-regular); overflow: hidden; }
.flavor-card__img img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.4s ease; }
.flavor-card:hover .flavor-card__img img { transform: scale(1.05); }

.flavor-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding: 4px 8px 0; }
.flavor-card__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.flavor-card__count { font-size: 12px; color: var(--colors--body-font-color); white-space: nowrap; }
.flavor-card .stars { padding: 0 8px; }

.flavor-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--colors--tertiary-color);
  margin-top: 6px;
  padding: 14px 8px 0;
}
.flavor-card__cta { display: inline-flex; align-items: center; gap: 9px; font-size: var(--_typography---body--body-font-size-small); font-weight: var(--_typography---body--body-font-weight-500); color: var(--colors--secondary-color); }
.flavor-card__cta .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--colors--primary-color); }
.flavor-card__price { font-weight: var(--_typography---body--body-font-weight-600); color: var(--colors--secondary-color); font-size: var(--_typography---body--body-font-size-small); }

/* ---------- feature / about ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature__media img { border-radius: var(--border-radius--border-extra-large); width: 100%; }
.feature__body h2 { margin-bottom: 36px; }
.feature__perks { display: flex; gap: 34px; flex-wrap: wrap; margin-bottom: 30px; }
.feature__copy { margin-bottom: 34px; }

.perk { display: flex; align-items: center; gap: 14px; }
.perk p { font-weight: var(--_typography---body--body-font-weight-500); color: var(--colors--secondary-color); font-size: 15px; line-height: 22px; }
.perk__icon {
  flex: none;
  width: 56px; height: 56px;
  border-radius: var(--border-radius--border-circle);
  border: 1px solid var(--colors--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--colors--secondary-color);
  background: #fff;
}
.perk__icon svg { width: 26px; height: 26px; }
.perk--stacked { flex-direction: row; }

/* ---------- topping list ---------- */
.toppings {
  background: var(--colors--primary-color);
  padding: 72px 0;
}
.toppings__head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.toppings__head h2 {
  font-family: var(--font-family--heading-font-family);
  font-size: var(--_typography---h2--h2-font-size);
  line-height: var(--_typography---h2--h2-line-height);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--colors--secondary-color);
  overflow-wrap: break-word;
}
.toppings__head p { color: var(--colors--secondary-color); opacity: 0.8; margin-top: 12px; }

/* Full-width bands rather than side-by-side cards: category sizes are wildly
   uneven (20 candies vs 1 sauce), so columns of cards leave big ragged gaps.
   Each band flows its own items into as many columns as fit. */
.toppings__groups {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.topping-group {
  background: var(--colors--light-color);
  border: 1px solid var(--colors--border-color);
  border-radius: var(--border-radius--border-regular);
  padding: 26px 26px 30px;
}
.topping-group__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-family--heading-font-family);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--colors--secondary-color);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--colors--border-color);
}
.topping-group__count {
  font-family: var(--font-family--body-font-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--colors--primary-deep);
}
.topping-group__list {
  list-style: none;
  columns: 5 150px;
  column-gap: 26px;
}
.topping-group__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  break-inside: avoid;
  font-size: 16px;
  line-height: 1.4;
  color: var(--colors--body-font-color);
}
/* Sprinkle-colored bullet — cycles through the brand accents down the list. */
.topping-group__list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: var(--border-radius--border-circle);
  background: var(--colors--brand-peach);
}
.topping-group__list li:nth-child(4n + 1)::before { background: var(--colors--brand-red); }
.topping-group__list li:nth-child(4n + 2)::before { background: var(--colors--brand-blue); }
.topping-group__list li:nth-child(4n + 3)::before { background: var(--colors--brand-green); }
.topping-group__list li.is-unavailable { opacity: 0.5; text-decoration: line-through; }

@media screen and (max-width: 520px) {
  .toppings { padding: 52px 0; }
  .topping-group { padding: 22px 20px 24px; }
}

/* ---------- smoothie & acai bowls ---------- */
.bowls { padding: 88px 0; }
.bowls__head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.bowls__head h2 {
  font-family: var(--font-family--heading-font-family);
  font-size: var(--_typography---h2--h2-font-size);
  line-height: var(--_typography---h2--h2-line-height);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--colors--secondary-color);
  overflow-wrap: break-word;
}
.bowls__head p { color: var(--colors--body-font-color); opacity: 0.8; margin-top: 12px; }

.bowls__groups { display: flex; flex-direction: column; gap: 40px; }
.bowl-group__title {
  font-family: var(--font-family--heading-font-family);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--colors--primary-deep);
  margin-bottom: 18px;
}
.bowl-group__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.bowl-card {
  background: var(--colors--light-color);
  border: 1px solid var(--colors--border-color);
  border-radius: var(--border-radius--border-regular);
  padding: 26px;
}
.bowl-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.bowl-card__head h4 {
  font-family: var(--font-family--heading-font-family);
  font-size: 19px;
  font-weight: 600;
  color: var(--colors--secondary-color);
}
.bowl-card__price {
  flex: none;
  font-weight: 600;
  color: var(--colors--primary-deep);
}
.bowl-card__row { font-size: 15px; line-height: 1.55; color: var(--colors--body-font-color); }
.bowl-card__row + .bowl-card__row { margin-top: 8px; }
.bowl-card__row b {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--colors--secondary-color);
  opacity: 0.6;
  margin-bottom: 2px;
}
.bowl-card--unavailable { opacity: 0.55; }

@media screen and (max-width: 520px) {
  .bowls { padding: 56px 0; }
  .bowl-card { padding: 20px; }
}

/* ---------- in the shop ---------- */
.shop-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.shop-head p { color: var(--colors--body-font-color); opacity: 0.8; margin-top: 10px; }
.shop-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.shop-group {
  background: var(--colors--tertiary-color);
  border-radius: var(--border-radius--border-regular);
  padding: 26px;
}
.shop-group__title {
  font-family: var(--font-family--heading-font-family);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--colors--secondary-color);
  margin-bottom: 10px;
}
.shop-group__desc { font-size: 15px; line-height: 1.55; color: var(--colors--body-font-color); }

/* ---------- boba & shakes ---------- */
.drinks { padding: 72px 0; background: var(--colors--tertiary-color); }
.drinks__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.drinks__head h2 {
  font-family: var(--font-family--heading-font-family);
  font-size: var(--_typography---h2--h2-font-size);
  line-height: var(--_typography---h2--h2-line-height);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--colors--secondary-color);
  overflow-wrap: break-word;
}
.drinks__head p { color: var(--colors--body-font-color); opacity: 0.8; margin-top: 12px; }

.drinks__groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.drink-group {
  background: var(--colors--light-color);
  border: 1px solid var(--colors--border-color);
  border-radius: var(--border-radius--border-regular);
  padding: 26px;
}
.drink-group__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-family--heading-font-family);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--colors--secondary-color);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--colors--border-color);
}
.drink-group__price {
  font-family: var(--font-family--body-font-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--colors--primary-deep);
}
.drink-group__list {
  list-style: none;
  columns: 2 140px;
  column-gap: 26px;
}
.drink-group__list li {
  margin-bottom: 9px;
  break-inside: avoid;
  font-size: 15px;
  line-height: 1.4;
  color: var(--colors--body-font-color);
}
.drink-group__list li.is-unavailable { opacity: 0.5; text-decoration: line-through; }

@media screen and (max-width: 520px) {
  .drinks { padding: 52px 0; }
  .drink-group { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__sprinkles { animation: none; }
}

/* ---------- promo grid ---------- */
.promo-title { text-align: center; margin-bottom: 50px; }

.promo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.promo-card {
  position: relative;
  border-radius: var(--border-radius--border-large);
  overflow: hidden;
  background: var(--colors--secondary-color);
  display: flex;
  flex-direction: column;
}
.promo-card > img { width: 100%; height: 100%; object-fit: cover; flex: 1; }
.promo-card__text { position: absolute; z-index: 1; top: 34px; left: 34px; right: 34px; }
.promo-card__text h4 { color: var(--colors--light-color); margin-bottom: 8px; }
.promo-card__text h4 span { color: var(--colors--primary-color); }
.promo-card__text p { color: rgba(255, 248, 243, 0.85); margin-bottom: 12px; }

.promo-card--tall { min-height: 560px; }

.promo-card--bogo { min-height: 560px; justify-content: flex-end; }
.promo-card__text--center { text-align: center; top: 44px; }
.promo-card__kicker {
  color: var(--colors--light-color);
  font-size: var(--_typography---h6--h6-font-size);
  font-weight: var(--_typography---body--body-font-weight-500);
}
.promo-card__free {
  display: block;
  font-family: var(--font-family--heading-font-family);
  font-size: 110px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--colors--transparent);
  -webkit-text-stroke: 2px var(--colors--primary-color);
}
.promo-card--bogo > img { object-position: bottom; }

.promo-col { display: grid; grid-template-rows: 1fr auto; gap: 26px; }
.promo-card--img-only { min-height: 230px; }
.promo-card--offer { flex-direction: row; align-items: stretch; min-height: 260px; background: #31100a; }
.promo-card--offer .promo-card__text { position: static; padding: 34px 0 34px 34px; flex: 1.2; }
.promo-card--offer > img { flex: 1; width: 45%; object-fit: cover; }

/* ---------- perks strip ---------- */
.perk-strip {
  background: var(--colors--tertiary-color);
  border-radius: var(--border-radius--border-extra-large);
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.perk-strip h3 { max-width: 340px; }
.perk-strip__items { display: flex; gap: 44px; flex-wrap: wrap; }
.perk-strip .perk { max-width: 210px; }

/* ---------- carousel ---------- */
.carousel-arrows { display: flex; gap: 12px; }
.arrow-btn {
  width: 52px; height: 52px;
  border-radius: var(--border-radius--border-circle);
  border: 1px solid var(--colors--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--colors--secondary-color);
  background: #fff;
  transition: background-color 0.25s ease;
}
.arrow-btn:hover { background: var(--colors--primary-color); border-color: var(--colors--primary-color); }
.arrow-btn svg { width: 22px; height: 22px; }

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 78px) / 4);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel .flavor-card { scroll-snap-align: start; }

/* ---------- testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.testimonial {
  background: var(--colors--tertiary-color);
  border-radius: var(--border-radius--border-large);
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.testimonial__quote { font-style: italic; color: var(--colors--secondary-color); font-weight: var(--_typography---body--body-font-weight-500); }
.testimonial__person { display: flex; align-items: center; gap: 14px; }
.testimonial__person img { width: 54px; height: 54px; border-radius: var(--border-radius--border-circle); }
.testimonial__person strong { display: block; color: var(--colors--secondary-color); font-weight: var(--_typography---body--body-font-weight-600); }
.testimonial__person span { font-size: var(--_typography---body--body-font-size-small); }

/* ---------- logo strip ---------- */
.logo-strip {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}
.logo-strip__label { font-size: var(--_typography---body--body-font-size-small); font-weight: var(--_typography---body--body-font-weight-500); color: var(--colors--secondary-color); flex: none; }
.logo-strip__logos { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; flex: 1; justify-content: space-between; }
.logo-strip__logos img { height: 34px; width: auto; opacity: 0.75; }

/* ---------- footer ---------- */
.footer {
  background: var(--colors--tertiary-color);
  border-radius: var(--border-radius--border-extra-large) var(--border-radius--border-extra-large) 0 0;
  margin-top: 50px;
  padding: 70px 0 30px;
}

.footer__newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--colors--border-color);
  padding-bottom: 44px;
  margin-bottom: 54px;
}
.footer__newsletter h4 { margin-bottom: 6px; }
.newsletter-form {
  display: flex;
  align-items: center;
  background: var(--colors--light-color);
  border-radius: 50px;
  padding: 6px 6px 6px 26px;
  min-width: 360px;
}
.newsletter-form input { flex: 1; border: none; outline: none; background: transparent; color: var(--colors--secondary-color); }
.newsletter-form input::placeholder { color: var(--colors--body-font-color); }
.newsletter-form button {
  width: 48px; height: 48px;
  border-radius: var(--border-radius--border-circle);
  background: var(--colors--primary-color);
  color: var(--colors--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}
.newsletter-form button:hover { background: var(--colors--primary-deep); }
.newsletter-form button svg { width: 20px; height: 20px; }
.newsletter-note { grid-column: 1 / -1; font-size: var(--_typography---body--body-font-size-small); color: var(--colors--secondary-color); min-height: 0; }
.newsletter-note:empty { display: none; }

.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
}
.footer__col h6 { margin-bottom: 16px; }
.footer__col p { margin-bottom: 8px; font-size: 15px; }
.footer__link { display: block; margin-bottom: 8px; font-size: 15px; color: var(--colors--body-font-color); transition: color 0.2s ease; }
.footer__link:hover { color: var(--colors--primary-deep); }
.footer__phone {
  display: block;
  font-family: var(--font-family--heading-font-family);
  font-size: 30px;
  font-weight: 600;
  color: var(--colors--secondary-color);
  margin: 10px 0;
}
.footer__phone:hover { color: var(--colors--primary-deep); }

.footer__wordmark {
  font-family: var(--font-family--heading-font-family);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--colors--secondary-color);
  font-size: clamp(40px, 7.8vw, 108px);
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 34px;
}

.footer__bottom {
  border-top: 1px solid var(--colors--border-color);
  padding-top: 22px;
  text-align: center;
  font-size: var(--_typography---body--body-font-size-small);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .flavor-grid { grid-template-columns: repeat(3, 1fr); }
  .carousel { grid-auto-columns: calc((100% - 52px) / 3); }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo-col { grid-column: 1 / -1; grid-template-rows: none; grid-template-columns: 1fr 1.4fr; }
  .hero__grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-info-box { padding-right: 0; max-width: 560px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--colors--bg-color);
    flex-direction: column;
    gap: 4px;
    padding: 18px 24px 26px;
    box-shadow: 0 18px 30px rgba(58, 18, 11, 0.12);
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .phone-pill span { display: none; }
  .phone-pill { padding: 10px 12px; }
  .header-inner { gap: 12px; }
  .header-actions { gap: 10px; }
  .brand { gap: 8px; }
  .brand__peach { width: 30px; height: 30px; }
  .brand__name { font-size: 18px; }
  .brand__logo { height: 46px; }

  .stats-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 34px; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .carousel { grid-auto-columns: calc((100% - 18px) / 2); gap: 18px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer__newsletter { grid-template-columns: 1fr; }
  .newsletter-form { min-width: 0; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-col { grid-template-columns: 1fr; }
  .promo-card--tall, .promo-card--bogo { min-height: 480px; }
  .perk-strip { padding: 40px 32px; }
  .logo-strip__logos { gap: 30px; justify-content: flex-start; }
}

@media (max-width: 520px) {
  .flavor-grid { grid-template-columns: 1fr; }
  .carousel { grid-auto-columns: 86%; }
  .hero { min-height: 78vh; }
  .hero__overline { letter-spacing: 0.28em; }
  .promo-card__free { font-size: 76px; }
  .promo-card--offer { flex-direction: column; }
  .promo-card--offer .promo-card__text { padding: 30px 30px 0; }
  .promo-card--offer > img { width: 100%; min-height: 180px; }
  .footer__cols { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 30px; }
  .footer__wordmark { white-space: normal; font-size: clamp(40px, 15vw, 64px); }
  .brand__name { font-size: 16px; }
  .header-inner { gap: 8px; }
  .header-actions { gap: 6px; }
  .phone-pill { padding: 8px; }
  .nav-toggle { padding: 6px 4px; }
  .container { padding: 0 16px; }
}

/* ============================================================
   Sub-pages (events.html, fundraisers.html)
   ============================================================ */

/* ---------- page hero ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--colors--tertiary-color) 0%, var(--colors--bg-color) 70%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero__inner { max-width: 860px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(34px, 7vw, 76px); margin-bottom: 22px; }
.page-hero__lede {
  font-size: 18px;
  line-height: 30px;
  max-width: 640px;
  margin-bottom: 30px;
}
.page-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.page-hero__sprinkles {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 380px;
  opacity: 0.5;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--colors--primary-color);
  color: var(--colors--secondary-color);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: var(--_typography---body--body-font-size-small);
  font-weight: var(--_typography---body--body-font-weight-600);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow--mint { background: var(--colors--sprinkle-mint); }

.breadcrumb {
  font-size: var(--_typography---body--body-font-size-small);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--colors--primary-deep); }
.breadcrumb span { opacity: 0.6; }

/* ---------- generic content blocks ---------- */
.page-section { padding: 60px 0; }
.page-section--tinted { background: var(--colors--tertiary-color); }
.page-section__head { max-width: 720px; margin-bottom: 40px; }
.page-section__head h2 { margin-bottom: 16px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card-grid > * { min-width: 0; }

.info-card {
  background: #fff;
  border: 1px solid var(--colors--border-color);
  border-radius: var(--border-radius--border-regular);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius--border-circle);
  background: var(--colors--tertiary-color);
  color: var(--colors--primary-deep);
  display: grid;
  place-items: center;
}
.info-card__icon svg { width: 26px; height: 26px; }
.info-card h3 { font-size: 22px; line-height: 30px; }
.info-card__meta {
  font-weight: var(--_typography---body--body-font-weight-600);
  color: var(--colors--secondary-color);
}
.info-card ul { list-style: none; display: grid; gap: 8px; }
.info-card li { position: relative; padding-left: 22px; }
.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colors--primary-color);
}

/* numbered "how it works" steps */
.steps { counter-reset: step; display: grid; gap: 22px; }
.steps--row { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { counter-increment: step; padding-top: 8px; }
.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: var(--border-radius--border-circle);
  background: var(--colors--secondary-color);
  color: var(--colors--light-color);
  font-family: var(--font-family--heading-font-family);
  font-weight: 700;
}
.step h4 { font-size: 20px; line-height: 28px; margin-bottom: 8px; }

/* big 25% callout */
.donation-callout {
  background: var(--colors--secondary-color);
  color: var(--colors--light-color);
  border-radius: var(--border-radius--border-extra-large);
  padding: 54px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 44px;
}
.donation-callout h2, .donation-callout h3 { color: var(--colors--light-color); }
.donation-callout__number {
  font-family: var(--font-family--heading-font-family);
  font-size: clamp(88px, 16vw, 168px);
  line-height: 0.9;
  font-weight: 800;
  color: var(--colors--primary-color);
}
.donation-callout p { color: #f6e6db; }
.donation-callout__body > * + * { margin-top: 14px; }

/* ---------- forms ---------- */
.form-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 44px;
  align-items: start;
}
.form-layout > * { min-width: 0; }

.form-card {
  background: #fff;
  border: 1px solid var(--colors--border-color);
  border-radius: var(--border-radius--border-large);
  padding: 40px;
}
.form-card__head { margin-bottom: 28px; }
.form-card__head h2 { font-size: 32px; line-height: 40px; margin-bottom: 10px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid > * { min-width: 0; }
.field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: var(--_typography---body--body-font-size-small);
  font-weight: var(--_typography---body--body-font-weight-600);
  color: var(--colors--secondary-color);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field__label .req { color: var(--colors--primary-deep); }
.field__hint { font-size: 13px; line-height: 20px; opacity: 0.8; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  color: var(--colors--secondary-color);
  background: var(--colors--bg-color);
  border: 1px solid var(--colors--border-color);
  border-radius: var(--border-radius--border-small);
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%233a120b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--colors--primary-deep);
  box-shadow: 0 0 0 3px rgba(249, 126, 69, 0.18);
}
.field__error { font-size: 13px; line-height: 18px; color: #c0392b; }
.field__error:empty { display: none; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #c0392b; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 24px;
}
.checkbox input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--colors--primary-deep);
}

.field--honey { position: absolute; left: -9999px; opacity: 0; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.form-actions .btn { border: none; }
.form-actions .btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }
.form-note { font-size: 13px; line-height: 20px; opacity: 0.85; }

.form-status {
  margin-top: 18px;
  font-size: 15px;
  line-height: 24px;
  font-weight: var(--_typography---body--body-font-weight-500);
}
.form-status:empty { display: none; }
.form-status.is-success { color: #1f7a4d; }
.form-status.is-error { color: #c0392b; }
.form-status.is-pending { color: var(--colors--body-font-color); }

/* sidebar next to a form */
.form-aside { display: grid; gap: 22px; }
.aside-card {
  background: var(--colors--tertiary-color);
  border-radius: var(--border-radius--border-regular);
  padding: 30px 28px;
}
.aside-card h3 { font-size: 21px; line-height: 29px; margin-bottom: 12px; }
.aside-card p + p { margin-top: 10px; }
.aside-card dl { display: grid; gap: 10px; }
.aside-card dt {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: var(--_typography---body--body-font-weight-600);
  color: var(--colors--secondary-color);
}
.aside-card dd { margin-bottom: 6px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 900px; }
.faq details {
  background: #fff;
  border: 1px solid var(--colors--border-color);
  border-radius: var(--border-radius--border-small);
  padding: 20px 24px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-family--heading-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--colors--secondary-color);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; line-height: 1; color: var(--colors--primary-deep); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--colors--primary-color);
  border-radius: var(--border-radius--border-extra-large);
  padding: 50px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h3 { max-width: 620px; }
.btn--dark { background: var(--colors--secondary-color); color: var(--colors--light-color); }
.btn--dark:hover { background: #240a05; transform: translateY(-2px); }
.btn--dark .btn__dot { background: var(--colors--primary-color); }
.btn--outline {
  border: 1.5px solid var(--colors--secondary-color);
  color: var(--colors--secondary-color);
}
.btn--outline:hover { background: var(--colors--secondary-color); color: var(--colors--light-color); }
.btn--outline:hover .btn__dot { background: var(--colors--primary-color); }

@media (max-width: 1100px) {
  .form-layout { grid-template-columns: 1fr; }
  .donation-callout { grid-template-columns: 1fr; gap: 20px; text-align: left; padding: 44px 36px; }
}

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .page-hero { padding: 48px 0 44px; }
  .page-section { padding: 44px 0; }
  .cta-band { padding: 36px 28px; }
  .page-hero__sprinkles { display: none; }
}

/* checkbox groups inside a form */
.field--checks { border: none; padding: 0; }
.field--checks .field__label { margin-bottom: 12px; display: block; }
.card-grid--tight { gap: 12px; }

/* ---------- job listings (careers.html) ---------- */
.job-list { display: grid; gap: 22px; }
.job-card {
  background: #fff;
  border: 1px solid var(--colors--border-color);
  border-radius: var(--border-radius--border-regular);
  padding: 32px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 34px;
  align-items: start;
}
.job-card > * { min-width: 0; }
.job-card__title { font-size: 24px; line-height: 32px; margin-bottom: 6px; }
.job-card__type {
  font-size: var(--_typography---body--body-font-size-small);
  font-weight: var(--_typography---body--body-font-weight-600);
  color: var(--colors--primary-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.job-card__body p + p { margin-top: 10px; }
.job-card__facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px 26px;
  border-top: 1px solid var(--colors--border-color);
  padding-top: 20px;
}
.job-card__facts > div > dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: var(--_typography---body--body-font-weight-600);
  color: var(--colors--secondary-color);
  margin-bottom: 4px;
}
.job-card__facts > div > dd { font-size: 15px; line-height: 23px; }
.job-card__pay {
  font-family: var(--font-family--heading-font-family);
  font-size: 19px;
  font-weight: 600;
  color: var(--colors--secondary-color);
}
.job-card ul { list-style: none; display: grid; gap: 7px; margin-top: 12px; }
.job-card li { position: relative; padding-left: 22px; font-size: 15px; line-height: 23px; }
.job-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--colors--primary-color);
}

/* file input */
.field input[type="file"] {
  padding: 11px 14px;
  cursor: pointer;
  background: var(--colors--tertiary-color);
}
.field input[type="file"]::file-selector-button {
  font: inherit;
  font-weight: var(--_typography---body--body-font-weight-600);
  margin-right: 14px;
  padding: 8px 16px;
  border: none;
  border-radius: 50px;
  background: var(--colors--primary-color);
  color: var(--colors--secondary-color);
  cursor: pointer;
}
.field input[type="file"]::file-selector-button:hover { background: var(--colors--primary-deep); }

@media (max-width: 700px) {
  .job-card { grid-template-columns: 1fr; padding: 26px 22px; }
}

/* ---------- nav breakpoint ----------
   The nav carries eight links now, so it needs to collapse to the hamburger
   earlier than the old 900px cutoff or it overflows the header. */
@media (max-width: 1400px) {
  .site-nav { gap: 22px; }
}
@media (max-width: 1100px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    gap: 4px;
    flex-direction: column;
    background: var(--colors--bg-color);
    padding: 18px 24px 26px;
    box-shadow: 0 18px 30px rgba(58, 18, 11, 0.12);
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .phone-pill span { display: none; }
  .phone-pill { padding: 10px 12px; }
}

@media (max-width: 520px) {
  /* uppercase display type has a wide min-content width — keep it inside the box */
  .page-hero h1,
  .page-section__head h2,
  .donation-callout h2,
  .cta-band h3,
  .job-card__title { overflow-wrap: break-word; }
  .donation-callout { padding: 32px 22px; }
  .donation-callout h2 { font-size: 30px; line-height: 38px; }
  .donation-callout__number { font-size: 72px; }
  .page-section__head h2 { font-size: 32px; line-height: 40px; }
  .form-card__head h2 { font-size: 26px; line-height: 34px; }
}
