/* ─────────────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────────────── */
:root {
  /* Palette — warm community clinic meets premium clinical */
  --bg:           #FAF5EE;   /* warm cream */
  --bg-alt:       #FFFFFF;
  --bg-cream:     #F0E6D6;
  --bg-dark:      #0E2A23;   /* deep forest */
  --bg-dark-soft: #173D33;

  --text:         #1A2421;
  --text-soft:    #3A4844;
  --text-mute:    #6B7975;
  --text-on-dark: #F5EFE3;
  --text-on-dark-mute: #B5BFB9;

  --sage:         #4A7C6B;
  --sage-dark:    #2E5448;
  --sage-light:   #8FB3A4;
  --sage-tint:    #E4EEE8;

  --amber:        #D4915C;
  --amber-dark:   #B5743F;
  --amber-light:  #EAB99A;

  --gold:         #C99961;
  --line:         #E5DCC9;
  --line-soft:    #ECE4D2;
  --shadow-sm:    0 1px 2px rgba(46,84,72,.05), 0 1px 1px rgba(46,84,72,.04);
  --shadow-md:    0 6px 18px -6px rgba(46,84,72,.18), 0 2px 6px -2px rgba(46,84,72,.08);
  --shadow-lg:    0 24px 60px -24px rgba(46,84,72,.30), 0 8px 24px -8px rgba(46,84,72,.14);
  --shadow-xl:    0 40px 80px -30px rgba(14,42,35,.35);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizes — fluid */
  --fs-xs:    clamp(.75rem,  .72rem + .12vw, .8125rem);
  --fs-sm:    clamp(.875rem, .85rem + .12vw, .9375rem);
  --fs-base:  clamp(1rem,    .96rem + .18vw, 1.0625rem);
  --fs-lg:    clamp(1.125rem,1.07rem + .27vw, 1.25rem);
  --fs-xl:    clamp(1.25rem, 1.17rem + .4vw,  1.5rem);
  --fs-2xl:   clamp(1.5rem,  1.35rem + .75vw, 2rem);
  --fs-3xl:   clamp(2rem,    1.65rem + 1.75vw,3rem);
  --fs-4xl:   clamp(2.5rem,  2rem + 2.5vw,    4rem);
  --fs-5xl:   clamp(3rem,    2.1rem + 4.5vw,  5.5rem);
  --fs-6xl:   clamp(3.75rem, 2.4rem + 6.75vw, 7.5rem);

  /* Spacing */
  --container:    1200px;
  --container-wide: 1360px;
  --gutter:       clamp(1.25rem, 2.5vw, 2rem);
  --section-py:   clamp(4.5rem, 8vw, 8rem);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --radius-xl:    36px;

  /* Motion */
  --ease-out:     cubic-bezier(.22,1,.36,1);
  --ease-expo:    cubic-bezier(.16,1,.3,1);
  --ease-back:    cubic-bezier(.34,1.56,.64,1);
}

