/* ============================================================
   Farah Turk MD — design system
   Editorial-luxury medical / med-spa
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  /* Brand — clinical hospital palette */
  --teal:        #0a3542;
  --teal-2:      #133f4d;
  --teal-3:      #1d5b6c;
  --teal-ink:    #061d25;

  /* Trust accent — calm hospital blue-teal, NOT med-spa coral */
  --accent:      #4a8b95;
  --accent-2:    #3a737d;
  --accent-soft: #cfe1e4;

  /* Neutrals — crisp clinical whites */
  --cream:       #f3f6f7;     /* soft mineral wash */
  --cream-2:     #e6ecee;
  --paper:       #ffffff;     /* clinical white */
  --paper-2:     #fafbfc;
  --ink:         #0e1822;
  --mute:        #5b6776;
  --line:        rgba(14, 24, 34, 0.10);
  --line-soft:   rgba(14, 24, 34, 0.05);

  --shadow-1: 0 1px 2px rgba(10,53,66,.04), 0 8px 24px -8px rgba(10,53,66,.10);
  --shadow-2: 0 1px 2px rgba(10,53,66,.05), 0 20px 50px -20px rgba(10,53,66,.20);
  --shadow-3: 0 30px 80px -30px rgba(10,53,66,.32);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --ease: cubic-bezier(.2, .7, .3, 1);

  --container:  1240px;
  --gutter:     clamp(1rem, 3vw, 2.5rem);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--teal); color: var(--cream); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: "Fraunces", "PT Serif", Georgia, serif;
  font-weight: 400;
  color: var(--teal);
  margin: 0 0 .5em;
  letter-spacing: -.018em;
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.04; font-weight: 400; }
h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); line-height: 1.1; }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); line-height: 1.2; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; color: var(--teal-2); }

p { margin: 0 0 1em; color: var(--ink); }
.lead { font-size: 1.18rem; color: var(--mute); max-width: 60ch; line-height: 1.55; }

.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 1rem;
}

a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-2); }

