/* ============================================================
   WILD ROOTS THERAPY — DESIGN SYSTEM
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700&display=swap');

/* ---- Custom Properties ---- */
:root {
  /* Greens */
  --green-900: #1a3d28;
  --green-800: #2d5038;
  --green-700: #3d6b4f;
  --green-600: #4a7c59;
  --green-500: #5a8d6b;
  --green-400: #6aa07a;
  --green-300: #8bbf9b;
  --green-200: #b5d8be;
  --green-100: #d4ecda;
  --green-50:  #edf6ef;

  /* Amber */
  --amber-600: #b07a36;
  --amber-500: #c8914a;
  --amber-400: #d8a86c;
  --amber-300: #e8c090;
  --amber-50:  #fdf3e6;

  /* Terracotta (warm accent) */
  --terra-700: #a3441f;
  --terra-600: #c1592f;
  --terra-500: #d97b4f;
  --terra-400: #e6996f;
  --terra-300: #f0b294;
  --terra-100: #fbdfcd;
  --terra-50:  #fdf1ea;

  /* Sky (cool accent) */
  --sky-700: #1f5f78;
  --sky-600: #2b7a9b;
  --sky-500: #3f97bb;
  --sky-400: #5fb3d4;
  --sky-300: #8fcbe2;
  --sky-100: #dbf0f7;
  --sky-50:  #eef8fb;

  /* Neutral */
  --neutral-900: #1e2d25;
  --neutral-800: #2c3e35;
  --neutral-700: #3d5042;
  --neutral-600: #5a6e60;
  --neutral-500: #7a8e80;
  --neutral-400: #9eb0a4;
  --neutral-300: #c4d0c7;
  --neutral-200: #dce8df;
  --neutral-100: #ece9e2;
  --neutral-50:  #f5f2eb;

  --white: #ffffff;
  --off-white: #faf8f3;

  /* Semantic */
  --color-primary:    var(--green-700);
  --color-primary-dk: var(--green-800);
  --color-primary-lt: var(--green-500);
  --color-secondary:  var(--amber-500);
  --color-accent:     var(--terra-500);
  --color-accent-dk:  var(--terra-600);
  --color-accent-2:   var(--sky-500);
  --color-bg:         var(--off-white);
  --color-surface:    var(--white);
  --color-text:       var(--neutral-900);
  --color-text-muted: var(--neutral-600);
  --color-border:     var(--neutral-200);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Border radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(30,45,37,.07);
  --shadow-md:  0 4px 14px rgba(30,45,37,.10);
  --shadow-lg:  0 10px 32px rgba(30,45,37,.12);
  --shadow-xl:  0 20px 60px rgba(30,45,37,.15);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --transition: 240ms var(--ease);

  /* Nav */
  --nav-h: 68px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--neutral-900);
}
h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); font-weight: 500; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; letter-spacing: -.01em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { max-width: 68ch; }
strong { font-weight: 700; }

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 780px; }
.section { padding-block: var(--sp-20); }
.section--sm { padding-block: var(--sp-12); }
.section--lg { padding-block: var(--sp-24); }

/* ---- Flex / Grid helpers ---- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }
.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .03em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  vertical-align: middle;
}
.btn--primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(61,107,79,.35);
}
.btn--primary:hover {
  background: var(--green-800);
  box-shadow: 0 6px 20px rgba(61,107,79,.45);
  transform: translateY(-1px);
}
.btn--secondary {
  background: var(--amber-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200,145,74,.35);
}
.btn--secondary:hover {
  background: var(--amber-600);
  box-shadow: 0 6px 20px rgba(200,145,74,.45);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700);
}
.btn--outline:hover {
  background: var(--green-700);
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn--accent {
  background: linear-gradient(135deg, var(--terra-500) 0%, var(--terra-600) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(193,89,47,.35);
}
.btn--accent:hover {
  background: linear-gradient(135deg, var(--terra-600) 0%, var(--terra-700) 100%);
  box-shadow: 0 6px 20px rgba(193,89,47,.45);
  transform: translateY(-1px);
}
.btn--lg {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* ---- Badges / Tags ---- */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--green  { background: var(--green-100); color: var(--green-800); }
.badge--amber  { background: var(--amber-50);  color: var(--amber-600); }
.badge--terra  { background: var(--terra-100); color: var(--terra-700); }
.badge--sky    { background: var(--sky-100);   color: var(--sky-700); }

/* ---- Section Labels ---- */
.section-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-500);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-intro {
  font-size: 1.15rem;
  color: var(--neutral-600);
  margin-top: var(--sp-4);
  line-height: 1.7;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(30,45,37,.08); }
