/* ============================================================
   CHERIAN ASHRAM HOLISTIC CENTRE — CORE STYLESHEET
   Design language: Modern Kerala Holistic Wellness
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root{
  --green:        #6F9276;
  --deep-green:   #315C45;
  --forest:       #183F2C;
  --sage:         #DDE9DE;
  --sage-light:   #F1F6F1;
  --warm-white:   #FAFAF7;
  --white:        #FFFFFF;
  --text:         #183126;
  --text-soft:    #64756B;
  --earth:        #B7A789;

  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body:    'Manrope', 'Inter', sans-serif;

  --max-width: 1320px;
  --pad-desktop: 72px;
  --pad-tablet: 40px;
  --pad-mobile: 20px;

  --gap-lg: 140px;
  --gap-md: 90px;
  --gap-sm: 64px;

  --ease-premium: cubic-bezier(.22,1,.36,1);
  --dur-slow: 1.1s;
  --dur-med: .7s;
  --dur-fast: .35s;

  --header-h: 100px;
  --header-h-scrolled: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing:border-box; margin:0; padding:0; }
html{
  scroll-behavior:auto;
  overflow-x:hidden; overflow-x:clip;
  /* stops the grey/blue flash mobile browsers paint over a tapped link */
  -webkit-tap-highlight-color:transparent;
}
a, button, [role="button"], .sel-option, .sa-head{ -webkit-tap-highlight-color:transparent; }
html.lenis, html.lenis body{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto !important; }

body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--warm-white);
  line-height:1.7;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  overflow-x:clip;
  overflow-wrap:break-word;
  width:100%;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul, ol{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input, select, textarea{ font-family:inherit; font-size:inherit; color:inherit; }
svg{ display:block; }

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--pad-desktop);
}

section{ position:relative; }

.section-pad{ padding:var(--gap-md) 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:600; color:var(--forest); line-height:1.1; letter-spacing:-0.01em; overflow-wrap:normal; word-break:normal; }
h1{ font-size:clamp(46px,7vw,92px); font-weight:500; }
h2{ font-size:clamp(34px,5vw,60px); font-weight:500; }
h3{ font-size:clamp(24px,3vw,32px); font-weight:500; }
h4{ font-size:20px; font-weight:600; }
p{ color:var(--text-soft); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--green);
  margin-bottom:20px;
}
.eyebrow::before{
  content:'';
  width:28px; height:1px;
  background:var(--green);
  display:inline-block;
}

.lede{
  font-size:clamp(17px,1.6vw,20px);
  color:var(--text-soft);
  max-width:560px;
  line-height:1.8;
}

.serif-italic{ font-style:italic; color:var(--green); }

/* ---------- Buttons ---------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:17px 30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  border-radius:4px;
  transition:transform var(--dur-fast) var(--ease-premium), background var(--dur-fast) var(--ease-premium), color var(--dur-fast) var(--ease-premium), border-color var(--dur-fast) var(--ease-premium);
  white-space:nowrap;
}
.btn svg{ width:16px; height:16px; transition:transform var(--dur-fast) var(--ease-premium); flex-shrink:0; }
.btn:hover{ transform:translateY(-2px); }
.btn:hover svg{ transform:translateX(5px); }

.btn-primary{ background:var(--deep-green); color:var(--white); }
.btn-primary:hover{ background:var(--forest); }

.btn-secondary{ background:transparent; color:var(--deep-green); border:1px solid var(--deep-green); }
.btn-secondary:hover{ background:var(--deep-green); color:var(--white); }

.btn-ghost-light{ background:transparent; color:var(--white); border:1px solid rgba(255,255,255,.5); }
.btn-ghost-light:hover{ background:var(--white); color:var(--forest); border-color:var(--white); }

.btn-row{ display:flex; gap:18px; flex-wrap:wrap; align-items:center; }

.text-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--deep-green);
}
.text-link::after{
  content:'';
  position:absolute; left:0; bottom:-4px;
  width:100%; height:1px;
  background:var(--deep-green);
  transform:scaleX(1); transform-origin:left;
}
.text-link svg{ width:14px; height:14px; transition:transform var(--dur-fast) var(--ease-premium); }
.text-link:hover svg{ transform:translateX(4px); }

/* ---------- Preloader ---------- */
/* ---------- Header ---------- */
.topbar{
  background:var(--forest);
  color:rgba(255,255,255,.82);
  font-size:12.5px;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:9px; padding-bottom:9px;
  gap:24px;
}
.topbar-item{ display:flex; align-items:center; gap:8px; white-space:nowrap; }
.topbar-item strong{ color:var(--white); font-weight:600; }
.topbar-left{ display:flex; gap:34px; }
.topbar-right{ display:flex; gap:34px; }
.topbar a{ transition:opacity var(--dur-fast); }
.topbar a:hover{ opacity:.7; }

header.site-header{
  position:sticky; top:0; z-index:500;
  width:100%;
  background:rgba(250,250,247,0);
  transition:background var(--dur-fast) ease, box-shadow var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
header.site-header.is-scrolled{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  box-shadow:0 1px 0 rgba(24,63,44,.08);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:clamp(20px, 2.5vw, 44px);
  height:var(--header-h);
  transition:height var(--dur-fast) ease;
}
header.site-header.is-scrolled .nav-wrap{ height:var(--header-h-scrolled); }

.logo{ display:flex; align-items:center; gap:12px; }
.logo-img{ height:48px; width:auto; flex-shrink:0; transition:height var(--dur-fast) ease; }
header.site-header.is-scrolled .logo-img{ height:40px; }
.logo-mark{
  width:44px; height:44px; border-radius:50%;
  background:var(--deep-green); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:16px; letter-spacing:.02em;
  flex-shrink:0;
}
.logo-text{ display:flex; flex-direction:column; line-height:1.15; }
.logo-text .l1{ font-family:var(--font-display); font-size:17px; color:var(--forest); font-weight:600; }
.logo-text .l2{ font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--green); font-weight:700; }
.site-header .logo-text{ display:none; }

.main-nav{
  display:flex; align-items:center; justify-content:center;
  flex:1;
  gap:clamp(16px, 1.7vw, 30px);
}
.main-nav a{
  position:relative;
  white-space:nowrap;
  flex-shrink:0;
  font-size:13.5px; font-weight:600; letter-spacing:.02em;
  color:var(--text);
  padding:6px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--green); transition:width var(--dur-fast) var(--ease-premium);
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color:var(--deep-green); }

.header-actions{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
.header-actions .btn{ padding:13px 20px; white-space:nowrap; }
.call-chip{
  display:flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; color:var(--deep-green);
}
.site-header .call-chip{ display:none; }

.hamburger{
  display:none; width:44px; height:44px; align-items:center; justify-content:center;
  flex-direction:column; gap:5px; z-index:600;
}
.hamburger span{ width:22px; height:1.5px; background:var(--forest); display:block; transition:transform .3s var(--ease-premium), opacity .3s var(--ease-premium); }
.hamburger.is-open span{ background:var(--sage-light); }
.hamburger.is-open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

.mobile-nav{
  position:fixed; inset:0; z-index:550;
  background:var(--forest);
  display:flex; flex-direction:column; justify-content:center;
  padding:0 28px;
  clip-path:circle(0% at calc(100% - 40px) 40px);
  pointer-events:none;
  /* promote the layer up front so the first tap is not spent creating it */
  will-change:clip-path;
}
.mobile-nav.is-open{ pointer-events:auto; }

/* explicit close control — the hamburger's X sits in forest green and is
   invisible against this panel, so the panel carries its own button */
.mobile-nav-close{
  position:absolute; top:22px; right:20px;
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(221,233,222,.35);
  border-radius:50%;
  color:var(--sage-light);
  background:transparent;
  transition:background var(--dur-fast) var(--ease-premium),
             border-color var(--dur-fast) var(--ease-premium),
             transform var(--dur-fast) var(--ease-premium);
}
.mobile-nav-close svg{ width:19px; height:19px; }
.mobile-nav-close:hover, .mobile-nav-close:focus-visible{
  background:rgba(255,255,255,.1);
  border-color:var(--sage);
  transform:rotate(90deg);
}

.mobile-nav-list{ display:flex; flex-direction:column; gap:2px; }
.mobile-nav-list a{
  font-family:var(--font-display);
  font-size:22px;
  line-height:1.3;
  color:var(--sage-light);
  font-weight:500;
  padding:11px 0;
  display:block;
  border-bottom:1px solid rgba(221,233,222,.13);
  opacity:0; transform:translateY(24px);
}
.mobile-nav-list li:last-child a{
  border-bottom:none;
  margin-top:14px;
  color:var(--earth);
  font-size:19px;
}
/* tapped item stays highlighted while the next page loads */
.mobile-nav-list a{ transition:color var(--dur-fast) var(--ease-premium), padding-left var(--dur-fast) var(--ease-premium); }
.mobile-nav-list a:active,
.mobile-nav-list a.is-going{
  color:var(--earth);
  padding-left:8px;
}
.mobile-nav-list a.is-going{ font-weight:600; }
/* current page */
.mobile-nav-list a.active{ color:var(--earth); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:max(680px, calc(100svh - var(--header-h)));
  display:flex; align-items:center;
  overflow:hidden;
  background:var(--forest);
  color:var(--white);
}
.hero-media{
  position:absolute; inset:0; z-index:0;
}
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:center 48%; transform:scale(1.06); will-change:transform, opacity; }
.hero-media::after{
  content:'';
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,31,21,.82) 0%, rgba(14,38,27,.62) 43%, rgba(14,38,27,.22) 78%),
    linear-gradient(180deg, rgba(10,28,19,.18) 0%, rgba(10,28,19,.16) 55%, rgba(10,28,19,.62) 100%);
}
.hero-inner{
  position:relative; z-index:3;
  width:100%;
  padding:56px var(--pad-desktop) 76px;
  max-width:var(--max-width);
  margin:0 auto;
}
.hero-eyebrow{
  font-size:12px; letter-spacing:.26em; text-transform:uppercase; font-weight:700;
  color:rgba(255,255,255,.78); margin-bottom:22px; display:flex; align-items:center; gap:12px;
  overflow:hidden;
  opacity:0;
}
.hero-eyebrow span{ display:inline-block; }
.hero h1{
  color:var(--white); max-width:920px;
  font-size:clamp(54px, 6.2vw, 88px);
  line-height:.98;
  letter-spacing:-.035em;
  text-wrap:balance;
  visibility:hidden;
}
.hero h1 .line{ display:block; }
.hero h1 .line span{ display:inline-block; will-change:transform, opacity, filter; }
.hero-lede{
  max-width:600px; margin-top:26px; font-size:17px; color:rgba(255,255,255,.8); line-height:1.75;
  opacity:0;
}
.hero-actions{ margin-top:32px; opacity:0; }

/* Inner-page hero (shorter) */
.page-hero{
  position:relative; background:var(--forest); color:var(--white);
  padding:var(--header-h) 0 0;
  overflow:hidden;
  /* every page banner is the same height; content is centred inside it,
     so a one-line or three-line headline makes no difference */
  min-height:500px;
  display:flex;
  align-items:center;
}
.page-hero .container{ width:100%; }
.page-hero h1{ font-size:clamp(36px, 4.6vw, 62px); }
.page-hero .container{ position:relative; z-index:2; }
.page-hero .breadcrumb{ font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--sage); margin-bottom:22px; opacity:.85; }
.page-hero .breadcrumb a{ opacity:.75; }
.page-hero .breadcrumb a:hover{ opacity:1; }
.page-hero h1{ color:var(--white); max-width:820px; }
.page-hero p{ color:rgba(255,255,255,.78); max-width:560px; margin-top:22px; font-size:17px; }
/* photo at full strength; the scrim only darkens where the text sits,
   instead of flooding the whole banner with green */
.page-hero-media{ position:absolute; inset:0; z-index:0; opacity:1; }
.page-hero-media img{ width:100%; height:100%; object-fit:cover; object-position:center 42%; }
.page-hero-media::after{
  content:'';
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(16,45,32,.90) 0%, rgba(16,45,32,.72) 38%, rgba(16,45,32,.28) 72%, rgba(16,45,32,.12) 100%),
    linear-gradient(180deg, rgba(16,45,32,.42) 0%, rgba(16,45,32,0) 34%);
}
.page-hero h1, .page-hero p{ text-shadow:0 1px 24px rgba(11,32,22,.45); }
/* gilt hairline closing the banner */
.page-hero::after{
  content:'';
  position:absolute; left:0; right:0; bottom:0; height:2px; z-index:3;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 55%, rgba(111,146,118,0) 100%);
}

/* ---------- Section headers ---------- */
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:60px;
  margin-bottom:64px;
}
.section-head .lede{ margin-top:14px; }
.section-head-center{ text-align:center; align-items:center; flex-direction:column; gap:0; margin-left:auto; margin-right:auto; }
.section-head-center .eyebrow::before{ display:none; }
.section-head-center .lede{ margin-left:auto; margin-right:auto; }

.reveal-img{ overflow:hidden; border-radius:6px; position:relative; }
.reveal-img img{ width:100%; height:100%; object-fit:cover; transform:scale(1.12); }