/* ─────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -.015em; line-height: 1.1; }
h1 { font-size: var(--fs-6xl); }
h2 { font-size: var(--fs-4xl); letter-spacing: -.02em; }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
p  { color: var(--text-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 500;
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-dark);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--sage-dark); opacity: .6;
}
.eyebrow.light { color: var(--amber-light); }
.eyebrow.light::before { background: var(--amber-light); opacity: .8; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-py); position: relative; }

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .65rem;
  padding: 1rem 1.6rem;
  font-family: var(--font-body); font-weight: 500; font-size: var(--fs-sm);
  letter-spacing: .02em;
  border-radius: 999px;
  transition: transform .4s var(--ease-out), background .3s var(--ease-out), color .3s, box-shadow .3s, border-color .3s;
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--sage-dark); color: var(--text-on-dark);
  box-shadow: 0 12px 30px -12px rgba(46,84,72,.55), inset 0 1px 0 rgba(255,255,255,.08);
}
.btn--primary:hover { background: #1F4439; transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(46,84,72,.65); }

.btn--amber {
  background: var(--amber); color: #fff;
  box-shadow: 0 12px 30px -12px rgba(181,116,63,.55), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--amber:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(181,116,63,.65); }

.btn--ghost {
  background: transparent; color: var(--sage-dark);
  border: 1px solid var(--sage-dark);
}
.btn--ghost:hover { background: var(--sage-dark); color: var(--text-on-dark); transform: translateY(-2px); }

.btn--ghost-light {
  background: transparent; color: var(--text-on-dark);
  border: 1px solid rgba(245,239,227,.35);
}
.btn--ghost-light:hover { background: var(--text-on-dark); color: var(--bg-dark); }

/* ─────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem var(--gutter);
  transition: background .3s var(--ease-out), backdrop-filter .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(250,245,238,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(229,220,201,.6);
  padding-block: .65rem;
}
.nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: #fff; font-family: var(--font-display); font-weight: 600;
  letter-spacing: -.02em;
  box-shadow: 0 6px 18px -6px rgba(46,84,72,.45), inset 0 1px 0 rgba(255,255,255,.18);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__logo { width: 44px; height: 44px; object-fit: contain; display: block; flex: 0 0 auto; }
.brand__text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text); letter-spacing: -.01em; }
.brand__tag { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute); font-weight: 500; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--text-soft);
  position: relative; padding: .25rem 0;
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: var(--sage-dark); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: .75rem; }
.nav__phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; color: var(--sage-dark); font-size: .92rem; }
.nav__phone svg { width: 16px; height: 16px; }

.nav__burger { display: none; width: 44px; height: 44px; place-items: center; border-radius: 12px; }
.nav__burger span {
  display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger span + span { margin-top: 5px; }

@media (max-width: 960px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: grid; }
}
@media (max-width: 640px) {
  .nav__cta .btn { padding: .8rem 1.1rem; font-size: .85rem; }
  .brand__tag { display: none; }
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(7rem, 12vh, 9rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(143,179,164,.25), transparent 60%),
    radial-gradient(45% 40% at 90% 10%, rgba(212,145,92,.18), transparent 65%),
    radial-gradient(70% 60% at 50% 100%, rgba(74,124,107,.12), transparent 70%),
    var(--bg);
}
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
  z-index: -1; pointer-events: none;
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
}
.hero__blob--1 { width: 480px; height: 480px; background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%); top: -120px; left: -120px; }
.hero__blob--2 { width: 520px; height: 520px; background: radial-gradient(circle, var(--amber-light) 0%, transparent 70%); top: 30%; right: -180px; }
.hero__blob--3 { width: 380px; height: 380px; background: radial-gradient(circle, var(--sage) 0%, transparent 70%); bottom: -100px; left: 30%; opacity: .25; }

.hero__grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1rem; }
}

.hero__content { max-width: 640px; position: relative; z-index: 2; }
.hero__pill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: .8rem; font-weight: 500; color: var(--sage-dark);
  margin-bottom: 1.75rem;
}
.hero__pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #5BB873; box-shadow: 0 0 0 4px rgba(91,184,115,.18);
  animation: pulse-dot 2.4s var(--ease-out) infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(91,184,115,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(91,184,115,.05); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-6xl);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
  font-weight: 400;
  position: relative; display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: .05em; height: .35em;
  background: linear-gradient(120deg, var(--amber-light) 0%, transparent 100%);
  z-index: -1; transform: skewX(-12deg);
  opacity: .55;
}
.hero__sub {
  font-size: var(--fs-lg);
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__trust {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 1rem;
  font-size: .85rem; color: var(--text-mute);
}
.hero__trust-avatars { display: flex; }
.hero__trust-avatars img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--bg); margin-left: -10px;
  box-shadow: var(--shadow-sm);
}
.hero__trust-avatars img:first-child { margin-left: 0; }
.hero__trust strong { color: var(--text); font-weight: 600; }

.hero__visual { position: relative; min-height: 480px; }
.hero__portrait-wrap {
  position: relative; width: 100%; max-width: 520px; margin-left: auto;
}
.hero__portrait-bg {
  position: absolute; inset: 8% 6% 6% 8%;
  border-radius: 50% 50% 48% 52% / 60% 55% 45% 40%;
  background: linear-gradient(135deg, var(--sage-tint) 0%, var(--cream-warm) 100%);
  z-index: 0;
  animation: morph-blob 18s var(--ease-out) infinite;
}
@keyframes morph-blob {
  0%, 100% { border-radius: 50% 50% 48% 52% / 60% 55% 45% 40%; }
  50%      { border-radius: 42% 58% 60% 40% / 50% 60% 40% 50%; }
}
.hero__portrait {
  position: relative; z-index: 2;
  width: 100%; height: auto;
  filter: drop-shadow(0 30px 60px rgba(14,42,35,.25));
}

.hero__floating-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .9rem;
}
.hero__floating-card svg { flex-shrink: 0; }
.hero__floating-card-text { line-height: 1.3; }
.hero__floating-card-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--sage-dark); }
.hero__floating-card-label { font-size: .72rem; color: var(--text-mute); }

.hero__card--1 { top: 12%; left: -2%; animation: float-y 7s ease-in-out infinite; }
.hero__card--2 { bottom: 14%; right: -2%; animation: float-y 6.2s ease-in-out -2s infinite; }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 640px) {
  .hero__visual { min-height: 360px; }
  .hero__card--1 { left: 0; padding: .7rem .9rem; }
  .hero__card--2 { right: 0; padding: .7rem .9rem; }
}

/* Marquee scroll-hint */
.hero__scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: .65rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-mute);
  z-index: 5;
}
.hero__scroll-hint span {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--text-mute));
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ─────────────────────────────────────────────
   USPs STRIP
   ───────────────────────────────────────────── */
