/* =============================================================
   LIVE WELL INTEGRATIVE HEALTH — DESIGN SYSTEM
   /css/styles.css — Shared across all pages
   =============================================================

   REVEAL ANIMATION PATTERN:
   Elements with [data-reveal] start at opacity 0, translateY(24px).
   When .is-visible is added (via IntersectionObserver in /js/main.js),
   they transition to opacity 1, translateY(0) over ~0.7s.
   Stagger siblings by setting --i (integer) on each element:
     transition-delay: calc(var(--i, 0) * 80ms)
   Under prefers-reduced-motion, all [data-reveal] are immediately visible.
   ============================================================= */

/* ─── Google Fonts — include in every <head> ─────────────────
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Hanken+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
   ─────────────────────────────────────────────────────────── */

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Brand palette */
  --green:        #2D6A4F;
  --green-dark:   #1B4332;
  --green-deep:   #12281F;
  --green-accent: #40916C;
  --green-light:  #52B788;
  --mist:         #DCE7DF;
  --cream:        #F7F5EF;
  --bg:           #F8F8F6;
  --surface:      #FFFFFF;
  --ink:          #18271F;
  --muted:        #5B6B62;
  --line:         #E4E5DF;
  --gold:         #B4894E;

  /* Border radii */
  --r:    10px;
  --r-lg: 20px;
  --pill: 999px;

  /* Layout */
  --container: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20,40,31,.06);
  --shadow:    0 18px 40px -24px rgba(20,40,31,.25);

  /* Section vertical rhythm */
  --section: clamp(64px, 9vw, 120px);
}

/* ─── Base Typography ───────────────────────────────────────── */
body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.08; }
h2 { font-size: clamp(2rem, 4vw, 3rem);     line-height: 1.1;  }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); line-height: 1.15; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--green);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--green-dark); }

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

ul, ol { list-style: none; }

/* ─── Eyebrow Label ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.section {
  padding-block: var(--section);
}

.section--cream  { background-color: var(--cream); }
.section--mist   { background-color: var(--mist); }
.section--green  { background-color: var(--green); }
.section--dark   { background-color: var(--green-dark); }
.section--deep   { background-color: var(--green-deep); }
.section--white  { background-color: var(--surface); }

/* Text color helpers for dark backgrounds */
.text-light { color: rgba(255,255,255,.9); }
.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light p  { color: rgba(255,255,255,.9); }
.text-light .eyebrow { color: var(--green-light); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .9em 1.6em;
  border-radius: var(--pill);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease,
              transform .22s ease, box-shadow .22s ease;
  white-space: nowrap;
}

.btn .btn-arrow {
  display: inline-block;
  transition: transform .22s ease;
  font-style: normal;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Primary */
.btn--primary {
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn--primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Outline */
.btn--outline {
  background-color: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Light (for use on dark/green sections) */
.btn--light {
  background-color: #fff;
  color: var(--green-dark);
  border-color: #fff;
}
.btn--light:hover {
  background-color: var(--cream);
  border-color: var(--cream);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Outline Light (for use on dark sections) */
.btn--outline-light {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover {
  background-color: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248,248,246,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(248,248,246,.97);
  box-shadow: 0 2px 20px rgba(20,40,31,.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width .25s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--green);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--r);
  transition: background .2s;
}
.nav__hamburger:hover { background: var(--mist); }

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* Mobile menu open state */
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--surface);
  padding: 2rem clamp(20px,5vw,40px);
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}

.nav__mobile.is-open {
  display: flex;
  transform: translateX(0);
}

.nav__mobile a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.nav__mobile a:hover { color: var(--green); }
.nav__mobile .btn { width: 100%; justify-content: center; margin-top: .5rem; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }
}

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-light);
  opacity: 0;
  transition: opacity .3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card:hover::before {
  opacity: 1;
}

/* Dark green card */
.card--green {
  background-color: var(--green-dark);
  color: rgba(255,255,255,.9);
}
.card--green h2,
.card--green h3,
.card--green h4,
.card--green p { color: rgba(255,255,255,.9); }

/* White surface card */
.card--surface {
  background-color: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.card__body {
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card__img--portrait {
  aspect-ratio: 3/4;
}

/* ─── Service Cards (image + content) ───────────────────────── */
.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-light);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }

.service-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-card__body {
  padding: 1.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .5rem;
}

