
/* =========================================================
   TOKENS
========================================================= */
:root {
  --green-900: #052820;
  --green-800: #0a3d30;
  --green-700: #0d4d3a;
  --green-600: #156649;
  --gold:      #c9a96e;
  --gold-light:#e8d5a3;
  --cream:     #fdfaf4;
  --sand:      #f5f0e8;
  --sand-dark: #ede8de;
  --white:     #ffffff;
  --ink:       #0f1c14;
  --ink-mid:   #2e3d32;
  --ink-muted: #637068;

  --shadow-xs: 0 2px 8px rgba(0,0,0,.06);
  --shadow-sm: 0 6px 20px rgba(0,0,0,.08);
  --shadow-md: 0 16px 48px rgba(0,0,0,.10);
  --shadow-lg: 0 32px 80px rgba(10,61,48,.16);

  --r-sm: 0;
  --r-md: 0;
  --r-lg: 0;

  --ease: cubic-bezier(.22,1,.36,1);
  --dur: .45s;

  --ff-serif: 'Montserrat', sans-serif;
  --ff-mono: 'Montserrat', sans-serif;
  --ff-sans:  'Montserrat', sans-serif;

  
  --hero-title-fs: 44px;
  --hero-title-lh: 52px;
  --section-title-fs: 44px;
  --section-title-lh: 52px;
  --section-label-fs: 12px;
  --section-label-lh: 20px;
  --card-title-fs: 16px;
  --card-title-lh: 20px;
  --card-desc-fs: 13px;
  --card-desc-lh: 21px;
  --btn-fs: 12px;
}

/* =========================================================
   RESET
========================================================= */
*,*::before,*::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* Organic Grain Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}
/* Custom Minimalist Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--green-900); }
::-webkit-scrollbar-thumb { background: var(--gold); border: 2px solid var(--green-900); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
img { width:100%; height:auto; display:block; object-fit:cover; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
button,input { font-family:var(--ff-sans); }

/* =========================================================
   LAYOUT SYSTEM
========================================================= */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 6%;
  width: 100%;
}
section { padding: 30px 0; overflow: hidden; position: relative; }
main > section[data-watermark] > .container {
  position: relative;
  z-index: 1;
}
main > section[data-watermark]::after {
  content: attr(data-watermark);
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 0;
  max-width: 92%;
  transform: translateX(-50%);
  font-family: var(--ff-serif);
  font-size: clamp(3.4rem, 10vw, 10.5rem);
  font-weight: 700;
  line-height: .82;
  letter-spacing: .02em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(10,61,48,.025);
  pointer-events: none;
  user-select: none;
}
main > section[data-watermark].testimonials-section::after,
main > section[data-watermark].cta-section::after {
  color: rgba(255,255,255,.035);
}

/* Spacing Utilities */
.py-lg { padding-top: 120px; padding-bottom: 120px; }
.py-md { padding-top: 80px; padding-bottom: 80px; }
.py-sm { padding-top: 40px; padding-bottom: 40px; }