.usps {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.usps__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
@media (max-width: 860px) { .usps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .usps__grid { grid-template-columns: 1fr; } }

.usp {
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.usp + .usp { border-left: 1px solid var(--line-soft); }
@media (max-width: 860px) {
  .usp:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-soft); }
  .usp:nth-child(4) { border-top: 1px solid var(--line-soft); }
}
@media (max-width: 480px) {
  .usp + .usp { border-left: 0; border-top: 1px solid var(--line-soft); }
}
.usp__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sage-tint); color: var(--sage-dark);
  display: grid; place-items: center;
  transition: background .4s var(--ease-out), color .4s, transform .4s;
}
.usp__icon svg { width: 24px; height: 24px; }
.usp:hover .usp__icon { background: var(--sage-dark); color: #fff; transform: translateY(-3px) rotate(-4deg); }
.usp__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text); }
.usp__desc { font-size: .92rem; color: var(--text-mute); line-height: 1.55; }

/* ─────────────────────────────────────────────
   ABOUT
   ───────────────────────────────────────────── */
.about__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; } }

.about__copy h2 { margin: 1.25rem 0 1.5rem; }
.about__lede {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}
.about__features {
  display: grid; gap: 1rem;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about__features li {
  display: flex; align-items: flex-start; gap: .9rem;
  list-style: none; font-size: var(--fs-sm); color: var(--text-soft);
}
.about__features svg {
  flex-shrink: 0; width: 22px; height: 22px; color: var(--sage-dark);
  margin-top: 2px;
}

.signature-card {
  position: relative;
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-soft) 100%);
  color: var(--text-on-dark);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.signature-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 35% at 80% 15%, rgba(212,145,92,.18), transparent 70%),
    radial-gradient(45% 30% at 0% 100%, rgba(74,124,107,.22), transparent 70%);
  pointer-events: none;
}
.signature-card__quote {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  line-height: 1.4;
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
  position: relative;
}
.signature-card__quote::before {
  content: "“";
  font-size: 4rem; line-height: 1; color: var(--amber);
  position: absolute; top: -1.5rem; left: -.5rem; opacity: .5;
}
.signature-card__attr {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(245,239,227,.15);
  position: relative;
}
.signature-card__avatar {
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(245,239,227,.25);
  flex-shrink: 0;
}
.signature-card__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.signature-card__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text-on-dark); }
.signature-card__role { font-size: .82rem; color: var(--text-on-dark-mute); margin-top: 2px; letter-spacing: .02em; }
.signature-card__provider { font-size: .72rem; color: var(--text-on-dark-mute); margin-top: 4px; opacity: .7; letter-spacing: .04em; }

