/* =========================================================
   SANOVA URGENT CARE — Design System
   Single source of truth. Clean, modern, premium.
   ========================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

/* ---------- Tokens ---------- */
:root {
  --c-teal:       #0d6e7a;
  --c-teal-dark:  #073f47;
  --c-teal-mid:   #1a8fa8;
  --c-teal-light: #d4eef2;
  --c-teal-pale:  #eef7f9;
  --c-green:      #5cb88a;
  --c-green-pale: #e8f7ef;
  --c-orange:     #f97316;
  --c-amber:      #f59e0b;
  --c-red-soft:   #fef2f2;
  --c-red:        #dc2626;

  --c-ink:        #0f1923;
  --c-ink-2:      #1e2d3a;
  --c-ink-3:      #3d5165;
  --c-muted:      #64788a;
  --c-border:     #e2eaee;
  --c-bg:         #f7fafc;
  --c-white:      #ffffff;

  --ff-sans:    'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-serif:   'Playfair Display', Georgia, serif;

  --fw-normal:  400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-xbold:   800;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;
  --fs-6xl:  3.75rem;
  --fs-7xl:  clamp(2.8rem, 6vw, 5.5rem);

  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-normal: 1.6;
  --lh-loose:  1.75;

  --ls-tight: -0.03em;
  --ls-snug:  -0.02em;
  --ls-wide:  0.08em;
  --ls-wider: 0.15em;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  --sh-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-sm: 0 4px 6px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.04);
  --sh-md: 0 10px 25px rgba(13,110,122,.08), 0 4px 10px rgba(0,0,0,.04);
  --sh-lg: 0 20px 50px rgba(13,110,122,.10), 0 8px 20px rgba(0,0,0,.05);
  --sh-xl: 0 32px 72px rgba(13,110,122,.14), 0 12px 28px rgba(0,0,0,.06);

  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
  --dur-fast:   180ms;
  --dur-med:    320ms;
  --dur-slow:   600ms;

  --max-w: 1280px;
  --px: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--c-ink-3);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { color: var(--c-ink); line-height: var(--lh-tight); }
p { line-height: var(--lh-normal); }
::selection { background: var(--c-teal); color: #fff; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-teal-mid); border-radius: 4px; border: 2px solid var(--c-bg); }
::-webkit-scrollbar-thumb:hover { background: var(--c-teal); }

/* ---------- Focus ---------- */
*:focus-visible { outline: 2px solid var(--c-teal-mid); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px); }

/* ---------- Typography ---------- */
.t-serif { font-family: var(--ff-serif); }
.label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-teal);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.label::before { content: ''; width: 20px; height: 1.5px; background: var(--c-teal); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur-med) var(--ease-out);
  user-select: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--c-teal-dark), var(--c-teal), var(--c-teal-mid));
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(13,110,122,.45), 0 0 0 1px rgba(255,255,255,.1) inset;
}
.btn-primary:hover { box-shadow: 0 14px 32px -6px rgba(13,110,122,.55), 0 0 0 1px rgba(255,255,255,.12) inset; }