.nav__inner {
  height: 100%;
  padding-block: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img { width: 48px; height: 48px; border-radius: var(--radius-sm); }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: -.01em;
}
.nav__logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--neutral-500);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav__link {
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--neutral-700);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--green-700);
  background: var(--green-50);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--neutral-700);
  cursor: pointer;
  transition: all var(--transition);
}
.nav__dropdown-trigger:hover { color: var(--green-700); background: var(--green-50); }
.nav__dropdown-trigger svg { transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-100);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
  padding: var(--sp-2);
  padding-top: calc(var(--sp-2) + 8px);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--neutral-700);
  transition: all var(--transition);
}
.nav__dropdown-item:hover { background: var(--green-50); color: var(--green-700); }
.nav__dropdown-item-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  align-self: center;
}
.nav__phone {
  font-size: .85rem;
  font-weight: 700;
  color: var(--green-700);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

/* Mobile Nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--sp-6);
  display: none;
  flex-direction: column;
  gap: var(--sp-2);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  display: block;
  padding: var(--sp-4);
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neutral-800);
  border: 1px solid var(--neutral-100);
}
.nav__mobile-link:hover { background: var(--green-50); color: var(--green-700); border-color: var(--green-100); }
.nav__mobile-section {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--neutral-400);
  padding: var(--sp-4) var(--sp-4) var(--sp-2);
}
.nav__mobile-actions { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-3); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + var(--sp-12));
  padding-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  border-bottom: 2px solid var(--terra-400);
  padding-bottom: var(--sp-1);
}
.hero__eyebrow svg { flex-shrink: 0; color: var(--terra-500); }
.hero__headline {
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 400;
  color: var(--neutral-900);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: var(--sp-5);
}
.hero__headline em {
  font-style: italic;
  color: var(--green-700);
  font-weight: 300;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero__headline em {
    background: linear-gradient(100deg, var(--green-700) 55%, var(--terra-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 54ch;
}
.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--neutral-200);
}
.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}
.hero__stat-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: var(--sp-1);
}
.hero__visual { position: relative; z-index: 1; }
.hero__visual::before {
  content: '';
  position: absolute;
  top: -34px; right: -34px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terra-300) 0%, var(--amber-300) 100%);
  opacity: .55;
  z-index: -1;
}
.hero__visual::after {
  content: '';
  position: absolute;
  bottom: 30px; left: -30px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--sky-300);
  opacity: .5;
  z-index: -1;
}
.hero__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: 0 4px 20px rgba(30,45,37,.12);
  border: 1px solid var(--neutral-200);
  border-top: 3px solid var(--terra-400);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  width: 240px;
}
.hero__badge-logo {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: .82;
}
.hero__badge-text {
  font-size: .75rem;
  font-weight: 600;
  color: var(--neutral-500);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-top: 1px solid var(--neutral-100);
  padding-top: var(--sp-2);
  white-space: nowrap;
}

/* ============================================================
   SERVICE STRIP (home page quick links)
   ============================================================ */
.service-strip {
  background: var(--green-800);
  padding-block: var(--sp-8);
}
.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--sp-3);
}
.service-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-3);
  border-radius: var(--radius-md);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.3;
}
.service-strip__item:hover {
  color: var(--white);
  border-bottom-color: var(--amber-400);
  transform: translateY(-2px);
}
.service-strip__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-2);
  color: rgba(255,255,255,.85);
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 60%, var(--terra-700) 150%);
  padding-block: var(--sp-20);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mission__inner { position: relative; z-index: 1; text-align: center; }
.mission__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -.01em;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}
.mission__quote strong { font-style: normal; font-weight: 700; color: var(--amber-300); }
.mission__tag {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.mission__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
  max-width: none;
}
.mission__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: left;
}
.mission__card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--amber-300);
  flex-shrink: 0;
}
.mission__card:nth-child(2) .mission__card-icon { color: var(--terra-300); }
.mission__card:nth-child(3) .mission__card-icon { color: var(--sky-300); }
.mission__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.mission__card p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: none;
  border: 1px solid var(--neutral-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(30,45,37,.09);
  transform: translateY(-3px);
  border-color: var(--green-300);
}
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
  color: var(--green-700);
}
.service-card:nth-child(3n+2) .service-card__icon { background: var(--terra-50); color: var(--terra-600); }
.service-card:nth-child(3n+3) .service-card__icon { background: var(--sky-50); color: var(--sky-600); }
.service-card:nth-child(3n+2):hover { border-color: var(--terra-300); }
.service-card:nth-child(3n+3):hover { border-color: var(--sky-300); }
.service-card:nth-child(3n+2) .service-card__link { color: var(--terra-600); }
.service-card:nth-child(3n+3) .service-card__link { color: var(--sky-600); }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--sp-3);
}
.service-card p {
  font-size: .92rem;
  color: var(--neutral-600);
  line-height: 1.65;
  flex: 1;
  max-width: none;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: .875rem;
  font-weight: 700;
  color: var(--green-700);
}
.service-card__link svg { transition: transform var(--transition); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-10);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: none;
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.testimonial-card--featured {
  background: linear-gradient(135deg, var(--terra-600) 0%, var(--green-800) 100%);
  border-color: transparent;
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--amber-400);
  font-size: 1rem;
}
.testimonial-card__text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--neutral-700);
  font-style: italic;
  flex: 1;
  max-width: none;
}
.testimonial-card--featured .testimonial-card__text { color: rgba(255,255,255,.85); }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--neutral-100);
}
.testimonial-card--featured .testimonial-card__author { border-color: rgba(255,255,255,.15); }
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
}
.testimonial-card--featured .testimonial-card__avatar { background: rgba(255,255,255,.15); }
.testimonial-card__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--neutral-900);
}
.testimonial-card--featured .testimonial-card__name { color: var(--white); }
.testimonial-card__role {
  font-size: .8rem;
  color: var(--neutral-500);
}
.testimonial-card--featured .testimonial-card__role { color: rgba(255,255,255,.6); }

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--neutral-200);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.team-card:hover { box-shadow: 0 6px 24px rgba(30,45,37,.09); transform: translateY(-3px); border-color: var(--neutral-300); }
.team-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--green-50);
  position: relative;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__info { padding: var(--sp-6); }
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--neutral-900);
  margin-bottom: var(--sp-1);
}
.team-card__title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--green-600);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.team-card:nth-child(3n+2) .team-card__title { color: var(--terra-600); }
.team-card:nth-child(3n+3) .team-card__title { color: var(--sky-600); }