/* =========================================================
   TYPOGRAPHY
========================================================= */
:root {
  --fs-xs: clamp(0.68rem, 0.64rem + 0.20vw, 0.80rem);
  --fs-sm: clamp(0.80rem, 0.75rem + 0.24vw, 0.92rem);
  --fs-base: clamp(0.92rem, 0.86rem + 0.20vw, 1.02rem);
  --fs-md: clamp(1.02rem, 0.96rem + 0.30vw, 1.18rem);
  --fs-lg: clamp(1.18rem, 1.06rem + 0.62vw, 1.55rem);
  --fs-xl: clamp(1.55rem, 1.32rem + 1.18vw, 2.08rem);
  --fs-xxl: clamp(2.08rem, 1.62rem + 2.05vw, 2.78rem);
  --fs-xxxl: clamp(2.78rem, 2.02rem + 3.50vw, 3.72rem);

  
  --hero-title-fs: 44px;
  --hero-title-lh: 52px;
  --section-title-fs: 44px;
  --section-title-lh: 52px;
  --section-label-fs: 12px;
  --section-label-lh: 20px;
  --card-title-fs: 16px;
  --card-title-lh: 20px;
  --card-desc-fs: 13px;
  --card-desc-lh: 21px;
  --btn-fs: 12px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-serif);
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1, .h1 { font-size: var(--section-title-fs); line-height: var(--section-title-lh); font-weight: 800; font-family: var(--ff-serif); margin-bottom: 24px; }
h2, .h2 { font-size: var(--section-title-fs); line-height: var(--section-title-lh); font-weight: 800; font-family: var(--ff-serif); margin-bottom: 20px; }
h3, .h3 { font-size: var(--fs-xl); margin-bottom: 16px; font-weight: 700; }
h4, .h4 { font-size: var(--fs-lg); margin-bottom: 12px; font-weight: 700; }
h5, .h5 { font-size: var(--fs-md); margin-bottom: 10px; font-weight: 600; }
h6, .h6 { font-size: var(--fs-base); margin-bottom: 8px; font-weight: 600; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--section-label-fs); line-height: var(--section-label-lh); font-family: var(--ff-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: 18px;
}
.label::before {
  content:'';
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.h2 em { font-style:italic; color:var(--gold); font-weight:500; }

.body-text, p {
  font-size: var(--fs-base);
  color: var(--ink-mid);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.body-text {
  max-width: 580px;
  margin-bottom: 36px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: var(--btn-fs); line-height: normal; font-family: var(--ff-sans);
  letter-spacing: .04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.btn:hover { letter-spacing: 0.06em; }
.btn i { width:18px; height:18px; flex-shrink:0; transition: transform var(--dur) var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: #b8935a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  border-color: var(--green-800);
  color: var(--green-800);
  background: transparent;
}
.btn-outline-green:hover {
  background: var(--green-800);
  color: var(--white);
}

/* =========================================================
   TICKER
========================================================= */
.ticker-bar {
  height: 40px;
  background: var(--green-900);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 55s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 52px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.ticker-item i { width:13px; height:13px; color:var(--gold); flex-shrink:0; }
@keyframes ticker {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   HEADER / NAV
========================================================= */
.site-header {
  position: absolute;
  top: 40px; left: 0; right: 0;
  z-index: 250;
  /* Only transition properties that are actually animatable — avoids
     the visual snap caused by backdrop-filter and position changes */
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.3s var(--ease);
  background: transparent;
}
.site-header.sticky {
  position: fixed;
  top: 0;
  background: rgba(10, 61, 48, 0.98) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  height: 100px !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
  border-bottom: 2px solid var(--gold);
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* CRITICAL: removing backdrop-filter when nav is open prevents it from
   trapping position:fixed children inside the header bounds */
body.nav-open .site-header,
body.nav-open .site-header.sticky {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  transition: none !important;
}

/* Hide ticker and enlarge logo when nav drawer opens */
body.nav-open .ticker-bar {
  display: none !important;
}
body.nav-open .site-header .logo-default,
body.nav-open .site-header .logo-sticky {
  height: 60px !important;
}
body.nav-open {
  overflow: hidden;
}
.site-header.sticky .nav-inner { height: 100px !important; }
.site-header.sticky .logo-default { display: none; }
.site-header.sticky .logo-sticky { 
  display: block; 
  height: 70px !important; 
  z-index: 1001;
  transform: none !important;
}



/* ── 3-zone nav: logo | menu-center | actions ── */
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 130px;
  padding: 0 60px;
  transition: height 0.3s var(--ease);
}

/* Logo — fixed left zone */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
/* default: full colour webp (shows over hero bg) */
.nav-logo .logo-default {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* sticky: SVG icon (compact, transparent) */
.nav-logo .logo-sticky {
  height: 85px;
  width: auto;
  object-fit: contain;
  display: none;
  margin-top: -5px;
}
/* swap when scrolled */
.site-header.scrolled .logo-default { display: none; }
.site-header.scrolled .logo-sticky  { display: block; }

/* ── Hamburger toggle (hidden on desktop) ── */
.ham-btn {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
  margin-left: auto;
}
.ham-btn i { width: 26px; height: 26px; }

/* nav-close-btn: hidden by default (shown only via JS on mobile) */
.nav-close-btn { display: none !important; }

/* Mobile Book Now (hidden on desktop) */
.mobile-book-btn { display: none; }

/* Nav — perfectly centred absolutely */
nav[aria-label="Primary"] {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
}
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}
.nav-links > li { position: static; }
.nav-links a {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--dur) var(--ease);
}
.nav-links a::after { display: none; }
.nav-links a:hover { color: var(--gold); }
.nav-links i { width:12px; height:12px; flex-shrink:0; }

/* Mega Menu */
.has-mega { position: static; }
.mega {
  position: absolute;
  top: calc(100% + 40px); /* universally calculated perfect distance beneath the text */
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 96vw);
  background: var(--white);
  border-radius: 0;
  border: 1px solid var(--gold);
  outline: 1px solid var(--gold);
  outline-offset: -5px;
  box-shadow: var(--shadow-lg);
  padding: 44px 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), top .3s var(--ease);
  z-index: 150;
}
.mega::before {
  content: '';
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  height: 45px;
  background: transparent;
}
.has-mega:hover .mega {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.mega h5 {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 18px;
}
.mega-brand h3 { font-size: var(--fs-lg); color: var(--green-900); margin-bottom: 10px; }
.mega-brand p  { font-size:.87rem; color:var(--ink-muted); line-height:1.6; margin-bottom:20px; }
.mega-list li  { margin-bottom:14px; }
.mega-list a   {
  display: block;
  padding: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.mega-list a span { display:block; font-weight:700; color:var(--green-900); font-size:.88rem; margin-bottom:2px; transition: color var(--dur) var(--ease); }
.mega-list a p    { font-size:.76rem; color:var(--ink-muted); font-weight:400; margin:0; }
.mega-list a:hover span { color:var(--gold); }
.mega-visual { background:var(--sand); border-radius: 0; padding:20px; }
.mega-visual img { border-radius: 0; height:100px; object-fit:cover; margin-bottom:12px; }
.mega-visual p { font-size:.82rem; color:var(--ink-muted); margin-bottom:12px; }
.nav-links > li:nth-child(3) .mega-cols {
  grid-template-columns: 1fr 1fr;
}
.link-gold {
  color: var(--gold) !important;   /* override any inherited nav white */
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: gap var(--dur) var(--ease);
}
.link-gold:hover { gap: 10px; }
.link-gold i { width:14px; height:14px; }

/* Actions — fixed right zone */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* right-align actions in the 1fr track */
  gap: 32px;
}
.nav-actions .btn {
  white-space: nowrap !important;
  min-width: max-content;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
}
.nav-phone i { width:16px; height:16px; color:var(--gold); }

/* =========================================================
   HERO
========================================================= */
/* =========================================================
   HERO SLIDER
========================================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 40px);
  min-height: 600px;
  overflow: hidden;
  background: var(--green-900);
  z-index: 1;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.60) 55%,
    rgba(0,0,0,0.20) 100%
  );
}
.slide-content {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8%;
  padding-top: 80px;
  padding-bottom: 100px;
  width: min(780px, 85%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content:''; width:24px; height:1px; background:var(--gold); display:inline-block; }
.hero-h1 { font-family: var(--ff-serif); font-weight: 800; font-size: var(--hero-title-fs); line-height: var(--hero-title-lh); 
  
  color: var(--white);
  line-height: var(--hero-title-lh);
  letter-spacing: -.02em;
  margin-bottom: 20px;
  
}
.hero-h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,.80);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s, border-color 0.3s;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); }
.slider-arrow i { width: 20px; height: 20px; }
.slider-prev { left: 30px; }
.slider-next { right: 30px; }

@media (max-width: 768px) {
  .slide-content { padding: 100px 5% 80px 5%; width: 90%; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .slider-arrow { width: 38px; height: 38px; }
  .slider-dots { display: none !important; }
}

/* =========================================================
   STATS BAR
========================================================= */
.stats-bar {
  background: var(--green-800);
  padding: 30px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
}
.stat-cell {
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background 0.4s var(--ease);
}
.stat-cell:hover { background: rgba(10, 61, 48, 0.4); }
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.65);
  font-weight: 700;
}

/* =========================================================
   ABOUT / CLINICAL EXCELLENCE
========================================================= */
.about-section { background: var(--cream); position: relative; overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left: stacked image collage */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 14px;
}
.about-images .img-tall, .about-images .img-sq {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.about-images .img-tall {
  grid-row: span 2;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.about-images .img-tall img { height:100%; width:100%; object-fit:cover; transition: transform 0.6s var(--ease); }
.about-images .img-sq {
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.about-images .img-sq img { height:100%; width:100%; object-fit:cover; transition: transform 0.6s var(--ease); }

/* Hover Overlay */
.img-overlay-fill {
  position: absolute;
  inset: 0;
  background: var(--green-900);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: .85;
}
.img-overlay-fill .btn-overlay {
  background: var(--gold);
  color: var(--green-900);
  border: none;
  padding: 10px 22px;
  border-radius: 0;
  font-weight: 700;
  font-size: .8rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}
.about-images div:hover .img-overlay-fill, 
.why-img:hover .img-overlay-fill { transform: translateY(0); }
.about-images div:hover .img-overlay-fill .btn-overlay, 
.why-img:hover .img-overlay-fill .btn-overlay { transform: translateY(0); opacity: 1; }
.about-images div:hover img, .why-img:hover img { transform: scale(1.05); }

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.apoint {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.apoint-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--green-900);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
}
.apoint-icon i, .apoint-icon i svg { 
  width:20px !important; 
  height:20px !important; 
  color: #ffffff !important; 
  stroke: #ffffff !important; 
}
.apoint h4 { font-size: var(--fs-lg); margin-bottom:4px; color:var(--green-900); }
.apoint p  {
  font-size:.83rem;
  color:var(--ink-muted);
  line-height:1.5;
  max-height: 190px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 127, 78, 0.65) rgba(30, 62, 46, 0.08);
}
.apoint p::-webkit-scrollbar {
  width: 6px;
}
.apoint p::-webkit-scrollbar-track {
  background: rgba(30, 62, 46, 0.08);
}
.apoint p::-webkit-scrollbar-thumb {
  background: rgba(155, 127, 78, 0.65);
}

/* =========================================================
   ABOUT PAGE MISSION / VISION CARDS
========================================================= */
.mv-stack {
  display: grid;
  gap: 42px;
}
.mv-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.25fr);
  min-height: 360px;
  background: var(--cream);
  border: 1px solid var(--sand-dark);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.mv-card-reverse {
  grid-template-columns: minmax(320px, 1.25fr) minmax(280px, 0.95fr);
}
.mv-card-reverse .mv-image {
  order: 2;
}
.mv-image {
  min-height: 360px;
  background: var(--sand);
}
.mv-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.mv-content {
  padding: clamp(34px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv-icon {
  width: 56px;
  height: 56px;
  background: var(--green-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.mv-icon i,
.mv-icon svg {
  width: 24px;
  height: 24px;
}
.mv-content h3 {
  color: var(--green-900);
  
  margin-bottom: 18px;
}
.mv-content p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
}

/* =========================================================
   ABOUT PAGE DIRECTOR MESSAGE
========================================================= */
.director-message-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.director-message-image > div {
  max-width: 560px;
  margin: 0 auto;
}
.director-message-image img {
  display: block;
  height: clamp(280px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   THERAPY CAROUSEL
========================================================= */
.therapies-section { background: var(--sand); }
.section-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-hdr .body-text { margin-bottom:0; font-size: var(--section-desc-fs); line-height: var(--section-desc-lh); }

/* Carousel wrapper */
.carousel-wrap {
  position: relative;
}
.carousel-track-outer {
  overflow: hidden;
  border-radius: 0;
}
.cards-grid {
  display: flex;
  gap: 28px;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.t-card {
  height: 500px;
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,61,48,.06);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.t-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.t-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.t-card:hover::after { width: 100%; }

/* Carousel navigation arrows */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 2px solid var(--green-800);
  background: var(--white);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: var(--shadow-xs);
}
.carousel-btn:hover {
  background: var(--green-800);
  color: var(--white);
  transform: scale(1.08);
}
.carousel-btn i { width:18px; height:18px; }
.carousel-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
}
/* Carousel dots — hidden/removed per design */
.carousel-dots { display: none; }

/* Mobile: show 1 card */
@media (max-width: 900px) {
  .t-card { flex: 0 0 calc(100% - 56px); }
}
@media (max-width: 640px) {
  .t-card { flex: 0 0 100%; }
}

.t-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.t-card-img img { height:100%; transition: transform 1s var(--ease); }
.t-card:hover .t-card-img img { transform: scale(1.08); }

.t-card-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: var(--green-900);
  padding: 5px 14px;
  border-radius: 0;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  z-index: 2;
}

.t-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,40,32,.88) 0%, rgba(5,40,32,.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.t-card:hover .t-card-overlay { opacity: 1; }
.t-card-overlay p { font-size: var(--card-desc-fs); color:rgba(255,255,255,.9); margin:0; line-height: var(--card-desc-lh); font-family: var(--ff-sans); font-weight: 400; }

.t-card-body {
  padding: 28px;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.t-card-body h3 { font-size: var(--card-title-fs); line-height: var(--card-title-lh); font-family: var(--ff-serif); font-weight: 700; margin-bottom:10px; }
.t-card-body p  {
  color:var(--ink-muted);
  font-size: var(--card-desc-fs);
  line-height: var(--card-desc-lh);
  font-family: var(--ff-sans);
  font-weight: 400;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  margin-bottom: 18px;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 127, 78, 0.65) rgba(30, 62, 46, 0.08);
}
.t-card-body p::-webkit-scrollbar { width: 6px; }
.t-card-body p::-webkit-scrollbar-track { background: rgba(30, 62, 46, 0.08); border-radius: 999px; }
.t-card-body p::-webkit-scrollbar-thumb { background: rgba(155, 127, 78, 0.65); border-radius: 999px; }
.t-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  margin-top: auto;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.t-link:hover { gap:12px; color:var(--green-800); }
.t-link i { width:14px; height:14px; }

/* =========================================================
   HEALING JOURNEY — horizontal timeline
========================================================= */
.journey-section { background: var(--cream); }

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
  gap: 12px;
}
/* connecting line */
.timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 2px;
  background: rgba(201,169,110,.25);
}
.tl-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.tl-circle {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: var(--white);
  border: 2px solid rgba(201,169,110,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  box-shadow: var(--shadow-xs);
}
/* Lucide icons in circle: use stroke via currentColor */
.tl-circle i, .tl-circle svg {
  width: 26px !important;
  height: 26px !important;
  color: #000000 !important;
  stroke: #000000 !important;
  transition: all var(--dur) var(--ease);
}
.tl-step:hover .tl-circle {
  background: var(--green-800) !important;
  border-color: var(--green-800) !important;
  box-shadow: 0 0 20px rgba(201,169,110,0.3);
  animation: pulseGold 2s infinite;
}
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(201,169,110,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(201,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
}
.tl-step:hover .tl-circle i,
.tl-step:hover .tl-circle svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}
.tl-step h4 { font-size: var(--card-title-fs); line-height: var(--card-title-lh); font-family: var(--ff-serif); font-weight: 700; margin-bottom:8px; }
.tl-step p  {  color:var(--ink-muted); font-size: var(--card-desc-fs); line-height: var(--card-desc-lh); font-family: var(--ff-sans); font-weight: 400; padding:0 6px; }

/* =========================================================
   DOCTOR
========================================================= */
.doctor-section { background: var(--sand); }
.doctor-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.doc-img-wrap { 
  position: relative; 
  display: flex;
  flex-direction: column;
}
.doc-img-wrap img {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  object-position: bottom center;
  mix-blend-mode: multiply;
}
.doc-quote {
  background: var(--green-800);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 0;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: -32px;
  margin-right: 28px;
  margin-left: -12px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.doc-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.35em;
  margin-right: 4px;
  font-style: normal;
}

.doc-text h2 { margin-bottom:6px; }
.doc-cred {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 22px;
}
.doc-stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(10,61,48,.12);
}
.doc-stat h4 { font-size: var(--fs-xxl); color:var(--gold); margin-bottom:4px; }
.doc-stat p  { font-size: var(--fs-sm); font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--ink-muted); }

.doc-checks { display:grid; gap:10px; margin:24px 0; }
.doc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-mid);
}
.doc-check i { color:var(--gold); width:18px; height:18px; flex-shrink:0; }