/* ---------- Introduction ---------- */
.intro-section{
  background:var(--warm-white);
  padding:var(--gap-md) 0;
  position:relative;
  overflow:hidden;
}
/* soft sage wash behind the media column */
.intro-section::before{
  content:'';
  position:absolute; top:0; left:0;
  width:38%; height:100%;
  background:linear-gradient(180deg, var(--sage-light) 0%, rgba(241,246,241,0) 90%);
  pointer-events:none;
}
.intro-section .container{ position:relative; z-index:1; }

.intro-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:clamp(48px, 6vw, 96px);
  align-items:center;
}
.intro-grid > *{ min-width:0; }

/* ----- Media column (left) ----- */
/* NOTE: source photos are only 610x360. Frames keep that native aspect and
   the column is capped at 610px so nothing is cropped or upscaled.
   Do not give these a portrait aspect-ratio. */
.intro-media{
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:610px;
  margin-right:auto;
}
.intro-image{
  aspect-ratio:610/360;
  border-radius:4px;
  box-shadow:0 34px 70px -38px rgba(24,63,44,.4);
}
.intro-media-row{
  display:flex;
  align-items:stretch;
  gap:18px;
}
.intro-image-sub{
  flex:1 1 auto;
  aspect-ratio:610/360;
  border-radius:4px;
  box-shadow:0 24px 48px -26px rgba(24,63,44,.4);
}
/* the reveal starts the image at 1.12 and settles it back to native scale */
.intro-image img, .intro-image-sub img{ transition:transform 1.4s var(--ease-premium); }
.intro-image.is-revealed img, .intro-image-sub.is-revealed img{ transform:scale(1); }

.intro-badge{
  flex:0 0 auto;
  display:flex; flex-direction:column; justify-content:center; gap:8px;
  padding:22px 24px;
  background:var(--forest);
  color:var(--white);
  border-radius:4px;
}
.intro-badge-num{
  font-family:var(--font-display);
  font-size:40px; font-weight:500; line-height:1;
  color:var(--white);
}
.intro-badge-num sup{ font-size:.45em; top:-.85em; margin-left:2px; color:var(--sage); }
.intro-badge-label{
  font-size:11px; font-weight:600;
  letter-spacing:.13em; text-transform:uppercase;
  line-height:1.6; color:var(--sage);
}

/* ----- Content column (right) ----- */
.intro-content h2{ margin-top:18px; max-width:15ch; text-wrap:balance; }
.intro-copy{ max-width:560px; margin-top:26px; }
.intro-copy p{
  margin-bottom:18px;
  font-size:16.5px;
  line-height:1.8;
  /* hyphens:auto is required with justify, or the word spacing opens up */
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.intro-copy p:last-child{ margin-bottom:0; }
.intro-lead{
  font-size:18px !important;
  line-height:1.7 !important;
  color:var(--text);
  padding-left:20px;
  border-left:2px solid var(--green);
}

.intro-facts{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin:32px 0 28px;
  padding:26px 0;
  border-top:1px solid var(--sage);
  border-bottom:1px solid var(--sage);
  max-width:560px;
}
.intro-facts li{ display:flex; flex-direction:column; gap:6px; }
.intro-facts strong{
  font-family:var(--font-display);
  font-size:30px; font-weight:500; line-height:1;
  color:var(--forest);
}
.intro-facts span{
  font-size:11.5px; font-weight:600;
  letter-spacing:.09em; text-transform:uppercase;
  line-height:1.5; color:var(--text-soft);
}

/* ---------- Philosophy diagram ---------- */
.philosophy-section{
  background:var(--forest);
  padding:var(--gap-md) 0;
  position:relative;
  overflow:hidden;
}
/* soft light pooling behind the diagram */
.philosophy-section::before{
  content:'';
  position:absolute; left:72%; top:50%;
  width:min(1000px, 90%); aspect-ratio:1;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(111,146,118,.30) 0%, rgba(24,63,44,0) 62%);
  pointer-events:none;
}
.philosophy-section .container{ position:relative; z-index:1; }

.philosophy-section h2{ color:var(--white); max-width:14ch; }
.philosophy-section .lede{ color:var(--sage); margin-top:22px; max-width:34ch; }
.philosophy-section .eyebrow{ color:var(--sage); }
.philosophy-section .eyebrow::before{ background:var(--sage); }

/* text left, diagram right */
.philosophy-layout{
  display:grid;
  grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
  gap:clamp(48px, 6vw, 100px);
  align-items:center;
  text-align:left;
}
.philosophy-layout > *{ min-width:0; }

.philosophy-diagram{ width:100%; max-width:620px; margin:0 0 0 auto; position:relative; }
.philosophy-diagram svg{ width:100%; height:auto; overflow:visible; }

/* nodes must scale about their own centre, not the SVG origin */
.philo-node{ transform-box:fill-box; transform-origin:center; }
.philo-node circle{ transition:fill var(--dur-fast) var(--ease-premium), stroke var(--dur-fast) var(--ease-premium); }
.philo-node:not(.philo-core){ cursor:default; }
.philo-node:not(.philo-core):hover circle{ fill:var(--sage-light); stroke:var(--green); }

.philo-ring{ opacity:.4; }

.philo-node-label{
  font-family:var(--font-body);
  font-size:13px; font-weight:700;
  letter-spacing:.08em;
  fill:var(--forest);
}
.philo-center-label{
  font-family:var(--font-display);
  font-size:27px; font-weight:500;
  letter-spacing:.01em;
  fill:#FFFFFF;
}

/* ---------- Services (editorial list) ---------- */
.services-section{ background:var(--warm-white); padding:var(--gap-md) 0; }
.services-layout{
  display:grid;
  grid-template-columns:minmax(300px, .82fr) minmax(0, 1.18fr);
  gap:clamp(56px, 6vw, 96px);
  align-items:start;
}
.services-layout > *{ min-width:0; }
.services-sticky{ position:sticky; top:160px; align-self:start; }
.services-sticky h2{ max-width:560px; text-wrap:balance; }
.services-sticky .lede{ margin-top:18px; }

.service-list{ border-top:1px solid var(--sage); }
.service-row{
  border-bottom:1px solid var(--sage);
  padding:34px 26px;
  min-height:150px;
  display:grid; grid-template-columns:70px 1fr auto; align-items:center; gap:30px;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  border-radius:3px;
  transition:background var(--dur-med) var(--ease-premium),
             min-height .6s var(--ease-premium);
}
.service-row:hover{ min-height:290px; }
/* the row's photo fills the whole card on hover. The row also grows from
   150px to 290px so the 5:1 band becomes ~2.6:1 — close enough to these
   520x300 sources that two-thirds of each image is visible. */
.s-bg{
  position:absolute; inset:0;
  z-index:0;
  background-size:cover;
  background-position:center 42%;
  opacity:0;
  transform:scale(1.06);
  transition:opacity .5s var(--ease-premium), transform 1.2s var(--ease-premium);
}
/* readable only where the text sits; the right half stays clear */
.s-bg::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(90deg,
    rgba(14,40,28,.88) 0%,
    rgba(14,40,28,.74) 32%,
    rgba(14,40,28,.34) 64%,
    rgba(14,40,28,.10) 100%);
}
.service-row:hover .s-bg{ opacity:1; transform:scale(1); }
/* keep the content above the photo */
.service-row > *:not(.s-bg){ position:relative; z-index:1; }
.service-row .s-num{
  font-family:var(--font-display); font-size:22px; color:#000000; transition:color var(--dur-med) var(--ease-premium);
}
.service-row .s-title{
  display:block;
  max-width:min(100%, 30ch); font-family:var(--font-display); font-size:clamp(22px,2.25vw,31px); line-height:1.2; font-weight:500; color:var(--forest);
  transition:transform var(--dur-med) var(--ease-premium), color var(--dur-med) var(--ease-premium);
}
.service-row .s-sub{ display:block; font-family:var(--font-body); font-size:13.5px; color:var(--text-soft); font-weight:500; margin-top:6px; transition:color var(--dur-med) var(--ease-premium); }
.service-row .s-arrow{
  width:44px; height:44px; border-radius:50%; border:1px solid var(--sage);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:transform var(--dur-med) var(--ease-premium), background var(--dur-med) var(--ease-premium), border-color var(--dur-med) var(--ease-premium);
}
.service-row .s-arrow svg{ width:17px; height:17px; stroke:var(--forest); }
.service-row:hover{ background:var(--forest); border-bottom-color:transparent; }
.service-row:hover .s-title{ transform:translateX(12px); color:var(--white); }
.service-row:hover .s-num{ color:var(--sage); }
.service-row:hover .s-sub{ color:rgba(255,255,255,.78); }
.service-row:hover .s-arrow{ background:var(--white); border-color:var(--white); transform:rotate(45deg); }
.service-row:hover .s-arrow svg{ stroke:var(--forest); }
.service-row a.s-hitarea{ position:absolute; inset:0; }

/* Mobile accordion services */
.service-accordion{ display:none; }

/* ---------- Diagnostic facilities ---------- */
.facilities-section{ background:var(--sage-light); padding:var(--gap-md) 0; }

/* gapped cards rather than a hairline grid, so the cards read as separate
   objects and hover lift is possible */
.facility-grid-4{ grid-template-columns:repeat(4, 1fr) !important; }
/* ten facilities: five across gives two even rows, where three or four
   would leave a stranded last row */
.facility-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:16px;
  margin-top:52px;
}
.facility-item{
  display:flex;
  flex-direction:column;
  padding:24px 20px 26px;
  background:var(--white);
  border:1px solid rgba(221,233,222,.9);
  border-radius:3px;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.facility-item:hover{
  transform:translateY(-4px);
  border-color:rgba(183,167,137,.5);
  box-shadow:0 24px 46px -28px rgba(24,63,44,.3);
}
.facility-item .f-icon{
  width:36px; height:36px;
  color:var(--deep-green);
  transition:color var(--dur-med) var(--ease-premium);
}
.facility-item .f-icon svg{ width:100%; height:100%; }
.facility-item:hover .f-icon{ color:var(--earth); }
.facility-item h4{ margin-top:18px; font-size:16px; line-height:1.3; text-wrap:balance; }
.facility-item p{ font-size:13px; line-height:1.68; margin-top:8px; }

/* ---------- Why choose us ---------- */
.why-section{
  background:var(--warm-white);
  padding:var(--gap-md) 0;
  position:relative;
  overflow:hidden;
}

/* ----- Intro row: image left, copy right ----- */
.why-intro{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:clamp(52px, 6vw, 100px);
  align-items:center;
  margin-bottom:clamp(56px, 6vw, 88px);
}
.why-intro > *{ min-width:0; }

/* image in a white matte with a hairline surround */
.why-media{
  aspect-ratio:825/621;
  max-width:560px;
  padding:14px;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:2px;
  box-shadow:0 34px 70px -42px rgba(24,63,44,.42);
}
.why-media img{
  width:100%; height:100%;
  object-fit:cover;
  border-radius:1px;
  transition:transform 1.4s var(--ease-premium);
}
.why-media.is-revealed img{ transform:scale(1); }

.why-intro-copy h2{ max-width:15ch; }
.why-intro-copy .lede{ margin-top:22px; max-width:44ch; }
.why-intro-copy .btn{ margin-top:34px; }

/* ----- Reason cards (flip) ----- */
.why-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.why-item{
  perspective:1600px;
  outline:none;
}
.w-inner{
  position:relative;
  min-height:234px;
  height:100%;
  transform-style:preserve-3d;
  transition:transform 1.05s var(--ease-premium);
}
.why-item:hover .w-inner,
.why-item:focus-visible .w-inner{ transform:rotateY(180deg); }

.w-face{
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  padding:24px 26px 26px;
  border-radius:3px;
  overflow:hidden;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}

/* ---- front ---- */
.w-front{
  background:linear-gradient(158deg, var(--white) 0%, #FBFBF7 100%);
  border:1px solid rgba(221,233,222,.85);
  box-shadow:0 1px 2px rgba(24,63,44,.03);
}
/* gilt rule along the top edge */
.w-front::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  opacity:.55;
}

.w-num{
  position:absolute;
  top:22px; right:24px;
  font-family:var(--font-display);
  font-size:32px; font-weight:500; line-height:1;
  color:var(--earth);
  letter-spacing:.02em;
  pointer-events:none;
  transition:color var(--dur-med) var(--ease-premium);
}
.why-item:hover .w-num{ color:var(--deep-green); }

.w-icon{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  width:52px; height:52px;
  margin-bottom:14px;
  border:1px solid var(--sage);
  border-radius:50%;
  color:var(--deep-green);
  transition:background var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium),
             color var(--dur-med) var(--ease-premium);
}
.w-icon svg{ width:26px; height:26px; stroke-width:1.4; }
.why-item:hover .w-icon{ background:var(--forest); border-color:var(--forest); color:var(--white); }

.w-front h3{
  position:relative;
  font-size:20px;
  line-height:1.3;
  max-width:26ch;
  padding-right:46px;
  text-wrap:balance;
}

