/* =====================================================
   The Natural Vet — shared site styles
   ===================================================== */

:root{
  --cream:#ECE4D6;             /* base background */
  --cream-card:#F4EFE7;        /* cards inside cream sections */
  --cream-warm:#E2D8C2;
  --ink:#2a2a26;
  --ink-soft:#4a4a44;
  --muted:#7a7468;

  --forest:#1F3A2F;            /* dark section background */
  --forest-deep:#192F26;       /* cards on dark section */
  --forest-darker:#152821;     /* darker still */
  --forest-line:#2e5340;

  --gold:#c39559;
  --biscuit:#c5a378;
  --biscuit-deep:#b48e5e;

  --line:#d3c9ae;
  --line-soft:#dccfae;
  --serif:'Cormorant Garamond', 'Garamond', serif;
  --sans:'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,video{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

/* ===== header ===== */
.site-header{
  position:absolute;top:0;left:0;right:0;z-index:50;
  padding:24px 46px;
  display:flex;align-items:center;justify-content:space-between;
  transition:background-color .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header .brand{display:flex;align-items:center}
.site-header .brand img{width:108px;height:108px;display:block;transition:width .3s, height .3s}
.site-header.scrolled{background:#fff;box-shadow:0 6px 18px rgba(20,30,20,.06);padding:14px 46px}
.site-header.scrolled .brand img{width:78px;height:78px}
.site-header.solid{background:#fff;box-shadow:0 6px 18px rgba(20,30,20,.06);padding:14px 46px}
.site-header.solid .brand img{width:78px;height:78px}
.site-header.solid .menu-toggle{
  color:var(--forest);background:rgba(31,58,43,.06);border-color:rgba(31,58,43,.18);
  width:54px;height:54px;
}
.menu-toggle{
  background:rgba(255,255,255,.18);
  border:1.5px solid rgba(255,255,255,.7);
  cursor:pointer;
  width:64px;height:64px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;transition:color .35s ease, background .35s ease, border-color .35s ease, width .3s, height .3s;
  backdrop-filter:blur(4px);
}
.site-header.scrolled .menu-toggle{
  color:var(--forest);background:rgba(31,58,43,.06);border-color:rgba(31,58,43,.18);
  width:54px;height:54px;
}
.menu-toggle svg{width:26px;height:26px}

/* nav drawer */
.nav-drawer{
  position:fixed;inset:0;background:rgba(15,28,20,.94);z-index:60;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .35s ease;
}
.nav-drawer.open{opacity:1;pointer-events:auto}
.nav-drawer ul{list-style:none;padding:0;margin:0;text-align:center}
.nav-drawer li{margin:14px 0}
.nav-drawer a{
  font-family:var(--serif);font-size:48px;color:#f1ebdc;font-weight:500;
  letter-spacing:.01em;display:inline-block;
}
.nav-drawer a:hover{font-style:italic;color:var(--biscuit)}
.nav-close{
  position:absolute;top:30px;right:46px;background:transparent;border:0;cursor:pointer;
  color:#f1ebdc;width:54px;height:54px;
}

/* ===== homepage hero ===== */
.hero{
  position:relative;width:100%;height:100vh;min-height:680px;
  overflow:hidden;color:#fff;
  display:flex;align-items:center;justify-content:center;
}
.hero video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;
}
.hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(20,35,25,.30) 0%, rgba(15,25,18,.45) 60%, rgba(15,25,18,.55) 100%);
  z-index:1;
}
.hero-inner{position:relative;z-index:2;text-align:center;padding:0 24px;max-width:1100px}
.hero h1{
  font-family:var(--serif);
  font-weight:500;
  font-size:clamp(54px,7.4vw,98px);
  line-height:1.04;
  margin:0 0 24px;
  letter-spacing:-.005em;
}
.hero h1 em{font-style:italic;font-weight:500;display:block}
.hero .sub{
  font-family:var(--sans);
  font-size:17px;
  letter-spacing:.02em;
  opacity:.95;
  margin-bottom:38px;
  font-weight:400;
}
.hero .ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* ===== inner page hero (shorter) ===== */
.page-hero{
  position:relative;
  min-height:520px;
  display:flex;align-items:center;justify-content:center;
  text-align:center;color:#fff;overflow:hidden;
  padding:180px 24px 110px;
}
.page-hero img,.page-hero video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 25%;z-index:0;
}
.page-hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(20,35,25,.35) 0%, rgba(15,25,18,.55) 100%);
  z-index:1;
}
.page-hero-inner{position:relative;z-index:2;max-width:1000px}
.page-hero .eyebrow{color:#cfc8b0;display:inline-flex;margin:0 auto 18px}
.page-hero .eyebrow::before{background:#cfc8b0}
.page-hero h1{
  font-family:var(--serif);font-weight:500;
  font-size:clamp(46px,5.4vw,76px);line-height:1.08;margin:0 0 20px;letter-spacing:-.005em;
}
.page-hero h1 em{font-style:italic;font-weight:500}
.page-hero .sub{
  font-size:16px;opacity:.92;max-width:680px;margin:0 auto;line-height:1.65;
}

/* ===== buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:16px 30px;border-radius:999px;
  font-family:var(--sans);font-size:13px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  cursor:pointer;border:1.5px solid transparent;transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--biscuit);color:#fff}
.btn-primary:hover{background:var(--biscuit-deep)}
.btn-ghost{background:transparent;color:#fff;border-color:#fff}
.btn-ghost:hover{background:#fff;color:var(--forest)}
.btn-outline{background:transparent;color:var(--forest);border-color:var(--forest)}
.btn-outline:hover{background:var(--forest);color:#fff}
.btn-outline-light{background:transparent;color:#f4efe7;border-color:#f4efe7}
.btn-outline-light:hover{background:#f4efe7;color:var(--forest)}

/* ===== shared layout ===== */
.wrap{max-width:1560px;margin:0 auto;padding:0 48px}
.eyebrow{
  font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:.32em;text-transform:uppercase;
  color:var(--muted);display:inline-flex;align-items:center;gap:14px;
}
.eyebrow::before{content:"";display:inline-block;width:40px;height:1px;background:var(--muted)}
.eyebrow.light{color:#cfc8b0}
.eyebrow.light::before{background:#cfc8b0}

.num-badge{
  font-family:var(--serif);font-style:italic;font-weight:500;
  font-size:22px;color:var(--gold);line-height:1;
  display:block;margin-bottom:18px;letter-spacing:.04em;
}

.section{padding:120px 0}
.section-tight{padding:80px 0}
.section h2,.section-tight h2{
  font-family:var(--serif);font-weight:500;
  font-size:clamp(34px,3.4vw,52px);line-height:1.18;margin:0 0 20px;color:var(--forest);letter-spacing:-.005em;
}
.section h2 em,.section-tight h2 em{font-style:italic;font-weight:500}
.section p.lede,.section-tight p.lede{font-size:16.5px;color:var(--ink-soft);max-width:720px;line-height:1.75}
.section.dark,.section-tight.dark{background:var(--forest);color:#f4efe7}
.section.dark h2,.section-tight.dark h2{color:#f5efdf}
.section.dark p.lede,.section-tight.dark p.lede{color:#d4cdb5}

/* ===== about intro (home) ===== */
.about{
  background:var(--cream);
  padding:140px 0 110px;
  position:relative;overflow:hidden;
}
.about .leaf{
  position:absolute;left:-110px;top:90px;width:340px;opacity:.7;
  pointer-events:none;
}
.about-grid{
  display:grid;grid-template-columns:200px 1fr;gap:80px;
  align-items:start;
  position:relative;z-index:2;
}
.about-grid .label{padding-top:12px}
.about h2{
  font-family:var(--serif);font-weight:500;
  font-size:clamp(34px,3.4vw,52px);line-height:1.22;margin:0 0 18px;max-width:820px;color:var(--forest);
}
.about h2 em{font-style:italic;font-weight:500}
.about .lede{
  font-size:16.5px;color:var(--ink-soft);max-width:720px;margin:0;line-height:1.75;
}
.pillars{
  margin-top:72px;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  position:relative;z-index:2;
}
.pillar{
  background:var(--cream-card);
  border-radius:8px;
  padding:36px 34px 38px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.pillar:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(50,60,40,.08)}
.pillar h3{
  font-family:var(--serif);font-weight:600;font-size:24px;
  color:var(--forest);margin:0 0 12px;letter-spacing:-.005em;
}
.pillar p{font-size:15px;color:var(--ink-soft);margin:0;line-height:1.75}

/* ===== quote strip (full-bleed photo with caption) ===== */
.quote-strip{
  position:relative;height:520px;overflow:hidden;margin:0;
}
.quote-strip img{width:100%;height:100%;object-fit:cover;display:block}
.quote-strip::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(25,47,38,0) 0%, rgba(25,47,38,.15) 40%, rgba(25,47,38,.7) 100%);
  pointer-events:none;
}
.quote-strip .qcap{position:absolute;left:0;right:0;bottom:0;padding:0 0 56px;z-index:2;color:#f4efe7}
.quote-strip .qcap-inner{max-width:1560px;margin:0 auto;padding:0 48px}
.quote-strip .qcap p{
  margin:0;font-family:var(--serif);font-style:italic;font-weight:500;
  font-size:clamp(22px,2.2vw,32px);line-height:1.35;max-width:760px;color:#f4efe7;
}

/* ===== dark differently grid ===== */
.differently{background:var(--forest);color:#f1ebdc;padding:130px 0 140px;position:relative}
.differently .head{display:grid;grid-template-columns:200px 1fr;gap:80px;align-items:start;margin-bottom:64px}
.differently .eyebrow{padding-top:12px}
.differently h2{
  font-family:var(--serif);font-weight:500;
  font-size:clamp(36px,3.8vw,56px);line-height:1.16;margin:0;max-width:920px;color:#f5efdf;
}
.differently h2 em{font-style:italic;font-weight:500}
.diff-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.diff-card{
  background:var(--forest-deep);
  border-radius:8px;padding:34px 30px 36px;min-height:240px;
  transition:transform .3s ease, background .3s ease;
  display:flex;flex-direction:column;
}
.diff-card:hover{transform:translateY(-4px);background:#0f211a}
.diff-card .num-badge{color:var(--gold)}
.diff-card h3{
  font-family:var(--serif);font-weight:600;font-size:24px;
  margin:0 0 12px;color:#f5efdf;letter-spacing:-.005em;line-height:1.22;
}
.diff-card p{font-size:14.5px;color:#d8d2bb;margin:0;line-height:1.7;opacity:.92}
.diff-note{margin-top:38px;font-size:14px;color:#bdb6a0;max-width:640px;line-height:1.7}
.diff-note strong{color:#e7e0c5;font-weight:600}

/* ===== services intro panel ===== */
.services-intro{background:var(--cream);padding:140px 0 130px}
.si-grid{display:grid;grid-template-columns:.95fr 1.1fr;gap:90px;align-items:center}
.si-photo-wrap{position:relative;padding:24px 0 24px 24px}
.si-photo-wrap::before{
  content:"";position:absolute;left:0;top:0;bottom:0;right:80px;
  border:1.5px solid var(--forest);border-radius:6px;z-index:0;
}
.si-photo{
  position:relative;z-index:1;border-radius:6px;overflow:hidden;height:620px;
  box-shadow:0 18px 40px rgba(40,50,35,.12);
}
.si-photo img{width:100%;height:100%;object-fit:cover}
.si-text .eyebrow{margin-bottom:22px}
.si-text h2{
  font-family:var(--serif);font-weight:500;font-size:clamp(34px,3.2vw,50px);
  line-height:1.18;color:var(--forest);margin:0 0 18px;letter-spacing:-.005em;
}
.si-text h2 em{font-style:italic;font-weight:500}
.si-text .lede{font-size:16px;color:var(--ink-soft);margin:0 0 28px;line-height:1.75;max-width:620px}
.si-rule{height:1px;background:var(--line);margin:18px 0 26px}
.si-services{display:grid;grid-template-columns:1fr 1fr;gap:22px 48px;margin:0;padding:0;list-style:none}
.si-services li{font-size:15px;color:var(--ink-soft);line-height:1.55}
.si-services li strong{display:block;color:var(--forest);font-family:var(--serif);font-weight:600;font-size:19px;margin-bottom:3px}
.si-cta{margin-top:40px;display:flex;gap:18px;flex-wrap:wrap;align-items:center}
.si-cta .small{font-size:15px;color:var(--ink-soft)}

/* ===== holistic depth (cream, interactive) ===== */
.holistic{
  background:var(--cream);color:var(--ink);
  padding:130px 0 110px;text-align:center;position:relative;overflow:hidden;
}
.holistic .leaf-tr{
  position:absolute;right:-60px;top:60px;width:360px;opacity:.55;pointer-events:none;
  transform:rotate(8deg);
}
.holistic .eyebrow{margin:0 auto 24px;display:inline-flex}
.holistic h2{
  font-family:var(--serif);font-weight:500;font-size:clamp(38px,3.8vw,60px);line-height:1.14;
  color:var(--forest);margin:0 auto 22px;max-width:900px;letter-spacing:-.005em;
}
.holistic h2 em{font-style:italic;font-weight:500}
.holistic .lede{max-width:680px;margin:0 auto 70px;font-size:16.5px;color:var(--ink-soft);line-height:1.75}

.holistic-stage{
  position:relative;border-radius:6px;overflow:hidden;
  height:540px;margin:0 0 60px;
  box-shadow:0 18px 50px rgba(40,55,40,.10);
}
.holistic-stage img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:opacity .55s ease, transform 4s ease;
  transform:scale(1.02);
}
.holistic-stage img.swap-out{opacity:0}
.holistic-stage .hcap{
  position:absolute;right:32px;bottom:24px;z-index:2;
  font-family:var(--serif);font-style:italic;font-weight:500;
  font-size:clamp(18px,1.4vw,22px);color:#f4efe7;
  text-shadow:0 2px 14px rgba(0,0,0,.35);
  transition:opacity .35s ease;
}
.holistic-stage .hcap.swap-out{opacity:0}
.holistic-stage::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:42%;
  background:linear-gradient(180deg, rgba(20,35,25,0), rgba(20,35,25,.55));
  pointer-events:none;z-index:1;
}

.hc-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px}
.hc-card{
  background:var(--cream-card);border-radius:8px;padding:32px 28px 34px;min-height:240px;
  transition:transform .3s ease, box-shadow .3s ease, background .25s ease;
  display:flex;flex-direction:column;text-align:left;
  border:0;font-family:inherit;color:inherit;cursor:pointer;
  position:relative;
}
.hc-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(50,60,40,.08)}
.hc-card.is-active{
  background:#fff;
  box-shadow:0 18px 36px rgba(40,55,40,.10);
  transform:translateY(-4px);
}
.hc-card.is-active::before{
  content:"";position:absolute;left:28px;top:0;width:42px;height:3px;
  background:var(--biscuit);border-radius:0 0 4px 4px;
}
.hc-card .num-badge{color:var(--gold)}
.hc-card h3{
  font-family:var(--serif);font-weight:600;font-size:22px;color:var(--forest);
  margin:0 0 12px;letter-spacing:-.005em;line-height:1.2;
}
.hc-card p{font-size:14.5px;color:var(--ink-soft);margin:0;line-height:1.7}

/* ===== reviews ===== */
.reviews{background:var(--cream);padding:90px 0 100px;border-top:1px solid var(--line-soft)}
.reviews-head{text-align:center;max-width:760px;margin:0 auto 44px}
.reviews-head h2{
  font-family:var(--serif);font-weight:500;font-size:clamp(34px,3.6vw,52px);
  color:var(--forest);line-height:1.1;margin:0 0 18px;
}
.reviews-head h2 em{font-style:italic;font-weight:500}
.reviews-head .lede{font-size:17px;line-height:1.65;color:var(--ink-soft);margin:0}
.vhd-widget-wrap{max-width:1100px;margin:0 auto}
.vhd-widget-wrap .vhdReviewWidget-7736{width:100%}

/* ===== closing CTA ===== */
.closing{
  position:relative;min-height:760px;color:#fff;
  display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;
  padding:160px 0;background:var(--forest-darker);
}
.closing img{
  position:absolute;left:0;width:100%;
  top:-8%;height:116%;
  object-fit:cover;object-position:50% 30%;z-index:0;
}
.closing::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,25,18,.25),rgba(15,25,18,.6));z-index:1}
.closing-inner{position:relative;z-index:2;max-width:1000px;padding:0 24px}
.closing h2{
  font-family:var(--serif);font-weight:500;font-size:clamp(44px,5.4vw,76px);
  line-height:1.08;margin:0 0 36px;color:#fff;
}
.closing h2 em{font-style:italic;font-weight:500}

/* ===== footer ===== */
.footer{background:var(--forest-darker);color:#d8d2bb;padding:90px 0 36px}
.footer-grid{display:grid;grid-template-columns:1.1fr 1fr 1fr 1fr;gap:50px;align-items:start}
.footer-brand img{width:170px;height:170px;display:block}
.footer h4{
  font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:.28em;text-transform:uppercase;
  color:#b6af96;margin:0 0 18px;
}
.footer ul{list-style:none;padding:0;margin:0}
.footer li{margin-bottom:10px;font-size:15px}
.footer a:hover{color:#fff}
.footer p{font-size:15px;margin:0 0 6px;line-height:1.6}
.footer .meta{
  margin-top:70px;padding-top:28px;border-top:1px solid #2a4231;
  display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;
  font-size:13px;color:#9d9682;
}
.footer .meta a{color:#c7c0a8}
.footer .meta a:hover{color:#fff}

/* =====================================================
   Inner pages
   ===================================================== */

/* generic two-col intro */
.intro-grid{
  display:grid;grid-template-columns:200px 1fr;gap:80px;align-items:start;
}
.intro-grid .label{padding-top:12px}
.intro-grid h2{margin-top:0}
.intro-grid p{font-size:16.5px;color:var(--ink-soft);line-height:1.75;max-width:760px}
.intro-grid p + p{margin-top:18px}

/* About page split blocks */
.split{
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
}
.split.reverse > *:first-child{order:2}
.split-photo{position:relative;border-radius:6px;overflow:hidden;height:520px}
.split-photo img{width:100%;height:100%;object-fit:cover}
.split-photo.framed{padding:24px 0 24px 24px}
.split-photo.framed::before{
  content:"";position:absolute;left:0;top:0;bottom:0;right:80px;
  border:1.5px solid var(--forest);border-radius:6px;z-index:0;
}
.split-photo.framed > .inner{position:relative;z-index:1;border-radius:6px;overflow:hidden;height:520px;box-shadow:0 18px 40px rgba(40,50,35,.12)}
.split-photo.framed > .inner img{width:100%;height:100%;object-fit:cover}
.split-text .eyebrow{margin-bottom:18px}
.split-text h2{font-family:var(--serif);font-weight:500;font-size:clamp(32px,3vw,46px);line-height:1.18;color:var(--forest);margin:0 0 16px;letter-spacing:-.005em}
.split-text h2 em{font-style:italic;font-weight:500}
.split-text p{font-size:16px;color:var(--ink-soft);margin:0 0 16px;line-height:1.75}
.split-text p:last-of-type{margin-bottom:24px}

/* USP grid (3 or 4 cards on cream) */
.usp-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:50px}
.usp-card{
  background:var(--cream-card);border-radius:8px;padding:32px 28px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.usp-card:hover{transform:translateY(-4px);box-shadow:0 14px 28px rgba(50,60,40,.08)}
.usp-card .num-badge{color:var(--gold)}
.usp-card h3{font-family:var(--serif);font-weight:600;font-size:22px;color:var(--forest);margin:0 0 10px;letter-spacing:-.005em}
.usp-card p{font-size:14.5px;color:var(--ink-soft);margin:0;line-height:1.7}

/* Team page */
.team-filter{
  display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin:50px 0 60px;
}
.team-filter button{
  background:transparent;border:1.5px solid var(--line);color:var(--forest);
  font-family:var(--sans);font-size:13px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  padding:12px 22px;border-radius:999px;cursor:pointer;transition:all .2s ease;
}
.team-filter button:hover{border-color:var(--forest)}
.team-filter button.is-active{background:var(--forest);color:#fff;border-color:var(--forest)}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.team-card{
  background:var(--cream-card);border-radius:10px;overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
  display:flex;flex-direction:column;
}
.team-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(50,60,40,.10)}
.team-card .photo{position:relative;height:340px;overflow:hidden;background:#d8cfb5}
.team-card .photo img{width:100%;height:100%;object-fit:cover;object-position:50% 15%;transition:transform .55s ease}
.team-card{cursor:pointer;position:relative}
.team-card:focus{outline:2px solid var(--forest);outline-offset:3px}
.team-card .read-more{
  display:inline-flex;align-items:center;gap:6px;margin-top:14px;
  font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--biscuit-deep);
}
.team-card .read-more::after{content:"\2192";font-size:15px;transition:transform .25s ease}
.team-card:hover .read-more::after{transform:translateX(4px)}
.bio-full{display:none}

/* team bio modal */
.team-modal-backdrop{
  position:fixed;inset:0;background:rgba(15,25,18,.55);z-index:200;
  display:flex;align-items:center;justify-content:center;padding:24px;
  opacity:0;visibility:hidden;transition:opacity .3s ease, visibility .3s ease;
}
.team-modal-backdrop.is-open{opacity:1;visibility:visible}
.team-modal{
  background:var(--cream);border-radius:16px;
  max-width:720px;width:100%;max-height:90vh;overflow:auto;
  position:relative;box-shadow:0 40px 80px rgba(0,0,0,.35);
  transform:translateY(10px);transition:transform .3s ease;
}
.team-modal-backdrop.is-open .team-modal{transform:translateY(0)}
.team-modal-close{
  position:absolute;top:16px;right:16px;background:rgba(255,255,255,.95);
  border:0;width:40px;height:40px;border-radius:50%;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  color:var(--forest);z-index:2;box-shadow:0 4px 10px rgba(0,0,0,.15);
}
.team-modal-close:hover{background:#fff}
.team-modal .modal-photo{width:100%;height:340px;overflow:hidden;background:#d8cfb5;border-radius:16px 16px 0 0}
.team-modal .modal-photo img{width:100%;height:100%;object-fit:cover;object-position:50% 15%}
.team-modal .modal-body{padding:32px 40px 40px}
.team-modal .modal-role{
  font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.28em;text-transform:uppercase;
  color:var(--biscuit-deep);margin-bottom:10px;
}
.team-modal .modal-name{
  font-family:var(--serif);font-weight:500;font-size:34px;line-height:1.15;
  color:var(--forest);margin:0 0 22px;
}
.team-modal .modal-bio{
  font-family:var(--sans);font-size:16px;line-height:1.7;color:#3a3d34;
}
.team-modal .modal-bio p{margin:0 0 14px}
.team-modal .modal-bio p:last-child{margin-bottom:0}
body.modal-open{overflow:hidden}
@media (max-width:600px){
  .team-modal .modal-photo{height:260px}
  .team-modal .modal-body{padding:24px 24px 28px}
  .team-modal .modal-name{font-size:28px}
}
.team-card:hover .photo img{transform:scale(1.04)}
.team-card .body{padding:24px 26px 28px}
.team-card .role{
  font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.28em;text-transform:uppercase;
  color:var(--biscuit-deep);margin-bottom:8px;
}
.team-card h3{font-family:var(--serif);font-weight:600;font-size:22px;color:var(--forest);margin:0 0 10px;letter-spacing:-.005em}
.team-card p{font-size:14px;color:var(--ink-soft);margin:0;line-height:1.65}

/* Services page (accordion / expandable cards) */
.service-cards{display:grid;grid-template-columns:1fr;gap:14px}
.service-row{
  background:var(--cream-card);border-radius:10px;overflow:hidden;
  transition:background .25s ease;
}
.service-row summary{
  list-style:none;cursor:pointer;
  display:grid;grid-template-columns:90px 1fr auto;gap:28px;align-items:center;
  padding:30px 36px;
}
.service-row summary::-webkit-details-marker{display:none}
.service-row .s-num{
  font-family:var(--serif);font-style:italic;font-size:26px;color:var(--gold);font-weight:500;
}
.service-row h3{font-family:var(--serif);font-weight:600;font-size:24px;color:var(--forest);margin:0;letter-spacing:-.005em}
.service-row .plus{
  width:38px;height:38px;border-radius:50%;border:1.5px solid var(--forest);color:var(--forest);
  display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:300;
  transition:transform .3s ease, background .25s ease;
}
.service-row[open] .plus{transform:rotate(45deg);background:var(--forest);color:#fff}
.service-row .s-body{padding:0 36px 32px 154px}
.service-row .s-body p{font-size:15px;color:var(--ink-soft);line-height:1.75;margin:0 0 14px;max-width:780px}
.service-row .s-body ul{margin:0;padding:0 0 0 18px;color:var(--ink-soft);font-size:15px;line-height:1.75}

/* Health Club tier grid */
.tier-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:50px}
.tier-card{
  background:var(--cream-card);border-radius:10px;padding:40px 36px 44px;
  display:flex;flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.tier-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(50,60,40,.10)}
.tier-card.featured{background:var(--forest);color:#f4efe7}
.tier-card.featured h3{color:#f5efdf}
.tier-card.featured .price-num{color:#f5efdf}
.tier-card.featured .per{color:#cfc8b0}
.tier-card.featured ul li{color:#d4cdb5}
.tier-card.featured ul li::before{color:var(--biscuit)}
.tier-card .label{
  font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.28em;text-transform:uppercase;
  color:var(--biscuit-deep);margin-bottom:10px;
}
.tier-card.featured .label{color:var(--biscuit)}
.tier-card h3{font-family:var(--serif);font-weight:600;font-size:30px;color:var(--forest);margin:0 0 8px;letter-spacing:-.005em}
.tier-card .price{display:flex;align-items:baseline;gap:8px;margin-bottom:24px}
.tier-card .price-num{font-family:var(--serif);font-weight:500;font-size:46px;color:var(--forest);line-height:1}
.tier-card .per{font-size:13px;color:var(--muted)}
.tier-card ul{list-style:none;padding:0;margin:0 0 30px;display:flex;flex-direction:column;gap:10px;flex:1}
.tier-card ul li{position:relative;padding-left:24px;font-size:15px;color:var(--ink-soft);line-height:1.55}
.tier-card ul li::before{content:"+";position:absolute;left:0;top:0;color:var(--biscuit-deep);font-weight:600}

/* Prices page */
.price-block{margin-bottom:60px}
.price-block h3{
  font-family:var(--serif);font-weight:600;font-size:28px;color:var(--forest);
  margin:0 0 8px;letter-spacing:-.005em;
}
.price-block .ph-note{font-size:14px;color:var(--muted);margin:0 0 22px;max-width:680px}
.price-table{width:100%;border-collapse:collapse}
.price-table tr{border-bottom:1px solid var(--line)}
.price-table tr:first-child{border-top:1px solid var(--line)}
.price-table td{padding:18px 0;vertical-align:top}
.price-table td:first-child{
  font-family:var(--sans);font-size:15.5px;color:var(--forest);font-weight:500;
}
.price-table td.detail{font-size:14px;color:var(--muted);max-width:520px}
.price-table td:last-child{
  font-family:var(--serif);font-weight:500;font-size:20px;color:var(--forest);
  text-align:right;white-space:nowrap;
}

/* News page */
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.news-card{
  background:var(--cream-card);border-radius:10px;overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
  display:flex;flex-direction:column;
}
.news-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(50,60,40,.10)}
.news-card .photo{height:240px;overflow:hidden}
.news-card .photo img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}
.news-card:hover .photo img{transform:scale(1.04)}
.news-card .body{padding:28px 30px 30px;display:flex;flex-direction:column;flex:1}
.news-card .meta{
  font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.28em;text-transform:uppercase;
  color:var(--biscuit-deep);margin-bottom:10px;
}
.news-card h3{font-family:var(--serif);font-weight:600;font-size:22px;color:var(--forest);margin:0 0 12px;line-height:1.25;letter-spacing:-.005em}
.news-card p{font-size:14.5px;color:var(--ink-soft);margin:0 0 18px;line-height:1.7;flex:1}
.news-card .more{
  font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--forest);align-self:flex-start;border-bottom:1.5px solid var(--biscuit);padding-bottom:4px;
}

/* Pet advice hub */
.advice-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:50px}
.advice-card{
  background:var(--cream-card);border-radius:12px;padding:42px 40px 44px;
  transition:transform .3s ease, box-shadow .3s ease;display:flex;flex-direction:column;
}
.advice-card:hover{transform:translateY(-4px);box-shadow:0 18px 36px rgba(50,60,40,.10)}
.advice-card .ico{
  width:64px;height:64px;border-radius:50%;background:var(--cream);
  display:flex;align-items:center;justify-content:center;margin-bottom:24px;color:var(--forest);
}
.advice-card .ico svg{width:30px;height:30px}
.advice-card h3{font-family:var(--serif);font-weight:600;font-size:26px;color:var(--forest);margin:0 0 12px;letter-spacing:-.005em}
.advice-card p{font-size:15px;color:var(--ink-soft);margin:0 0 22px;line-height:1.7;flex:1}
.advice-card .more{
  font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--forest);align-self:flex-start;border-bottom:1.5px solid var(--biscuit);padding-bottom:4px;
}

/* Widget page */
.widget-shell{
  background:#fff;border-radius:10px;padding:16px;
  box-shadow:0 18px 40px rgba(40,55,40,.08);
}
.widget-shell iframe{display:block;width:100%;border:0;border-radius:6px}
.widget-shell .widget-credit{
  display:block;text-align:right;font-size:12px;color:var(--muted);
  padding:8px 8px 0;margin-top:4px;
}
.widget-shell .widget-credit a{color:var(--muted)}
.widget-placeholder{
  display:flex;align-items:center;justify-content:center;text-align:center;
  min-height:380px;border:1.5px dashed var(--line);border-radius:8px;
  color:var(--muted);padding:24px;
  font-family:var(--sans);font-size:14px;
}

/* Contact page */
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:80px;align-items:start}
.contact-info p{font-size:16px;color:var(--ink-soft);margin:0 0 10px;line-height:1.65}
.contact-info h3{font-family:var(--serif);font-weight:600;font-size:22px;color:var(--forest);margin:30px 0 10px;letter-spacing:-.005em}
.contact-info h3:first-child{margin-top:0}
.emergency{
  background:var(--forest);color:#f4efe7;border-radius:10px;padding:30px 32px;margin-top:36px;
}
.emergency h3{color:#f5efdf;font-family:var(--serif);font-weight:600;font-size:22px;margin:0 0 10px}
.emergency p{color:#d4cdb5;font-size:15px;margin:0 0 6px;line-height:1.65}

/* Contact form / generic form */
.form-card{
  background:var(--cream-card);border-radius:12px;padding:44px 48px;
}
.form-card h3{font-family:var(--serif);font-weight:600;font-size:26px;color:var(--forest);margin:0 0 6px;letter-spacing:-.005em}
.form-card .form-lede{font-size:14.5px;color:var(--ink-soft);margin:0 0 26px;line-height:1.7}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:18px}
.form-row.single{grid-template-columns:1fr}
.field label{
  display:block;font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.18em;
  text-transform:uppercase;color:var(--forest);margin-bottom:8px;
}
.field input,
.field textarea,
.field select{
  width:100%;padding:14px 16px;border:1.5px solid var(--line);border-radius:6px;
  font-family:var(--sans);font-size:15px;color:var(--ink);background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus{
  outline:none;border-color:var(--forest);
  box-shadow:0 0 0 3px rgba(31,58,43,.10);
}
.field textarea{min-height:140px;resize:vertical;font-family:var(--sans)}
.form-actions{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin-top:10px}
.form-actions .note{font-size:13px;color:var(--muted)}

.map-frame{
  width:100%;height:380px;border-radius:10px;overflow:hidden;
  background:#dbd2b6;
  display:flex;align-items:center;justify-content:center;color:var(--muted);
  font-family:var(--sans);font-size:14px;
}
.map-frame iframe{width:100%;height:100%;border:0}

/* Long-form policy pages */
.prose{
  max-width:820px;
}
.prose .updated{
  font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--muted);margin:0 0 30px;
}
.prose h2{
  font-family:var(--serif);font-weight:600;font-size:30px;color:var(--forest);
  margin:48px 0 14px;letter-spacing:-.005em;line-height:1.2;
}
.prose h2:first-child{margin-top:0}
.prose h3{
  font-family:var(--serif);font-weight:600;font-size:22px;color:var(--forest);
  margin:32px 0 10px;letter-spacing:-.005em;
}
.prose p,.prose li{
  font-size:16px;color:var(--ink-soft);line-height:1.75;
}
.prose p{margin:0 0 14px}
.prose ul,.prose ol{margin:0 0 18px;padding-left:22px}
.prose li{margin-bottom:8px}
.prose a{color:var(--forest);border-bottom:1.5px solid var(--biscuit);padding-bottom:1px}
.prose a:hover{color:var(--biscuit-deep)}
.prose hr{border:0;border-top:1px solid var(--line);margin:36px 0}

/* ===== responsive ===== */
@media (max-width:1100px){
  .diff-grid{grid-template-columns:repeat(2,1fr)}
  .hc-grid{grid-template-columns:repeat(3,1fr)}
  .usp-grid{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:repeat(3,1fr)}
  .news-grid{grid-template-columns:repeat(2,1fr)}
  .tier-grid{grid-template-columns:1fr;gap:16px}
}
@media (max-width:900px){
  .wrap{padding:0 28px}
  .about{padding:96px 0 70px}
  .about-grid{grid-template-columns:1fr;gap:18px}
  .pillars{grid-template-columns:1fr;gap:14px}
  .differently{padding:90px 0}
  .differently .head{grid-template-columns:1fr;gap:18px;margin-bottom:34px}
  .diff-grid{grid-template-columns:1fr;gap:14px}
  .services-intro{padding:90px 0}
  .si-grid{grid-template-columns:1fr;gap:40px}
  .si-photo{height:480px}
  .si-photo-wrap{padding:20px 0 20px 20px}
  .si-photo-wrap::before{right:30px;bottom:-20px;top:30px}
  .si-services{grid-template-columns:1fr;gap:16px}
  .hc-grid{grid-template-columns:1fr 1fr;gap:14px}
  .hc-grid > .hc-card:nth-child(5){grid-column:1/-1}
  .holistic-stage{height:360px;margin-bottom:40px}
  .holistic-stage .hcap{right:22px;bottom:18px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
  .quote-strip{height:380px}
  .quote-strip .qcap{padding-bottom:32px}
  .quote-strip .qcap-inner{padding:0 28px}
  .site-header{padding:16px 24px}
  .site-header .brand img{width:78px;height:78px}
  .menu-toggle{width:54px;height:54px}
  .closing{min-height:560px;padding:120px 0}
  .footer-brand img{width:130px;height:130px}
  .intro-grid{grid-template-columns:1fr;gap:18px}
  .split{grid-template-columns:1fr;gap:40px}
  .split.reverse > *:first-child{order:0}
  .split-photo,.split-photo.framed > .inner{height:360px}
  .usp-grid{grid-template-columns:1fr;gap:14px}
  .team-grid{grid-template-columns:1fr 1fr;gap:16px}
  .team-card .photo{height:280px}
  .service-row summary{grid-template-columns:60px 1fr auto;gap:18px;padding:22px 24px}
  .service-row .s-body{padding:0 24px 26px 100px}
  .news-grid{grid-template-columns:1fr;gap:16px}
  .advice-grid{grid-template-columns:1fr;gap:16px}
  .contact-grid{grid-template-columns:1fr;gap:40px}
  .form-row{grid-template-columns:1fr;gap:14px}
  .form-card{padding:32px 28px}
  .page-hero{min-height:380px;padding:140px 24px 80px}
}
@media (max-width:560px){
  .nav-drawer a{font-size:34px}
  .hero h1{font-size:46px}
  .hc-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .closing h2{font-size:36px}
  .team-grid{grid-template-columns:1fr}
}

/* ===== reveal primer ===== */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .9s ease, transform .9s ease}
.reveal.is-visible{opacity:1;transform:none}
.reveal.delay-1{transition-delay:.08s}
.reveal.delay-2{transition-delay:.16s}
.reveal.delay-3{transition-delay:.24s}