@media (min-width: 1025px) {
  section { padding: 24px 0; }

  .container {
    padding-inline: 5%;
  }

  .site-header {
    top: 32px;
  }

  .site-header.sticky {
    height: 86px !important;
  }

  .site-header.sticky .nav-inner {
    height: 86px !important;
  }

  .site-header.sticky .logo-sticky {
    height: 58px !important;
  }

  .nav-inner {
    height: 112px;
    padding: 0 52px;
  }

  .nav-logo .logo-default {
    height: 60px;
  }

  .nav-logo .logo-sticky {
    height: 68px;
  }

  .nav-links {
    gap: 28px;
  }

  .btn {
    padding: 12px 28px;
  }

  .stats-bar {
    padding: 24px 0;
  }

  .stat-num {
    font-size: 2.45rem;
  }

  .about-grid,
  .doctor-grid {
    gap: 56px;
  }

  .about-images {
    grid-template-rows: 250px 180px;
  }

  .doc-img-wrap {
    margin-top: -34px;
  }

  .doc-img-wrap img {
    max-height: 540px;
  }
}

/* =========================================================
   FACILITIES — asymmetric masonry-ish grid
========================================================= */
.facilities-section { background: var(--cream); }
.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.fac-item {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fac-item img { width:100%; height:100%; object-fit:cover; transition: transform 1.2s var(--ease); }
.fac-item:hover img { transform: scale(1.07); }
.fac-item:first-child { border-radius: 0; }

.fac-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(5,40,32,0.95) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  transform: translateY(4px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.fac-item:hover .fac-cap { opacity:1; transform:translateY(0); }
.fac-cap span { font-family:var(--ff-serif); font-size: var(--fs-lg); }

/* =========================================================
   WHY CHOOSE US
========================================================= */
.why-top-split {
  display: grid;
  grid-template-columns: 1fr 340px; /* even narrower image column */
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}
.why-hero-text { max-width: 800px; }
.why-mini-image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
}
.why-mini-image img { width: 100%; height: 100%; object-fit: cover; }

.why-points-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.why-check-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(10,61,48,0.06);
  border-radius: 0;
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-900);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-xs);
}
.why-check-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.why-check-item i { width: 18px; height: 18px; color: var(--gold); }