/* arrow affordance pinned to the bottom */
.w-hint{
  margin-top:auto;
  display:flex; align-items:center; justify-content:center;
  width:32px; height:32px;
  border-radius:50%;
  border:1px solid var(--sage);
  color:var(--green);
  transition:transform var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.w-hint svg{ width:14px; height:14px; }
.why-item:hover .w-hint{ transform:translateX(5px); border-color:var(--earth); }

/* ---- back ---- */
.w-back{
  transform:rotateY(180deg);
  justify-content:center;
  background:linear-gradient(158deg, #24583F 0%, var(--forest) 100%);
  border:1px solid var(--forest);
  box-shadow:0 34px 66px -34px rgba(24,63,44,.55);
}
.w-back::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--earth) 0%, rgba(183,167,137,0) 100%);
}
.w-back h3{
  color:var(--white);
  font-size:18px;
  line-height:1.3;
  margin-bottom:11px;
  max-width:24ch;
}
.w-back p{
  color:var(--sage);
  font-size:14.5px;
  line-height:1.72;
  margin:0;
  opacity:.92;
}

/* keyboard ring on the visible face */
.why-item:focus-visible .w-face{ outline:2px solid var(--earth); outline-offset:3px; }

/* Touch: no hover, so the reveal is driven by scroll position instead —
   JS adds .is-flipped to whichever card is nearest the viewport centre.
   A rotateY flip rasterises the text into a 3D layer, which reads as
   blurry on phone screens, so the faces cross-fade in 2D instead. */
@media (hover: none){
  .why-item{ perspective:none; }
  .w-inner{ transform-style:flat; transition:none; }
  .why-item:hover .w-inner,
  .why-item.is-flipped .w-inner{ transform:none; }

  .w-face{
    backface-visibility:visible;
    -webkit-backface-visibility:visible;
    transition:opacity .45s var(--ease-premium), transform .55s var(--ease-premium);
  }
  .w-front{ opacity:1; transform:none; }
  .w-back{ opacity:0; transform:translateY(10px); }
  .why-item.is-flipped .w-front{ opacity:0; transform:translateY(-10px); pointer-events:none; }
  .why-item.is-flipped .w-back{ opacity:1; transform:none; }

  .why-item.is-flipped .w-icon{ background:var(--forest); border-color:var(--forest); color:var(--white); }
  .why-item.is-flipped .w-num{ color:var(--deep-green); }
  .why-item.is-flipped .w-hint{ transform:translateX(5px); border-color:var(--earth); }
}

/* ---------- Health package timeline ---------- */
.timeline-section{ background:var(--warm-white); padding:var(--gap-md) 0; }
.timeline{
  position:relative;
  margin:52px auto 0;
  max-width:900px;
}
/* the spine, and the progress line that fills as you scroll */
.timeline::before{
  content:'';
  position:absolute; left:170px; top:6px; bottom:6px;
  width:1px;
  background:var(--sage);
}
.timeline-progress{
  position:absolute; left:170px; top:6px;
  width:1px; height:0;
  background:linear-gradient(180deg, var(--earth), var(--green));
}

.tl-item{
  position:relative;
  display:grid;
  grid-template-columns:170px 1fr;
  gap:0;
  padding-bottom:16px;
}
.tl-item:last-child{ padding-bottom:0; }

.tl-time{
  font-family:var(--font-display);
  font-size:16px;
  font-weight:500;
  color:var(--earth);
  text-align:right;
  padding:24px 34px 0 0;
  line-height:1.35;
}

/* node on the spine */
.tl-dot{
  position:absolute; left:165px; top:30px;
  width:11px; height:11px;
  border-radius:50%;
  background:var(--warm-white);
  border:1px solid var(--green);
  z-index:2;
  transition:background var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium),
             transform var(--dur-med) var(--ease-premium);
}
.tl-item:hover .tl-dot{
  background:var(--earth);
  border-color:var(--earth);
  transform:scale(1.35);
}

/* each step as a card */
.tl-content{
  margin-left:34px;
  padding:20px 26px 22px;
  background:var(--white);
  border:1px solid rgba(221,233,222,.9);
  border-radius:4px;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.tl-item:hover .tl-content{
  transform:translateX(5px);
  border-color:rgba(183,167,137,.55);
  box-shadow:0 22px 44px -28px rgba(24,63,44,.3);
}
.tl-content h4{
  font-family:var(--font-display);
  font-size:18px;
  font-weight:500;
  color:var(--forest);
  line-height:1.3;
  margin-bottom:7px;
}
.tl-content p{ font-size:14.4px; line-height:1.72; margin:0; }



/* ---------- Video testimonials ---------- */
.video-section{ background:var(--sage-light); padding:var(--gap-md) 0; }
.video-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:52px;
}
.video-card{
  position:relative;
  display:block;
  color:inherit;
  text-decoration:none;
  width:100%;
  padding:0;
  border:1px solid rgba(221,233,222,.9);
  border-radius:4px;
  overflow:hidden;
  aspect-ratio:16/9;
  background:var(--forest);
  cursor:pointer;
  text-align:left;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.video-card:hover, .video-card:focus-visible{
  transform:translateY(-6px);
  border-color:rgba(183,167,137,.6);
  box-shadow:0 30px 60px -32px rgba(24,63,44,.4);
}
.video-card:focus-visible{ outline:2px solid var(--earth); outline-offset:3px; }
.video-card img{
  width:100%; height:100%;
  object-fit:cover;
  opacity:1;
  transition:transform 1.2s var(--ease-premium);
}
.video-card:hover img{ transform:scale(1.05); }

/* pinned to the corner rather than centred, so it never sits over a face */
.video-card .play-btn{ position:absolute; right:16px; bottom:14px; display:flex; z-index:2; }
.video-card .play-circle{
  width:46px; height:46px;
  border-radius:50%;
  background:rgba(255,255,255,.94);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px -12px rgba(11,32,22,.7);
  transition:transform var(--dur-fast) var(--ease-premium), background var(--dur-fast) var(--ease-premium);
}
.video-card:hover .play-circle{ transform:scale(1.1); background:var(--white); }
.video-card .play-circle svg{ width:15px; height:15px; fill:var(--forest); margin-left:2px; }

.video-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding:34px 74px 18px 18px;
  color:var(--white);
  font-family:var(--font-display);
  font-weight:500;
  font-size:16px;
  line-height:1.3;
  background:linear-gradient(0deg, rgba(14,38,27,.9) 0%, rgba(14,38,27,0) 100%);
}

/* ---------- Online consultation ---------- */
.consult-section{ background:var(--deep-green); color:var(--white); padding:var(--gap-md) 0; position:relative; overflow:hidden; }
.consult-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:60px; align-items:center; }
.consult-section .eyebrow{ color:var(--sage); }
.consult-section .eyebrow::before{ background:var(--sage); }
.consult-section h2{ color:var(--white); }
.consult-section p{ color:rgba(255,255,255,.8); }
.consult-list{ margin-top:26px; display:flex; flex-wrap:wrap; gap:12px; }
.consult-chip{ border:1px solid rgba(255,255,255,.3); padding:9px 18px; border-radius:30px; font-size:13px; color:rgba(255,255,255,.9); }
.consult-card{ background:var(--forest); border-radius:8px; padding:44px; text-align:center; }
.consult-card svg{ width:46px; height:46px; margin:0 auto 20px; }

/* ---------- Appointment CTA ---------- */
.cta-band{ background:var(--sage-light); padding:110px 0; text-align:center; }
.cta-band h2{ max-width:700px; margin:0 auto 30px; }

/* ---- shared contact blocks (home + appointment pages) ---- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:stretch; }
.contact-info h2{ margin-bottom:26px; }
.contact-block{ display:flex; gap:20px; padding:24px 0; border-bottom:1px solid var(--sage); }
.contact-block:first-of-type{ border-top:1px solid var(--sage); }
.contact-block .c-icon{ width:22px; height:22px; flex-shrink:0; margin-top:3px; }
.contact-block .c-icon svg{ width:100%; height:100%; stroke:var(--deep-green); fill:none; }
.contact-block h4{ font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:var(--text-soft); margin-bottom:6px; font-family:var(--font-body); font-weight:700; }
.contact-block p{ color:var(--text); font-size:15.5px; }
.contact-block a:hover{ color:var(--green); }
.contact-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }

.contact-form-panel .form-shell{ height:100%; }
.cf-title{ font-size:24px; margin-bottom:8px; }
.cf-sub{ font-size:14.5px; margin-bottom:26px; }

/* ---------- Contact ---------- */
.contact-section{ background:var(--warm-white); padding:var(--gap-md) 0; }
.contact-section .section-head{ margin-bottom:52px; }

.ct-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.ct-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:28px 26px 30px;
  background:var(--white);
  border:1px solid rgba(221,233,222,.9);
  border-radius:4px;
  overflow:hidden;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.ct-card:hover{
  transform:translateY(-6px);
  border-color:rgba(183,167,137,.6);
  box-shadow:0 30px 60px -32px rgba(24,63,44,.32),
             0 4px 14px -6px rgba(24,63,44,.08);
}
/* gilt rule sweeps the top edge */
.ct-card::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .7s var(--ease-premium);
}
.ct-card:hover::before{ transform:scaleX(1); }

.ct-icon{
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  border:1px solid var(--sage);
  border-radius:50%;
  color:var(--deep-green);
  transition:background var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium),
             color var(--dur-med) var(--ease-premium);
}
.ct-icon svg{ width:20px; height:20px; }
.ct-card:hover .ct-icon{ background:var(--forest); border-color:var(--forest); color:var(--white); }

.ct-body h4{
  font-family:var(--font-body);
  font-size:11px; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--earth);
  margin-bottom:12px;
  padding-bottom:12px;
  border-bottom:1px solid var(--sage);
}
.ct-body p{
  font-size:15px;
  line-height:1.8;
  color:var(--text);
  margin:0;
}
.ct-body a{ transition:color var(--dur-fast) var(--ease-premium); }
.ct-body a:hover{ color:var(--green); }

/* map */
.ct-map{
  margin-top:26px;
  aspect-ratio:21/9;
  border-radius:4px;
  overflow:hidden;
  border:1px solid var(--sage);
  box-shadow:0 34px 70px -42px rgba(24,63,44,.4);
}
.ct-map iframe{
  width:100%; height:100%;
  border:0;
  display:block;
  filter:grayscale(.2) contrast(1.04);
}

/* ---------- Footer ---------- */
footer.site-footer{ background:var(--forest); color:rgba(255,255,255,.75); padding:64px 0 0; }
.footer-top{ display:grid; grid-template-columns:1.5fr 1fr 1.15fr 1.1fr; gap:44px; padding-bottom:46px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand .logo-text .l1{ color:var(--white); }
.footer-brand p{ color:rgba(255,255,255,.65); margin-top:18px; max-width:310px; font-size:13.8px; line-height:1.72; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{ width:34px; height:34px; border:1px solid rgba(255,255,255,.25); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:background var(--dur-fast), border-color var(--dur-fast); }
.footer-social a:hover{ background:var(--green); border-color:var(--green); }
.footer-social svg{ width:16px; height:16px; stroke:var(--white); }
.footer-social a[aria-label*="WhatsApp"] svg{ width:17px; height:17px; fill:var(--white); stroke:none; }
.footer-col h5{ font-family:var(--font-body); font-size:11.5px; text-transform:uppercase; letter-spacing:.14em; color:var(--sage); font-weight:700; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; font-size:13.8px; line-height:1.6; }
.footer-col ul a{ font-size:13.8px; color:rgba(255,255,255,.72); transition:color var(--dur-fast), padding var(--dur-fast); }
/* scoped to the link lists so the logo and social icons stay put */
.footer-col ul a:hover{ color:var(--white); padding-left:4px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:20px 0; font-size:12.5px; color:rgba(255,255,255,.5); flex-wrap:wrap; gap:10px; }
.footer-credit a{ color:var(--sage); transition:color var(--dur-fast); }
.footer-credit a:hover{ color:var(--white); }

/* footer logo sits on a light plate so the full-colour mark stays legible */
.footer-logo{
  display:inline-flex;
  padding:11px 15px;
  background:var(--warm-white);
  border-radius:3px;
}
.footer-logo .logo-img{ height:46px; }
.footer-bottom a:hover{ color:var(--white); }

/* ---------- About: Our Story ---------- */
.ab-story-section{
  background:var(--warm-white);
  padding:var(--gap-md) 0;
  position:relative;
}

.ab-story-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:clamp(44px, 5vw, 90px);
  align-items:center;
}
.ab-story-grid > *{ min-width:0; }

/* left: heading, then the founders' portrait beneath it */
.ab-story-left h2{
  font-size:clamp(32px, 3.8vw, 50px);
  line-height:1.15;
  margin-top:4px;
  margin-bottom:clamp(28px, 3vw, 42px);
}
.ab-story-left .ab-media{ max-width:100%; }

/* right: the story, one column */
.ab-story-text p{
  font-size:16px;
  line-height:1.9;
  margin-bottom:22px;
  text-align:justify; text-justify:inter-word;
  hyphens:auto; -webkit-hyphens:auto;
}
.ab-story-text p:last-child{ margin-bottom:0; }

/* ============================================================
   ABOUT PAGE
   Source photos are 610x360; frames keep that native ratio and
   the columns cap near 610px so nothing upscales.
   ============================================================ */
.ab-split{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:clamp(44px, 5vw, 84px);
  align-items:center;
}
.ab-split > *{ min-width:0; }
.ab-split-rev .ab-media{ order:-1; }

.ab-copy h2{ margin-top:6px; max-width:16ch; margin-bottom:22px; }
.ab-copy .eyebrow, .ab-founder .eyebrow{ margin-bottom:16px; }
.ab-copy p{
  font-size:16px; line-height:1.85; margin-bottom:18px;
  text-align:justify; text-justify:inter-word;
  hyphens:auto; -webkit-hyphens:auto;
}
.ab-copy p:last-child{ margin-bottom:0; }

/* framed photo with a white matte */
.ab-media{
  max-width:560px;
  padding:13px;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:2px;
  box-shadow:0 34px 70px -42px rgba(24,63,44,.42);
}
.ab-media img{
  width:100%;
  aspect-ratio:610/360;
  object-fit:cover;
  border-radius:1px;
  transition:transform 1.4s var(--ease-premium);
}
.ab-media.is-revealed img{ transform:scale(1); }
.ab-media{
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium);
}
.ab-media:hover{
  transform:translateY(-5px);
  box-shadow:0 44px 84px -44px rgba(24,63,44,.5);
}
.ab-media figcaption{
  margin-top:11px;
  font-size:11.5px; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--text-soft);
}