.btn-accent {
  background: linear-gradient(135deg, #ea580c, var(--c-orange), #fb923c);
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(249,115,22,.45);
}
.btn-accent:hover { box-shadow: 0 14px 32px -6px rgba(249,115,22,.55); }

.btn-outline {
  background: transparent;
  color: var(--c-teal);
  border-color: var(--c-teal);
}
.btn-outline:hover { background: var(--c-teal); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: #fff; color: var(--c-teal-dark); border-color: #fff; }

.btn-white {
  background: #fff;
  color: var(--c-teal-dark);
  box-shadow: var(--sh-md);
}
.btn-white:hover { background: var(--c-teal-pale); box-shadow: var(--sh-lg); }

.btn-lg { padding: 1.1rem 2.25rem; font-size: var(--fs-base); }
.btn-sm { padding: .6rem 1.25rem; font-size: var(--fs-xs); }

/* ---------- Reveal animation ---------- */
html.js-on .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
html.js-on .reveal.visible { opacity: 1; transform: none; }
.reveal-d1.visible { transition-delay: 100ms; }
.reveal-d2.visible { transition-delay: 200ms; }
.reveal-d3.visible { transition-delay: 300ms; }
.reveal-d4.visible { transition-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  html.js-on .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Section Spacing ---------- */
.section { padding-block: clamp(5rem, 9vw, 8rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { max-width: 700px; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.section-head .h2 { margin-top: .75rem; }
.section-head p { margin-top: 1rem; max-width: 580px; color: var(--c-muted); font-size: var(--fs-lg); }
.section-head-center { text-align: center; margin-inline: auto; }
.section-head-center p { margin-inline: auto; }

/* ---------- Typography helpers ---------- */
.h1 { font-size: var(--fs-7xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); line-height: var(--lh-tight); }
.h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: var(--fw-bold); letter-spacing: var(--ls-snug); }
.h3 { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-snug); }
.h4 { font-size: var(--fs-xl); font-weight: var(--fw-semi); }
.text-gradient {
  background: linear-gradient(135deg, var(--c-teal-dark), var(--c-teal-mid), var(--c-green));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-muted { color: var(--c-muted); }
.text-white { color: #fff; }

/* ---------- Card base ---------- */
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--c-teal-light); }

/* ---------- Grid helpers ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Utilities ---------- */
.bg-white { background: #fff; }
.bg-pale { background: var(--c-teal-pale); }
.bg-bg { background: var(--c-bg); }
.bg-dark { background: var(--c-ink-2); }
.bg-teal { background: linear-gradient(135deg, var(--c-teal-dark) 0%, var(--c-teal) 60%, var(--c-teal-mid) 100%); }

/* =========================================================
   UTILITY BAR
   ========================================================= */
.util-bar {
  background: linear-gradient(90deg, var(--c-teal-dark), var(--c-teal));
  color: rgba(255,255,255,.85);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: .6rem 0;
  position: relative;
  overflow: hidden;
}
.util-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(95,184,138,.18), transparent 50%);
}
.util-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.util-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--c-green);
  color: #fff;
  font-weight: var(--fw-semi);
  padding: .3rem .85rem;
  border-radius: var(--r-full);
  font-size: .7rem;
  letter-spacing: .04em;
}
.util-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.util-list { display: flex; align-items: center; gap: 2rem; }
.util-list li { display: flex; align-items: center; gap: .45rem; }
.util-list svg { width: 14px; height: 14px; opacity: .75; }
.util-phone a { color: #fff; font-weight: var(--fw-semi); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--dur-med);
}
.site-header.scrolled { box-shadow: var(--sh-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .9rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-teal-dark), var(--c-teal-mid));
  border-radius: 10px;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px -3px rgba(13,110,122,.4);
  transition: transform var(--dur-med) var(--ease-spring);
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-mark svg { width: 20px; height: 20px; color: #fff; }
.logo-img { height: 40px; width: auto; object-fit: contain; flex-shrink: 0; }
.logo-text { line-height: 1; }
.logo-name { font-size: 1.1rem; font-weight: var(--fw-bold); color: var(--c-ink); letter-spacing: var(--ls-snug); white-space: nowrap; }
.logo-sub { font-size: .58rem; font-weight: var(--fw-semi); letter-spacing: .18em; text-transform: uppercase; color: var(--c-teal); margin-top: 2px; }

/* Nav */
.nav-list { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.nav-link {
  font-size: .8rem;
  font-weight: var(--fw-medium);
  color: var(--c-ink-3);
  padding: .5rem .65rem;
  border-radius: var(--r-md);
  transition: all var(--dur-fast);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: var(--c-teal); background: var(--c-teal-pale); }
.nav-link.active { color: var(--c-teal); font-weight: var(--fw-semi); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10%; right: 10%;
  height: 2px;
  background: var(--c-teal);
  border-radius: 2px;
}

/* Burger */
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: var(--r-md); transition: background var(--dur-fast); }
.burger:hover { background: var(--c-teal-pale); }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: all var(--dur-med) var(--ease-out); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  display: flex;
  pointer-events: none;
}
.drawer.open { pointer-events: auto; }
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(7,63,71,.45);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--dur-med);
}
.drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel {
  position: relative; margin-left: auto;
  width: min(320px, 90vw);
  height: 100%;
  background: #fff;
  box-shadow: var(--sh-xl);
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease-out);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--c-border);
}
.drawer-close { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--c-bg); color: var(--c-ink-3); transition: background var(--dur-fast); }
.drawer-close:hover { background: var(--c-teal-light); color: var(--c-teal); }
.drawer-nav { padding: 1rem; flex: 1; }
.drawer-link { display: block; padding: .85rem 1rem; border-radius: var(--r-md); font-weight: var(--fw-medium); color: var(--c-ink-3); transition: all var(--dur-fast); }
.drawer-link:hover { color: var(--c-teal); background: var(--c-teal-pale); }
.drawer-link.active { color: var(--c-teal); background: var(--c-teal-pale); font-weight: var(--fw-semi); }
.drawer-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--c-border); display: grid; gap: .75rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 820px);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('../assets/bg.webp') center/cover no-repeat;
  filter: saturate(1.1);
  transform: scale(1.05);
  animation: heroKen 20s ease-out infinite alternate;
}
@keyframes heroKen { to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(7,63,71,.88) 0%,
    rgba(10,74,82,.80) 40%,
    rgba(13,110,122,.68) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(95,184,138,.15), transparent 55%);
}
.hero-inner {
  position: relative;
  padding-block: clamp(4rem, 9vw, 6rem);
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: .06em;
  padding: .45rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.75rem;
}
.live-dot { width: 8px; height: 8px; background: var(--c-green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(92,184,138,.3); animation: pulse 2s ease-in-out infinite; }
.hero-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-7xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 14ch;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-title em { font-style: italic; color: #7de8b8; }
.hero-lede {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.88);
  line-height: var(--lh-loose);
  max-width: 54ch;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 4rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 2rem;
  max-width: 680px;
}
.hero-stat {
  padding: 0 2rem 0 0;
  position: relative;
}
.hero-stat + .hero-stat {
  padding-left: 2rem;
  border-left: 1px solid rgba(255,255,255,.15);
}
.hero-stat-val {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  line-height: 1;
  margin-bottom: .45rem;
}
.hero-stat strong {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: var(--fw-bold);
  color: #fff;
  letter-spacing: var(--ls-tight);
}
.hero-stat-stars {
  display: flex;
  gap: 2px;
  margin-bottom: .35rem;
}
.hero-stat-stars svg { width: 14px; height: 14px; fill: #f59e0b; color: #f59e0b; }
.hero-stat span {
  font-size: .68rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--c-teal-dark), var(--c-teal), var(--c-teal-mid));
  position: relative; overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6rem);
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(92,184,138,.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(26,143,168,.2), transparent 50%);
  pointer-events: none;
}
.page-hero-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
.page-hero-title { font-family: var(--ff-serif); font-size: clamp(2.4rem,5vw,3.8rem); font-weight: var(--fw-bold); color: #fff; line-height: var(--lh-snug); letter-spacing: var(--ls-tight); }
.page-hero-title em { font-style: italic; color: #7de8b8; }
.page-hero-desc { color: rgba(255,255,255,.82); font-size: var(--fs-lg); line-height: var(--lh-loose); margin-top: .85rem; max-width: 52ch; }
.page-hero-cta { flex-shrink: 0; }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar { background: #fff; border-bottom: 1px solid var(--c-border); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem;
  border-right: 1px solid var(--c-border);
  transition: background var(--dur-fast);
}
.trust-item:last-child { border-right: 0; }
.trust-item:hover { background: var(--c-teal-pale); }
.trust-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--r-lg);
  display: grid; place-items: center;
}
.trust-icon svg { width: 22px; height: 22px; }
.ti-teal { background: var(--c-teal-pale); color: var(--c-teal); }
.ti-green { background: var(--c-green-pale); color: #2d8a60; }
.ti-amber { background: #fef9e7; color: #b45309; }
.ti-blue { background: #eff6ff; color: #1d4ed8; }
.trust-label { display: block; font-size: var(--fs-xs); color: var(--c-muted); letter-spacing: .04em; text-transform: uppercase; }
.trust-val { display: block; font-size: var(--fs-base); font-weight: var(--fw-semi); color: var(--c-ink); margin-top: 2px; }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-teal-mid), var(--c-green));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: transform var(--dur-med) var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.si-1 { background: linear-gradient(135deg,#dbeafe,#eff6ff); color: #1d4ed8; }
.si-2 { background: linear-gradient(135deg,#dcfce7,#f0fdf4); color: #15803d; }
.si-3 { background: linear-gradient(135deg,var(--c-teal-light),var(--c-teal-pale)); color: var(--c-teal); }
.si-4 { background: linear-gradient(135deg,#fef9c3,#fefce8); color: #a16207; }
.service-icon svg { width: 28px; height: 28px; }
.service-name { font-size: var(--fs-xl); font-weight: var(--fw-bold); color: var(--c-ink); margin-bottom: .6rem; letter-spacing: var(--ls-snug); }
.service-desc { font-size: var(--fs-sm); color: var(--c-muted); line-height: var(--lh-loose); margin-bottom: 1.5rem; }
.service-list { display: grid; gap: .5rem; }
.service-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: var(--fs-sm); color: var(--c-ink-3); }
.service-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: var(--c-teal-pale); color: var(--c-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6L5 8.5 9.5 4' stroke='%230d6e7a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* =========================================================
   REVIEW CARDS
   ========================================================= */
.review-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--c-teal-light); }
.review-quote {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--ff-serif); font-size: 4.5rem; line-height: 1;
  color: var(--c-teal-light); font-style: italic; pointer-events: none;
}
.review-stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.review-stars svg { width: 16px; height: 16px; fill: var(--c-amber); color: var(--c-amber); }
.review-text { font-size: var(--fs-base); color: var(--c-ink-3); line-height: var(--lh-loose); font-style: italic; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: .85rem; border-top: 1px solid var(--c-border); padding-top: 1.25rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-teal), var(--c-teal-mid));
  display: grid; place-items: center; color: #fff;
  font-weight: var(--fw-bold); font-size: var(--fs-base); flex-shrink: 0;
}
.review-name { font-weight: var(--fw-semi); color: var(--c-ink); font-size: var(--fs-sm); }
.review-meta { font-size: var(--fs-xs); color: var(--c-muted); margin-top: 2px; }

/* =========================================================
   INSURANCE GRID
   ========================================================= */
.ins-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-ink-3);
  transition: all var(--dur-fast);
}
.ins-card:hover { border-color: var(--c-teal); color: var(--c-teal); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.ins-card-more { background: linear-gradient(135deg, var(--c-teal-pale), var(--c-green-pale)); border-color: transparent; color: var(--c-teal); font-style: italic; }

/* =========================================================
   PRICING TABLE
   ========================================================= */
.pricing-table { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }
.pricing-head { background: linear-gradient(135deg, var(--c-teal-dark), var(--c-teal)); display: grid; grid-template-columns: 1fr 160px; padding: 1.25rem 2rem; }
.pricing-head span { font-size: var(--fs-xs); font-weight: var(--fw-semi); letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.pricing-row { display: grid; grid-template-columns: 1fr 160px; align-items: center; padding: 1.4rem 2rem; border-top: 1px solid var(--c-border); transition: background var(--dur-fast); }
.pricing-row:hover { background: var(--c-teal-pale); }
.pricing-name { font-weight: var(--fw-semi); color: var(--c-ink); }
.pricing-sub { font-size: var(--fs-xs); color: var(--c-muted); margin-top: 2px; }
.pricing-price { font-family: var(--ff-serif); font-size: var(--fs-2xl); font-weight: var(--fw-bold); color: var(--c-teal); letter-spacing: var(--ls-tight); }
@media (max-width: 600px) {
  .pricing-row, .pricing-head { grid-template-columns: 1fr; gap: .5rem; }
  .pricing-price { font-size: var(--fs-xl); }
}

/* =========================================================
   DRIP CARDS (IV)
   ========================================================= */
.drip-card {
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: #fff;
  transition: all var(--dur-med) var(--ease-out);
  position: relative;
}
.drip-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: transparent; }
.drip-top { height: 150px; display: grid; place-items: center; position: relative; overflow: hidden; }
.drip-top::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 60%); }
.drip-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -6px rgba(0,0,0,.25);
  position: relative; z-index: 1;
  transition: transform var(--dur-med) var(--ease-spring);
}
.drip-card:hover .drip-icon { transform: scale(1.12) rotate(8deg); }
.drip-icon svg { width: 30px; height: 30px; }
.drip-body { padding: 1.75rem; }
.drip-tag { font-size: .68rem; font-weight: var(--fw-semi); letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .5rem; }
.drip-name { font-size: var(--fs-xl); font-weight: var(--fw-bold); color: var(--c-ink); margin-bottom: .5rem; letter-spacing: var(--ls-snug); }
.drip-desc { font-size: var(--fs-sm); color: var(--c-muted); line-height: var(--lh-loose); }
.drip-teal { background: linear-gradient(135deg, var(--c-teal-dark), var(--c-teal-mid)); color: var(--c-teal); }
.drip-amber { background: linear-gradient(135deg, #d97706, #f59e0b); color: #b45309; }
.drip-green { background: linear-gradient(135deg, #065f46, #10b981); color: #065f46; }
.drip-purple { background: linear-gradient(135deg, #4c1d95, #7c3aed); color: #4c1d95; }

/* =========================================================
   TEAM CARD
   ========================================================= */
.team-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-2xl); overflow: hidden; transition: all var(--dur-med) var(--ease-out); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--c-teal-light); }
.team-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--c-teal-pale), var(--c-green-pale));
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.team-photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--c-teal); }
.team-photo-placeholder svg { width: 64px; height: 64px; opacity: .5; }
.team-photo-placeholder span { font-size: var(--fs-sm); color: var(--c-muted); }
.team-photo-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--c-teal); color: #fff;
  font-size: var(--fs-xs); font-weight: var(--fw-semi); letter-spacing: .04em;
  padding: .35rem .85rem; border-radius: var(--r-full);
}
.team-info { padding: 1.5rem; }
.team-name { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--c-ink); }
.team-role { font-size: var(--fs-sm); color: var(--c-teal); font-weight: var(--fw-medium); margin-top: 2px; }
.team-bio { font-size: var(--fs-sm); color: var(--c-muted); margin-top: .75rem; line-height: var(--lh-loose); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gal-item { border-radius: var(--r-xl); overflow: hidden; position: relative; cursor: pointer; }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-art { display: block; width: 100%; height: 100%; }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,63,71,.85));
  opacity: 0; transition: opacity var(--dur-med);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gal-label { color: #fff; font-size: var(--fs-sm); font-weight: var(--fw-semi); }
.gal-sm { color: rgba(255,255,255,.75); font-size: var(--fs-xs); display: block; margin-top: 2px; }
.g-wide { grid-column: span 7; aspect-ratio: 16/11; }
.g-tall { grid-column: span 5; aspect-ratio: 16/11; }
.g-3 { grid-column: span 4; aspect-ratio: 4/3; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-wide, .g-tall { grid-column: span 2; }
  .g-3 { grid-column: span 1; }
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-hero-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-2xl);
  overflow: hidden; margin-bottom: 4rem;
  transition: box-shadow var(--dur-med);
}
.blog-hero-card:hover { box-shadow: var(--sh-lg); }
.blog-hero-art { min-height: 400px; display: block; }
.blog-hero-body { padding: 3rem 3rem 3rem 0; display: flex; flex-direction: column; justify-content: center; }
.blog-tag { display: inline-block; font-size: .7rem; font-weight: var(--fw-semi); letter-spacing: .12em; text-transform: uppercase; color: var(--c-teal); background: var(--c-teal-pale); padding: .3rem .75rem; border-radius: var(--r-full); margin-bottom: 1rem; }
.blog-title { font-family: var(--ff-serif); font-size: clamp(1.5rem,3vw,2.25rem); font-weight: var(--fw-bold); color: var(--c-ink); letter-spacing: var(--ls-snug); line-height: var(--lh-snug); margin-bottom: 1rem; }
.blog-title a { transition: color var(--dur-fast); }
.blog-title a:hover { color: var(--c-teal); }
.blog-excerpt { font-size: var(--fs-base); color: var(--c-muted); line-height: var(--lh-loose); margin-bottom: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; font-size: var(--fs-xs); color: var(--c-muted); flex-wrap: wrap; }
.blog-meta span { display: flex; align-items: center; gap: .35rem; }
.blog-meta svg { width: 12px; height: 12px; }
.blog-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all var(--dur-med) var(--ease-out);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--c-teal-light); }
.blog-card-art { aspect-ratio: 16/10; display: block; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-title { font-family: var(--ff-serif); font-size: var(--fs-xl); font-weight: var(--fw-bold); color: var(--c-ink); line-height: var(--lh-snug); letter-spacing: var(--ls-snug); margin: .5rem 0; }
.blog-card-title a { transition: color var(--dur-fast); }
.blog-card-title a:hover { color: var(--c-teal); }
.blog-card-excerpt { font-size: var(--fs-sm); color: var(--c-muted); line-height: var(--lh-loose); flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: .75rem; font-size: var(--fs-xs); color: var(--c-muted); margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--c-border); }
.blog-card-meta svg { width: 12px; height: 12px; }