img, video { max-width: 100%; height: auto; display: block; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--teal);
  --fg: var(--cream);
  --br: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--br);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s ease, filter .25s ease, background .25s ease, color .25s ease;
  box-shadow: 0 8px 24px -10px rgba(10,53,66,.32);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 14px 32px -10px rgba(10,53,66,.40); color: var(--fg); }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255,255,255,.30) 50%, transparent 62%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease);
  pointer-events: none;
  z-index: 1;
}
.btn:hover::after { transform: translateX(120%); }
.btn--accent { --bg: var(--accent); --fg: #fff; box-shadow: 0 8px 24px -10px rgba(74,139,149,.45); }
.btn--accent:hover { box-shadow: 0 14px 32px -10px rgba(74,139,149,.55); }
.btn--ghost   { --bg: transparent; --fg: var(--teal); --br: var(--teal); box-shadow: none; }
.btn--ghost:hover { background: var(--teal); color: var(--cream); }
.btn--light   { --bg: var(--cream); --fg: var(--teal); --br: transparent; box-shadow: 0 8px 24px -10px rgba(10,53,66,.2); }
.btn--light:hover { --fg: var(--teal); }
.btn--sm { padding: .65rem 1.1rem; font-size: .85rem; }

/* ---------- Top utility bar ---------- */
.util-bar {
  background: var(--teal);
  color: rgba(253, 252, 250, .85);
  font-size: .8rem;
  letter-spacing: .015em;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.util-bar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .5rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  min-height: 36px;
}
.util-bar a {
  color: rgba(253, 252, 250, .92);
  transition: color .2s ease;
}
.util-bar a:hover { color: var(--accent-soft); }
.util-bar .util-meta {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.util-bar .util-meta > a,
.util-bar .util-meta > span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.util-bar .util-meta svg { opacity: .8; }
.util-bar .util-sep {
  color: rgba(253, 252, 250, .25);
  font-size: .9em;
}
.util-bar .util-cta {
  padding: .25rem .7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .76rem;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.util-bar .util-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* Tablet: drop the long address string */
@media (max-width: 980px) {
  .util-bar .hide-md { display: none !important; }
}
/* Mobile: collapse, center, drop non-essentials */
@media (max-width: 720px) {
  .util-bar { font-size: .76rem; }
  .util-bar .inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: .35rem .8rem;
    min-height: 0;
    padding: .5rem var(--gutter);
  }
  .util-bar .util-meta { gap: .65rem; }
  .util-bar .hide-sm { display: none !important; }
}

/* ---------- Site header (sticky) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark {
  height: 48px; width: auto; display: block;
}
.brand-text {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.brand-text small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--accent-2);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-primary > a,
.nav-primary .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: .4rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.nav-primary > a::after,
.nav-primary .nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s var(--ease);
}
.nav-primary > a:hover,
.nav-primary .nav-link:hover { color: var(--teal); }
.nav-primary > a:hover::after,
.nav-primary .nav-link:hover::after,
.nav-primary > a.is-active::after,
.nav-primary .nav-link.is-active::after { transform: scaleX(1); }
.mm-caret {
  font-size: .65rem;
  color: var(--mute);
  margin-left: .15rem;
  transition: transform .25s var(--ease);
}

/* ---------- Megamenu ---------- */
.nav-item.has-mm { position: relative; }
.megamenu {
  position: absolute;
  top: 100%;
  left: -1rem;
  z-index: 100;
  min-width: 720px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  padding: 1.5rem 1.75rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-item.has-mm:hover > .megamenu,
.nav-item.has-mm:focus-within > .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(2px);
}
.nav-item.has-mm:hover .mm-caret { transform: rotate(180deg); }
.mm-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.mm-col h4 {
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin: 0 0 .65rem;
}
.mm-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.mm-col a {
  font-size: .9rem;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: .2rem 0;
  transition: color .15s ease, transform .2s ease;
}
.mm-col a:hover {
  color: var(--accent-2);
  transform: translateX(3px);
}
.mm-foot {
  display: flex;
  justify-content: flex-end;
  padding-top: .85rem;
}
.mm-foot a { font-weight: 600; }
@media (max-width: 980px) {
  .megamenu { display: none; }   /* mobile uses drawer */
}

/* Mobile sub-link inside drawer */
.mobile-nav .mobile-sub {
  font-family: "Inter", sans-serif;
  font-size: .95rem;
  color: var(--mute);
  padding: .55rem 1rem;
  border-bottom: 1px solid var(--line-soft);
}

/* ============================================================
   Mobile sticky call/book bar (visible <= 720px)
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: .55rem .65rem calc(.55rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px -12px rgba(10, 53, 66, .18);
  gap: .55rem;
  align-items: stretch;
}
.mobile-cta-bar .btn {
  flex: 1;
  padding: .85rem .5rem;
  font-size: .85rem;
  letter-spacing: .02em;
}
.mobile-cta-bar .btn--ghost { background: var(--paper-2); }
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }       /* don't let the bar cover the footer */
}

/* ============================================================
   Mobile / tablet refinements
   ============================================================ */

/* Header — tighter brand, hide secondary CTA, larger tap target on menu */
@media (max-width: 720px) {
  .site-header .inner { padding: .7rem var(--gutter); gap: .5rem; }
  .brand-mark { height: 38px; }
  .brand-text { font-size: 1rem; line-height: 1.1; }
  .brand-text small { font-size: .56rem; letter-spacing: .14em; }

  .nav-cta { gap: .35rem; }
  .nav-cta .btn--ghost { display: none; }   /* hide Portal, keep Book Now + menu */
  .nav-cta .btn--accent { padding: .55rem .9rem; font-size: .8rem; }
  .menu-toggle { width: 44px; height: 44px; }
}

/* Hero — stack and tighten on mobile */
@media (max-width: 720px) {
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero .grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero p.lead { font-size: 1rem; }
  .hero .ctas { gap: .55rem; }
  .hero .ctas .btn { flex: 1 1 auto; }
  .hero .visual { aspect-ratio: 4 / 3.5; border-radius: var(--radius-lg); }
  .hero .badge { left: 1rem; bottom: 1rem; padding: .65rem .85rem; }
  .hero .factbar {
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-top: 2rem; padding-top: 1.5rem;
  }
  .hero .factbar .item .num { font-size: 1.15rem; }
  .hero .factbar .item .label { font-size: .7rem; letter-spacing: .02em; }
}

/* Section + tile padding on mobile */
@media (max-width: 720px) {
  section { padding: 3rem 0; }
  .section-head { margin-bottom: 2.25rem; }
  .tile-grid { gap: 1rem; }
  .tile-body { padding: 1.25rem 1.25rem 1.5rem; }
  .tile h3 { font-size: 1.2rem; }
  .duo .panel { aspect-ratio: 4 / 3.5; padding: 1.25rem; }
  .duo .panel h2 { font-size: 1.65rem; }

  .doctor-card { padding: 1.5rem; }
  .doctor-card .photo { aspect-ratio: 4 / 4; }

  .cta-banner { padding: 2rem 1.25rem; border-radius: var(--radius-lg); }
  .cta-banner h2 { font-size: 1.7rem; }

  .testimonial { padding: 1.4rem; }
  .testimonial blockquote { font-size: .98rem; }

  ol.steps li { padding: .9rem 1rem; gap: 1rem; grid-template-columns: auto 1fr; }
  ol.steps .step-num { font-size: 1.2rem; }
}

/* Tap-target hygiene: every actionable element >= 44px on small screens */
@media (max-width: 720px) {
  .btn { min-height: 44px; }
  .nav-primary > a, .nav-primary .nav-link { padding: .55rem 0; }
  .mobile-nav a { padding: .9rem .25rem; }
  .faq-item > summary { padding: 1rem 2.25rem 1rem 0; }
}

/* Megamenu — guard against tablet overflow (just in case it shows briefly) */
@media (max-width: 980px) {
  .megamenu { min-width: 0; max-width: 100vw; }
}

/* Mobile drawer — make it scrollable, with categorized sub-links */
.mobile-nav { overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mobile-nav a:not(.brand):not(.btn) {
  font-size: 1.15rem;
}
.mobile-nav .mobile-sub {
  font-size: .92rem;
  padding-left: 1.25rem;
}

/* Safari iOS form input zoom prevention: 16px font on inputs */
@media (max-width: 720px) {
  input, textarea, select { font-size: 16px !important; }
}

/* Prevent horizontal scroll from any rogue element */
html, body { overflow-x: hidden; }
.container, .container.narrow { max-width: 100%; }
.container { max-width: var(--container); }

.nav-cta { display: flex; gap: .6rem; align-items: center; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 42px; height: 42px;
  cursor: pointer;
  color: var(--teal);
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 20px; height: 20px; }

@media (max-width: 980px) {
  .nav-primary { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 1rem var(--gutter);
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav .row {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.mobile-nav a {
  display: block;
  padding: 1rem .25rem;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--teal);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .ctas { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }

/* ---------- Sections ---------- */
section { padding: clamp(4rem, 8vw, 7rem) 0; }
section + section { border-top: 1px solid var(--line-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head .lead { margin: 0 auto; }

/* Narrow container for prose-y service-page sections */
.container.narrow,
.narrow {
  max-width: 760px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Lean section variants */
section.lean { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
section.lean.alt { background: var(--cream); }
section.lean h2 { margin-bottom: .8rem; }
section.lean p { font-size: 1.05rem; line-height: 1.7; color: var(--ink); }

/* Checklist bullets — clean med-tick */
ul.checklist { list-style: none; padding: 0; margin: 1.25rem 0 0; }
ul.checklist li {
  position: relative;
  padding: .6rem 0 .6rem 2rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 1rem;
}
ul.checklist li:last-child { border-bottom: none; }
ul.checklist li::before {
  content: "";
  position: absolute;
  left: .35rem; top: 1.1rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* Numbered steps */
ol.steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}
ol.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
ol.steps .step-num {
  font-family: "Fraunces", serif;
  color: var(--accent-2);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -.02em;
}
ol.steps p { margin: 0; }

/* FAQ accordion */
.faq { margin-top: 1.5rem; border-top: 1px solid var(--line-soft); }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2rem 1.1rem 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--teal);
  font-size: 1.02rem;
  position: relative;
  transition: color .2s ease;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-2);
  transition: transform .25s var(--ease);
}
.faq-item[open] > summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item > summary:hover { color: var(--accent-2); }
.faq-item > p {
  padding: 0 0 1.2rem;
  margin: 0;
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.65;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 9rem);
  background:
    radial-gradient(ellipse at 90% 0%, rgba(74, 139, 149, .08), transparent 55%),
    radial-gradient(ellipse at 5% 100%, rgba(10, 53, 66, .08), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  overflow: hidden;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 920px) { .hero .grid { grid-template-columns: 1fr; } }
.hero .meta { display: flex; flex-direction: column; gap: 1.25rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero p.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); }
.hero .ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.hero .factbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.hero .factbar .item .num {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--accent-2);
  display: block;
  line-height: 1;
}
.hero .factbar .item .label {
  display: block;
  margin-top: .4rem;
  font-size: .85rem;
  color: var(--mute);
  letter-spacing: .04em;
}

.hero .visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: var(--cream-2);
}
.hero .visual img,
.hero .visual video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero .visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(220deg, transparent 60%, rgba(10, 53, 66, .35) 100%);
  pointer-events: none;
}
.hero .badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  background: rgba(253,252,250,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 2;
  box-shadow: var(--shadow-1);
}
.hero .badge .stars { color: var(--accent); font-size: .85rem; letter-spacing: .12em; }
.hero .badge .txt {
  font-size: .82rem;
  color: var(--mute);
  line-height: 1.25;
}
.hero .badge .txt b { color: var(--teal); font-weight: 600; }

/* ---------- Service tiles ---------- */
.services {
  background: var(--cream);
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.tile {
  display: block;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: rgba(10,53,66,.18);
}
.tile-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile:hover .tile-media img { transform: scale(1.05); }
.tile-body { padding: 1.5rem 1.5rem 1.75rem; }
.tile-cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .5rem;
  display: block;
}
.tile h3 { margin: 0 0 .5rem; }
.tile p { color: var(--mute); font-size: .95rem; margin: 0 0 1rem; }
.tile .more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--teal);
  font-weight: 600;
  font-size: .9rem;
}
.tile .more::after { content: "→"; transition: transform .3s var(--ease); }
.tile:hover .more::after { transform: translateX(4px); }