/* "Joining soon" cards for therapists who have been hired but not yet photographed */
.team-card--upcoming { border-style: dashed; background: var(--green-50); }
.team-card--upcoming:hover { box-shadow: none; transform: none; border-color: var(--neutral-300); }
.team-card__photo--upcoming {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: var(--green-50);
}
.team-card__upcoming-icon {
  font-size: 2.5rem;
  line-height: 1;
}
.team-card__upcoming-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-600);
}
.team-card--upcoming .team-card__info { background: #fff; }
.team-card--upcoming .team-card__name { color: var(--neutral-700); font-style: normal; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 70%, var(--terra-700) 140%);
  padding-block: var(--sp-16);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -6%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cta-banner__inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-10);
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  max-width: 600px;
  line-height: 1.25;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-top: var(--sp-3);
  max-width: 52ch;
}
.cta-banner__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--sp-10));
  padding-bottom: var(--sp-10);
  background: linear-gradient(135deg, var(--green-50) 0%, var(--terra-50) 55%, var(--sky-50) 130%);
  border-bottom: 1px solid var(--neutral-200);
  position: relative;
  overflow: hidden;
}
.page-hero--green {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
}
.page-hero--green h1,
.page-hero--green p { color: var(--white); }
.page-hero--green p { color: rgba(255,255,255,.95); }
.page-hero--green .section-label { color: var(--amber-300); }
.page-hero--green .breadcrumb,
.page-hero--green .breadcrumb a { color: rgba(255,255,255,.55); }
.page-hero--green .breadcrumb a:hover { color: rgba(255,255,255,.9); }
.page-hero--green .breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero__content { max-width: 720px; }
.page-hero h1 { margin-bottom: var(--sp-4); }
.page-hero p {
  font-size: 1.15rem;
  color: var(--neutral-600);
  line-height: 1.7;
  max-width: 62ch;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.split--reversed .split__visual { order: -1; }
.split__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.split__visual img { width: 100%; height: 100%; object-fit: cover; }
.split__content h2 { margin-bottom: var(--sp-5); }
.split__content p {
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
  max-width: none;
}

/* Feature list */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-6); }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: .95rem;
  color: var(--neutral-700);
}
.feature-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Info boxes */
.info-box {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-8);
  margin-top: var(--sp-6);
}
.info-box h4 { color: var(--green-800); margin-bottom: var(--sp-3); font-size: 1.1rem; }
.info-box p { font-size: .95rem; color: var(--neutral-700); max-width: none; line-height: 1.7; }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
.process-step {
  background: transparent;
  border-radius: 0;
  padding: var(--sp-6) 0;
  box-shadow: none;
  border: none;
  border-top: 1px solid var(--neutral-200);
  position: relative;
}
.process-step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.process-step:nth-child(3n+2) .process-step__num { background: var(--terra-600); }
.process-step:nth-child(3n+3) .process-step__num { background: var(--sky-600); }
.process-step h4 { font-size: 1rem; color: var(--neutral-900); margin-bottom: var(--sp-2); }
.process-step p { font-size: .88rem; color: var(--neutral-600); max-width: none; }

/* Accordion / FAQ */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-8); }
.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--neutral-200);
  border-radius: 0;
  overflow: hidden;
}
.faq-item summary {
  padding: var(--sp-5) var(--sp-7);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--neutral-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--green-600);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: var(--sp-5) var(--sp-7) var(--sp-7); border-top: 1px solid var(--neutral-100); }
.faq-item__body p { font-size: .9rem; color: var(--neutral-600); max-width: none; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-16);
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.contact-info-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item__label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: var(--sp-1);
}
.contact-info-item__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
}
.contact-info-item__value a { color: var(--green-700); }
.contact-info-item__value a:hover { text-decoration: underline; }

/* Form */
.form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-label { font-size: .85rem; font-weight: 700; color: var(--neutral-700); }
.form-input, .form-textarea, .form-select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--neutral-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(74,124,89,.15);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--neutral-900);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--green-600), var(--amber-400), var(--terra-500), var(--sky-500)) 1;
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-10);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  text-decoration: none;
}
.footer__logo img { width: 48px; height: 48px; border-radius: var(--radius-sm); }
.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer__logo-tag {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer__desc {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 28ch;
}
.footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: all var(--transition);
}
.footer__social-link:hover { background: var(--green-600); color: var(--white); }
.footer__col-title {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-8);
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer__legal { display: flex; gap: var(--sp-5); }
.footer__legal a { font-size: .8rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer__legal a:hover { color: rgba(255,255,255,.7); }
.footer__credit {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  margin-top: var(--sp-6);
}
.footer__credit a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}
.footer__credit a:hover { color: var(--terra-300); }