/* =========================================================
   CONTACT & LOCATION
   ========================================================= */
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.info-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-2xl); overflow: hidden;
}
.info-card-head { background: linear-gradient(135deg, var(--c-teal-dark), var(--c-teal)); padding: 2rem; }
.info-card-head h3 { font-family: var(--ff-serif); font-size: var(--fs-2xl); color: #fff; }
.info-card-head p { color: rgba(255,255,255,.75); margin-top: .5rem; font-size: var(--fs-sm); }
.info-card-body { padding: 0; }
.info-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--c-border); transition: background var(--dur-fast); }
.info-row:last-child { border-bottom: 0; }
.info-row:hover { background: var(--c-teal-pale); }
.info-row-icon { width: 42px; height: 42px; background: var(--c-teal-pale); border-radius: var(--r-lg); display: grid; place-items: center; color: var(--c-teal); flex-shrink: 0; margin-top: 2px; }
.info-row-icon svg { width: 18px; height: 18px; }
.info-row-body { flex: 1; min-width: 0; }
.info-label { font-size: .68rem; font-weight: var(--fw-semi); color: var(--c-muted); text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: .25rem; }
.info-val { font-size: var(--fs-base); font-weight: var(--fw-semi); color: var(--c-ink); display: block; line-height: 1.4; }
.info-val a { color: var(--c-teal); }
.info-val a:hover { text-decoration: underline; }
.info-sub { font-size: var(--fs-xs); color: var(--c-muted); margin-top: 3px; display: block; }
.hours-table { display: grid; gap: 0; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: .85rem 1.5rem; border-bottom: 1px solid var(--c-border); font-size: var(--fs-sm); }
.hours-row:last-child { border-bottom: 0; }
.hours-row.today { background: var(--c-teal-pale); color: var(--c-teal); font-weight: var(--fw-semi); }
.hours-today-chip { font-size: .65rem; background: var(--c-teal); color: #fff; padding: .15rem .55rem; border-radius: var(--r-full); margin-left: .5rem; }
.hours-closed { color: var(--c-muted); }
.map-card { border-radius: var(--r-2xl); overflow: hidden; border: 1px solid var(--c-border); box-shadow: var(--sh-lg); height: 100%; min-height: 480px; }
.map-card iframe { width: 100%; height: 100%; border: 0; min-height: 480px; }
.community-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-xl);
  padding: 2rem; position: relative; overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
}
.community-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--c-teal), var(--c-green)); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-slow) var(--ease-out); }
.community-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.community-card:hover::before { transform: scaleX(1); }
.community-icon { width: 48px; height: 48px; background: var(--c-teal-pale); border-radius: var(--r-lg); display: grid; place-items: center; color: var(--c-teal); margin-bottom: 1rem; }
.community-icon svg { width: 22px; height: 22px; }
.community-name { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--c-ink); margin-bottom: .5rem; }
.community-desc { font-size: var(--fs-sm); color: var(--c-muted); line-height: var(--lh-loose); }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.form-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-2xl); padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--c-ink); margin-bottom: .45rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  font-family: var(--ff-sans); font-size: var(--fs-base); color: var(--c-ink);
  background: #fff;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--c-teal); box-shadow: 0 0 0 3px rgba(13,110,122,.12); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--c-teal-dark) 0%, var(--c-teal) 60%, var(--c-teal-mid) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(92,184,138,.2), transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(26,143,168,.25), transparent 40%);
}
.cta-inner { position: relative; text-align: center; }
.cta-title { font-family: var(--ff-serif); font-size: clamp(2rem,5vw,3.5rem); font-weight: var(--fw-bold); color: #fff; letter-spacing: var(--ls-tight); margin-bottom: 1rem; }
.cta-title em { font-style: italic; color: #7de8b8; }
.cta-sub { color: rgba(255,255,255,.8); font-size: var(--fs-lg); max-width: 52ch; margin: 0 auto 2.5rem; line-height: var(--lh-loose); }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.cta-info { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.cta-info-item { display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.75); font-size: var(--fs-sm); }
.cta-info-item svg { width: 18px; height: 18px; color: var(--c-green); }

/* =========================================================
   EMERGENCY CARD
   ========================================================= */
.emergency-bar {
  background: var(--c-red-soft); border: 1px solid #fecaca; border-radius: var(--r-xl);
  display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.75rem 2rem;
}
.emergency-icon { width: 50px; height: 50px; background: var(--c-red); border-radius: var(--r-lg); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.emergency-icon svg { width: 24px; height: 24px; }
.emergency-text h3 { font-size: var(--fs-lg); font-weight: var(--fw-semi); color: #991b1b; margin-bottom: .4rem; }
.emergency-text p { font-size: var(--fs-sm); color: #7f1d1d; line-height: var(--lh-loose); }
.emergency-text strong { color: var(--c-red); font-weight: var(--fw-bold); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter-wrap { background: var(--c-teal-pale); border-radius: var(--r-2xl); padding: 3rem; }
.newsletter-form { display: flex; gap: .75rem; margin-top: 1.5rem; }
.newsletter-form input { flex: 1; padding: .9rem 1.25rem; border: 1.5px solid var(--c-teal-light); border-radius: var(--r-full); font-family: var(--ff-sans); font-size: var(--fs-base); background: #fff; }
.newsletter-form input:focus { outline: none; border-color: var(--c-teal); box-shadow: 0 0 0 3px rgba(13,110,122,.12); }
@media (max-width: 540px) { .newsletter-form { flex-direction: column; } }

/* =========================================================
   FOOTER — Premium Redesign
   ========================================================= */
.site-footer {
  background: #0c1a20;
  color: rgba(255,255,255,.6);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-teal-dark), var(--c-teal), var(--c-green), var(--c-teal-mid), var(--c-teal-dark));
  background-size: 200% 100%;
  animation: footerGradient 6s linear infinite;
}
@keyframes footerGradient { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.site-footer::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(13,110,122,.12), transparent 70%);
  pointer-events: none;
}

/* CTA Strip above footer */
.footer-cta-strip {
  background: linear-gradient(135deg, var(--c-teal-dark) 0%, var(--c-teal) 60%, var(--c-teal-mid) 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.footer-cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(92,184,138,.2), transparent 50%);
}
.footer-cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  position: relative;
}
.footer-cta-strip h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: #fff;
  letter-spacing: var(--ls-tight);
  margin: 0;
}
.footer-cta-strip h3 em { font-style: italic; color: #7de8b8; }
.footer-cta-strip p { color: rgba(255,255,255,.75); font-size: var(--fs-sm); margin-top: .25rem; }
.footer-cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }

/* Main footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 3.5rem;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand column */
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.footer-logo-img { height: 42px; width: auto; object-fit: contain; }
.footer-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--c-teal), var(--c-green));
  border-radius: 10px; display: grid; place-items: center; flex-shrink: 0;
}
.footer-logo-mark svg { width: 20px; height: 20px; color: #fff; }
.footer-logo-text {}
.footer-logo-name { font-size: 1.15rem; font-weight: var(--fw-bold); color: #fff; letter-spacing: var(--ls-snug); display: block; }
.footer-logo-sub { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-green); margin-top: 2px; display: block; }
.footer-tagline {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 1.1rem; line-height: 1.5;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-contact-quick { display: grid; gap: .75rem; margin-bottom: 1.75rem; }
.footer-contact-item { display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.6); font-size: var(--fs-sm); }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--c-green); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.85); font-weight: var(--fw-medium); transition: color var(--dur-fast); }
.footer-contact-item a:hover { color: var(--c-green); }
.footer-social { display: flex; gap: .6rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center; color: rgba(255,255,255,.5);
  transition: all var(--dur-fast);
}
.footer-social-link:hover { background: var(--c-teal); border-color: var(--c-teal); color: #fff; transform: translateY(-2px); }
.footer-social-link svg { width: 15px; height: 15px; }

/* Nav columns */
.footer-col h4 {
  font-size: .68rem; font-weight: var(--fw-bold);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .6rem;
}
.footer-col h4::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.07); }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col li a {
  font-size: .875rem; color: rgba(255,255,255,.5);
  transition: all var(--dur-fast);
  display: flex; align-items: center; gap: .4rem;
}
.footer-col li a::before { content: ''; width: 0; height: 1px; background: var(--c-teal); transition: width var(--dur-fast); }
.footer-col li a:hover { color: #fff; padding-left: .4rem; }
.footer-col li a:hover::before { width: 10px; }

/* Hours column */
.footer-hours-list { display: grid; gap: 0; }
.footer-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .83rem;
}
.footer-hours-row:last-child { border-bottom: 0; }
.footer-hours-row .day { color: rgba(255,255,255,.5); }
.footer-hours-row .time { color: rgba(255,255,255,.85); font-weight: var(--fw-medium); font-size: .8rem; }
.footer-hours-row.closed .day, .footer-hours-row.closed .time { color: rgba(255,255,255,.3); }
.footer-open-now {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(92,184,138,.15); border: 1px solid rgba(92,184,138,.3);
  color: var(--c-green); font-size: .65rem; font-weight: var(--fw-semi);
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.footer-open-dot { width: 6px; height: 6px; background: var(--c-green); border-radius: 50%; animation: pulse 2s infinite; }

/* Base */
.footer-base {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-base p { font-size: .75rem; color: rgba(255,255,255,.28); }
.footer-base a { color: rgba(255,255,255,.4); transition: color var(--dur-fast); }
.footer-base a:hover { color: #fff; }
.footer-base-links { display: flex; gap: 1.5rem; }
.footer-base-links a { font-size: .75rem; }

/* =========================================================
   FLOATING CALL BUTTON
   ========================================================= */
.float-call {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 80;
  display: none;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-teal-dark), var(--c-teal-mid));
  color: #fff; box-shadow: 0 8px 24px -4px rgba(13,110,122,.55);
  align-items: center; justify-content: center;
  animation: floatBob 3s ease-in-out infinite;
}
.float-call svg { width: 24px; height: 24px; }
.float-call::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; background: rgba(13,110,122,.2); animation: floatRing 3s ease-in-out infinite; }
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes floatRing { 0%,100% { transform: scale(1); opacity: .6; } 50% { transform: scale(1.2); opacity: 0; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(92,184,138,.35); } 50% { box-shadow: 0 0 0 7px rgba(92,184,138,0); } }
@media (max-width: 768px) { .float-call { display: inline-flex; } }