.why-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.trust-box {
  padding: 60px 40px 48px;
  position: relative;
  background: var(--white);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  border: 1px solid rgba(10,61,48,0.06);
  z-index: 1;
}
.trust-box::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--fill-color, var(--green-800));
  transition: height 0.5s var(--ease);
  z-index: -1;
  border-radius: 0;
}
.trust-box:hover::before { height: 100%; }
.trust-box:hover { transform: translateY(-10px); }
.trust-box:hover h3, .trust-box:hover p { color: var(--white); }

.trust-box:nth-child(1) { --fill-color: var(--green-800); }
.trust-box:nth-child(2) { --fill-color: var(--gold); }
.trust-box:nth-child(3) { --fill-color: var(--green-900); }

.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 2;
  transition: all 0.4s var(--ease);
}
.trust-icon i, 
.trust-icon i svg, 
.trust-icon i [data-lucide] { 
  width: 24px !important; 
  height: 24px !important; 
  color: #ffffff !important; 
  stroke: #ffffff !important;
}

/* Force white color on non-hover */
.trust-icon svg path, 
.trust-icon svg circle, 
.trust-icon svg polyline, 
.trust-icon svg line {
  stroke: #ffffff !important;
}

.trust-box:nth-child(1) .trust-icon { background: var(--green-800); }
.trust-box:nth-child(2) .trust-icon { background: var(--gold); }
.trust-box:nth-child(3) .trust-icon { background: var(--green-900); }

.trust-box:hover .trust-icon { background: #ffffff !important; }
.trust-box:hover .trust-icon i, 
.trust-box:hover .trust-icon i svg,
.trust-box:hover .trust-icon i svg * { 
  color: #000000 !important; 
  stroke: #000000 !important; 
}
.trust-box:hover .trust-icon svg path,
.trust-box:hover .trust-icon svg circle,
.trust-box:hover .trust-icon svg polyline,
.trust-box:hover .trust-icon svg line,
.trust-box:hover .trust-icon svg rect,
.trust-box:hover .trust-icon svg ellipse {
  stroke: #000000 !important;
}

@keyframes fastDrop {
  0% { transform: translateY(0); opacity: 1; }
  35% { transform: translateY(20px); opacity: 0; }
  36% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.trust-box:hover .trust-icon i {
  animation: fastDrop 0.4s var(--ease) forwards;
}

.trust-box h3 { font-size: var(--card-title-fs); line-height: var(--card-title-lh); font-family: var(--ff-serif); font-weight: 700; margin-bottom: 12px; font-weight: 700; color: var(--green-900); }
.trust-box p { font-size: var(--card-desc-fs); color: var(--ink-muted); line-height: var(--card-desc-lh); font-family: var(--ff-sans); font-weight: 400; margin: 0; }

/* =========================================================
   CONDITIONS
========================================================= */
.cond-section { background: var(--cream); }
.cond-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: flex-start;
}
.cond-intro { position: sticky; top: 120px; }
.cond-intro .h2 { margin-bottom: 24px; }
.cond-carousel-wrap { position: relative; }
.cond-nav {
  position: absolute;
  top: -52px;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 10;
}
.cond-nav button {
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid var(--sand-dark);
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.cond-nav button:hover:not(:disabled) {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
}
.cond-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 2.2); /* larger cards */
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 30px; /* space at bottom */
  scrollbar-width: none;
}
.cond-carousel::-webkit-scrollbar { display: none; }
/* ── PRACTICES & SPECIALITIES ── */
.practices-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.practices-list, .specialities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
}

.cond-card {
  min-height: 380px;
  background: var(--white);
  border: 1px solid rgba(10,61,48,.1);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform .4s var(--ease);
}
.cond-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 70%;
  bottom: 0;
  background: var(--green-800);
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 20" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,10 Q25,0 50,10 T100,10 L100,20 L0,20 Z" fill="%23000"/></svg>');
  -webkit-mask-size: 100% 100%;
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 20" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,10 Q25,0 50,10 T100,10 L100,20 L0,20 Z" fill="%23000"/></svg>');
  mask-size: 100% 100%;
  z-index: 0;
}
.cond-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: var(--green-800);
  transform: translateY(100%);
  transition: transform .6s var(--ease);
  z-index: 1;
}
.cond-card:hover::before { transform: translateY(0); }
.cond-watermark {
  position: absolute;
  top: 50%; left: 50%;
  width: 140px; height: 140px;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity .4s var(--ease);
  
}
.cond-card:hover .cond-watermark { opacity: 0.1; }
.cond-icon {
  width: 50px;
  height: 50px;
  background: var(--sand);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  transition: all .4s var(--ease);
}
.cond-icon:has(i) {
  display: none;
}
.cond-text-wrap {
  margin-top: 0;
  position: relative;
  z-index: 3;
}
.cond-card:hover .cond-icon { background: rgba(255,255,255,.2); color: var(--white); }
.cond-card h3 {
  font-size: var(--card-title-fs); line-height: var(--card-title-lh); font-family: var(--ff-serif); font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
  transition: color .4s var(--ease);
}
.cond-card p {
  
  color: var(--ink-muted);
  position: relative;
  z-index: 3;
  transition: color .4s var(--ease);
  font-size: var(--card-desc-fs); line-height: var(--card-desc-lh); font-family: var(--ff-sans); font-weight: 400;
}
.cond-card:hover h3, .cond-card:hover p { color: var(--white); }

/* =========================================================
   BLOG
========================================================= */
.blog-section { background: var(--sand); }

.blog-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 210px; overflow:hidden; }
.blog-thumb img { height:100%; transition: transform 1s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.07); }
.blog-body { padding:26px; flex:1; display:flex; flex-direction:column; }
.blog-cat {
  display: inline-block;
  font-size:.68rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--gold);
  margin-bottom:10px;
}
.blog-body h3 { font-size: var(--card-title-fs); font-family: var(--ff-serif); font-weight: 700; margin-bottom:10px; line-height: var(--card-title-lh); }
.blog-body p  { font-size: var(--card-desc-fs); font-family: var(--ff-sans); font-weight: 400; color:var(--ink-muted); line-height: var(--card-desc-lh); flex:1; margin-bottom:18px; }