/* ============================================================
   MISC COMPONENTS
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .8rem;
  color: var(--neutral-500);
  margin-bottom: var(--sp-4);
}
.breadcrumb a { color: var(--neutral-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb span { color: var(--neutral-300); }

/* Image gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }

/* Cert badges */
.cert-badges { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; margin-top: var(--sp-6); }
.cert-badge {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cert-badge img { height: 80px; width: auto; }

/* Notice / alert */
.notice {
  background: var(--amber-50);
  border: 1px solid var(--amber-300);
  border-left: 4px solid var(--amber-500);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: .9rem;
  color: var(--neutral-700);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .hero__visual { display: none; }
  .hero { padding-top: calc(var(--nav-h) + var(--sp-10)); }
  .service-strip__grid { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--sp-10); }
  .split--reversed .split__visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission__cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding-block: var(--sp-12); }
  .section--lg { padding-block: var(--sp-16); }
  .service-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .cta-banner__inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: var(--sp-6); }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .service-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  animation: fadeUp 600ms var(--ease) both;
}
.animate-up:nth-child(2) { animation-delay: 100ms; }
.animate-up:nth-child(3) { animation-delay: 200ms; }
.animate-up:nth-child(4) { animation-delay: 300ms; }

/* Scroll-triggered fade */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITY OVERRIDES
   ============================================================ */
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: var(--sp-4) !important; }
.mt-6 { margin-top: var(--sp-6) !important; }
.mt-8 { margin-top: var(--sp-8) !important; }
.bg-white { background: var(--white) !important; }
.bg-neutral { background: var(--neutral-50) !important; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================================
   PLAYFUL / ENERGETIC ENHANCEMENTS
   ============================================================ */

/* Floating leaf animation */
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(var(--leaf-rot, -5deg)); }
  50%       { transform: translateY(-18px) rotate(calc(var(--leaf-rot, -5deg) + 10deg)); }
}

/* Service card icon pop on hover */
@keyframes iconPop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.22) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Hero leaf decorations */
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero__leaf {
  position: absolute;
  color: var(--green-600);
  opacity: 0.09;
  animation: leafFloat ease-in-out infinite;
}
.hero__leaf--1 {
  --leaf-rot: -12deg;
  top: 6%; right: 2%;
  width: 180px; height: 180px;
  animation-duration: 8s;
}
.hero__leaf--2 {
  --leaf-rot: 22deg;
  bottom: 15%; right: 9%;
  width: 110px; height: 110px;
  color: var(--terra-500);
  opacity: 0.12;
  animation-duration: 11s;
  animation-delay: -4s;
}
.hero__leaf--3 {
  --leaf-rot: -28deg;
  top: 42%; left: -1%;
  width: 88px; height: 88px;
  color: var(--sky-500);
  opacity: 0.1;
  animation-duration: 9s;
  animation-delay: -7s;
}

/* Wave section divider (hero → service strip) */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  background: var(--off-white);
}
.wave-divider svg { display: block; width: 100%; height: 60px; }