/* =========================================================
   RESPONSIVE — HEADER
   ========================================================= */
@media (max-width: 1200px) {
  .nav-link { font-size: .75rem; padding: .45rem .5rem; }
}
@media (max-width: 1060px) {
  .nav-list { display: none; }
  .burger { display: flex; }
}
@media (max-width: 768px) {
  .header-cta-desktop .btn-primary:not(.btn-call-icon) { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--c-border); }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-cta { display: none; }
  .hero-stats { grid-template-columns: repeat(2, auto); }
  .hero-stat + .hero-stat::before { display: none; }
  .hero-stat:nth-child(2n) { padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,.2); }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; text-align: center; }
  .blog-hero-card { grid-template-columns: 1fr; }
  .blog-hero-body { padding: 1.75rem; }
  .util-list { display: none; }
  .btn-call-icon { padding: .7rem 1.1rem; font-size: .78rem; }
}
@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--c-border); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 1rem; }
  .hero-stat:nth-child(2n) { padding-left: 1.5rem; }
  .hero-stat + .hero-stat::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SERVICE IMAGE PLACEHOLDER
   ========================================================= */
.service-img-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--c-teal-pale), var(--c-bg));
  border: 2px dashed var(--c-border);
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem; text-align: center;
  background: linear-gradient(135deg, #eef7f9, #f0fdf4);
  pointer-events: none;
}
.service-img-placeholder svg { width: 48px; height: 48px; color: var(--c-teal-light); }
.service-img-placeholder span {
  font-size: .78rem; font-weight: var(--fw-semi);
  color: var(--c-muted); line-height: 1.5;
  background: #fff; padding: .5rem 1rem;
  border-radius: var(--r-full);
  border: 1px dashed var(--c-border);
  letter-spacing: .02em;
}
/* Hide placeholder when real img loaded */
.service-img-wrap img:not([src=""]):not([src*="placeholder"]) + .service-img-placeholder { display: none; }