/* ─────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────── */
.services { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); }
.services__head { max-width: 760px; margin: 0 auto clamp(3rem, 5vw, 4rem); text-align: center; }
.services__head .eyebrow { justify-content: center; }
.services__head .eyebrow::before { display: none; }
.services__head h2 { margin-top: 1rem; }
.services__head p { margin-top: 1.25rem; font-size: var(--fs-lg); color: var(--text-mute); }

.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem;
}
.service {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s, background .4s;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute; inset: auto -30% -30% auto;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, var(--sage-tint), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease-out), transform .5s;
}
.service:hover { transform: translateY(-6px); border-color: var(--sage-light); box-shadow: var(--shadow-md); }
.service:hover::before { opacity: 1; }

.service__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--sage-tint); color: var(--sage-dark);
  display: grid; place-items: center;
  transition: background .4s var(--ease-out), color .4s, transform .4s var(--ease-back);
}
.service__icon svg { width: 26px; height: 26px; }
.service:hover .service__icon { background: var(--sage-dark); color: #fff; transform: rotate(-6deg) scale(1.08); }

.service__title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--text); }
.service__desc { font-size: .9rem; color: var(--text-mute); line-height: 1.55; flex: 1; }
.service__arrow {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 500; color: var(--sage-dark);
  letter-spacing: .02em;
  transition: gap .3s var(--ease-out), color .3s;
  margin-top: .25rem;
}
.service__arrow svg { width: 14px; height: 14px; transition: transform .3s; }
.service:hover .service__arrow { gap: .7rem; }
.service:hover .service__arrow svg { transform: translateX(3px); }

/* ─────────────────────────────────────────────
   TEAM
   ───────────────────────────────────────────── */
.team { background: var(--bg); }
.team__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.team__head .eyebrow { margin-bottom: 1rem; }
.team__head-text { max-width: 580px; }
.team__head-text p { margin-top: 1rem; font-size: var(--fs-lg); color: var(--text-mute); }
@media (max-width: 760px) { .team__head { flex-direction: column; align-items: flex-start; } }

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.member {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--cream-warm);
  cursor: default;
  transition: transform .5s var(--ease-out);
}
.member__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: saturate(.92) contrast(1.02);
  transition: transform .8s var(--ease-out), filter .5s;
}
.member:hover { transform: translateY(-4px); }
.member:hover .member__img { transform: scale(1.06); filter: saturate(1.05) contrast(1.05); }

.member__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14,42,35,.05) 60%, rgba(14,42,35,.75) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  color: var(--text-on-dark);
}
.member__name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; line-height: 1.2; }
.member__role {
  font-size: .78rem; color: var(--text-on-dark-mute);
  margin-top: 4px; letter-spacing: .04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease-out), transform .4s;
}
.member:hover .member__role { opacity: 1; transform: translateY(0); }

.member--hiring {
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--text-on-dark);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 1.5rem;
}
.member--hiring .member__overlay { display: none; }
.member--hiring svg { width: 56px; height: 56px; color: rgba(245,239,227,.35); margin-bottom: 1rem; }
.member--hiring h4 { color: var(--text-on-dark); font-size: 1.4rem; margin-bottom: .75rem; }
.member--hiring p { font-size: .85rem; color: var(--text-on-dark-mute); line-height: 1.5; }