/* ---------- Split (asymmetric image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 880px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } }
.split .image-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-2);
  background: var(--cream-2);
}
.split .image-block img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Categories (Healthcare + Aesthetics dual feature) ---------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 880px) { .duo { grid-template-columns: 1fr; } }
.duo .panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: #fff;
  isolation: isolate;
  text-decoration: none;
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.duo .panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.duo .panel img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.duo .panel:hover img { transform: scale(1.06); }
.duo .panel::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,53,66,0) 30%, rgba(10,53,66,.55) 70%, rgba(10,53,66,.85) 100%);
}
.duo .panel-body { max-width: 80%; }
.duo .panel .eyebrow { color: var(--accent-soft); margin-bottom: .5rem; }
.duo .panel h2 { color: #fff; margin: 0 0 .75rem; }
.duo .panel p { color: rgba(253,252,250,.86); margin: 0 0 1.25rem; }

/* ---------- Doctor / team feature ---------- */
.doctor-feature {
  background: var(--cream);
}
.doctor-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
@media (max-width: 880px) { .doctor-card { grid-template-columns: 1fr; } }
.doctor-card .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
}
.doctor-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card .credentials {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 1rem 0 1.25rem;
}
.doctor-card .credentials .chip {
  font-size: .78rem;
  background: var(--teal-soft, rgba(10,53,66,.08));
  color: var(--teal);
  padding: .35rem .75rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.testimonial .stars {
  color: var(--accent); letter-spacing: .15em; margin-bottom: .85rem; font-size: .9rem;
}
.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
}
.testimonial .author { font-weight: 600; font-size: .95rem; color: var(--teal); }
.testimonial .author small { display: block; font-weight: 400; font-size: .82rem; color: var(--mute); margin-top: 2px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 60%, var(--teal-3) 100%);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(74,139,149,.20), transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(241,217,207,.18), transparent 50%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p { color: rgba(253,252,250,.85); max-width: 540px; margin: 0 auto 1.75rem; }
.cta-banner .ctas {
  display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-ink);
  color: rgba(253,252,250,.75);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: 2rem;
  font-size: .95rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: clamp(280px, 60vw, 720px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(212, 219, 224, .35), transparent);
}
.site-footer a { color: rgba(253,252,250,.85); transition: color .2s ease; }
.site-footer a:hover { color: var(--accent-soft); }