.service-card__desc {
  color: var(--muted);
  font-size: .95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-weight: 600;
  font-size: .875rem;
  color: var(--green);
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.service-card:hover .service-card__link { gap: .7em; }

/* ─── Comparison Table ───────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table thead th {
  padding: 1.25rem 1.5rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.comparison-table thead th:first-child {
  background: var(--muted);
  text-align: left;
}

.comparison-table thead th:last-child {
  background: var(--green-dark);
  text-align: left;
}

.comparison-table tbody tr:nth-child(odd)  td { background: var(--surface); }
.comparison-table tbody tr:nth-child(even) td { background: var(--cream); }

.comparison-table tbody td {
  padding: 1rem 1.5rem;
  font-size: .95rem;
  line-height: 1.5;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}

.comparison-table tbody td:first-child {
  color: var(--muted);
}
.comparison-table tbody td:last-child {
  color: var(--green-dark);
  font-weight: 600;
}

/* VS badge wrapper */
.comparison-wrapper {
  position: relative;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  z-index: 2;
}

/* ─── Stat Block ─────────────────────────────────────────────── */
.stat-block {
  text-align: center;
}

.stat-block__number {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  display: block;
}

.stat-block__label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .4em;
  display: block;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.testimonial__quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.testimonial__attribution {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
}

/* ─── Forms ──────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.form-grid--full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.field label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: .75rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: .7; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(82,183,136,.18);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.cf-turnstile {
  margin-top: .5rem;
}

@media (max-width: 600px) {
  .form-grid--2col { grid-template-columns: 1fr; }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--green-deep);
  color: rgba(255,255,255,.75);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1.4fr;
  gap: 3rem;
  padding-block: clamp(56px, 8vw, 96px);
}

.footer__brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.footer__social a:hover {
  background: var(--green-accent);
  color: #fff;
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__col-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.footer__links a:hover { color: #fff; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}

.footer__contact-item a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.footer__contact-item a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

@media (max-width: 900px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── Partner Logo Strip ─────────────────────────────────────── */
.partner-strip {
  background-color: var(--green-dark);
  padding-block: clamp(40px, 6vw, 64px);
}

.partner-strip__heading {
  text-align: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 2rem;
}

.partner-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.partner-strip__logos img {
  height: clamp(28px, 3.5vw, 44px);
  width: auto;
  opacity: .65;
  filter: brightness(0) invert(1);
  transition: opacity .25s;
}
/* Jupiter logo is not already white so needs color inversion */
.partner-strip__logos img.partner--color {
  filter: brightness(0) invert(1);
}

.partner-strip__logos img:hover { opacity: 1; }

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: min(90vh, 760px);
  display: grid;
  align-items: center;
  padding-block: clamp(64px, 9vw, 112px);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__content { }

.hero__eyebrow  { margin-bottom: 1.25rem; }

.hero__headline {
  margin-bottom: 1.25rem;
}

.hero__subhead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--green-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.hero__body {
  color: var(--muted);
  font-size: .975rem;
  margin-bottom: 2rem;
  max-width: 50ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-accent {
  position: absolute;
  inset: 24px -24px -24px 24px;
  background: var(--mist);
  border-radius: var(--r-lg);
  z-index: 0;
}

.hero__image-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (max-width: 760px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__image-wrap {
    order: -1;
  }
  .hero__image-accent {
    inset: 12px -12px -12px 12px;
  }
}

/* ─── How It Works Steps ─────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step {
  position: relative;
}

.step__number {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1;
  margin-bottom: .5rem;
  user-select: none;
}

.step__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
  margin-bottom: .75rem;
}

.step__body {
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; }
}

/* ─── Section CTA Banner (dark green) ───────────────────────── */
.cta-banner {
  background: var(--green-dark);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  margin-top: 3rem;
}

.cta-banner h2,
.cta-banner h3,
.cta-banner p { color: rgba(255,255,255,.9); }

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* ─── Contact Section ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

.contact-info__value a {
  color: var(--ink);
  text-decoration: none;
}
.contact-info__value a:hover { color: var(--green); }

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── Grids (generic) ────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ─── About Teaser ───────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-split__image-wrap {
  position: relative;
}

.about-split__image-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 320px;
  margin-inline: auto;
}

.about-split__image-frame img {
  width: 100%;
  display: block;
}

.about-split__accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--mist);
  z-index: -1;
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.25rem 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--mist);
  border: 1px solid rgba(45,106,79,.15);
  border-radius: var(--pill);
  padding: .35em .85em;
}

.badge::before {
  content: '✓';
  color: var(--green);
}

@media (max-width: 720px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__image-wrap { order: -1; }
}

/* ─── Utility: text alignment ────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Vertical spacers */
.mt-sm  { margin-top: .75rem; }
.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 2.5rem; }
.mb-sm  { margin-bottom: .75rem; }
.mb-md  { margin-bottom: 1.5rem; }
.mb-lg  { margin-bottom: 2.5rem; }

/* ─── Reveal Animation System ────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1),
              transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ─── Section heading group ──────────────────────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
}

.section-header__intro {
  color: var(--muted);
  max-width: 60ch;
  margin-top: .75rem;
}

.section-header--center .section-header__intro {
  margin-inline: auto;
}

/* Gold divider accent line */
.gold-rule {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 1.25rem;
}

.section-header--center .gold-rule {
  margin-inline: auto;
}

/* ─── Body scroll lock (mobile menu) ────────────────────────── */
body.scroll-locked {
  overflow: hidden;
}

/* ─── Partner strip: horizontal scroll on mobile ─────────────── */
@media (max-width: 600px) {
  .partner-strip__logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-inline: clamp(20px, 5vw, 40px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .partner-strip__logos::-webkit-scrollbar {
    display: none;
  }
  .partner-strip__logos img {
    flex-shrink: 0;
  }
}