/* ─────────────────────────────────────────────
   TESTIMONIAL BAND
   ───────────────────────────────────────────── */
.testimonial {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 10% 20%, rgba(74,124,107,.22), transparent 70%),
    radial-gradient(40% 35% at 90% 80%, rgba(212,145,92,.16), transparent 70%);
  pointer-events: none;
}
.testimonial__inner {
  max-width: 920px; margin: 0 auto; padding-inline: var(--gutter);
  text-align: center; position: relative;
}
.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 8rem; line-height: 1; color: var(--amber); opacity: .35;
  margin-bottom: -2rem;
}
.testimonial__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.4rem);
  line-height: 1.45;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
}
.testimonial__attr { font-size: .85rem; color: var(--amber-light); letter-spacing: .18em; text-transform: uppercase; font-weight: 500; }
.testimonial__attr strong { display: block; font-family: var(--font-display); color: var(--text-on-dark); font-size: 1.15rem; letter-spacing: 0; text-transform: none; font-style: italic; font-weight: 500; margin-top: .25rem; }

/* ─────────────────────────────────────────────
   WHY US
   ───────────────────────────────────────────── */
.why { background: var(--bg-alt); }
.why__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .why__grid { grid-template-columns: 1fr; } }
.why__copy h2 { margin: 1rem 0 1.5rem; }
.why__copy p { font-size: var(--fs-lg); color: var(--text-soft); line-height: 1.6; }
.why__copy p + p { margin-top: 1rem; }
.why__areas {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: .55rem;
}
.why__areas span {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem;
  background: var(--sage-tint); color: var(--sage-dark);
  border-radius: 999px; font-size: .82rem; font-weight: 500;
}
.why__areas svg { width: 12px; height: 12px; }

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.stat {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative; overflow: hidden;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.8rem + 2.5vw, 3.4rem);
  line-height: 1; font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: -.03em;
}
.stat__num em { font-style: normal; color: var(--amber); font-weight: 600; }
.stat__label { font-size: .85rem; color: var(--text-mute); margin-top: .75rem; line-height: 1.5; }
.stat--accent { background: linear-gradient(160deg, var(--sage) 0%, var(--sage-dark) 100%); color: var(--text-on-dark); border-color: transparent; }
.stat--accent .stat__num { color: var(--text-on-dark); }
.stat--accent .stat__num em { color: var(--amber-light); }
.stat--accent .stat__label { color: var(--text-on-dark-mute); }

/* ─────────────────────────────────────────────
   BOOKING BAND
   ───────────────────────────────────────────── */
.booking-band {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: linear-gradient(120deg, var(--sage-dark) 0%, var(--bg-dark) 100%);
  color: var(--text-on-dark);
  overflow: hidden;
  isolation: isolate;
}
.booking-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(35% 60% at 90% 50%, rgba(212,145,92,.25), transparent 65%),
    radial-gradient(45% 70% at 0% 100%, rgba(143,179,164,.18), transparent 65%);
}
.booking-band__inner {
  max-width: var(--container);
  margin: 0 auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 760px) { .booking-band__inner { grid-template-columns: 1fr; text-align: center; } }
.booking-band h2 { font-size: var(--fs-5xl); line-height: 1; margin-bottom: 1.25rem; color: var(--text-on-dark); }
.booking-band h2 em { font-style: italic; color: var(--amber-light); font-weight: 400; }
.booking-band p { color: var(--text-on-dark-mute); font-size: var(--fs-lg); max-width: 540px; }
@media (max-width: 760px) { .booking-band p { margin-inline: auto; } }
.booking-band__cta { display: flex; flex-direction: column; gap: 1rem; align-items: stretch; }
@media (max-width: 760px) { .booking-band__cta { align-items: center; } }
.booking-band__cta .btn { font-size: var(--fs-base); padding: 1.15rem 1.85rem; }
.booking-band__cta-note { font-size: .82rem; color: var(--text-on-dark-mute); display: inline-flex; align-items: center; gap: .5rem; }
.booking-band__cta-note svg { width: 16px; height: 16px; color: var(--amber-light); }