/* New simpler footer-grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  padding-bottom: clamp(2.5rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(253,252,250,.10);
  margin-bottom: 2rem;
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.f-brand .brand { margin-bottom: 1rem; }
.f-brand p { color: rgba(253,252,250,.65); max-width: 36ch; margin: 0 0 1.25rem; line-height: 1.55; font-size: .95rem; }

.f-col h4 {
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-soft);
  margin: 0 0 1rem;
}
.f-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.f-col a { color: rgba(253,252,250,.85); }
.f-col a:hover { color: var(--paper); }

.f-visit p { margin: 0 0 .5rem; line-height: 1.55; }
.f-visit .f-addr a { color: var(--paper); font-weight: 500; }
.f-visit .f-line {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .9rem;
}
.f-visit .f-line span { color: rgba(253,252,250,.55); }
.f-visit .f-line a { color: var(--paper); font-variant-numeric: tabular-nums; }
.f-visit .f-hours {
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(253,252,250,.6);
}

.site-footer .social { display: flex; gap: .5rem; }
.site-footer .social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(253,252,250,.06);
  color: var(--paper);
  transition: background .2s ease, transform .2s ease;
}
.site-footer .social a:hover { background: var(--accent); transform: translateY(-2px); }
.site-footer .social svg { width: 16px; height: 16px; }

.site-footer .legal {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(253,252,250,.5);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(253,252,250,.06);
}
.site-footer .legal a { color: rgba(253,252,250,.55); }
.site-footer .legal a:hover { color: var(--paper); }
.site-footer .legal-links { display: flex; gap: 1.25rem; }

/* legacy footer-statement (older layout) — keep but ignore */
.footer-statement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(253,252,250,.10);
}
.footer-statement p {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.35;
  color: var(--paper);
  max-width: 56ch;
  font-weight: 400;
  letter-spacing: -.005em;
}
@media (max-width: 720px) {
  .footer-statement { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

.site-footer .kicker {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-soft);
  margin-bottom: .85rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(253,252,250,.10);
}
@media (max-width: 760px) {
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
}

.visit-card .address-line {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.3;
  display: block;
  margin-bottom: .75rem;
}
.visit-card .address-line:hover { color: var(--accent-soft); }
.visit-card .map-link {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent-soft);
}
.visit-card .map-link:hover { color: #fff; }

.hours {
  border-collapse: collapse;
  width: 100%;
  max-width: 320px;
  margin-top: .25rem;
}
.hours tr { border-bottom: 1px solid rgba(253,252,250,.08); }
.hours tr:last-child { border-bottom: none; }
.hours th, .hours td {
  text-align: left;
  padding: .55rem 0;
  font-weight: 400;
  font-size: .92rem;
}
.hours th { color: rgba(253,252,250,.6); font-weight: 500; }
.hours td { color: var(--paper); text-align: right; font-variant-numeric: tabular-nums; }

.phone-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(253,252,250,.08);
}
.phone-row:first-of-type { border-top: 1px solid rgba(253,252,250,.08); }
.phone-row .phone-label { font-size: .82rem; color: rgba(253,252,250,.6); letter-spacing: .04em; }
.phone-row .phone-num {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -.005em;
  font-variant-numeric: tabular-nums;
}
.phone-row .phone-num:hover { color: var(--accent-soft); }