/* Badge on image */
.service-img-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: #fff; color: var(--c-teal);
  font-size: .72rem; font-weight: var(--fw-semi);
  padding: .4rem 1rem; border-radius: var(--r-full);
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: .4rem;
}
.service-img-badge svg { width: 12px; height: 12px; }

/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-cta-strip-inner { justify-content: center; text-align: center; }
  .footer-cta-btns { justify-content: center; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cta-strip { padding: 2rem 0; }
  .footer-cta-strip h3 { font-size: 1.3rem; }
}

/* =========================================================
   RESPONSIVE OVERHAUL — Full Mobile/Tablet Fix
   ========================================================= */

/* ---- Reusable split grid (1fr 1fr → 1fr on mobile) ---- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-grid-start { align-items: start; }

/* ---- Page hero grid ---- */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

/* ---- HEADER: hide Call Now on mobile, show only burger ---- */
@media (max-width: 768px) {
  .btn-call-icon { display: none !important; }
  .header-cta-desktop { gap: 0 !important; }
}

/* ---- DRAWER CTA: show call button inside drawer on mobile ---- */
.drawer-foot-call { display: none; }
@media (max-width: 768px) {
  .drawer-foot-call { display: flex; }
}

/* ---- TABLET breakpoint (768px) ---- */
@media (max-width: 768px) {
  /* Split grids → single column */
  .split-grid,
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1.1fr"],
  [style*="grid-template-columns: 1fr 1.1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Services page: image comes AFTER text on mobile */
  .service-section-img { order: -1; }

  /* Hero stats 2-column */
  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    max-width: 100% !important;
  }
  .hero-stat + .hero-stat {
    padding-left: 1rem !important;
    border-left: 1px solid rgba(255,255,255,.15) !important;
  }

  /* Page hero */
  .page-hero-grid { grid-template-columns: 1fr !important; }
  .page-hero-cta { display: none !important; }

  /* Location grid */
  .location-grid { grid-template-columns: 1fr !important; }

  /* Blog hero */
  .blog-hero-card { grid-template-columns: 1fr !important; }
  .blog-hero-body { padding: 1.75rem !important; }

  /* Footer grid */
  .footer-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .footer-cta-strip-inner { flex-direction: column !important; text-align: center !important; }
  .footer-cta-btns { justify-content: center !important; width: 100% !important; }
  .footer-cta-btns .btn { flex: 1; justify-content: center !important; }

  /* Trust bar */
  .trust-bar-inner { grid-template-columns: 1fr 1fr !important; }
  .trust-item:nth-child(2) { border-right: 0 !important; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--c-border) !important; }

  /* Form row */
  .form-row { grid-template-columns: 1fr !important; }

  /* Newsletter */
  [style*="grid-template-columns:1fr auto"] { grid-template-columns: 1fr !important; }

  /* Section spacing */
  .section { padding-block: clamp(3rem, 7vw, 5rem) !important; }

  /* iv-hydration science section */
  [style*="grid-template-columns:1fr 1fr;gap:4rem"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Team grid */
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }

  /* Gallery grid */
  .gallery-grid { grid-template-columns: 1fr 1fr !important; }
  .g-wide, .g-tall { grid-column: span 2 !important; }
  .g-3 { grid-column: span 1 !important; }

  /* CTA section */
  .cta-info { gap: 1rem !important; flex-direction: column !important; align-items: center !important; }
  .cta-btns { flex-direction: column !important; align-items: center !important; width: 100% !important; }
  .cta-btns .btn { width: 100% !important; justify-content: center !important; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr !important; }

  /* Pricing table */
  .pricing-head { grid-template-columns: 1fr !important; }
  .pricing-row { grid-template-columns: 1fr !important; gap: .25rem !important; }
  .pricing-price { font-size: 1.3rem !important; }

  /* Contact grid */
  .contact-form-grid { grid-template-columns: 1fr !important; }

  /* Drip grid */
  .drip-grid { grid-template-columns: 1fr !important; }

  /* Hero CTA buttons */
  .hero-ctas { flex-direction: column !important; }
  .hero-ctas .btn { width: 100% !important; justify-content: center !important; }

  /* Page hero buttons */
  [style*="display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem"] {
    flex-direction: column !important;
  }
  [style*="display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem"] .btn {
    width: 100% !important; justify-content: center !important;
  }

  /* Self-pay / forms CTA strips */
  [style*="display:flex;align-items:center;justify-content:space-between"] {
    flex-direction: column !important;
    text-align: center !important;
  }

  /* IV science cards */
  [style*="display:grid;grid-template-columns:1fr 1fr;gap:1rem"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Util bar */
  .util-list { display: none !important; }
  .util-phone { margin-left: auto; }
}