/* Fun activities strip */
.fun-strip {
  background: linear-gradient(135deg, #fffbe8 0%, #f0faf2 50%, #fffbe8 100%);
  border-top: 2px solid var(--amber-300);
  border-bottom: 2px solid var(--green-100);
  padding-block: var(--sp-5);
}
.fun-strip__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.fun-strip__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-800);
  white-space: nowrap;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.65);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition);
}
.fun-strip__item:hover {
  background: var(--white);
  border-color: var(--green-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.fun-strip__emoji { font-size: 1.2rem; line-height: 1; }
.fun-strip__divider {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber-400);
  flex-shrink: 0;
  opacity: 0.45;
}

/* Color-coded service strip icons */
.service-strip__item:nth-child(1) .service-strip__icon { color: #60c8e0; }
.service-strip__item:nth-child(2) .service-strip__icon { color: #f0c86a; }
.service-strip__item:nth-child(3) .service-strip__icon { color: #c4a8f0; }
.service-strip__item:nth-child(4) .service-strip__icon { color: #58d4ec; }
.service-strip__item:nth-child(5) .service-strip__icon { color: #f0a870; }
.service-strip__item:nth-child(6) .service-strip__icon { color: #98d880; }
.service-strip__item:nth-child(7) .service-strip__icon { color: #f8c050; }

/* Service card icon bounce on hover */
.service-card:hover .service-card__icon {
  animation: iconPop 360ms cubic-bezier(.34,1.56,.64,1) both;
}

/* Gallery section header */
.gallery-section-header {
  text-align: center;
  padding-bottom: var(--sp-2);
}
.gallery-section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.gallery-section-header .section-intro {
  margin-inline: auto;
  max-width: 48ch;
  margin-top: var(--sp-2);
}

/* Snappier button feedback */
.btn--primary:hover  { transform: translateY(-2px) scale(1.02); }
.btn--secondary:hover { transform: translateY(-2px) scale(1.02); }

@media (max-width: 768px) {
  .fun-strip__divider { display: none; }
  .hero__leaf { opacity: 0.06; }
}

/* ============================================================
   V2 — WARMER, BOLDER, LESS CORPORATE
   ============================================================ */

:root {
  /* Warm washes */
  --cream:  #fdf7ec;
  --mint:   #edf7ef;
  --peach:  #fdeee3;
  --butter: #fdf2d6;
  --skywash:#eaf5fb;

  /* Two more brand-friendly accents for variety */
  --berry-700: #98395a;
  --berry-600: #b8456b;
  --berry-500: #d4658a;
  --berry-100: #fbe1ea;
  --berry-50:  #fdf0f4;
  --grape-600: #7a5aa8;
  --grape-100: #ece4f8;
  --grape-50:  #f5f1fc;
}

body { background: var(--cream); }

/* ---- Section labels become friendly pills ---- */
.section-label {
  background: var(--butter);
  color: var(--amber-600);
  padding: .35rem .85rem .35rem .7rem;
  border-radius: var(--radius-full);
  font-size: .7rem;
  gap: var(--sp-2);
}
.section-label::before {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terra-500);
}

/* ---- Hand-drawn underline for headings ---- */
.heading-mark { position: relative; display: inline; isolation: isolate; }
.heading-mark::after {
  content: '';
  position: absolute;
  left: -.06em; right: -.06em; bottom: .06em;
  height: .3em;
  background: var(--amber-300);
  opacity: .5;
  border-radius: var(--radius-full);
  transform: rotate(-.5deg);
  z-index: -1;
}
.heading-mark--terra::after { background: var(--terra-300); }
.heading-mark--sky::after   { background: var(--sky-300); }

/* ============================================================
   HERO — full-bleed photo
   ============================================================ */
.hero--photo {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(90vh, 800px);
  padding-top: calc(var(--nav-h) + var(--sp-16));
  padding-bottom: calc(var(--sp-20) + 50px);
  background: var(--green-900);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -1.5%, 0); }
}
.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,36,23,.70) 0%, rgba(14,36,23,.22) 30%, rgba(14,36,23,.52) 66%, rgba(14,36,23,.88) 100%),
    linear-gradient(100deg, rgba(26,61,40,.82) 0%, rgba(26,61,40,.24) 58%, rgba(163,68,31,.42) 100%);
}
.hero__container { position: relative; z-index: 1; width: 100%; }
.hero--photo .hero__content { max-width: 760px; }
.hero--photo .hero__eyebrow {
  color: var(--white);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  border-bottom-width: 1px;
  border-radius: var(--radius-full);
  padding: .4rem 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero--photo .hero__eyebrow svg { color: var(--amber-300); }
.hero--photo .hero__headline {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(10,26,17,.45);
}
.hero--photo .hero__headline em { color: var(--amber-300); }
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero--photo .hero__headline em {
    background: linear-gradient(100deg, var(--amber-300) 20%, var(--terra-300) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.hero--photo .hero__sub {
  color: rgba(255,255,255,.88);
  font-size: 1.2rem;
  max-width: 56ch;
  text-shadow: 0 1px 14px rgba(10,26,17,.45);
}
.hero--photo .hero__stats {
  border-top: 1px solid rgba(255,255,255,.22);
  gap: var(--sp-10);
}
.hero--photo .hero__stat-value { color: var(--white); font-size: 2.2rem; }
.hero--photo .hero__stat-label { color: rgba(255,255,255,.65); }
.hero--photo .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero--photo .btn--outline:hover {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}

/* Certification sticker */
.hero__sticker {
  position: absolute;
  top: 0; right: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: 0 12px 34px rgba(10,26,17,.28);
  transform: rotate(2.5deg);
  max-width: 260px;
  transition: transform var(--transition);
}
.hero__sticker:hover { transform: rotate(0deg) translateY(-3px); }
.hero__sticker img { width: 52px; height: auto; flex-shrink: 0; }
.hero__sticker span {
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--neutral-700);
  letter-spacing: .02em;
}

/* Hero bottom wave into page background */
.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__wave svg { display: block; width: 100%; height: 70px; }

/* Transparent nav while over the hero photo */
body.has-hero-image .nav:not(.scrolled) {
  background: linear-gradient(180deg, rgba(10,26,17,.55) 0%, rgba(10,26,17,0) 100%);
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.has-hero-image .nav:not(.scrolled) .nav__logo-title,
body.has-hero-image .nav:not(.scrolled) .nav__link,
body.has-hero-image .nav:not(.scrolled) .nav__dropdown-trigger,
body.has-hero-image .nav:not(.scrolled) .nav__phone { color: var(--white); }
body.has-hero-image .nav:not(.scrolled) .nav__logo-sub { color: rgba(255,255,255,.7); }
body.has-hero-image .nav:not(.scrolled) .nav__link:hover,
body.has-hero-image .nav:not(.scrolled) .nav__link.active,
body.has-hero-image .nav:not(.scrolled) .nav__dropdown-trigger:hover {
  background: rgba(255,255,255,.16);
  color: var(--white);
}
body.has-hero-image .nav:not(.scrolled) .nav__hamburger span { background: var(--white); }
body.has-hero-image .nav:not(.scrolled) .nav__logo img {
  background: rgba(255,255,255,.92);
  padding: 2px;
}

/* ============================================================
   MARQUEE — "what therapy looks like here"
   ============================================================ */
.marquee {
  background: linear-gradient(90deg, var(--butter) 0%, var(--mint) 45%, var(--peach) 100%);
  border-top: 2px solid rgba(200,145,74,.28);
  border-bottom: 2px solid rgba(200,145,74,.28);
  padding-block: var(--sp-4);
  overflow: hidden;
  position: relative;
  display: flex;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-right: var(--sp-4);
  flex-shrink: 0;
  animation: marqueeScroll 34s linear infinite;
}
.marquee:hover .marquee__group { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
  font-size: .92rem;
  font-weight: 700;
  color: var(--green-800);
  background: rgba(255,255,255,.75);
  border: 1.5px solid rgba(61,107,79,.14);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-5);
  box-shadow: 0 2px 0 rgba(61,107,79,.10);
}
.marquee__item:nth-child(2n)   { color: var(--terra-700); border-color: rgba(193,89,47,.20); }
.marquee__item:nth-child(3n)   { color: var(--sky-700);   border-color: rgba(43,122,155,.20); }
.marquee__item:nth-child(5n)   { color: var(--grape-600); border-color: rgba(122,90,168,.22); }
.marquee__emoji { font-size: 1.15rem; line-height: 1; }

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

/* ============================================================
   SERVICE LIST — replaces the grid of boxes
   ============================================================ */
.service-list {
  margin-top: var(--sp-10);
  display: flex;
  flex-direction: column;
}
.service-row {
  --c: var(--green-700);
  --wash: var(--green-50);
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-6) var(--sp-5);
  border-radius: var(--radius-xl);
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}
.service-row + .service-row::before {
  content: '';
  position: absolute;
  top: 0; left: var(--sp-5); right: var(--sp-5);
  border-top: 2px dashed var(--neutral-200);
}
.service-row:hover {
  background: var(--wash);
  transform: translateX(6px);
}
.service-row:hover::before,
.service-row:hover + .service-row::before { border-color: transparent; }

.service-row__icon {
  width: 74px; height: 74px;
  border-radius: 26px 26px 26px 8px;
  background: var(--tile, var(--wash));
  color: var(--c);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 300ms cubic-bezier(.34,1.56,.64,1);
}
.service-row:hover .service-row__icon {
  background: var(--c);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
  border-radius: 26px 8px 26px 26px;
}
.service-row__body h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: var(--sp-2);
}
.service-row__body p {
  font-size: .95rem;
  color: var(--neutral-600);
  line-height: 1.7;
  max-width: 72ch;
}
.service-row__meta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c);
}
.service-row__arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--neutral-200);
  color: var(--c);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.service-row:hover .service-row__arrow {
  background: var(--c);
  border-color: var(--c);
  color: var(--white);
  transform: translateX(4px);
}