/* fact strip — hairline-divided counters */
.ab-facts{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  margin-top:clamp(48px, 5vw, 76px);
  border-top:1px solid var(--sage);
  border-bottom:1px solid var(--sage);
}
.ab-facts li{
  position:relative;
  display:flex; flex-direction:column; gap:10px;
  padding:32px clamp(20px, 2.2vw, 34px);
  transition:background var(--dur-med) var(--ease-premium);
}
.ab-facts li + li{ border-left:1px solid var(--sage); }
.ab-facts li:hover{ background:var(--white); }
/* gilt rule draws in on hover */
.ab-facts li::before{
  content:'';
  position:absolute; top:-1px; left:0;
  height:2px; width:0;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  transition:width .7s var(--ease-premium);
}
.ab-facts li:hover::before{ width:100%; }
.ab-facts strong{
  font-family:var(--font-display);
  font-size:clamp(34px, 3.4vw, 46px);
  font-weight:500; line-height:1;
  color:var(--earth);
  font-variant-numeric:tabular-nums;
}
.ab-facts span{
  font-size:11.5px; font-weight:600;
  letter-spacing:.11em; text-transform:uppercase;
  line-height:1.55; color:var(--text-soft);
}

/* environment band */
.ab-env-section{
  background:var(--sage-light);
  padding:var(--gap-md) 0;
  position:relative;
  overflow:hidden;
}

/* founder band */
.ab-founder-section{
  background:var(--forest);
  padding:var(--gap-md) 0;
  position:relative;
  overflow:hidden;
}
.ab-founder-section::before{
  content:'';
  position:absolute; left:18%; top:50%;
  width:min(900px, 80%); aspect-ratio:1;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(111,146,118,.28) 0%, rgba(24,63,44,0) 62%);
  pointer-events:none;
}
.ab-founder-section .container{ position:relative; z-index:1; }
.ab-founder{
  display:grid;
  grid-template-columns:minmax(0, .62fr) minmax(0, 1.38fr);
  gap:clamp(40px, 4.5vw, 76px);
  align-items:center;
}
.ab-founder > *{ min-width:0; }
.ab-founder h2, .ab-founder .eyebrow{ color:var(--white); }
.ab-founder .eyebrow{ color:var(--sage); }
.ab-founder .eyebrow::before{ background:var(--sage); }
.ab-founder p{
  color:rgba(255,255,255,.78); font-size:15.5px; line-height:1.85;
  text-align:justify; text-justify:inter-word;
  hyphens:auto; -webkit-hyphens:auto;
}
.ab-cred, .ab-quote{ text-align:left !important; hyphens:none; }
.ab-cred{
  color:var(--sage) !important;
  font-size:13px !important;
  font-weight:600;
  letter-spacing:.06em;
  margin:10px 0 24px;
}
.ab-quote{
  font-family:var(--font-display);
  font-size:19px;
  line-height:1.65;
  color:var(--white);
  border-left:2px solid var(--earth);
  padding-left:22px;
  margin-bottom:24px;
}
.ab-portrait{
  max-width:320px;
  padding:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(221,233,222,.22);
  border-radius:2px;
}
.ab-portrait img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  object-position:center 22%;
  border-radius:1px;
  /* light touch only — just enough to soften the hard blue studio backdrop */
  filter:saturate(.88) contrast(1.03);
  transition:transform 1.4s var(--ease-premium), filter var(--dur-med) var(--ease-premium);
}
.ab-portrait:hover img{ filter:saturate(1) contrast(1.02); }
.ab-portrait.is-revealed img{ transform:scale(1); }
.ab-portrait{ position:relative; }
.ab-portrait::after{
  content:'';
  position:absolute; left:12px; right:12px; bottom:12px; height:2px;
  background:linear-gradient(90deg, var(--earth) 0%, rgba(183,167,137,0) 100%);
}

/* ============================================================
   SERVICES PAGE — card grid
   Four columns keep the 450-970px sources well downscaled and sharp.
   ============================================================ */
.svc-section{ background:var(--warm-white); padding:var(--gap-md) 0; }
.svc-section .section-head{ margin-bottom:56px; }

.svc-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

/* .svc-card is what GSAP animates on entry; all visual styling and the
   hover lift live on .svc-inner, so a CSS transform transition can never
   interpolate GSAP's per-frame writes and flatten the entrance. */
.svc-card{ position:relative; display:flex; }

.svc-inner{
  position:relative;
  display:flex;
  flex-direction:column;
  width:100%;
  background:var(--white);
  border:1px solid rgba(221,233,222,.9);
  border-radius:4px;
  overflow:hidden;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.svc-card:hover .svc-inner{
  transform:translateY(-8px);
  border-color:rgba(183,167,137,.6);
  box-shadow:0 34px 66px -32px rgba(24,63,44,.36),
             0 4px 14px -6px rgba(24,63,44,.08);
}
/* gilt rule sweeps the top edge */
.svc-inner::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  z-index:3;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .7s var(--ease-premium);
}
.svc-card:hover .svc-inner::before{ transform:scaleX(1); }

/* ---- media ---- */
.svc-media{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--sage-light);
}
.svc-media img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1.3s var(--ease-premium);
}
.svc-card:hover .svc-media img{ transform:scale(1.07); }
.svc-media::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(24,63,44,.30) 0%, rgba(24,63,44,0) 42%);
}
/* numeral badge */
.svc-num{
  position:absolute; left:14px; top:12px;
  z-index:2;
  min-width:32px;
  padding:5px 9px;
  text-align:center;
  font-family:var(--font-display);
  font-size:14px; font-weight:500; line-height:1.2;
  color:var(--forest);
  background:rgba(255,255,255,.92);
  border-radius:2px;
  letter-spacing:.04em;
}

/* ---- body ---- */
.svc-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:20px 19px 18px;
}
.svc-body h3{
  font-size:17px;
  line-height:1.3;
  margin-bottom:9px;
  text-wrap:balance;
  transition:color var(--dur-fast) var(--ease-premium);
}
.svc-card:hover .svc-body h3{ color:var(--deep-green); }
.svc-body p{
  font-size:13.2px;
  line-height:1.72;
  margin:0 0 18px;
}
.svc-link{
  margin-top:auto;
  padding-top:15px;
  border-top:1px solid var(--sage);
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  font-size:10.5px; font-weight:700;
  letter-spacing:.13em; text-transform:uppercase;
  color:var(--text-soft);
  transition:color var(--dur-fast) var(--ease-premium);
}
.svc-link svg{
  width:15px; height:15px;
  flex-shrink:0;
  transition:transform var(--dur-med) var(--ease-premium);
}
.svc-card:hover .svc-link{ color:var(--deep-green); }
.svc-card:hover .svc-link svg{ transform:translateX(5px); }

/* whole card is the click target */
.svc-hit{ position:absolute; inset:0; z-index:4; }

/* ============================================================
   SERVICE DETAIL PAGE — image left, content right
   ============================================================ */
.svcp-section{
  background:var(--warm-white);
  padding:var(--gap-md) 0;
}

/* intro row: image left, opening statement right */
.svcp-intro{
  display:grid;
  grid-template-columns:minmax(0, .8fr) minmax(0, 1.2fr);
  gap:clamp(40px, 4.5vw, 76px);
  align-items:center;
  padding-bottom:clamp(40px, 4vw, 58px);
  border-bottom:1px solid var(--sage);
}
.svcp-intro > *{ min-width:0; }

.svcp-figure{
  margin:0;
  padding:14px;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:2px;
  box-shadow:0 38px 76px -44px rgba(24,63,44,.46);
}
.svcp-figure img{
  display:block;
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:1px;
  transition:transform 1.4s var(--ease-premium);
}
.svcp-figure.is-revealed img{ transform:scale(1); }

/* ---- article beneath the intro ---- */
.svcp-body{
  padding-top:clamp(38px, 4vw, 54px);
  overflow-wrap:break-word;
}
.svcp-intro-copy .eyebrow{ color:var(--earth); }
.svcp-intro-copy .eyebrow::before{ background:var(--earth); }
.svcp-intro-copy h2{
  font-size:clamp(30px, 3.4vw, 44px);
  line-height:1.18;
  max-width:18ch;
}
.svcp-intro-copy h2::after{
  content:'';
  display:block;
  width:52px; height:2px;
  margin-top:24px;
  background:linear-gradient(90deg, var(--earth), var(--green));
}
.svcp-lead{
  font-size:18.5px;
  line-height:1.72;
  color:var(--text);
  margin:26px 0 22px;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.svcp-body p{
  font-size:16px;
  line-height:1.9;
  margin-bottom:18px;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.svcp-body p:last-of-type{ margin-bottom:0; }

/* sub-heading within a service article */
.svcp-h3{
  font-size:clamp(21px, 2.1vw, 26px);
  line-height:1.3;
  margin:44px 0 8px;
  padding-top:30px;
  border-top:1px solid var(--sage);
}

/* lettered application blocks */
.svcp-app{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
  margin-top:30px;
}
.svcp-app-mark{
  flex-shrink:0;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--sage);
  border-radius:50%;
  background:var(--white);
  font-family:var(--font-display);
  font-size:15px;
  color:var(--earth);
  line-height:1;
}
.svcp-app-body{ min-width:0; }
.svcp-app-body h4{
  font-family:var(--font-display);
  font-size:19px;
  font-weight:500;
  color:var(--forest);
  margin:5px 0 12px;
}
.svcp-app-body p{
  margin-bottom:16px;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.svcp-app-body p:last-child{ margin-bottom:0; }

.svcp-list-title{
  text-align:left !important;
  hyphens:none;
  font-weight:600;
  color:var(--text) !important;
  margin-bottom:12px !important;
}
.svcp-list{
  display:flex;
  flex-direction:column;
  gap:11px;
  margin:0;
  padding:20px 24px;
  background:var(--sage-light);
  border-radius:3px;
}
.svcp-list li{
  position:relative;
  text-align:left;
  padding-left:22px;
  font-size:15px;
  line-height:1.7;
  color:var(--text-soft);
}
.svcp-list li::before{
  content:'';
  position:absolute; left:2px; top:.62em;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--earth);
}

/* term + definition list (e.g. types of diabetic patients) */
.svcp-terms{
  display:flex;
  flex-direction:column;
  gap:0;
  margin:0;
  border-top:1px solid var(--sage);
}
.svcp-terms li{
  display:grid;
  grid-template-columns:minmax(0, 210px) minmax(0, 1fr);
  gap:24px;
  padding:20px 0;
  border-bottom:1px solid var(--sage);
}
.svcp-terms strong{
  font-family:var(--font-display);
  font-size:17px;
  font-weight:500;
  color:var(--forest);
  line-height:1.35;
}
.svcp-terms span{
  font-size:15.4px;
  line-height:1.82;
  color:var(--text-soft);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}

/* sub-heading within a service article */
.svcp-h3{
  font-size:clamp(21px, 2.1vw, 26px);
  line-height:1.3;
  margin:44px 0 8px;
  padding-top:30px;
  border-top:1px solid var(--sage);
}

/* lettered application blocks */
.svcp-app{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
  margin-top:30px;
}
.svcp-app-mark{
  flex-shrink:0;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--sage);
  border-radius:50%;
  background:var(--white);
  font-family:var(--font-display);
  font-size:15px;
  color:var(--earth);
  line-height:1;
}
.svcp-app-body{ min-width:0; }
.svcp-app-body h4{
  font-family:var(--font-display);
  font-size:19px;
  font-weight:500;
  color:var(--forest);
  margin:5px 0 12px;
}
.svcp-app-body p{
  margin-bottom:16px;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.svcp-app-body p:last-child{ margin-bottom:0; }

.svcp-list-title{
  text-align:left !important;
  hyphens:none;
  font-weight:600;
  color:var(--text) !important;
  margin-bottom:12px !important;
}
.svcp-list{
  display:flex;
  flex-direction:column;
  gap:11px;
  margin:0;
  padding:20px 24px;
  background:var(--sage-light);
  border-radius:3px;
}
.svcp-list li{
  position:relative;
  text-align:left;
  padding-left:22px;
  font-size:15px;
  line-height:1.7;
  color:var(--text-soft);
}
.svcp-list li::before{
  content:'';
  position:absolute; left:2px; top:.62em;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--earth);
}