/* ---- SMALL MOBILE (480px) ---- */
@media (max-width: 480px) {
  :root { --px: 1.1rem; }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem) !important; }
  .h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .h2 { font-size: clamp(1.6rem, 6vw, 2.25rem) !important; }

  .hero-stats { grid-template-columns: 1fr 1fr !important; }
  .hero-stat strong { font-size: 1.8rem !important; }

  .trust-bar-inner { grid-template-columns: 1fr !important; }
  .trust-item { border-right: 0 !important; border-bottom: 1px solid var(--c-border) !important; }

  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-base { flex-direction: column !important; text-align: center !important; gap: .5rem !important; }
  .footer-base-links { flex-wrap: wrap !important; justify-content: center !important; gap: .75rem !important; }

  .gallery-grid { grid-template-columns: 1fr !important; }
  .g-wide, .g-tall, .g-3 { grid-column: span 1 !important; }

  .btn { padding: .85rem 1.25rem !important; font-size: .88rem !important; }
  .btn-lg { padding: 1rem 1.5rem !important; font-size: .95rem !important; }

  .drip-card .drip-top { height: 130px !important; }

  /* Newsletter form */
  .newsletter-form { flex-direction: column !important; }
  .newsletter-form input { border-radius: var(--r-lg) !important; }
  .newsletter-form .btn { border-radius: var(--r-lg) !important; width: 100% !important; justify-content: center !important; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr !important; }

  /* contact community grid */
  .grid-3 { grid-template-columns: 1fr !important; }
}