.email-line {
  display: inline-block;
  margin-top: 1rem;
  font-size: .98rem;
  color: var(--paper);
  border-bottom: 1px solid rgba(253,252,250,.25);
  padding-bottom: 2px;
}
.email-line:hover { color: var(--accent-soft); border-color: var(--accent-soft); }

.site-footer .social {
  display: flex; gap: .5rem;
  margin-top: .25rem;
}
.site-footer .social a {
  width: 38px; height: 38px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(253,252,250,.06);
  color: var(--paper);
  transition: background .25s ease, transform .25s ease;
}
.site-footer .social a:hover { background: var(--accent); transform: translateY(-2px); }
.site-footer .social svg { width: 17px; height: 17px; }

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-sitemap > div { display: flex; flex-direction: column; }
.footer-sitemap a { padding: .35rem 0; font-size: .92rem; }
@media (max-width: 560px) { .footer-sitemap { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.emergency-notice {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(253, 252, 250, .10);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 0 0 2rem;
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(253,252,250,.75);
  text-align: center;
}
.emergency-notice strong { color: var(--paper); }

.site-footer .legal {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(253,252,250,.10);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(253,252,250,.5);
}
.site-footer .legal .brand-line { display: flex; align-items: center; gap: .65rem; }
.site-footer .legal .brand-line img { height: 24px; width: auto; }
.site-footer .legal-links { display: flex; gap: 1.25rem; }
.site-footer .legal-links a { color: rgba(253,252,250,.55); font-size: .82rem; }
.site-footer .legal-links a:hover { color: var(--paper); }

/* ---------- Contact page grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.contact-block {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-block h3 { margin: .25rem 0 .75rem; font-size: 1.3rem; }
.contact-block .eyebrow { margin: 0 0 .25rem; }
.contact-block p { margin: 0 0 .75rem; line-height: 1.55; }
.contact-block .btn { margin-top: .25rem; }
.big-phone {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -.01em;
  margin-top: .15rem;
}

/* Hours table (light variant for on-page use) */
.hours.hours-light tr { border-bottom: 1px solid var(--line-soft); }
.hours.hours-light th { color: var(--mute); font-weight: 500; }
.hours.hours-light td { color: var(--ink); }

/* ---------- BMI tool ---------- */
.bmi-tool { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 2rem; }
.bmi-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}
.bmi-form .field label {
  display: block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: .35rem;
}
.bmi-form input {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  background: var(--paper-2);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.bmi-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.bmi-result {
  display: flex; align-items: baseline; gap: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.bmi-result .bmi-num {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
}
.bmi-result .bmi-cat {
  font-size: 1.1rem;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: .02em;
}
@media (max-width: 560px) { .bmi-form { grid-template-columns: 1fr; } }

/* Article body styling (generic v2-rendered blocks) */
.article-body h2 { margin-top: 2rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { line-height: 1.7; color: var(--ink); }
.article-body ul, .article-body ol { padding-left: 1.25rem; margin: .75rem 0 1.25rem; }
.article-body li { margin-bottom: .35rem; line-height: 1.6; }
.article-body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--cream);
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--teal);
}

/* ---------- Homepage value props ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.value-card .value-num {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--accent-2);
  letter-spacing: -.02em;
  margin-bottom: .75rem;
  font-variant-numeric: tabular-nums;
}
.value-card h3 { font-size: 1.15rem; margin: 0 0 .5rem; color: var(--teal); }
.value-card p { margin: 0; color: var(--mute); font-size: .95rem; line-height: 1.55; }

/* Insurance pill list */
.insurance-grid {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.insurance-grid li {
  padding: .55rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: .01em;
  transition: background .2s ease, border-color .2s ease;
}
.insurance-grid li:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 1; transform: none; }
.js-on .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.js-on .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-on .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Utility classes ---------- */
.muted { color: var(--mute); }
.center { text-align: center; }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Hide Webflow + 3rd-party badges (defensive — old enhance.css already does this) */
.w-webflow-badge,
[class*="eas-link-wrap"],
[class*="empowered-image"],
.footer_eas-text { display: none !important; }