/* term + definition list (e.g. types of diabetic patients) */
.svcp-terms{
  display:flex;
  flex-direction:column;
  gap:0;
  margin:0;
  border-top:1px solid var(--sage);
}
.svcp-terms li{
  display:grid;
  grid-template-columns:minmax(0, 210px) minmax(0, 1fr);
  gap:24px;
  padding:20px 0;
  border-bottom:1px solid var(--sage);
}
.svcp-terms strong{
  font-family:var(--font-display);
  font-size:17px;
  font-weight:500;
  color:var(--forest);
  line-height:1.35;
}
.svcp-terms span{
  font-size:15.4px;
  line-height:1.82;
  color:var(--text-soft);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float{
  position:fixed;
  right:22px; bottom:22px;
  z-index:900;
  width:54px; height:54px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  box-shadow:0 12px 28px -10px rgba(11,32,22,.5), 0 2px 6px rgba(11,32,22,.18);
  transition:transform var(--dur-fast) var(--ease-premium),
             box-shadow var(--dur-fast) var(--ease-premium),
             opacity var(--dur-fast) var(--ease-premium);
}
.wa-float svg{ width:29px; height:29px; fill:currentColor; }
.wa-float:hover, .wa-float:focus-visible{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 18px 36px -12px rgba(11,32,22,.55), 0 2px 6px rgba(11,32,22,.2);
}
.wa-float:focus-visible{ outline:2px solid var(--forest); outline-offset:3px; }
/* soft pulse to draw the eye without shouting */
.wa-float::after{
  content:'';
  position:absolute; inset:0;
  border-radius:50%;
  border:2px solid #25D366;
  animation:waPulse 2.6s var(--ease-premium) infinite;
  pointer-events:none;
}
@keyframes waPulse{
  0%   { transform:scale(1);    opacity:.55; }
  70%  { transform:scale(1.45); opacity:0; }
  100% { transform:scale(1.45); opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .wa-float::after{ animation:none; }
}
/* the button sits above the page but must not float over the open menu */
body.menu-open .wa-float{ opacity:0; pointer-events:none; transform:scale(.9); }

/* ---------- Custom cursor ---------- */
.cursor-dot{ position:fixed; top:0; left:0; width:8px; height:8px; background:var(--green); border-radius:50%; pointer-events:none; z-index:9998; transform:translate(-50%,-50%); mix-blend-mode:normal; transition:opacity .2s; }
.cursor-ring{ position:fixed; top:0; left:0; width:38px; height:38px; border:1px solid var(--green); border-radius:50%; pointer-events:none; z-index:9997; transform:translate(-50%,-50%); transition:width .25s var(--ease-premium), height .25s var(--ease-premium), opacity .2s, border-color .25s; }
.cursor-ring.hover{ width:64px; height:64px; background:rgba(111,146,118,.12); }

/* ---------- Forms ---------- */
.form-shell{ background:var(--white); border:1px solid var(--sage); border-radius:8px; padding:56px; }
.field{ position:relative; margin-bottom:30px; }
.field input, .field select, .field textarea{
  width:100%; padding:18px 0 10px; border:none; border-bottom:1px solid var(--sage);
  background:transparent; font-size:16px; color:var(--text); transition:border-color var(--dur-fast);
}
.field textarea{ resize:vertical; min-height:100px; }
.field label{
  position:absolute; left:0; top:18px; font-size:15px; color:var(--text-soft); pointer-events:none;
  transition:transform var(--dur-fast) var(--ease-premium), font-size var(--dur-fast) var(--ease-premium), color var(--dur-fast) var(--ease-premium);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--deep-green); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:focus + label,
.field select.has-value + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label{
  transform:translateY(-16px); font-size:12px; color:var(--green); letter-spacing:.04em; text-transform:uppercase; font-weight:700;
}
/* static label above a select (a floating label cannot work there).
   Scoped under .field so it outranks the absolutely-positioned .field label */
.field .field-label{
  position:static; display:block;
  margin-bottom:10px;
  font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:.08em;
  color:var(--text-soft);
}

/* ---- custom select ---- */
.sel-native{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0);
  white-space:nowrap; border:0;
}
.sel{ position:relative; }
.sel-trigger{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:15px 0 9px;
  border:none; border-bottom:1px solid var(--sage);
  background:transparent;
  font-family:var(--font-body);
  font-size:16px; text-align:left;
  color:var(--text);
  cursor:pointer;
  transition:border-color var(--dur-fast) var(--ease-premium);
}
.sel-trigger:hover{ border-bottom-color:var(--green); }
.sel.is-open .sel-trigger,
.sel-trigger:focus-visible{ border-bottom-color:var(--deep-green); outline:none; }
.sel-value.is-placeholder{ color:var(--text-soft); }
.sel-caret{
  width:17px; height:17px; flex-shrink:0;
  color:var(--green);
  transition:transform var(--dur-fast) var(--ease-premium);
}
.sel.is-open .sel-caret{ transform:rotate(180deg); }

.sel-list{
  position:absolute; left:0; right:0; top:calc(100% + 8px);
  z-index:40;
  margin:0; padding:6px;
  max-height:264px; overflow-y:auto;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:4px;
  box-shadow:0 26px 54px -26px rgba(24,63,44,.34), 0 2px 8px rgba(24,63,44,.06);
  opacity:0; visibility:hidden;
  transform:translateY(-6px);
  transition:opacity var(--dur-fast) var(--ease-premium),
             transform var(--dur-fast) var(--ease-premium),
             visibility var(--dur-fast);
}
.sel.is-open .sel-list{ opacity:1; visibility:visible; transform:translateY(0); }

.sel-option{
  padding:11px 14px;
  border-radius:2px;
  font-size:14.6px;
  line-height:1.45;
  color:var(--text);
  cursor:pointer;
  transition:background var(--dur-fast) var(--ease-premium),
             color var(--dur-fast) var(--ease-premium);
}
.sel-option.is-placeholder{ color:var(--text-soft); }
.sel-option:hover, .sel-option.is-active{ background:var(--sage-light); color:var(--forest); }
.sel-option.is-selected{ background:var(--forest); color:var(--white); font-weight:600; }
.sel-list::-webkit-scrollbar{ width:6px; }
.sel-list::-webkit-scrollbar-thumb{ background:var(--sage); border-radius:3px; }

/* ---------- Form success popup ---------- */
.form-popup{
  position:fixed; inset:0; z-index:9995;
  display:none; align-items:center; justify-content:center;
  padding:24px;
}
.form-popup.is-open{ display:flex; }
.form-popup-backdrop{
  position:absolute; inset:0;
  background:rgba(11,32,22,.62);
  backdrop-filter:blur(3px);
  animation:fpFade .35s var(--ease-premium);
}
.form-popup-box{
  position:relative; z-index:2;
  width:min(420px, 100%);
  padding:44px 38px 36px;
  text-align:center;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:6px;
  box-shadow:0 40px 90px -40px rgba(11,32,22,.6);
  animation:fpRise .5s var(--ease-premium);
}
.form-popup-icon{
  width:60px; height:60px;
  margin:0 auto 22px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:var(--sage-light);
  border:1px solid var(--sage);
  color:var(--deep-green);
}
.form-popup-icon svg{ width:26px; height:26px; }
.form-popup-box h3{ font-size:24px; margin-bottom:12px; }
.form-popup-msg{ font-size:15px; line-height:1.75; margin-bottom:28px; }
.form-popup-close{ width:100%; justify-content:center; }
@keyframes fpFade{ from{ opacity:0; } to{ opacity:1; } }
@keyframes fpRise{ from{ opacity:0; transform:translateY(18px) scale(.97); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){
  .form-popup-backdrop, .form-popup-box{ animation:none; }
}

/* submission failure message */
.form-error{
  display:none;
  margin-top:16px;
  padding:14px 16px;
  background:#FBF0EE;
  border:1px solid #E4C7C0;
  border-left:2px solid #B0503D;
  border-radius:3px;
  font-size:13.5px;
  line-height:1.65;
  color:#8C3F30;
}

/* prefilled and locked (e.g. the product carried over from the catalogue) */
.field input.is-locked{
  color:var(--forest);
  font-weight:600;
  cursor:default;
  background:transparent;
}

.field .field-error{ font-size:12.5px; color:#B0503D; margin-top:6px; min-height:16px; display:block; }
.field.has-error input, .field.has-error select, .field.has-error textarea{ border-color:#B0503D; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:30px; }
.checkbox-group{ display:flex; flex-wrap:wrap; gap:12px; margin-top:6px; }
.chip-option{ padding:11px 18px; border:1px solid var(--sage); border-radius:30px; font-size:13.5px; cursor:pointer; transition:all var(--dur-fast); color:var(--text-soft); }
.chip-option.selected{ background:var(--deep-green); color:var(--white); border-color:var(--deep-green); }
.step-indicator{ display:flex; gap:8px; margin-bottom:44px; }
.step-indicator .dot{ flex:1; height:2px; background:var(--sage); position:relative; overflow:hidden; }
.step-indicator .dot span{ position:absolute; inset:0; background:var(--deep-green); transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease-premium); }
.step-indicator .dot.done span, .step-indicator .dot.active span{ transform:scaleX(1); }
.step-label{ font-size:12.5px; text-transform:uppercase; letter-spacing:.12em; color:var(--green); font-weight:700; margin-bottom:10px; }
.form-step{ display:none; }
.form-step.active{ display:block; animation:stepIn .5s var(--ease-premium); }
@keyframes stepIn{ from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:translateY(0);} }
.form-nav{ display:flex; justify-content:space-between; margin-top:20px; }

/* ---------- Doctors ---------- */
.doctors-section{ background:var(--warm-white); padding:var(--gap-md) 0; }

/* ============================================================
   HOME — featured pair, horizontal cards.
   Portraits are 375x504; the photo column is 230px, so they
   downscale and stay sharp.
   ============================================================ */
.doctor-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:clamp(22px, 2.2vw, 30px);
  margin-top:52px;
}

.doctor-grid .doctor-card{
  display:grid;
  grid-template-columns:minmax(0, 230px) 1fr;
  gap:28px;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:26px;
  background:linear-gradient(158deg, var(--white) 0%, #FBFBF7 100%);
  border:1px solid rgba(221,233,222,.9);
  border-radius:3px;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.doctor-grid .doctor-card:hover{
  transform:translateY(-5px);
  border-color:rgba(183,167,137,.5);
  box-shadow:0 30px 60px -32px rgba(24,63,44,.32);
}
/* gilt rule sweeps the top edge */
.doctor-grid .doctor-card::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .8s var(--ease-premium);
}
.doctor-grid .doctor-card:hover::before{ transform:scaleX(1); }

.doctor-grid .dc-photo{
  position:relative;
  aspect-ratio:375/504;
  overflow:hidden;
  border-radius:2px;
  background:var(--sage-light);
}
.doctor-grid .dc-photo img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1.2s var(--ease-premium);
}
.doctor-grid .doctor-card:hover .dc-photo img{ transform:scale(1.05); }

/* monogram tile for physicians without a portrait */
.doctor-grid .dc-mono{
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(158deg, var(--sage-light) 0%, var(--sage) 100%);
  border:1px solid var(--sage);
}
.doctor-grid .dc-mono span{
  font-family:var(--font-display);
  font-size:50px; font-weight:500;
  letter-spacing:.04em;
  color:var(--deep-green);
  opacity:.5;
}

.doctor-grid .dc-body{ min-width:0; padding-right:6px; }
.doctor-grid .dc-tag{
  display:block;
  font-size:11px; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--green);
  margin-bottom:12px;
}
.doctor-grid .doctor-card.is-lead .dc-tag{ color:var(--earth); }
.doctor-grid .doctor-card h3{
  font-size:23px;
  line-height:1.24;
  margin-bottom:16px;
  padding-bottom:16px;
  border-bottom:1px solid var(--sage);
}
.doctor-grid .dc-cred{ font-size:13.5px; line-height:1.7; color:var(--text-soft); }

.doctor-cta{ display:flex; justify-content:center; margin-top:48px; }

/* ---------- Diagnostic facilities ---------- */
.facilities-section{ background:var(--sage-light); padding:var(--gap-md) 0; }

/* gapped cards rather than a hairline grid, so the cards read as separate
   objects and hover lift is possible */
.facility-grid-4{ grid-template-columns:repeat(4, 1fr) !important; }
/* ten facilities: five across gives two even rows, where three or four
   would leave a stranded last row */