/* =========================================================
   FAQ
========================================================= */
.faq-section { background: var(--cream); padding: 30px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}
.faq-left {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid rgba(10,61,48,.07);
}
@media (min-width: 900px) {
  .faq-left { 
    padding: 60px; 
    border-bottom: none; 
    border-right: 1px solid rgba(10,61,48,.07); 
  }
}
.faq-left h2 {
  font-family: var(--ff-serif);
  
  font-weight: 900;
  color: var(--green-900);
  margin-bottom: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.faq-left p {
  font-size: 1.05rem;
  color: var(--ink-mid);
  margin-bottom: 30px;
}
.faq-wrap {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(10,61,48,.07);
  overflow: hidden;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-900);
  text-align: left;
  gap: 16px;
}
.faq-trigger i { width:18px; height:18px; flex-shrink:0; color:var(--gold); transition: transform var(--dur) var(--ease); display: flex; align-items: center; justify-content: center; }
.faq-item.open .faq-trigger i { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), padding .45s var(--ease);
}
.faq-body-inner { padding: 0 30px 24px; font-size:.93rem; color:var(--ink-mid); line-height:1.7; }
.faq-item.open .faq-body { max-height: 300px; }

/* =========================================================
   CTA SECTION
========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta-inner .label { color: var(--gold-light); }
.cta-h2 {
  
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-h2 em { color: var(--gold); font-style: italic; font-weight: 500; }
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
  line-height: 1.7;
}
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,169,110,.14);
  border: 1px solid rgba(201,169,110,.3);
  padding: 10px 24px;
  border-radius: 0;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.cta-urgency i { width:15px; height:15px; }
.cta-btns { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: var(--green-900);
  color: rgba(255,255,255,.65);
  padding: 72px 0 36px;
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.015) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(201,169,110,0.02) 0%, transparent 20%);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { text-align: left; }
.footer-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 32px;
}
.footer-brand p { font-size:.95rem; line-height:1.8; margin-bottom:42px; color: rgba(255,255,255,.7); max-width: 480px; }
.social-row { display:flex; gap:20px; align-items: center; margin-left: 0; }
.social-row a {
  width:44px; height:44px;
  border-radius: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  color: var(--white);
  transition: all .3s var(--ease);
}
.social-row a:hover { background:var(--gold); border-color:var(--gold); transform: translateY(-3px); color: var(--green-900); }
.social-row i, .social-row svg { 
  width: 20px !important; 
  height: 20px !important; 
  display: block; 
  opacity: 1 !important; 
  visibility: visible !important; 
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
}
.footer-col h5 {
  font-family:var(--ff-sans);
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--white);
  margin-bottom:18px;
}
.footer-col li { margin-bottom:11px; }
.footer-col a { font-size:.88rem; transition:color var(--dur) var(--ease); }
.footer-col a:hover { color:var(--gold-light); }
.footer-nl h5 {
  font-family:var(--ff-sans);
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--white);
  margin-bottom:10px;
}
.footer-nl p { font-size:.88rem; margin-bottom:16px; }
.nl-form { display:flex; border-radius: 0; overflow:hidden; }
.nl-form input {
  flex:1;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background:rgba(255,255,255,.09);
  color:var(--white);
  font-size:var(--fs-sm);
  outline:none;
  transition: all var(--dur) var(--ease);
}
.nl-form input::placeholder { color:rgba(255,255,255,.35); }
.nl-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.15);
}
.nl-form button {
  padding:14px 24px;
  background:var(--gold);
  border:none;
  border-radius: 4px;
  cursor:pointer;
  color:var(--green-900);
  font-weight: 700;
  font-size: var(--fs-sm);
  transition:background var(--dur) var(--ease);
}
.nl-form button:hover { background:var(--gold-light); }
.nl-form i { width:17px; height:17px; }
.footer-bottom {
  padding-top:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   FAB / SCROLL-TO-TOP
========================================================= */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fab:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.fab i { width:20px; height:20px; }
.fab-wa { background: #25D366; }
.fab-top {
  background: var(--green-800);
  border: 2px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.fab-top.show { opacity:1; pointer-events:all; transform:translateY(0); }

/* =========================================================
   REVEAL ANIMATION
========================================================= */
.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(44px) scale(.985);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1), filter 1s cubic-bezier(.16,1,.3,1);
}
.reveal.up { opacity:1; filter: blur(0); transform:translateY(0) scale(1); }

/* stagger children */
.stagger > * {
  opacity:0;
  filter: blur(8px);
  transform:translateY(34px) scale(.985);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1), filter .9s cubic-bezier(.16,1,.3,1);
}
.stagger.up > * { opacity:1; filter: blur(0); transform:none; }
.stagger.up > *:nth-child(1) { transition-delay:.04s; }
.stagger.up > *:nth-child(2) { transition-delay:.12s; }
.stagger.up > *:nth-child(3) { transition-delay:.20s; }
.stagger.up > *:nth-child(4) { transition-delay:.28s; }
.stagger.up > *:nth-child(5) { transition-delay:.36s; }
.stagger.up > *:nth-child(6) { transition-delay:.44s; }
.stagger.up > *:nth-child(7) { transition-delay:.52s; }
.stagger.up > *:nth-child(8) { transition-delay:.60s; }
.stagger.up > *:nth-child(9) { transition-delay:.68s; }
.stagger.up > *:nth-child(10) { transition-delay:.76s; }

/* =========================================================
   BOOKING POPUP MODAL
========================================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,40,32,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1500; /* Increased to stay above EVERYTHING */
  display: flex;
  align-items: flex-start; /* Start from top to allow scrolling */
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
  overflow-y: auto; /* Allow overlay to scroll */
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: var(--white);
  border-radius: 0;
  width: 100%;
  max-width: 580px;
  margin: auto; /* Flex centering with scroll support */
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(32px) scale(.97);
  transition: transform .45s var(--ease);
}
.popup-overlay.open .popup-box {
  transform: translateY(0) scale(1);
}
.popup-header {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  padding: 20px 24px 16px;
  position: relative;
}
.popup-header h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.popup-header p {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
}
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 0;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.popup-close:hover { background: rgba(255,255,255,.28); }
.popup-close i { width:18px; height:18px; }
.popup-body { padding: 20px 24px; }
.popup-form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid rgba(10,61,48,.15);
  border-radius: 4px;
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: all var(--dur) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.therapy-card-btn {
  margin-top: 24px;
  width: 100%;
  padding: 14px;
  background: var(--green-900);
  color: var(--white);
  border: none;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
}
.therapy-card-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.therapy-card-btn i { width: 16px; height: 16px; }
.popup-submit {
  width: 100%;
  padding: 16px;
  background: var(--green-800);
  color: white;
  border: none;
  border-radius: 0;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: 0 8px 28px rgba(10,61,48,.22);
}
.popup-submit:hover {
  background: var(--green-900);
  transform: translateY(-2px);
}
.popup-submit i { width:18px; height:18px; }
.popup-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px;
  background: #f0faf5;
  border: 1.5px solid #c3e6d6;
  border-radius: 0;
  color: #1a7a4a;
  font-weight: 700;
  font-size: .9rem;
  margin-top: 12px;
  transition: background var(--dur) var(--ease);
}
.popup-wa:hover { background: #d4f0e3; }
.popup-wa i { width:18px; height:18px; }

/* ==========================================================
   RESPONSIVE — COMPLETE (5 breakpoints)
========================================================== */

/* ── 1400px: mid-size displays (laptop scaling) ── */
@media (max-width: 1400px) {
  .nav-inner {
    padding: 0 16px;
    grid-template-columns: 1fr auto 1fr;
  }
  /* Removed large logo override */
  .nav-actions {
    gap: 16px;
  }
  .nav-actions .btn {
    padding: 12px 20px;
    font-size: var(--btn-fs); line-height: normal; font-family: var(--ff-sans);
  }
}

/* ── 1250px: compact laptops (prevent nav overflow) ── */
@media (max-width: 1250px) {
  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
  }
  /* Removed large logo override */
  nav[aria-label="Primary"] {
    padding: 0 16px;
  }
  .nav-links {
    gap: 16px;
    padding: 8px 16px;
  }
  .nav-phone {
    display: none !important; /* Hide secondary phone element to prioritize "Book Appointment" button */
  }
}