/* Per-row color themes — icon tile uses the stronger tint, hover wash the softer one */
.service-row--green  { --c: var(--green-700);  --wash: var(--green-50);  --tile: var(--green-100); }
.service-row--terra  { --c: var(--terra-600);  --wash: var(--terra-50);  --tile: var(--terra-100); }
.service-row--sky    { --c: var(--sky-600);    --wash: var(--sky-50);    --tile: var(--sky-100); }
.service-row--amber  { --c: var(--amber-600);  --wash: var(--amber-50);  --tile: #f8e3bf; }
.service-row--berry  { --c: var(--berry-600);  --wash: var(--berry-50);  --tile: var(--berry-100); }
.service-row--grape  { --c: var(--grape-600);  --wash: var(--grape-50);  --tile: var(--grape-100); }
.service-row--forest { --c: var(--green-900);  --wash: var(--mint);      --tile: var(--green-200); }

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 56px 1fr;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-3);
  }
  .service-row__icon { width: 56px; height: 56px; border-radius: 20px 20px 20px 6px; }
  .service-row__icon svg { width: 22px; height: 22px; }
  .service-row__arrow { display: none; }
  .service-row:hover { transform: none; }
}

/* ============================================================
   PARENT COACHING SPOTLIGHT
   ============================================================ */