/* ---- TABLET (769px - 1060px) ---- */
@media (min-width: 769px) and (max-width: 1059px) {
  .split-grid { gap: 2.5rem !important; }
  .grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1.4fr 1fr !important; gap: 2rem !important; }
  .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .drip-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-item:nth-child(2) { border-right: 0 !important; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--c-border) !important; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr) !important; }
  .g-wide { grid-column: span 6 !important; }
  .g-tall { grid-column: span 3 !important; }
  .g-3 { grid-column: span 2 !important; }
  .hero-stats { grid-template-columns: repeat(4, 1fr) !important; }
  [style*="grid-template-columns:1fr 1.1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ---- split-grid core definition ---- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-grid-start { align-items: start !important; }

/* ---- Responsive: collapse split-grids ---- */
@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  /* Services page: image after text on mobile */
  .split-grid .service-img-wrap,
  .split-grid .reveal.reveal-d1:has(.service-img-wrap) {
    order: 2;
  }
  /* grid-2 also collapses */
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* ---- Drawer active nav link color ---- */
.drawer-link.active {
  color: var(--c-teal) !important;
  background: var(--c-teal-pale) !important;
  font-weight: var(--fw-semi) !important;
}

/* ---- Drawer info strip ---- */
.drawer-info {
  padding: 1rem 1.5rem;
  background: var(--c-teal-pale);
  border-top: 1px solid var(--c-border);
  font-size: .78rem;
  color: var(--c-muted);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.drawer-info a { color: var(--c-teal); font-weight: var(--fw-semi); }

/* ---- Trust bar: 4 col on desktop ---- */
@media (min-width: 769px) {
  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .trust-item:nth-child(2) { border-right: 1px solid var(--c-border) !important; }
  .trust-item:nth-child(3) { border-top: none !important; }
}

/* =========================================================
   NEW HERO — Full-width image first, content + stats below
   ========================================================= */

/* Hero image — full width, tall, cinematic */
.hero-v2 {
  position: relative;
  isolation: isolate;
  background: var(--c-teal-dark);
}

/* Full-width image banner */
.hero-v2-img-wrap {
  position: relative;
  width: 100%;
  height: clamp(340px, 52vh, 580px);
  overflow: hidden;
}
.hero-v2-img {
  position: absolute;
  inset: 0;
  background: url('../assets/bg.webp') center/cover no-repeat;
  transform: scale(1.06);
  animation: heroKen 22s ease-out infinite alternate;
}
.hero-v2-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(7,63,71,.55) 0%,
    rgba(10,74,82,.45) 50%,
    rgba(7,63,71,.72) 100%
  );
}
/* Bottom fade into content */
.hero-v2-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #fff);
  z-index: 2;
}

/* Badge over image */
.hero-v2-badge {
  position: absolute;
  top: clamp(1.5rem, 4vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .75rem;
  font-weight: var(--fw-semi);
  letter-spacing: .06em;
  padding: .5rem 1.25rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

/* Title over image — centered big */
.hero-v2-title-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 3;
  padding: 0 var(--px);
  gap: 1.25rem;
}
.hero-v2-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: .96;
  letter-spacing: var(--ls-tight);
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
  max-width: 18ch;
}
.hero-v2-title em { font-style: italic; color: #7de8b8; }
.hero-v2-subtitle {
  color: rgba(255,255,255,.88);
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  font-weight: var(--fw-medium);
  letter-spacing: .03em;
}

/* Content section below image */
.hero-v2-content {
  background: #fff;
  position: relative;
  z-index: 4;
}
.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

/* Left: lede + CTA */
.hero-v2-left {}
.hero-v2-lede {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--c-ink-3);
  margin-bottom: 2rem;
  max-width: 54ch;
}
.hero-v2-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

/* Right: Stats panel */
.hero-v2-stats {
  background: linear-gradient(135deg, var(--c-teal-dark) 0%, var(--c-teal) 100%);
  border-radius: var(--r-2xl);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: 0 20px 50px -10px rgba(13,110,122,.35);
  position: relative;
  overflow: hidden;
}
.hero-v2-stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(92,184,138,.2), transparent 55%);
  pointer-events: none;
}
.hero-v2-stat {
  padding: 1.25rem 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
}
/* Dividers */
.hero-v2-stat:nth-child(1),
.hero-v2-stat:nth-child(2) {
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-v2-stat:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-v2-stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
  letter-spacing: var(--ls-tight);
}
.hero-v2-stat-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
}
.hero-v2-stat-stars svg {
  width: 13px; height: 13px;
  fill: #f59e0b; color: #f59e0b;
}
.hero-v2-stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
}

/* Responsive hero-v2 */
@media (max-width: 900px) {
  .hero-v2-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .hero-v2-stats {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .hero-v2-stat:nth-child(1),
  .hero-v2-stat:nth-child(2) { border-bottom: none !important; }
  .hero-v2-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12) !important; }
  .hero-v2-stat:nth-child(2) { border-right: none !important; }
}
@media (max-width: 600px) {
  .hero-v2-img-wrap { height: clamp(260px, 45vw, 340px); }
  .hero-v2-stats { grid-template-columns: 1fr 1fr !important; }
  .hero-v2-stat:nth-child(1),
  .hero-v2-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12) !important; }
  .hero-v2-ctas { flex-direction: column; }
  .hero-v2-ctas .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   IV THERAPY PRICING MENU — from image
   ========================================================= */