/* ── 1024px: tablet / mobile nav activates ── */
@media (max-width: 1024px) {

  /* Hide ticker on mobile/tablet */
  .ticker-bar { display: none !important; }

  /* ── HEADER ── */
  .site-header {
    top: 0 !important;
    height: 80px !important;
    background: var(--green-900) !important;
    overflow: visible !important; /* Allow drawer to escape */
  }
  .site-header.sticky  { height: 80px !important; }
  .nav-inner {
    height: 80px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px !important;
    overflow: visible !important;
  }
  .site-header.sticky .nav-inner { height: 80px !important; }

  /* ── LOGO ── */
  .logo-default, .logo-sticky {
    height: 40px !important;
    max-width: 180px !important;
    flex-shrink: 0;
  }

  /* ── HAMBURGER ── */
  .ham-btn {
    display: flex !important;
    margin-left: auto;
    position: static !important;
    transform: none !important;
    z-index: 1001;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: 4px;
  }
  .ham-btn i { width: 28px; height: 28px; }
  body.nav-open .ham-btn { display: none !important; }

  /* ── HIDE ACTIONS ── */
  .nav-actions { display: none !important; }
  nav[aria-label="Primary"] { display: none; }

  /* ── MOBILE NAV DRAWER ── */
  nav[aria-label="Primary"].open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; 
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100vw !important;
    min-width: 100vw !important;
    height: 100% !important;
    background: var(--green-900);
    z-index: 10001;
    padding: 100px 24px 40px;
    overflow-y: auto;
    box-sizing: border-box;
    pointer-events: auto !important;
    margin: 0 !important;
  }
  nav[aria-label="Primary"].open .nav-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    gap: 0;
    width: 100%;
    white-space: normal !important;
  }
  nav[aria-label="Primary"].open .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  nav[aria-label="Primary"].open .nav-links a {
    font-size: 1.15rem;
    padding: 16px 0;
    width: 100%;
    color: var(--white) !important;
    white-space: normal !important;
  }
  .mega {
    display: none;
    position: static;
    transform: none !important;
    width: 100%;
    padding: 12px 0 12px 16px;
    box-shadow: none;
    opacity: 1 !important;
    pointer-events: auto !important;
    border: none;
    outline: none;
    background: transparent;
  }
  .has-mega.open .mega {
    display: block;
  }
  .has-mega > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .has-mega > a i {
    transition: transform 0.3s var(--ease);
  }
  .has-mega.open > a i {
    transform: rotate(180deg);
  }
  .mega-cols {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mega-brand, .mega-visual {
    display: none;
  }
  .mega h5 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .mega-list a span {
    font-size: 0.9rem;
    color: var(--white) !important;
  }
  .mega-list a p {
    display: none;
  }

  /* ── HAMBURGER ── */
  .ham-btn {
    display: flex !important;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: 4px;
  }
  .ham-btn i { width: 30px; height: 30px; }
  body.nav-open .ham-btn { display: none !important; }

  /* ── CLOSE BUTTON ── */
  .nav-close-btn {
    position: fixed;
    top: 20px; right: 16px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 4px;
    width: 44px; height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 10002;
  }
  .nav-close-btn.show { display: flex !important; }
  .nav-close-btn i { width: 24px; height: 24px; }

  /* ── MOBILE BOOK NOW ── */
  .mobile-book-btn {
    display: flex;
    margin-top: 32px;
    width: 100%;
    justify-content: center;
  }
  .mobile-book-btn .btn { width: 100%; justify-content: center; }

  /* ── HERO ── */
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding-top: 100px !important; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .slide-content { 
    width: 100% !important; 
    max-width: 100% !important;
    left: 0 !important; 
    padding: 100px 20px 80px !important; 
    align-items: center !important; 
    text-align: center !important;
  }
  .hero-eyebrow { justify-content: center; width: 100%; }
  .hero-sub { margin: 0 auto 36px !important; max-width: 100%; }
  .hero-btns { justify-content: center !important; }
  .hero-trust { justify-content: center; }
  .hero-vertical-text { display: none; }

  /* ── STATS ── */
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); border-right: none; }

  /* ── ABOUT ── */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { grid-template-rows: 220px 160px; }

  /* ── THERAPIES / BLOG ── */
  .t-card, .blog-card { flex: 0 0 calc((100% - 28px) / 2); }

  /* ── JOURNEY ── */
  .timeline { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .timeline::before { display: none; }
  .tl-step { flex: 0 0 calc(33.333% - 16px); }

  /* ── DOCTOR ── */
  .doctor-grid { grid-template-columns: 1fr; gap: 36px; }

  /* ── FACILITIES ── */
  .fac-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .fac-item:first-child { grid-row: span 1; }

  /* ── WHY CHOOSE US ── */
  .why-top-split { grid-template-columns: 1fr; gap: 28px; }
  .why-mini-image { height: 200px; }
  .why-points-area { grid-template-columns: repeat(2, 1fr); }
  .why-trust-row { grid-template-columns: 1fr; gap: 48px; }

  /* ── CONDITIONS ── */
  .cond-layout { grid-template-columns: 1fr; gap: 36px; }
  .cond-intro { position: static; }
  .cond-card { 
    aspect-ratio: auto !important; 
    min-height: 180px !important;
    padding: 24px !important;
  }
  .cond-nav {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }
  .cond-nav button {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* ── PRACTICES & SPECIALITIES ── */
  .practices-container {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .practices-list, .specialities-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    list-style: none;
    padding: 0;
  }



  /* ── FOOTER ── */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 32px;
}

  /* ── SECTION HEADER ── */
  .section-hdr { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── 768px: small tablets / large phones ── */
@media (max-width: 768px) {

  /* GLOBAL */
  section { padding: 40px 0; }
  main > section[data-watermark]::after {
    top: 14px;
    left: 50%;
    font-size: clamp(2.6rem, 16vw, 5.5rem);
  }

  /* HERO */
  :root {
    --hero-title-fs: 32px;
    --hero-title-lh: 40px;
  }
  .hero-h1 { font-family: var(--ff-serif); font-weight: 800; font-size: var(--hero-title-fs); line-height: var(--hero-title-lh); }
  .hero-sub { font-size: 0.9rem; }

  /* STATS */
  .stat-num { font-size: 2.2rem; }

  /* ABOUT */
  .about-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px;
  }
  .about-points { grid-template-columns: 1fr; }
  .director-message-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .director-message-section {
    padding: 76px 0 !important;
  }
  .director-message-image > div {
    max-width: 520px;
    margin: 0 auto;
  }

  /* THERAPIES */
  .t-card, .blog-card { flex: 0 0 100%; }

  /* JOURNEY */
  .tl-step { flex: 0 0 calc(50% - 12px); }
  .tl-circle { width: 60px; height: 60px; }

  /* DOCTOR */
  .doc-img-wrap { display: none; }
  .doc-stats { gap: 20px; flex-wrap: wrap; }

  /* FACILITIES */
  .fac-grid { grid-template-columns: 1fr; }
  .fac-item { aspect-ratio: 16/9; }
  .fac-item:first-child { grid-row: span 1; }

  /* WHY CHOOSE */
  .why-mini-image { display: none; }
  .why-points-area { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* CONDITIONS */
  .cond-carousel { grid-auto-columns: 88%; }
  .cond-nav {
    position: relative !important;
    top: auto !important;
    bottom: 0 !important;
    right: auto !important;
    margin: 30px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }
  .faq-left { border-right: none; border-bottom: 1px solid rgba(10,61,48,.07); }



  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 32px;
}
}

/* ── 640px: mobile ── */
@media (max-width: 640px) {

  /* GLOBAL */
  section { padding: 30px 0; }
  .container { padding: 0 16px; }
  .h2 {  margin-bottom: 12px; }
  .body-text { font-size: .93rem; }

  /* HERO */
  .hero-inner { padding-top: 86px; padding-bottom: 40px; }
  /* hero-h1 rules handled by variables */
  .hero-sub { font-size: .93rem; }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 10px; flex-direction: column; align-items: flex-start; }
  .hero-eyebrow { font-size: .65rem; }
  .slider-arrow { display: none !important; }

  /* STATS */
  .stat-num { font-size: 1.9rem; }
  .stat-cell { padding: 18px 10px; }
  .stat-lbl { font-size: .65rem; }

  /* ABOUT */
  .about-grid { gap: 28px; }
  .about-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 120px;
    gap: 10px;
  }
  .about-images .img-tall { grid-row: span 2; }
  .about-points { grid-template-columns: 1fr; gap: 12px; }
  .apoint-icon { width: 40px; height: 40px; }
  .director-message-section {
    padding: 60px 0 !important;
  }
  .director-message-grid {
    gap: 28px;
  }
  .director-message-image > div {
    max-width: 100%;
  }
  .director-message-image img {
    height: 240px;
  }
  .director-message-image div div {
    display: none;
  }
  .director-message-content .narrative-content {
    margin-top: 20px !important;
  }

  /* THERAPIES */
  .t-card, .blog-card { flex: 0 0 100%; }
  .carousel-nav { margin-top: 20px; }
  .t-card-img { height: 200px; }

  /* JOURNEY */
  .tl-step { flex: 0 0 calc(50% - 12px); }
  .tl-step h4 { font-size: var(--card-title-fs); line-height: var(--card-title-lh); font-family: var(--ff-serif); font-weight: 700; }
  .tl-step p  {  }

  /* DOCTOR */
  .doc-quote { margin: 0; font-size: .88rem; }
  .doc-stats { gap: 14px; }
  .doc-stat h4 { font-size: var(--fs-xxl); }
  .doc-checks { gap: 8px; }

  /* FACILITIES */
  .fac-grid { grid-template-columns: 1fr; }
  .fac-item { aspect-ratio: 4/3; }

  /* WHY CHOOSE US */
  .why-points-area { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-check-item { padding: 14px; font-size: .82rem; gap: 8px; }
  .why-trust-row { gap: 44px; }
  .trust-box { padding: 56px 22px 30px; }

  /* CONDITIONS */
  .cond-card { min-height: 200px; padding: 24px 18px; }
  .cond-nav { top: -50px; }
  .cond-nav button { width: 38px; height: 38px; }

  /* BLOG */
  .blog-thumb { height: 175px; }
  .blog-body { padding: 20px; }

  /* FAQ */
  .faq-left { padding: 26px 18px; }
  .faq-left h2 { font-size: 1.8rem; }
  .faq-trigger { padding: 16px 18px; font-size: .92rem; }
  .faq-body-inner { padding: 0 18px 18px; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .cta-h2 {  }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 32px;
}
  .footer-brand p { font-size: .87rem; }
  .social-row { gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .nl-form { flex-direction: column !important; gap: 10px !important; background: transparent !important; }
  .nl-form input { width: 100%; }
  .nl-form button { width: 100%; display: flex; align-items: center; justify-content: center; }

  /* POPUP */
  .form-row { grid-template-columns: 1fr; }
  .popup-header { padding: 22px 18px 16px; }
  .popup-body   { padding: 18px; }
}

/* ── 480px: tiny phones ── */
@media (max-width: 480px) {

  .h2 { font-size: 1.55rem; }
  /* hero-h1 rules handled by variables */

  /* ABOUT images: stack vertically */
  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-images .img-tall { height: 200px; grid-row: span 1; border-radius: 8px; }
  .about-images .img-sq   { height: 140px; border-radius: 8px; }

  /* STATS: 2x2 compact */
  .stats-inner { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-top: 1px solid rgba(255,255,255,.12); }
  .stat-cell:first-child { border-top: none; }
  .stat-num { font-size: 1.6rem; }

  /* JOURNEY: full-width steps */
  .tl-step { flex: 0 0 100%; }
  .tl-circle { width: 52px; height: 52px; }

  /* WHY POINTS: single column */
  .why-points-area { grid-template-columns: 1fr; }

  /* BLOG */
  .blog-thumb { height: 155px; }

  /* FOOTER newsletter form: stack */
  .nl-form { flex-direction: column; overflow: visible; gap: 8px; }
  .nl-form input  { border-radius: 4px; }
  .nl-form button { border-radius: 4px; }

  /* TICKER: smaller font */
  .ticker-item { font-size: .62rem; padding: 0 28px; }
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(44px) scale(0.985);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1), filter 1s cubic-bezier(.16,1,.3,1);
}
.reveal.up {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.stagger {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(.99);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1), filter .9s cubic-bezier(.16,1,.3,1);
}
.stagger.up {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
/* ── Phase 3: Ultra-Modern Additions ── */
.apple-section {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(56px) scale(.99);
  transition: opacity 1.15s cubic-bezier(.16,1,.3,1), transform 1.15s cubic-bezier(.16,1,.3,1), filter 1.15s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform, filter;
}
.apple-section.up {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.apple-reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(38px) scale(.985);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1), filter 1s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform, filter;
}
.apple-reveal.up,
.apple-section.up .apple-reveal {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.apple-stagger > * {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px) scale(.985);
  transition: opacity .95s cubic-bezier(.16,1,.3,1), transform .95s cubic-bezier(.16,1,.3,1), filter .95s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform, filter;
}
.apple-stagger.up > *,
.apple-section.up .apple-stagger > * {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.apple-stagger.up > *:nth-child(1), .apple-section.up .apple-stagger > *:nth-child(1) { transition-delay: .04s; }
.apple-stagger.up > *:nth-child(2), .apple-section.up .apple-stagger > *:nth-child(2) { transition-delay: .12s; }
.apple-stagger.up > *:nth-child(3), .apple-section.up .apple-stagger > *:nth-child(3) { transition-delay: .20s; }
.apple-stagger.up > *:nth-child(4), .apple-section.up .apple-stagger > *:nth-child(4) { transition-delay: .28s; }
.apple-stagger.up > *:nth-child(5), .apple-section.up .apple-stagger > *:nth-child(5) { transition-delay: .36s; }
.apple-stagger.up > *:nth-child(6), .apple-section.up .apple-stagger > *:nth-child(6) { transition-delay: .44s; }
.apple-stagger.up > *:nth-child(7), .apple-section.up .apple-stagger > *:nth-child(7) { transition-delay: .52s; }
.apple-stagger.up > *:nth-child(8), .apple-section.up .apple-stagger > *:nth-child(8) { transition-delay: .60s; }
.apple-stagger.up > *:nth-child(9), .apple-section.up .apple-stagger > *:nth-child(9) { transition-delay: .68s; }
.apple-stagger.up > *:nth-child(10), .apple-section.up .apple-stagger > *:nth-child(10) { transition-delay: .76s; }
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stagger,
  .stagger > *,
  .apple-section,
  .apple-reveal,
  .apple-stagger > * {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}
#scroll-progress {
  position: fixed;
  top: 0; left: 0; width: 0%; height: 3px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  z-index: 10001;
  transition: width 0.1s ease-out;
}