.facility-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:16px;
  margin-top:52px;
}
.facility-item{
  display:flex;
  flex-direction:column;
  padding:24px 20px 26px;
  background:var(--white);
  border:1px solid rgba(221,233,222,.9);
  border-radius:3px;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.facility-item:hover{
  transform:translateY(-4px);
  border-color:rgba(183,167,137,.5);
  box-shadow:0 24px 46px -28px rgba(24,63,44,.3);
}
.facility-item .f-icon{
  width:36px; height:36px;
  color:var(--deep-green);
  transition:color var(--dur-med) var(--ease-premium);
}
.facility-item .f-icon svg{ width:100%; height:100%; }
.facility-item:hover .f-icon{ color:var(--earth); }
.facility-item h4{ margin-top:18px; font-size:16px; line-height:1.3; text-wrap:balance; }
.facility-item p{ font-size:13px; line-height:1.68; margin-top:8px; }

/* ---------- Why choose us ---------- */
.why-section{
  background:var(--warm-white);
  padding:var(--gap-md) 0;
  position:relative;
  overflow:hidden;
}

/* ----- Intro row: image left, copy right ----- */
.why-intro{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:clamp(52px, 6vw, 100px);
  align-items:center;
  margin-bottom:clamp(56px, 6vw, 88px);
}
.why-intro > *{ min-width:0; }

/* image in a white matte with a hairline surround */
.why-media{
  aspect-ratio:825/621;
  max-width:560px;
  padding:14px;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:2px;
  box-shadow:0 34px 70px -42px rgba(24,63,44,.42);
}
.why-media img{
  width:100%; height:100%;
  object-fit:cover;
  border-radius:1px;
  transition:transform 1.4s var(--ease-premium);
}
.why-media.is-revealed img{ transform:scale(1); }

.why-intro-copy h2{ max-width:15ch; }
.why-intro-copy .lede{ margin-top:22px; max-width:44ch; }
.why-intro-copy .btn{ margin-top:34px; }

/* ----- Reason cards (flip) ----- */
.why-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.why-item{
  perspective:1600px;
  outline:none;
}
.w-inner{
  position:relative;
  min-height:234px;
  height:100%;
  transform-style:preserve-3d;
  transition:transform 1.05s var(--ease-premium);
}
.why-item:hover .w-inner,
.why-item:focus-visible .w-inner{ transform:rotateY(180deg); }

.w-face{
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  padding:24px 26px 26px;
  border-radius:3px;
  overflow:hidden;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}

/* ---- front ---- */
.w-front{
  background:linear-gradient(158deg, var(--white) 0%, #FBFBF7 100%);
  border:1px solid rgba(221,233,222,.85);
  box-shadow:0 1px 2px rgba(24,63,44,.03);
}
/* gilt rule along the top edge */
.w-front::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  opacity:.55;
}

.w-num{
  position:absolute;
  top:22px; right:24px;
  font-family:var(--font-display);
  font-size:32px; font-weight:500; line-height:1;
  color:var(--earth);
  letter-spacing:.02em;
  pointer-events:none;
  transition:color var(--dur-med) var(--ease-premium);
}
.why-item:hover .w-num{ color:var(--deep-green); }

.w-icon{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  width:52px; height:52px;
  margin-bottom:14px;
  border:1px solid var(--sage);
  border-radius:50%;
  color:var(--deep-green);
  transition:background var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium),
             color var(--dur-med) var(--ease-premium);
}
.w-icon svg{ width:26px; height:26px; stroke-width:1.4; }
.why-item:hover .w-icon{ background:var(--forest); border-color:var(--forest); color:var(--white); }

.w-front h3{
  position:relative;
  font-size:20px;
  line-height:1.3;
  max-width:26ch;
  padding-right:46px;
  text-wrap:balance;
}

/* arrow affordance pinned to the bottom */
.w-hint{
  margin-top:auto;
  display:flex; align-items:center; justify-content:center;
  width:32px; height:32px;
  border-radius:50%;
  border:1px solid var(--sage);
  color:var(--green);
  transition:transform var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.w-hint svg{ width:14px; height:14px; }
.why-item:hover .w-hint{ transform:translateX(5px); border-color:var(--earth); }

/* ---- back ---- */
.w-back{
  transform:rotateY(180deg);
  justify-content:center;
  background:linear-gradient(158deg, #24583F 0%, var(--forest) 100%);
  border:1px solid var(--forest);
  box-shadow:0 34px 66px -34px rgba(24,63,44,.55);
}
.w-back::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--earth) 0%, rgba(183,167,137,0) 100%);
}
.w-back h3{
  color:var(--white);
  font-size:18px;
  line-height:1.3;
  margin-bottom:11px;
  max-width:24ch;
}
.w-back p{
  color:var(--sage);
  font-size:14.5px;
  line-height:1.72;
  margin:0;
  opacity:.92;
}

/* keyboard ring on the visible face */
.why-item:focus-visible .w-face{ outline:2px solid var(--earth); outline-offset:3px; }

/* Touch: no hover, so the reveal is driven by scroll position instead —
   JS adds .is-flipped to whichever card is nearest the viewport centre.
   A rotateY flip rasterises the text into a 3D layer, which reads as
   blurry on phone screens, so the faces cross-fade in 2D instead. */
@media (hover: none){
  .why-item{ perspective:none; }
  .w-inner{ transform-style:flat; transition:none; }
  .why-item:hover .w-inner,
  .why-item.is-flipped .w-inner{ transform:none; }

  .w-face{
    backface-visibility:visible;
    -webkit-backface-visibility:visible;
    transition:opacity .45s var(--ease-premium), transform .55s var(--ease-premium);
  }
  .w-front{ opacity:1; transform:none; }
  .w-back{ opacity:0; transform:translateY(10px); }
  .why-item.is-flipped .w-front{ opacity:0; transform:translateY(-10px); pointer-events:none; }
  .why-item.is-flipped .w-back{ opacity:1; transform:none; }

  .why-item.is-flipped .w-icon{ background:var(--forest); border-color:var(--forest); color:var(--white); }
  .why-item.is-flipped .w-num{ color:var(--deep-green); }
  .why-item.is-flipped .w-hint{ transform:translateX(5px); border-color:var(--earth); }
}



/* ---------- Online consultation ---------- */
.consult-section{ background:var(--deep-green); color:var(--white); padding:var(--gap-md) 0; position:relative; overflow:hidden; }
.consult-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:60px; align-items:center; }
.consult-section .eyebrow{ color:var(--sage); }
.consult-section .eyebrow::before{ background:var(--sage); }
.consult-section h2{ color:var(--white); }
.consult-section p{ color:rgba(255,255,255,.8); }
.consult-list{ margin-top:26px; display:flex; flex-wrap:wrap; gap:12px; }
.consult-chip{ border:1px solid rgba(255,255,255,.3); padding:9px 18px; border-radius:30px; font-size:13px; color:rgba(255,255,255,.9); }
.consult-card{ background:var(--forest); border-radius:8px; padding:44px; text-align:center; }
.consult-card svg{ width:46px; height:46px; margin:0 auto 20px; }

/* ---------- Appointment CTA ---------- */
.cta-band{ background:var(--sage-light); padding:110px 0; text-align:center; }
.cta-band h2{ max-width:700px; margin:0 auto 30px; }

/* ---------- Footer ---------- */
footer.site-footer{ background:var(--forest); color:rgba(255,255,255,.75); padding:64px 0 0; }
.footer-top{ display:grid; grid-template-columns:1.5fr 1fr 1.15fr 1.1fr; gap:44px; padding-bottom:46px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand .logo-text .l1{ color:var(--white); }
.footer-brand p{ color:rgba(255,255,255,.65); margin-top:18px; max-width:310px; font-size:13.8px; line-height:1.72; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{ width:34px; height:34px; border:1px solid rgba(255,255,255,.25); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:background var(--dur-fast), border-color var(--dur-fast); }
.footer-social a:hover{ background:var(--green); border-color:var(--green); }
.footer-social svg{ width:16px; height:16px; stroke:var(--white); }
.footer-social a[aria-label*="WhatsApp"] svg{ width:17px; height:17px; fill:var(--white); stroke:none; }
.footer-col h5{ font-family:var(--font-body); font-size:11.5px; text-transform:uppercase; letter-spacing:.14em; color:var(--sage); font-weight:700; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; font-size:13.8px; line-height:1.6; }
.footer-col ul a{ font-size:13.8px; color:rgba(255,255,255,.72); transition:color var(--dur-fast), padding var(--dur-fast); }
/* scoped to the link lists so the logo and social icons stay put */
.footer-col ul a:hover{ color:var(--white); padding-left:4px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:20px 0; font-size:12.5px; color:rgba(255,255,255,.5); flex-wrap:wrap; gap:10px; }
.footer-credit a{ color:var(--sage); transition:color var(--dur-fast); }
.footer-credit a:hover{ color:var(--white); }

/* footer logo sits on a light plate so the full-colour mark stays legible */
.footer-logo{
  display:inline-flex;
  padding:11px 15px;
  background:var(--warm-white);
  border-radius:3px;
}
.footer-logo .logo-img{ height:46px; }
.footer-bottom a:hover{ color:var(--white); }

/* ---------- About: Our Story ---------- */
.ab-story-section{
  background:var(--warm-white);
  padding:var(--gap-md) 0;
  position:relative;
}

.ab-story-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:clamp(44px, 5vw, 90px);
  align-items:center;
}
.ab-story-grid > *{ min-width:0; }

/* left: heading, then the founders' portrait beneath it */
.ab-story-left h2{
  font-size:clamp(32px, 3.8vw, 50px);
  line-height:1.15;
  margin-top:4px;
  margin-bottom:clamp(28px, 3vw, 42px);
}
.ab-story-left .ab-media{ max-width:100%; }

/* right: the story, one column */
.ab-story-text p{
  font-size:16px;
  line-height:1.9;
  margin-bottom:22px;
  text-align:justify; text-justify:inter-word;
  hyphens:auto; -webkit-hyphens:auto;
}
.ab-story-text p:last-child{ margin-bottom:0; }

/* ============================================================
   ABOUT PAGE
   Source photos are 610x360; frames keep that native ratio and
   the columns cap near 610px so nothing upscales.
   ============================================================ */
.ab-split{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:clamp(44px, 5vw, 84px);
  align-items:center;
}
.ab-split > *{ min-width:0; }
.ab-split-rev .ab-media{ order:-1; }

.ab-copy h2{ margin-top:6px; max-width:16ch; margin-bottom:22px; }
.ab-copy .eyebrow, .ab-founder .eyebrow{ margin-bottom:16px; }
.ab-copy p{
  font-size:16px; line-height:1.85; margin-bottom:18px;
  text-align:justify; text-justify:inter-word;
  hyphens:auto; -webkit-hyphens:auto;
}
.ab-copy p:last-child{ margin-bottom:0; }

/* framed photo with a white matte */
.ab-media{
  max-width:560px;
  padding:13px;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:2px;
  box-shadow:0 34px 70px -42px rgba(24,63,44,.42);
}
.ab-media img{
  width:100%;
  aspect-ratio:610/360;
  object-fit:cover;
  border-radius:1px;
  transition:transform 1.4s var(--ease-premium);
}
.ab-media.is-revealed img{ transform:scale(1); }
.ab-media{
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium);
}
.ab-media:hover{
  transform:translateY(-5px);
  box-shadow:0 44px 84px -44px rgba(24,63,44,.5);
}
.ab-media figcaption{
  margin-top:11px;
  font-size:11.5px; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--text-soft);
}

/* fact strip — hairline-divided counters */
.ab-facts{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  margin-top:clamp(48px, 5vw, 76px);
  border-top:1px solid var(--sage);
  border-bottom:1px solid var(--sage);
}
.ab-facts li{
  position:relative;
  display:flex; flex-direction:column; gap:10px;
  padding:32px clamp(20px, 2.2vw, 34px);
  transition:background var(--dur-med) var(--ease-premium);
}
.ab-facts li + li{ border-left:1px solid var(--sage); }
.ab-facts li:hover{ background:var(--white); }
/* gilt rule draws in on hover */
.ab-facts li::before{
  content:'';
  position:absolute; top:-1px; left:0;
  height:2px; width:0;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  transition:width .7s var(--ease-premium);
}
.ab-facts li:hover::before{ width:100%; }
.ab-facts strong{
  font-family:var(--font-display);
  font-size:clamp(34px, 3.4vw, 46px);
  font-weight:500; line-height:1;
  color:var(--earth);
  font-variant-numeric:tabular-nums;
}
.ab-facts span{
  font-size:11.5px; font-weight:600;
  letter-spacing:.11em; text-transform:uppercase;
  line-height:1.55; color:var(--text-soft);
}

/* environment band */
.ab-env-section{
  background:var(--sage-light);
  padding:var(--gap-md) 0;
  position:relative;
  overflow:hidden;
}