.spotlight {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-20);
  background: linear-gradient(150deg, var(--butter) 0%, var(--peach) 55%, var(--cream) 100%);
  border-bottom: 1px solid rgba(200,145,74,.22);
}
.spotlight::before,
.spotlight::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.spotlight::before {
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle at 35% 35%, rgba(216,168,108,.38), rgba(216,168,108,0) 70%);
}
.spotlight::after {
  bottom: -140px; left: -100px;
  width: 340px; height: 340px;
  background: radial-gradient(circle at 60% 40%, rgba(139,191,155,.35), rgba(139,191,155,0) 70%);
}
.spotlight__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.spotlight__media { position: relative; }
.spotlight__media img {
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  border-radius: 90px 24px 90px 24px;
  box-shadow: var(--shadow-xl);
}
.spotlight__tag {
  position: absolute;
  top: -18px; left: -14px;
  background: var(--terra-600);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 22px rgba(163,68,31,.32);
  transform: rotate(-4deg);
}
.spotlight__quote {
  position: absolute;
  right: -12px; bottom: -26px;
  max-width: 260px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: 0 14px 36px rgba(30,45,37,.16);
  transform: rotate(2deg);
  transition: transform var(--transition);
}
.spotlight__quote:hover { transform: rotate(0deg) translateY(-3px); }
.spotlight__quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--neutral-800);
  margin-bottom: var(--sp-2);
}
.spotlight__quote cite {
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--terra-600);
}
.spotlight__content h2 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: var(--sp-5);
}
.spotlight__lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--neutral-700);
  margin-bottom: var(--sp-6);
}
.spotlight__points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.spotlight__points li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: .97rem;
  color: var(--neutral-700);
}
.spotlight__points li::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--terra-500);
  flex-shrink: 0;
  margin-top: .45em;
  box-shadow: 0 0 0 4px rgba(217,123,79,.18);
}
.spotlight__points li:nth-child(2)::before { background: var(--green-600); box-shadow: 0 0 0 4px rgba(74,124,89,.18); }
.spotlight__points li:nth-child(3)::before { background: var(--sky-500);   box-shadow: 0 0 0 4px rgba(63,151,187,.18); }
.spotlight__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.spotlight__option {
  background: rgba(255,255,255,.8);
  border: 2px solid rgba(200,145,74,.3);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.spotlight__option:hover {
  background: var(--white);
  border-color: var(--terra-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.spotlight__option-label {
  display: block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra-600);
  margin-bottom: var(--sp-2);
}
.spotlight__option strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: var(--sp-1);
}
.spotlight__option span:last-child {
  font-size: .85rem;
  color: var(--neutral-600);
  line-height: 1.55;
}
.spotlight__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }

@media (max-width: 1024px) {
  .spotlight__grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .spotlight__media { order: -1; max-width: 620px; }
  .spotlight__quote { right: 8px; bottom: -20px; }
}
@media (max-width: 768px) {
  .spotlight { padding-block: var(--sp-16); }
  .spotlight__media img { border-radius: 56px 18px 56px 18px; }
  .spotlight__quote { position: static; max-width: none; transform: none; margin-top: var(--sp-5); }
  .spotlight__options { grid-template-columns: 1fr; }
}

/* Photo hero for interior pages */
.page-hero--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-900);
  border-bottom: none;
  padding-top: calc(var(--nav-h) + var(--sp-14, 3.5rem));
  padding-bottom: var(--sp-16);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,36,23,.66) 0%, rgba(14,36,23,.34) 40%, rgba(14,36,23,.80) 100%),
    linear-gradient(100deg, rgba(26,61,40,.84) 0%, rgba(26,61,40,.28) 62%, rgba(163,68,31,.40) 100%);
}
.page-hero--photo h1 { color: var(--white); text-shadow: 0 2px 24px rgba(10,26,17,.45); }
.page-hero--photo p { color: rgba(255,255,255,.9); text-shadow: 0 1px 14px rgba(10,26,17,.4); }
.page-hero--photo .breadcrumb,
.page-hero--photo .breadcrumb a { color: rgba(255,255,255,.65); }
.page-hero--photo .breadcrumb a:hover { color: var(--white); }
.page-hero--photo .breadcrumb span { color: rgba(255,255,255,.35); }
.page-hero--photo .section-label { background: rgba(255,255,255,.16); color: var(--amber-300); }
.page-hero--photo .section-label::before { background: var(--amber-300); }
.page-hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-8); }
.page-hero--photo .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}
.page-hero--photo .btn--outline:hover { background: var(--white); color: var(--green-800); border-color: var(--white); }