.t-card { position: relative; }
.t-card::before {
  content: '';
  position: absolute;
  top: -100%; left: -100%; width: 50%; height: 300%;
  background: rgba(255,255,255,0.1);
  transform: rotate(45deg);
  transition: all 0.6s var(--ease);
  z-index: 3;
  pointer-events: none;
}
.t-card:hover::before { left: 150%; }

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-h1 { animation: softFloat 5s ease-in-out infinite; font-weight: 800; }



@keyframes goldDust {
  0% { transform: translateY(0) translateX(0) opacity: 0; }
  50% { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(20px) opacity: 0; }
}
.narrative-content {
  margin-top: 32px;
  max-width: 900px;
}
.narrative-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.narrative-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--green-900);
}
.gold-dust {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: goldDust 10s linear infinite;
}

/* =========================================================
   EDITORIAL / NARRATIVE SECTIONS
========================================================= */
.editorial-section {
  padding: 60px 0;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.editorial-header {
  position: sticky;
  top: 140px;
}
.editorial-body .lead {
  font-size: 1.35rem;
  font-family: var(--ff-serif);
  color: var(--green-900);
  line-height: 1.6;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(10,61,48,0.1);
  padding-bottom: 32px;
}
.editorial-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.split-paras {
  column-count: 2;
  column-gap: 40px;
}
.split-paras p {
  break-inside: avoid;
}
@media (max-width: 992px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial-header { position: static; }
  .split-paras { column-count: 1; }
}


/* =========================================================
   TESTIMONIALS (SUPERDESIGN STYLE)
========================================================= */
.testimonials-section {
  background: var(--ink); /* very dark background */
  color: var(--white);
  padding: 60px 0;
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.01); /* white/[0.01] overlay */
  pointer-events: none;
}
.testi-headline {
  text-align: center;
  font-family: var(--ff-serif);
  font-style: italic;
  
  font-weight: 400;
  color: var(--white);
  margin-bottom: 80px;
  letter-spacing: -0.02em;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.testi-card {
  padding-left: 4rem; /* pl-16 */
  border-left: 4px solid var(--gold); /* deep border-left accent */
}
.testi-quote {
  font-family: var(--ff-serif);
   /* ~5xl serif */
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--sand);
  margin-bottom: 40px;
}
.testi-author-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testi-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%) contrast(125%); /* Grayscale with contrast-125 */
}
.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-name {
  font-family: var(--ff-mono);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}