/* founder band */
.ab-founder-section{
  background:var(--forest);
  padding:var(--gap-md) 0;
  position:relative;
  overflow:hidden;
}
.ab-founder-section::before{
  content:'';
  position:absolute; left:18%; top:50%;
  width:min(900px, 80%); aspect-ratio:1;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(111,146,118,.28) 0%, rgba(24,63,44,0) 62%);
  pointer-events:none;
}
.ab-founder-section .container{ position:relative; z-index:1; }
.ab-founder{
  display:grid;
  grid-template-columns:minmax(0, .62fr) minmax(0, 1.38fr);
  gap:clamp(40px, 4.5vw, 76px);
  align-items:center;
}
.ab-founder > *{ min-width:0; }
.ab-founder h2, .ab-founder .eyebrow{ color:var(--white); }
.ab-founder .eyebrow{ color:var(--sage); }
.ab-founder .eyebrow::before{ background:var(--sage); }
.ab-founder p{
  color:rgba(255,255,255,.78); font-size:15.5px; line-height:1.85;
  text-align:justify; text-justify:inter-word;
  hyphens:auto; -webkit-hyphens:auto;
}
.ab-cred, .ab-quote{ text-align:left !important; hyphens:none; }
.ab-cred{
  color:var(--sage) !important;
  font-size:13px !important;
  font-weight:600;
  letter-spacing:.06em;
  margin:10px 0 24px;
}
.ab-quote{
  font-family:var(--font-display);
  font-size:19px;
  line-height:1.65;
  color:var(--white);
  border-left:2px solid var(--earth);
  padding-left:22px;
  margin-bottom:24px;
}
.ab-portrait{
  max-width:320px;
  padding:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(221,233,222,.22);
  border-radius:2px;
}
.ab-portrait img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  object-position:center 22%;
  border-radius:1px;
  /* light touch only — just enough to soften the hard blue studio backdrop */
  filter:saturate(.88) contrast(1.03);
  transition:transform 1.4s var(--ease-premium), filter var(--dur-med) var(--ease-premium);
}
.ab-portrait:hover img{ filter:saturate(1) contrast(1.02); }
.ab-portrait.is-revealed img{ transform:scale(1); }
.ab-portrait{ position:relative; }
.ab-portrait::after{
  content:'';
  position:absolute; left:12px; right:12px; bottom:12px; height:2px;
  background:linear-gradient(90deg, var(--earth) 0%, rgba(183,167,137,0) 100%);
}

/* ============================================================
   SERVICES PAGE — card grid
   Four columns keep the 450-970px sources well downscaled and sharp.
   ============================================================ */
.svc-section{ background:var(--warm-white); padding:var(--gap-md) 0; }
.svc-section .section-head{ margin-bottom:56px; }

.svc-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

/* .svc-card is what GSAP animates on entry; all visual styling and the
   hover lift live on .svc-inner, so a CSS transform transition can never
   interpolate GSAP's per-frame writes and flatten the entrance. */
.svc-card{ position:relative; display:flex; }

.svc-inner{
  position:relative;
  display:flex;
  flex-direction:column;
  width:100%;
  background:var(--white);
  border:1px solid rgba(221,233,222,.9);
  border-radius:4px;
  overflow:hidden;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.svc-card:hover .svc-inner{
  transform:translateY(-8px);
  border-color:rgba(183,167,137,.6);
  box-shadow:0 34px 66px -32px rgba(24,63,44,.36),
             0 4px 14px -6px rgba(24,63,44,.08);
}
/* gilt rule sweeps the top edge */
.svc-inner::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  z-index:3;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .7s var(--ease-premium);
}
.svc-card:hover .svc-inner::before{ transform:scaleX(1); }

/* ---- media ---- */
.svc-media{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--sage-light);
}
.svc-media img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1.3s var(--ease-premium);
}
.svc-card:hover .svc-media img{ transform:scale(1.07); }
.svc-media::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(24,63,44,.30) 0%, rgba(24,63,44,0) 42%);
}
/* numeral badge */
.svc-num{
  position:absolute; left:14px; top:12px;
  z-index:2;
  min-width:32px;
  padding:5px 9px;
  text-align:center;
  font-family:var(--font-display);
  font-size:14px; font-weight:500; line-height:1.2;
  color:var(--forest);
  background:rgba(255,255,255,.92);
  border-radius:2px;
  letter-spacing:.04em;
}

/* ---- body ---- */
.svc-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:20px 19px 18px;
}
.svc-body h3{
  font-size:17px;
  line-height:1.3;
  margin-bottom:9px;
  text-wrap:balance;
  transition:color var(--dur-fast) var(--ease-premium);
}
.svc-card:hover .svc-body h3{ color:var(--deep-green); }
.svc-body p{
  font-size:13.2px;
  line-height:1.72;
  margin:0 0 18px;
}
.svc-link{
  margin-top:auto;
  padding-top:15px;
  border-top:1px solid var(--sage);
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  font-size:10.5px; font-weight:700;
  letter-spacing:.13em; text-transform:uppercase;
  color:var(--text-soft);
  transition:color var(--dur-fast) var(--ease-premium);
}
.svc-link svg{
  width:15px; height:15px;
  flex-shrink:0;
  transition:transform var(--dur-med) var(--ease-premium);
}
.svc-card:hover .svc-link{ color:var(--deep-green); }
.svc-card:hover .svc-link svg{ transform:translateX(5px); }

/* whole card is the click target */
.svc-hit{ position:absolute; inset:0; z-index:4; }

/* ============================================================
   SERVICE DETAIL PAGE — image left, content right
   ============================================================ */
.svcp-section{
  background:var(--warm-white);
  padding:var(--gap-md) 0;
}

/* intro row: image left, opening statement right */
.svcp-intro{
  display:grid;
  grid-template-columns:minmax(0, .8fr) minmax(0, 1.2fr);
  gap:clamp(40px, 4.5vw, 76px);
  align-items:center;
  padding-bottom:clamp(40px, 4vw, 58px);
  border-bottom:1px solid var(--sage);
}
.svcp-intro > *{ min-width:0; }

.svcp-figure{
  margin:0;
  padding:14px;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:2px;
  box-shadow:0 38px 76px -44px rgba(24,63,44,.46);
}
.svcp-figure img{
  display:block;
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:1px;
  transition:transform 1.4s var(--ease-premium);
}
.svcp-figure.is-revealed img{ transform:scale(1); }

/* ---- article beneath the intro ---- */
.svcp-body{
  padding-top:clamp(38px, 4vw, 54px);
  overflow-wrap:break-word;
}
.svcp-intro-copy .eyebrow{ color:var(--earth); }
.svcp-intro-copy .eyebrow::before{ background:var(--earth); }
.svcp-intro-copy h2{
  font-size:clamp(30px, 3.4vw, 44px);
  line-height:1.18;
  max-width:18ch;
}
.svcp-intro-copy h2::after{
  content:'';
  display:block;
  width:52px; height:2px;
  margin-top:24px;
  background:linear-gradient(90deg, var(--earth), var(--green));
}
.svcp-lead{
  font-size:18.5px;
  line-height:1.72;
  color:var(--text);
  margin:26px 0 22px;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.svcp-body p{
  font-size:16px;
  line-height:1.9;
  margin-bottom:18px;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.svcp-body p:last-of-type{ margin-bottom:0; }

/* sub-heading within a service article */
.svcp-h3{
  font-size:clamp(21px, 2.1vw, 26px);
  line-height:1.3;
  margin:44px 0 8px;
  padding-top:30px;
  border-top:1px solid var(--sage);
}

/* lettered application blocks */
.svcp-app{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
  margin-top:30px;
}
.svcp-app-mark{
  flex-shrink:0;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--sage);
  border-radius:50%;
  background:var(--white);
  font-family:var(--font-display);
  font-size:15px;
  color:var(--earth);
  line-height:1;
}
.svcp-app-body{ min-width:0; }
.svcp-app-body h4{
  font-family:var(--font-display);
  font-size:19px;
  font-weight:500;
  color:var(--forest);
  margin:5px 0 12px;
}
.svcp-app-body p{
  margin-bottom:16px;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.svcp-app-body p:last-child{ margin-bottom:0; }

.svcp-list-title{
  text-align:left !important;
  hyphens:none;
  font-weight:600;
  color:var(--text) !important;
  margin-bottom:12px !important;
}
.svcp-list{
  display:flex;
  flex-direction:column;
  gap:11px;
  margin:0;
  padding:20px 24px;
  background:var(--sage-light);
  border-radius:3px;
}
.svcp-list li{
  position:relative;
  text-align:left;
  padding-left:22px;
  font-size:15px;
  line-height:1.7;
  color:var(--text-soft);
}
.svcp-list li::before{
  content:'';
  position:absolute; left:2px; top:.62em;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--earth);
}

/* term + definition list (e.g. types of diabetic patients) */
.svcp-terms{
  display:flex;
  flex-direction:column;
  gap:0;
  margin:0;
  border-top:1px solid var(--sage);
}
.svcp-terms li{
  display:grid;
  grid-template-columns:minmax(0, 210px) minmax(0, 1fr);
  gap:24px;
  padding:20px 0;
  border-bottom:1px solid var(--sage);
}
.svcp-terms strong{
  font-family:var(--font-display);
  font-size:17px;
  font-weight:500;
  color:var(--forest);
  line-height:1.35;
}
.svcp-terms span{
  font-size:15.4px;
  line-height:1.82;
  color:var(--text-soft);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}

/* sub-heading within a service article */
.svcp-h3{
  font-size:clamp(21px, 2.1vw, 26px);
  line-height:1.3;
  margin:44px 0 8px;
  padding-top:30px;
  border-top:1px solid var(--sage);
}

/* lettered application blocks */
.svcp-app{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
  margin-top:30px;
}
.svcp-app-mark{
  flex-shrink:0;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--sage);
  border-radius:50%;
  background:var(--white);
  font-family:var(--font-display);
  font-size:15px;
  color:var(--earth);
  line-height:1;
}
.svcp-app-body{ min-width:0; }
.svcp-app-body h4{
  font-family:var(--font-display);
  font-size:19px;
  font-weight:500;
  color:var(--forest);
  margin:5px 0 12px;
}
.svcp-app-body p{
  margin-bottom:16px;
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}
.svcp-app-body p:last-child{ margin-bottom:0; }

.svcp-list-title{
  text-align:left !important;
  hyphens:none;
  font-weight:600;
  color:var(--text) !important;
  margin-bottom:12px !important;
}
.svcp-list{
  display:flex;
  flex-direction:column;
  gap:11px;
  margin:0;
  padding:20px 24px;
  background:var(--sage-light);
  border-radius:3px;
}
.svcp-list li{
  position:relative;
  text-align:left;
  padding-left:22px;
  font-size:15px;
  line-height:1.7;
  color:var(--text-soft);
}
.svcp-list li::before{
  content:'';
  position:absolute; left:2px; top:.62em;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--earth);
}

/* term + definition list (e.g. types of diabetic patients) */
.svcp-terms{
  display:flex;
  flex-direction:column;
  gap:0;
  margin:0;
  border-top:1px solid var(--sage);
}
.svcp-terms li{
  display:grid;
  grid-template-columns:minmax(0, 210px) minmax(0, 1fr);
  gap:24px;
  padding:20px 0;
  border-bottom:1px solid var(--sage);
}
.svcp-terms strong{
  font-family:var(--font-display);
  font-size:17px;
  font-weight:500;
  color:var(--forest);
  line-height:1.35;
}
.svcp-terms span{
  font-size:15.4px;
  line-height:1.82;
  color:var(--text-soft);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  -webkit-hyphens:auto;
}

/* ---------- Custom cursor ---------- */
.cursor-dot{ position:fixed; top:0; left:0; width:8px; height:8px; background:var(--green); border-radius:50%; pointer-events:none; z-index:9998; transform:translate(-50%,-50%); mix-blend-mode:normal; transition:opacity .2s; }
.cursor-ring{ position:fixed; top:0; left:0; width:38px; height:38px; border:1px solid var(--green); border-radius:50%; pointer-events:none; z-index:9997; transform:translate(-50%,-50%); transition:width .25s var(--ease-premium), height .25s var(--ease-premium), opacity .2s, border-color .25s; }
.cursor-ring.hover{ width:64px; height:64px; background:rgba(111,146,118,.12); }

/* ---------- Forms ---------- */
.form-shell{ background:var(--white); border:1px solid var(--sage); border-radius:8px; padding:56px; }
.field{ position:relative; margin-bottom:30px; }
.field input, .field select, .field textarea{
  width:100%; padding:18px 0 10px; border:none; border-bottom:1px solid var(--sage);
  background:transparent; font-size:16px; color:var(--text); transition:border-color var(--dur-fast);
}
.field textarea{ resize:vertical; min-height:100px; }
.field label{
  position:absolute; left:0; top:18px; font-size:15px; color:var(--text-soft); pointer-events:none;
  transition:transform var(--dur-fast) var(--ease-premium), font-size var(--dur-fast) var(--ease-premium), color var(--dur-fast) var(--ease-premium);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--deep-green); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:focus + label,