.iv-menu-section {
  background: linear-gradient(135deg, var(--c-teal-dark) 0%, #0a3d45 100%);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.iv-menu-head {
  padding: 1rem 1.75rem;
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: .85rem;
}
.iv-menu-head-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.iv-menu-head-icon svg { width: 18px; height: 18px; color: #7de8b8; }
.iv-menu-head h3 {
  font-size: .75rem !important;
  font-weight: var(--fw-bold) !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.75) !important;
  margin: 0 !important;
}
.iv-menu-body { padding: 1.5rem; }
.iv-drip-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.iv-drip-row:last-child { border-bottom: 0; padding-bottom: 0; }
.iv-drip-row:first-child { padding-top: 0; }
.iv-drip-info { flex: 1; }
.iv-drip-name {
  font-weight: var(--fw-semi);
  color: #fff;
  font-size: 1rem;
  margin-bottom: .25rem;
}
.iv-drip-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
}
.iv-drip-sub ul { margin-top: .35rem; padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .2rem .6rem; }
.iv-drip-sub li { display: flex; align-items: center; gap: .25rem; }
.iv-drip-sub li::before { content: '·'; color: #7de8b8; font-weight: 700; }
.iv-drip-price {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  color: #7de8b8;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.iv-drip-addon {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(92,184,138,.2);
  border: 1px solid rgba(92,184,138,.35);
  color: #7de8b8;
  font-size: .7rem;
  font-weight: var(--fw-semi);
  letter-spacing: .06em;
  padding: .25rem .65rem;
  border-radius: var(--r-full);
  margin-top: .4rem;
  width: fit-content;
}

/* Sunrise grid */
.iv-sunrise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
}
.iv-sunrise-item {
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--c-teal-dark), #0a3d45);
}
.iv-sunrise-item-name { font-weight: var(--fw-semi); color: #fff; font-size: .95rem; margin-bottom: .2rem; }
.iv-sunrise-item-price { font-family: var(--ff-serif); font-size: 1.5rem; color: #7de8b8; font-weight: 700; margin-bottom: .4rem; }
.iv-sunrise-item-desc { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.4; margin-bottom: .6rem; }
.iv-sunrise-item ul { list-style: none; padding: 0; display: grid; gap: .2rem; }
.iv-sunrise-item li { font-size: .78rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: .35rem; }
.iv-sunrise-item li::before { content: ''; width: 5px; height: 5px; background: #7de8b8; border-radius: 50%; flex-shrink: 0; }

/* Targeted grid */
.iv-targeted-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
}
.iv-targeted-item {
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--c-teal-dark), #0a3d45);
}
.iv-targeted-item-name { font-weight: var(--fw-semi); color: #fff; font-size: .95rem; margin-bottom: .1rem; }
.iv-targeted-item-aka { font-size: .75rem; color: rgba(255,255,255,.5); font-style: italic; margin-bottom: .35rem; }
.iv-targeted-item-price { font-family: var(--ff-serif); font-size: 1.45rem; color: #7de8b8; font-weight: 700; margin-bottom: .5rem; }
.iv-targeted-item ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .15rem .5rem; }
.iv-targeted-item li { font-size: .76rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: .25rem; }
.iv-targeted-item li::before { content: ''; width: 4px; height: 4px; background: #7de8b8; border-radius: 50%; flex-shrink: 0; }

@media (max-width: 640px) {
  .iv-sunrise-grid { grid-template-columns: 1fr !important; gap: 1px !important; }
  .iv-targeted-grid { grid-template-columns: 1fr !important; }
  .iv-drip-row { flex-direction: column; gap: .5rem; }
  .iv-drip-price { font-size: 1.35rem; }
}

/* =========================================================
   HERO V3 — Pure image first, content below, NOTHING on image
   ========================================================= */

.hero-v3 {
  background: var(--c-bg);
  padding-top: 15px;
}

/* ---- Image wrapper — contained, centered, rounded ---- */
.hero-v3-img-wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: block;
}
.hero-v3-img-inner {
  position: relative;
  width: 100%;
  height: clamp(500px, 65vh, 720px);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 12px 48px -8px rgba(13,110,122,.18);
}
.hero-v3-img {
  position: absolute;
  inset: 0;
  background: url('../assets/bg.webp') center 50%/cover no-repeat;
  transform-origin: center;
}

/* ---- Content section below image ---- */
.hero-v3-content {
  background: var(--c-bg);
}

.hero-v3-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

/* Badge */
.hero-v3-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: var(--fw-semi);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1rem;
  padding: .35rem .85rem .35rem .5rem;
  background: var(--c-teal-pale);
  border-radius: var(--r-full);
  width: fit-content;
}

/* Title */
.hero-v3-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  line-height: 1.05;
  letter-spacing: var(--ls-tight);
  margin-bottom: 1.25rem;
}
.hero-v3-title em {
  font-style: italic;
  color: var(--c-teal);
}

/* Lede */
.hero-v3-lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: var(--c-ink-3);
  max-width: 52ch;
  margin-bottom: 2rem;
}

/* CTA buttons */
.hero-v3-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

/* ---- Stats panel ---- */
.hero-v3-stats {
  list-style: none;
  background: linear-gradient(135deg, var(--c-teal-dark) 0%, var(--c-teal) 100%);
  border-radius: var(--r-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 16px 48px -12px rgba(13,110,122,.35);
  position: relative;
}
.hero-v3-stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(92,184,138,.22), transparent 55%);
  pointer-events: none;
}
.hero-v3-stat {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .35rem;
  position: relative;
  z-index: 1;
}
/* Inner borders */
.hero-v3-stat:nth-child(1),
.hero-v3-stat:nth-child(2) {
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-v3-stat:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-v3-stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
  letter-spacing: var(--ls-tight);
}
.hero-v3-stat-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: .1rem;
}
.hero-v3-stat-stars svg {
  width: 13px; height: 13px;
  fill: #f59e0b; color: #f59e0b;
}
.hero-v3-stat-label {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  font-weight: var(--fw-medium);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-v3-inner {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .hero-v3-stats {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .hero-v3-stat:nth-child(1),
  .hero-v3-stat:nth-child(2) {
    border-bottom: none !important;
  }
  .hero-v3-stat:nth-child(even) {
    border-right: none !important;
  }
  .hero-v3-stat:nth-child(1),
  .hero-v3-stat:nth-child(2),
  .hero-v3-stat:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,.12) !important;
  }
}
@media (max-width: 600px) {
  .hero-v3-img-inner { height: clamp(200px, 56vw, 300px); border-radius: var(--r-xl); }
  .hero-v3-stats { grid-template-columns: 1fr 1fr !important; }
  .hero-v3-stat:nth-child(1),
  .hero-v3-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
  }
  .hero-v3-stat:nth-child(1),
  .hero-v3-stat:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,.12) !important;
  }
  .hero-v3-stat:nth-child(2),
  .hero-v3-stat:nth-child(4) {
    border-right: none !important;
  }
  .hero-v3-ctas { flex-direction: column; }
  .hero-v3-ctas .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  background: var(--c-bg);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.faq-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.faq-head .h2 { margin-top: .6rem; margin-bottom: .85rem; }
.faq-head p { color: var(--c-muted); font-size: var(--fs-lg); }

/* Two-column grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  max-width: 1100px;
  margin-inline: auto;
}

/* Each FAQ item */
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:last-child { border-bottom: 0; }

/* Question button */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.35rem 0;
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--c-ink);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--dur-fast);
}
.faq-q:hover { color: var(--c-teal); }
.faq-q[aria-expanded="true"] { color: var(--c-teal); }

/* Chevron icon */
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--c-muted);
  transition: transform var(--dur-med) var(--ease-out), color var(--dur-fast);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--c-teal);
}

/* Answer panel */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-med) var(--ease-out);
  overflow: hidden;
}
.faq-a > p {
  overflow: hidden;
  padding-bottom: 0;
  color: var(--c-muted);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  transition: padding-bottom var(--dur-med) var(--ease-out);
}
.faq-a > p a { color: var(--c-teal); font-weight: var(--fw-medium); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding-bottom: 1.5rem; }

/* Bottom CTA */
.faq-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.faq-cta p { color: var(--c-muted); font-size: var(--fs-lg); }

/* Responsive */
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .faq-cta .btn { width: 100%; justify-content: center; }
}

/* FAQ loads via fetch — always visible, no reveal needed */
.faq-section,
.faq-section * { opacity: 1 !important; transform: none !important; }
html.js-on .faq-section .reveal,
html.js-on .faq-section .reveal-d1,
html.js-on .faq-section .reveal-d2,
html.js-on .faq-section .reveal-d3,
html.js-on .faq-section .reveal-d4 {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