.testi-title {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 992px) {
  .testi-grid { grid-template-columns: 1fr; gap: 60px; }
  .testi-card { padding-left: 2rem; }
  .mv-card,
  .mv-card-reverse {
    grid-template-columns: 1fr;
  }
  .mv-card-reverse .mv-image {
    order: 0;
  }
  .mv-image,
  .mv-image img {
    min-height: 260px;
  }
}

/* ── Inner Page Therapy Cards ── */
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.therapy-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 560px;
}
.therapy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.therapy-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.therapy-card-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.therapy-card h3 {
  color: var(--green-900);
  font-size: var(--card-title-fs); line-height: var(--card-title-lh); font-family: var(--ff-serif); font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: 0 0 auto;
}
.therapy-card p {
  font-size: var(--card-desc-fs); line-height: var(--card-desc-lh); font-family: var(--ff-sans); font-weight: 400;
  color: var(--ink-muted);
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 127, 78, 0.65) rgba(30, 62, 46, 0.08);
}
.therapy-card p::-webkit-scrollbar {
  width: 6px;
}
.therapy-card p::-webkit-scrollbar-track {
  background: rgba(30, 62, 46, 0.08);
}
.therapy-card p::-webkit-scrollbar-thumb {
  background: rgba(155, 127, 78, 0.65);
}
.therapy-card[hidden] {
  display: none;
}
.therapy-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
}
.therapy-page-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(30, 62, 46, 0.18);
  background: var(--white);
  color: var(--green-900);
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.therapy-page-btn:hover:not(:disabled),
.therapy-page-btn.active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
}
.therapy-page-btn:hover:not(:disabled) {
  transform: translateY(-2px);
}
.therapy-page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.site-header {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.header-hidden {
  transform: translateY(-100%);
}

/* ── FINAL MOBILE OVERRIDES (FORCE VISIBILITY) ── */
@media (max-width: 1024px) {
  nav[aria-label="Primary"].open {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 0 !important; 
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    min-width: 100vw !important;
    height: 100vh !important;
    background: var(--green-900) !important;
    z-index: 10001 !important;
    padding: 100px 24px 40px !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    pointer-events: auto !important;
    margin: 0 !important;
  }
  nav[aria-label="Primary"].open .nav-links {
    align-items: center !important;
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  .cond-nav {
    position: relative !important;
    top: 0 !important;
    right: auto !important;
    margin: 20px auto !important;
    justify-content: center !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .cond-nav button {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* =========================================================
   SITE-WIDE SPACING + TYPE ALIGNMENT
========================================================= */
@media (min-width: 769px) {
  main > section:not(.hero-slider):not(.about-hero):not(.contact-hero):not(.page-hero) {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  main > section.hero-slider,
  main > section[style*="padding: 0"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  main > section.about-hero {
    padding-top: 150px !important;
    padding-bottom: 76px !important;
  }

  main > section.contact-hero,
  main > section.page-hero {
    padding-top: 104px !important;
    padding-bottom: 52px !important;
  }

  .about-hero .hero-h1,
  .contact-hero .hero-h1,
  .page-hero .hero-h1 { font-family: var(--ff-serif); font-weight: 700; font-size: var(--hero-title-fs); line-height: var(--hero-title-lh); 
    
  }
}

@media (max-width: 768px) {
  main > section:not(.hero-slider):not(.about-hero):not(.contact-hero):not(.page-hero) {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  main > section.hero-slider,
  main > section[style*="padding: 0"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  main > section.about-hero,
  main > section.contact-hero,
  main > section.page-hero {
    padding-top: 96px !important;
    padding-bottom: 44px !important;
  }
}

@media (max-width: 640px) {
  .about-hero .hero-h1,
  .contact-hero .hero-h1,
  .page-hero .hero-h1 { font-family: var(--ff-serif); font-weight: 700; font-size: var(--hero-title-fs); line-height: var(--hero-title-lh); 
    
  }
}

/* Added for flash ticker */
@keyframes flash-ticker-anim {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; color: #ffd700; }
}
.flash-ticker {
  animation: flash-ticker-anim 2s infinite ease-in-out;
}