/* Option cards (course vs 1:1) */
.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
.option-card {
  background: var(--white);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.option-card--course { border-color: var(--green-200); background: var(--mint); }
.option-card--solo   { border-color: var(--terra-100); background: var(--peach); }
.option-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.option-card__kicker {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: var(--sp-3);
}
.option-card--solo .option-card__kicker { color: var(--terra-600); }
.option-card h3 { margin-bottom: var(--sp-3); }
.option-card p { font-size: .95rem; color: var(--neutral-700); line-height: 1.7; max-width: none; }
.option-card .feature-list { margin-top: var(--sp-5); flex: 1; }
.option-card .btn { margin-top: var(--sp-6); align-self: flex-start; }
@media (max-width: 768px) {
  .option-cards { grid-template-columns: 1fr; }
}

/* Featured row inside the service list */
.service-row--featured {
  background: var(--terra-50);
  box-shadow: inset 4px 0 0 var(--terra-500);
}
.service-row__flag {
  display: inline-block;
  margin-left: var(--sp-3);
  vertical-align: middle;
  background: var(--terra-600);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: var(--radius-full);
}

/* Nav: highlighted feature link */
.nav__link--feature {
  color: var(--terra-700);
  background: var(--terra-50);
  border: 1px solid rgba(193,89,47,.22);
}
.nav__link--feature:hover,
.nav__link--feature.active {
  background: var(--terra-500);
  border-color: var(--terra-500);
  color: var(--white);
}
body.has-hero-image .nav:not(.scrolled) .nav__link--feature {
  background: rgba(217,123,79,.35);
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
body.has-hero-image .nav:not(.scrolled) .nav__link--feature:hover {
  background: var(--terra-500);
  border-color: var(--terra-500);
}

/* ============================================================
   SECTION BACKGROUNDS — alternate warm washes
   ============================================================ */
.bg-white   { background: var(--white) !important; }
.bg-neutral { background: var(--mint) !important; }
.bg-cream   { background: var(--cream) !important; }
.bg-peach   { background: var(--peach) !important; }

/* ============================================================
   TESTIMONIALS — colorful, hand-pinned feel
   ============================================================ */
.testimonial-card {
  border-radius: var(--radius-xl);
  border-width: 2px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 24px;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--amber-300);
  opacity: .35;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px) rotate(-.5deg);
  box-shadow: var(--shadow-md);
}
.testimonials-grid > .testimonial-card:nth-child(3n+1) { background: var(--mint);   border-color: var(--green-200); }
.testimonials-grid > .testimonial-card:nth-child(3n+2) { background: var(--peach);  border-color: var(--terra-100); }
.testimonials-grid > .testimonial-card:nth-child(3n)   { background: var(--skywash); border-color: var(--sky-100); }
.testimonials-grid > .testimonial-card--featured {
  background: linear-gradient(135deg, var(--terra-600) 0%, var(--green-800) 100%) !important;
  border-color: transparent !important;
}
.testimonial-card--featured::before { color: var(--amber-300); opacity: .45; }
.testimonial-card__avatar { border-radius: 18px 18px 18px 6px; }

/* ============================================================
   TEAM — polaroid feel
   ============================================================ */
.team-card {
  border-radius: var(--radius-xl);
  border-width: 2px;
  background: var(--white);
}
.team-card:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.team-grid > .team-card:nth-child(4n+1) { border-color: var(--green-200); }
.team-grid > .team-card:nth-child(4n+2) { border-color: var(--terra-100); }
.team-grid > .team-card:nth-child(4n+3) { border-color: var(--sky-100); }
.team-grid > .team-card:nth-child(4n+4) { border-color: var(--amber-300); }

/* ============================================================
   GALLERY — organic shapes
   ============================================================ */
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.gallery-item {
  aspect-ratio: 5/4;
  border-radius: 44px 14px 44px 14px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:nth-child(even) { border-radius: 14px 44px 14px 44px; }
.gallery-item:hover { transform: rotate(-1.5deg) scale(1.01); box-shadow: var(--shadow-lg); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .gallery-item { border-radius: 28px 10px 28px 10px; }
  .gallery-item:nth-child(even) { border-radius: 10px 28px 10px 28px; }
}

/* ============================================================
   MISSION + CTA + FOOTER warmth
   ============================================================ */
.mission__card { border-radius: var(--radius-xl); }
.mission__card-icon { border-radius: 20px 20px 20px 6px; }

.cta-banner { border-top: none; }
.cta-banner__inner { text-align: left; }

.footer { background: #14281b; }
.footer__social-link:hover { background: var(--terra-500); }
.footer__credit { padding-bottom: var(--sp-2); }

/* Info boxes / feature list a touch warmer */
.info-box { border-radius: var(--radius-xl); }
.feature-list li::before { background: var(--terra-100); color: var(--terra-700); }

/* ---- Responsive hero ---- */
@media (max-width: 1024px) {
  .hero--photo { min-height: 78vh; padding-bottom: var(--sp-20); }
  .hero__sticker { display: none; }
}
@media (max-width: 768px) {
  .hero--photo { min-height: 72vh; padding-top: calc(var(--nav-h) + var(--sp-12)); }
  .hero--photo .hero__headline { font-size: clamp(2.3rem, 8.5vw, 3.4rem); }
  .hero--photo .hero__sub { font-size: 1.05rem; }
  .hero--photo .hero__stats { gap: var(--sp-6); flex-wrap: wrap; }
  .hero__wave svg { height: 40px; }
  .nav__inner { gap: var(--sp-4); }
}

/* Narrow desktop: drop the phone number so the menu + CTA still fit */
@media (max-width: 1220px) {
  .nav__phone { display: none; }
  .nav__inner { gap: var(--sp-5); }
}
@media (max-width: 1120px) {
  .nav__inner { gap: var(--sp-3); }
  .nav__link, .nav__dropdown-trigger { padding-inline: var(--sp-2); font-size: .84rem; }
  .nav__logo-sub { display: none; }
  .nav__actions .btn { padding-inline: 1.1rem; font-size: .84rem; }
}

/* Small screens: keep the nav bar from overflowing */
@media (max-width: 560px) {
  .nav__phone { display: none; }
  .nav__logo-sub { display: none; }
  .nav__logo img { width: 40px; height: 40px; }
  .nav__logo-title { font-size: .95rem; }
}