/* ─────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────── */
.contact { background: var(--bg); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__info { display: grid; gap: 2rem; }
.contact__info h2 { margin: 1rem 0 1rem; }
.contact__info > p { color: var(--text-mute); font-size: var(--fs-base); line-height: 1.6; }

.info-list { display: grid; gap: 1.25rem; margin-top: .5rem; }
.info-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start;
  padding: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s var(--ease-out);
}
.info-item:hover { border-color: var(--sage-light); transform: translateY(-2px); }
.info-item__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--sage-tint); color: var(--sage-dark);
  display: grid; place-items: center;
}
.info-item__icon svg { width: 22px; height: 22px; }
.info-item__label { font-size: .72rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: .14em; font-weight: 500; }
.info-item__value { color: var(--text); font-size: 1rem; font-weight: 500; margin-top: 2px; line-height: 1.45; }
.info-item__value a { color: var(--text); transition: color .25s; }
.info-item__value a:hover { color: var(--sage-dark); }
.info-item__sub { font-size: .82rem; color: var(--text-mute); margin-top: 4px; }

.hours-table { display: grid; gap: .5rem; margin-top: .35rem; }
.hours-row {
  display: grid; grid-template-columns: 1fr auto;
  font-size: .9rem;
  padding-block: .35rem;
  border-bottom: 1px dashed var(--line);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row__day { color: var(--text); font-weight: 500; }
.hours-row__time { color: var(--text-mute); font-variant-numeric: tabular-nums; }
.hours-row--closed .hours-row__time { color: var(--amber-dark); }

.contact__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-cream);
  min-height: 480px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.contact__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; filter: contrast(.95) saturate(.9);
}
.contact__map-overlay {
  position: absolute; left: 1.5rem; bottom: 1.5rem; right: 1.5rem; z-index: 2;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.contact__map-overlay-text strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--text); font-weight: 600; }
.contact__map-overlay-text span { font-size: .8rem; color: var(--text-mute); }
.contact__map-overlay a {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .82rem; font-weight: 500; color: var(--sage-dark);
  padding: .55rem .85rem; border-radius: 999px;
  background: var(--sage-tint);
  transition: background .25s;
}
.contact__map-overlay a:hover { background: var(--sage); color: #fff; }
.contact__map-overlay a svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-mute);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .brand__mark { background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%); }
.footer__brand .brand__name { color: var(--text-on-dark); }
.footer__brand .brand__tag { color: var(--text-on-dark-mute); }
.footer__about {
  margin-top: 1.5rem;
  font-size: .9rem;
  color: var(--text-on-dark-mute);
  line-height: 1.6;
  max-width: 320px;
}
.footer__col h5 {
  font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-on-dark); font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .65rem; }
.footer__col a {
  font-size: .92rem; color: var(--text-on-dark-mute);
  transition: color .25s, padding-left .25s;
}
.footer__col a:hover { color: var(--text-on-dark); padding-left: 4px; }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245,239,227,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .82rem; color: var(--text-on-dark-mute);
}
.footer__bottom a { color: var(--text-on-dark-mute); transition: color .25s; }
.footer__bottom a:hover { color: var(--text-on-dark); }
.footer__credentials { font-size: .78rem; opacity: .7; line-height: 1.6; max-width: 640px; margin-top: 1rem; }

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS — visible by default; JS hides on init.
   Ensures no-JS visitors (and search engines, previewers, screenshot tools)
   see fully-rendered content, not blanks.
   ───────────────────────────────────────────── */
.reveal { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal-stagger > * { opacity: 0; transform: translateY(20px); }
.js .hero__pill,
.js .hero__title,
.js .hero__sub,
.js .hero__cta > *,
.js .hero__trust,
.js .hero__portrait,
.js .hero__portrait-bg,
.js .hero__floating-card { opacity: 0; }

/* ─────────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