.field select.has-value + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label{
  transform:translateY(-16px); font-size:12px; color:var(--green); letter-spacing:.04em; text-transform:uppercase; font-weight:700;
}
.field .field-error{ font-size:12.5px; color:#B0503D; margin-top:6px; min-height:16px; display:block; }
.field.has-error input, .field.has-error select, .field.has-error textarea{ border-color:#B0503D; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:30px; }
.checkbox-group{ display:flex; flex-wrap:wrap; gap:12px; margin-top:6px; }
.chip-option{ padding:11px 18px; border:1px solid var(--sage); border-radius:30px; font-size:13.5px; cursor:pointer; transition:all var(--dur-fast); color:var(--text-soft); }
.chip-option.selected{ background:var(--deep-green); color:var(--white); border-color:var(--deep-green); }
.step-indicator{ display:flex; gap:8px; margin-bottom:44px; }
.step-indicator .dot{ flex:1; height:2px; background:var(--sage); position:relative; overflow:hidden; }
.step-indicator .dot span{ position:absolute; inset:0; background:var(--deep-green); transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease-premium); }
.step-indicator .dot.done span, .step-indicator .dot.active span{ transform:scaleX(1); }
.step-label{ font-size:12.5px; text-transform:uppercase; letter-spacing:.12em; color:var(--green); font-weight:700; margin-bottom:10px; }
.form-step{ display:none; }
.form-step.active{ display:block; animation:stepIn .5s var(--ease-premium); }
@keyframes stepIn{ from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:translateY(0);} }
.form-nav{ display:flex; justify-content:space-between; margin-top:20px; }

/* ---------- Doctors ---------- */
.doctors-section{ background:var(--warm-white); padding:var(--gap-md) 0; }

/* ============================================================
   HOME — featured pair, horizontal cards.
   Portraits are 375x504; the photo column is 230px, so they
   downscale and stay sharp.
   ============================================================ */
.doctor-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:clamp(22px, 2.2vw, 30px);
  margin-top:52px;
}

.doctor-grid .doctor-card{
  display:grid;
  grid-template-columns:minmax(0, 230px) 1fr;
  gap:28px;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:26px;
  background:linear-gradient(158deg, var(--white) 0%, #FBFBF7 100%);
  border:1px solid rgba(221,233,222,.9);
  border-radius:3px;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.doctor-grid .doctor-card:hover{
  transform:translateY(-5px);
  border-color:rgba(183,167,137,.5);
  box-shadow:0 30px 60px -32px rgba(24,63,44,.32);
}
/* gilt rule sweeps the top edge */
.doctor-grid .doctor-card::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .8s var(--ease-premium);
}
.doctor-grid .doctor-card:hover::before{ transform:scaleX(1); }

.doctor-grid .dc-photo{
  position:relative;
  aspect-ratio:375/504;
  overflow:hidden;
  border-radius:2px;
  background:var(--sage-light);
}
.doctor-grid .dc-photo img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1.2s var(--ease-premium);
}
.doctor-grid .doctor-card:hover .dc-photo img{ transform:scale(1.05); }

/* monogram tile for physicians without a portrait */
.doctor-grid .dc-mono{
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(158deg, var(--sage-light) 0%, var(--sage) 100%);
  border:1px solid var(--sage);
}
.doctor-grid .dc-mono span{
  font-family:var(--font-display);
  font-size:50px; font-weight:500;
  letter-spacing:.04em;
  color:var(--deep-green);
  opacity:.5;
}

.doctor-grid .dc-body{ min-width:0; padding-right:6px; }
.doctor-grid .dc-tag{
  display:block;
  font-size:11px; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--green);
  margin-bottom:12px;
}
.doctor-grid .doctor-card.is-lead .dc-tag{ color:var(--earth); }
.doctor-grid .doctor-card h3{
  font-size:23px;
  line-height:1.24;
  margin-bottom:16px;
  padding-bottom:16px;
  border-bottom:1px solid var(--sage);
}
.doctor-grid .dc-cred{ font-size:13.5px; line-height:1.7; color:var(--text-soft); }

.doctor-cta{ display:flex; justify-content:center; margin-top:48px; }

/* ---------- Products ---------- */
.products-section{ background:var(--sage-light); padding:var(--gap-md) 0; }
/* three across rather than four: 13 small tiles read as a spec sheet,
   larger cards let each product photo carry the page */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
  margin-top:52px;
}

.product-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:14px 14px 0;
  background:var(--white);
  border:1px solid rgba(221,233,222,.9);
  border-radius:4px;
  transition:transform var(--dur-med) var(--ease-premium),
             box-shadow var(--dur-med) var(--ease-premium),
             border-color var(--dur-med) var(--ease-premium);
}
.product-card:hover{
  transform:translateY(-8px);
  border-color:rgba(183,167,137,.65);
  box-shadow:0 36px 68px -32px rgba(24,63,44,.36),
             0 4px 14px -6px rgba(24,63,44,.08);
}
/* gilt rule sweeps the top edge */
.product-card::before{
  content:'';
  position:absolute; top:-1px; left:-1px; right:-1px; height:3px;
  z-index:4;
  border-radius:4px 4px 0 0;
  background:linear-gradient(90deg, var(--earth) 0%, var(--green) 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .7s var(--ease-premium);
}
.product-card:hover::before{ transform:scaleX(1); }

/* photo sits inside the card as a mounted plate, not bleeding to the edge */
.pc-media{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:2px;
  background:var(--sage-light);
}
.pc-media img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1.3s var(--ease-premium);
}
.product-card:hover .pc-media img{ transform:scale(1.06); }
/* hairline inside the plate edge */
.pc-frame{
  position:absolute; inset:0;
  z-index:2;
  border:1px solid rgba(24,63,44,.10);
  border-radius:2px;
  pointer-events:none;
}

.pc-body{ flex:1; padding:16px 6px 20px; }
.pc-tag{
  display:block;
  font-size:10px; font-weight:700;
  letter-spacing:.17em; text-transform:uppercase;
  color:var(--earth);
  margin-bottom:9px;
  transition:color var(--dur-fast) var(--ease-premium);
}
.product-card:hover .pc-tag{ color:var(--green); }
.pc-body h4{
  font-family:var(--font-display);
  font-size:19px;
  font-weight:500;
  line-height:1.28;
  color:var(--forest);
  margin-bottom:11px;
  padding-bottom:11px;
  border-bottom:1px solid var(--sage);
  text-wrap:balance;
}
.pc-body p{ font-size:13.2px; line-height:1.7; margin:0; }

/* Buy Now */
.pc-buy{
  position:relative;
  z-index:2;
  display:inline-flex; align-items:center; gap:8px;
  margin-top:16px;
  padding:10px 18px;
  border:1px solid var(--sage);
  border-radius:3px;
  font-size:10.5px; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--deep-green);
  transition:background var(--dur-fast) var(--ease-premium),
             border-color var(--dur-fast) var(--ease-premium),
             color var(--dur-fast) var(--ease-premium),
             gap var(--dur-fast) var(--ease-premium);
}
.pc-buy svg{ width:13px; height:13px; }
.pc-buy:hover, .pc-buy:focus-visible{
  background:var(--deep-green);
  border-color:var(--deep-green);
  color:var(--white);
  gap:12px;
}
.product-card:hover .pc-buy{ border-color:var(--green); }

/* ---------- Legacy note ---------- */
.legacy-band{ background:var(--sage-light); padding:var(--gap-sm) 0; }
.legacy-note{
  background:var(--white);
  border:1px solid var(--sage);
  border-left:2px solid var(--earth);
  border-radius:3px;
  padding:24px 28px;
  font-size:13.6px;
  line-height:1.78;
  color:var(--text-soft);
  margin:0;
}
.legacy-note strong{ color:var(--forest); }

/* ---------- Disclaimer ---------- */
.disclaimer{
  background:var(--white);
  border:1px solid var(--sage);
  border-left:2px solid var(--green);
  border-radius:3px;
  padding:22px 26px;
  font-size:13.2px;
  line-height:1.75;
  color:var(--text-soft);
  margin-top:40px;
}
.disclaimer strong{ color:var(--forest); }

/* ---------- Accordion (service detail / FAQ) ---------- */
.acc-item{ border-bottom:1px solid var(--sage); }
.acc-head{ display:flex; align-items:center; justify-content:space-between; padding:24px 0; cursor:pointer; }
.acc-head h4{ font-size:17px; }
.acc-icon{ width:22px; height:22px; position:relative; flex-shrink:0; }
.acc-icon::before, .acc-icon::after{ content:''; position:absolute; background:var(--forest); transition:transform var(--dur-fast) var(--ease-premium); }
.acc-icon::before{ width:100%; height:1.5px; top:50%; left:0; transform:translateY(-50%); }
.acc-icon::after{ width:1.5px; height:100%; left:50%; top:0; transform:translateX(-50%); }
.acc-item.open .acc-icon::after{ transform:translateX(-50%) rotate(90deg); opacity:0; }
.acc-body{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease-premium); }
.acc-body-inner{ padding-bottom:26px; font-size:15px; color:var(--text-soft); }
.acc-body-inner p{ margin-bottom:14px; }

/* ---------- Service detail page layout ---------- */
.service-detail{ padding:var(--gap-md) 0; }
.service-detail{ background:var(--warm-white); padding:var(--gap-md) 0; }

.sd-layout{ display:grid; grid-template-columns:270px 1fr; gap:clamp(48px, 5vw, 84px); align-items:start; }

/* ---- sticky index ---- */
.sd-nav{
  position:sticky; top:140px;
  padding:26px 24px;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:3px;
  box-shadow:0 18px 40px -30px rgba(24,63,44,.28);
}
.sd-nav a{
  position:relative;
  display:flex; align-items:center; gap:13px;
  padding:11px 0 11px 14px;
  font-size:13.6px;
  line-height:1.35;
  color:var(--text-soft);
  border-bottom:1px solid var(--sage);
  transition:color var(--dur-fast) var(--ease-premium), padding-left var(--dur-fast) var(--ease-premium);
}
.sd-nav a:last-child{ border-bottom:none; }
/* gilt marker on the active / hovered item */
.sd-nav a::before{
  content:'';
  position:absolute; left:0; top:50%;
  width:2px; height:0;
  background:linear-gradient(180deg, var(--earth), var(--green));
  transform:translateY(-50%);
  transition:height var(--dur-med) var(--ease-premium);
}
.sd-nav a.active::before, .sd-nav a:hover::before{ height:62%; }
.sd-nav a .n{
  font-family:var(--font-display);
  color:var(--earth);
  font-size:13px;
  flex-shrink:0;
}
.sd-nav a.active, .sd-nav a:hover{ color:var(--forest); font-weight:600; padding-left:18px; }

/* ---- service blocks ---- */
.sd-content .sd-block{
  margin-bottom:56px;
  padding-bottom:56px;
  border-bottom:1px solid var(--sage);
  scroll-margin-top:150px;
}
.sd-content .sd-block:last-child{ margin-bottom:0; padding-bottom:0; border-bottom:none; }
.sd-block .eyebrow{ color:var(--earth); }
.sd-block .eyebrow::before{ background:var(--earth); }
.sd-content h2{
  margin-bottom:18px;
  font-size:clamp(26px, 2.6vw, 34px);
  line-height:1.22;
  max-width:22ch;
}
/* gilt rule under the heading */
.sd-content h2::after{
  content:'';
  display:block;
  width:46px; height:2px;
  margin-top:18px;
  background:linear-gradient(90deg, var(--earth), var(--green));
}
.sd-content p{ margin-bottom:18px; font-size:15.8px; line-height:1.85; max-width:64ch; }

/* images capped so the low-resolution sources are not upscaled */
.sd-content img{
  display:block;
  width:100%;
  max-width:560px;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:3px;
  margin:30px 0;
  box-shadow:0 26px 52px -32px rgba(24,63,44,.38);
}

/* the link at the foot of each block, as a bordered action */
.sd-block .text-link{
  display:inline-flex; align-items:center; gap:9px;
  margin-top:6px;
  padding:12px 22px;
  border:1px solid var(--sage);
  border-radius:3px;
  font-size:12px;
  color:var(--deep-green);
  transition:background var(--dur-fast) var(--ease-premium),
             border-color var(--dur-fast) var(--ease-premium),
             color var(--dur-fast) var(--ease-premium);
}
.sd-block .text-link::after{ display:none; }
.sd-block .text-link:hover{ background:var(--deep-green); border-color:var(--deep-green); color:var(--white); }

/* ---------- Utility ---------- */
.gsap-fade{ opacity:0; transform:translateY(40px); }
.center-txt{ text-align:center; }
.mt-lg{ margin-top:80px; }
/* both columns take the row height; in the form card the surplus is
   absorbed by the message box rather than left as padding */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:stretch; }
.two-col .form-shell{
  height:100%;
  display:flex;
  flex-direction:column;
}
.two-col .form-shell form{ display:flex; flex-direction:column; flex:1; }
/* the surplus height goes into the message box, not into empty padding */
.two-col .form-shell .field-fill{
  flex:1;
  display:flex;
  flex-direction:column;
  min-height:78px;
}
.two-col .form-shell .field-fill textarea{ flex:1; }
/* appointment + consultation: tighter form so the card lands level with
   the details column beside it (scoped, so other forms are unchanged) */
.two-col .form-shell{ padding:40px 38px; }
.two-col .form-shell .field{ margin-bottom:20px; }
.two-col .form-shell .field input,
.two-col .form-shell .field select,
.two-col .form-shell .field textarea{ padding:15px 0 9px; }
.two-col .form-shell .field textarea{ min-height:78px; }
.two-col .form-shell .field-error{ min-height:0; margin-top:4px; }
