:root {
  --cream: #F2EDE3;
  --warm-white: #FDFAF4;
  --sage: #8A9A7C;
  --sage-light: #a8ae8d;
  --sage-dark: #646e4c;
  --charcoal: #272724;
  --warm-grey: #6B6860;
  --mid-grey: #9A9690;
  --gold: #B08A50;
  --border: rgba(100,110,76,0.18);
  --shadow: 0 4px 30px rgba(39,39,36,0.07);
  --shadow-lg: 0 16px 64px rgba(39,39,36,0.13);
  --radius: 3px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; font-weight: 400; }
a { color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

.page { display: none; }
.page.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* NAV — cream background with olive text logo */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--cream);
  height: 80px;
  display: flex; align-items: center;
  padding: 0 5%;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(39,39,36,0.06); }
.nav-inner { max-width: 1160px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { cursor: pointer; display: flex; align-items: center; color: var(--sage-dark); }
.nav-logo svg { height: 54px; width: auto; display: block; }
@media (max-width: 768px) { .nav-logo svg { height: 42px; } }
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; transition: color 0.2s; cursor: pointer; white-space: nowrap; opacity: 0.8; }
.nav-links a:hover { opacity: 1; color: var(--sage-dark); }
.nav-book { background: var(--sage-dark) !important; color: white !important; padding: 0.55rem 1.2rem; border-radius: var(--radius); opacity: 1 !important; transition: background 0.2s !important; }
.nav-book:hover { background: #566040 !important; color: white !important; }
.has-dropdown { position: relative; }
.has-dropdown > a .dd-caret { display: inline-block; margin-left: 4px; transform: rotate(90deg); font-size: 0.8em; opacity: 0.55; transition: transform 0.25s, opacity 0.2s; }
.has-dropdown:hover > a .dd-caret { opacity: 0.95; transform: rotate(90deg) translateX(2px); }
.nav-dropdown {
  list-style: none; margin: 0; padding: 0.65rem 0;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 200px; background: var(--cream, #faf7f2);
  border: 1px solid var(--border, #e8e2d6);
  border-radius: var(--radius, 4px);
  box-shadow: 0 8px 28px rgba(40,40,40,0.06);
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 250;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block; padding: 0.6rem 1.4rem; font-size: 0.72rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--charcoal); white-space: nowrap; opacity: 0.85;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
}
.nav-dropdown a:hover { background: rgba(0,0,0,0.025); color: var(--sage-dark); opacity: 1; }
/* Bridge so the gap between parent and dropdown doesn't break hover */
.has-dropdown::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%;
  height: 14px; pointer-events: auto;
}
.nav-tel { color: var(--sage-dark) !important; font-weight: 500; opacity: 1 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--sage-dark); display: block; transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 199;
  padding: 1.5rem 6% 3rem; flex-direction: column; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300;
  color: var(--charcoal); text-decoration: none;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border); cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--sage-dark); }
.mob-has-sub { position: relative; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr auto; align-items: center; }
.mob-has-sub > a.mob-parent { border-bottom: none !important; padding-right: 0; }
.mob-sub-toggle { background: none; border: none; cursor: pointer; padding: 0.75rem 0.4rem 0.75rem 1rem; font-size: 1.6rem; line-height: 1; color: var(--charcoal); opacity: 0.55; }
.mob-sub-toggle .mob-caret { display: inline-block; transform: rotate(90deg); transition: transform 0.25s; }
.mob-has-sub.open .mob-sub-toggle .mob-caret { transform: rotate(-90deg); }
.mob-submenu { grid-column: 1 / -1; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mob-has-sub.open .mob-submenu { max-height: 400px; }
.mob-submenu a { font-size: 1.35rem !important; padding-left: 1.25rem !important; opacity: 0.85; border-bottom: 1px solid var(--border); }
.mob-submenu a:last-child { border-bottom: none; }

.mob-book { margin-top: 1.5rem; background: var(--sage-dark); color: white !important; text-align: center; padding: 0.9rem; border-radius: var(--radius); font-family: 'DM Sans', sans-serif !important; font-size: 0.82rem !important; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: none !important; }
.mob-tel { font-family: 'DM Sans', sans-serif !important; font-size: 0.9rem !important; color: var(--warm-grey) !important; border: none !important; margin-top: 0.5rem; }

.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 198; background: var(--sage-dark); color: white; text-align: center; padding: 0.9rem; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; }

/* LAYOUT */
.container { max-width: 1160px; margin: 0 auto; }
section { padding: 5.5rem 5%; }
.bg-cream { background: var(--cream); }
.bg-sage { background: var(--sage-light); }
.bg-dark { background: var(--sage-dark); }

/* LABELS */
.eyebrow { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-dark); font-weight: 500; display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; flex-shrink: 0; }
.eyebrow-center { justify-content: center; }

h2.display { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300; }
h2.display em { font-style: italic; color: var(--sage-dark); }
.lead { font-size: 1.05rem; color: var(--warm-grey); font-weight: 300; line-height: 1.8; }

/* BUTTONS */
.btn { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: var(--radius); padding: 0.85rem 2rem; cursor: pointer; transition: all 0.2s; border: none; }
.btn-primary { background: var(--sage-dark); color: white; }
.btn-primary:hover { background: #566040; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: white; }
.btn-white { background: white; color: var(--sage-dark); }
.btn-white:hover { background: var(--cream); }
.btn-full { width: 100%; text-align: center; display: block; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* HERO */
.hero {
  min-height: 100svh;
  padding: calc(80px + 4rem) 5% 4rem;
  background: var(--cream);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-inner { max-width: 1160px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.1; }
.hero h1 em { font-style: italic; color: var(--sage-dark); }
.hero-desc { font-size: 1.05rem; color: var(--warm-grey); font-weight: 300; margin-bottom: 2.5rem; max-width: 520px; }
.hero-micro { font-size: 0.78rem; color: var(--mid-grey); margin-top: 1.2rem; }
.hero-micro a { color: var(--sage-dark); text-decoration: none; }
.hero-visual { position: relative; }
.hero-img-wrap { aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; background: var(--sage-light); position: relative; }

/* Filled image rendering (photos wired in) */
.hero-img-wrap img, .sg-img img, .img-frame img, .clinic-photo-block img,
.blog-card-img img, .team-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-card-img img { object-position: center top; }
.img-placeholder.coming-soon { font-style: italic; }

.approach-single { max-width: 780px; margin: 0 auto; text-align: left; }
.approach-single .display { text-align: left; }

/* IMAGE PLACEHOLDERS */
.img-placeholder {
  width: 100%; height: 100%; min-height: 240px;
  background: linear-gradient(160deg, rgba(168,174,141,0.55) 0%, rgba(100,110,76,0.65) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: rgba(255,255,255,0.85); text-align: center; padding: 1rem;
}
.img-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* SCROLLING TRUST BAR TICKER */
.trust-bar {
  background: var(--sage-light);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
.trust-track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.trust-bar:hover .trust-track { animation-play-state: paused; }
.trust-item {
  display: flex; align-items: center; gap: 0.7rem;
  color: white; font-size: 0.78rem; letter-spacing: 0.04em;
  white-space: nowrap;
}
.trust-dot { width: 4px; height: 4px; background: white; border-radius: 50%; flex-shrink: 0; opacity: 0.6; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CLINIC PHOTO BLOCK */
.clinic-photo-block { width: 100%; aspect-ratio: 16/10; background: var(--sage-light); overflow: hidden; position: relative; border-radius: var(--radius); }

/* PHOTO OVERLAP — two-photo editorial pair inside a column */
.photo-overlap { position: relative; width: 100%; }
.photo-overlap .po-img { display: block; border-radius: var(--radius); overflow: hidden; background: var(--sage-light); aspect-ratio: 4/5; }
.photo-overlap .po-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-overlap .po-img-1 { width: 78%; margin-left: 0; }
.photo-overlap .po-img-2 { width: 62%; margin-left: 38%; margin-top: -28%; position: relative; z-index: 2; }
@media (max-width: 768px) {
  .photo-overlap .po-img-1 { width: 82%; }
  .photo-overlap .po-img-2 { width: 70%; margin-left: 30%; margin-top: -22%; }
}

/* STAGGERED EDITORIAL GRID */
.staggered-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: 980px; margin: 0 auto;
}
.staggered-grid .sg-img { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--sage-light); }
.staggered-grid .sg-img:first-child { margin-top: 0; }
.staggered-grid .sg-img:last-child { margin-top: 4rem; }
@media (max-width: 768px) {
  .staggered-grid { gap: 1rem; }
  .staggered-grid .sg-img:last-child { margin-top: 2.5rem; }
}

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 3rem; }
.process-card { background: var(--warm-white); padding: 2.5rem 2rem; }
.bg-cream .process-card { background: var(--cream); }
.process-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: rgba(100,110,76,0.2); line-height: 1; margin-bottom: 0.8rem; }
.process-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--sage-dark); margin-bottom: 0.8rem; }
.process-desc { font-size: 0.88rem; color: var(--warm-grey); line-height: 1.75; font-weight: 300; }

/* SERVICES LIST */
.services-list { margin-top: 2.5rem; }
.service-row { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 0; border-bottom: 1px solid var(--border); cursor: pointer; gap: 1rem; transition: all 0.2s; text-decoration: none; color: inherit; }
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { padding-left: 0.5rem; }
.service-row:hover .sr-arrow { transform: translateX(4px); color: var(--sage-dark); }
.sr-left { display: flex; align-items: center; gap: 1.5rem; }
.sr-num { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--mid-grey); min-width: 28px; }
.sr-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--charcoal); }
.sr-desc { font-size: 0.82rem; color: var(--warm-grey); font-weight: 300; }
.sr-arrow { font-size: 1.1rem; color: var(--sage-light); transition: all 0.2s; flex-shrink: 0; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col-start { align-items: start; }
.img-natural { border-radius: var(--radius); overflow: hidden; background: var(--sage-light); }
.img-natural img { width: 100%; height: auto; display: block; object-fit: unset !important; }
.img-frame { border-radius: var(--radius); overflow: hidden; background: var(--sage-light); }
.img-frame-tall { aspect-ratio: 3/4; }
.img-frame-med { aspect-ratio: 4/3; }

/* PULL QUOTE */
.pull-quote { border-left: 2px solid var(--gold); padding: 0.2rem 0 0.2rem 1.2rem; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; color: var(--sage-dark); line-height: 1.55; margin: 1.5rem 0; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.pillar { padding: 1.3rem 1.2rem; background: var(--cream); border-radius: var(--radius); border-left: 2px solid var(--sage-light); }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--sage-dark); margin-bottom: 0.3rem; }
.pillar-text { font-size: 0.82rem; color: var(--warm-grey); line-height: 1.65; }

/* CONDITIONS */
.conditions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 1.5rem; }
.condition-pill { padding: 0.7rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.84rem; color: var(--charcoal); cursor: default; transition: all 0.2s; display: flex; align-items: center; gap: 0.6rem; }
.condition-pill::before { content: ''; width: 5px; height: 5px; background: var(--sage-light); border-radius: 50%; flex-shrink: 0; }

.condition-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2rem; }
.condition-card { padding: 1.6rem; background: var(--cream); border-radius: var(--radius); border-left: 2px solid var(--sage-light); }
.condition-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--sage-dark); margin-bottom: 0.4rem; font-weight: 400; }
.condition-card p { font-size: 0.88rem; color: var(--warm-grey); line-height: 1.7; font-weight: 300; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3.5rem; margin-top: 2.5rem; }
.team-grid .team-card { max-width: 380px; margin: 0 auto; width: 100%; }
.team-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.team-card-img { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--cream); margin-bottom: 1.1rem; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card-bio { font-size: 0.86rem; color: var(--warm-grey); font-weight: 300; line-height: 1.7; margin-top: 0.5rem; }
.team-name-large { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 0.15rem; }
.team-role-tag { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); }
.team-creds { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.7rem; }
.cred { background: var(--cream); border: 1px solid var(--border); padding: 0.25rem 0.6rem; border-radius: 2px; font-size: 0.68rem; letter-spacing: 0.06em; color: var(--warm-grey); }
.partner-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--sage-dark); text-decoration: none; margin-top: 0.7rem; border-bottom: 1px solid var(--sage-light); padding-bottom: 0.1rem; transition: color 0.2s; }
.partner-badge:hover { color: var(--sage); }

.partner-card { display: grid; grid-template-columns: 180px 1fr; gap: 1.5rem; align-items: start; padding: 1.5rem; background: var(--cream); border-radius: var(--radius); margin-bottom: 1.2rem; }
.partner-card-img { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: var(--sage-light); }
.partner-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* PARTNERS INTRO */
.partners-intro { padding: 1.5rem 1.8rem; background: var(--cream); border-left: 3px solid var(--sage); border-radius: var(--radius); margin-bottom: 3rem; font-size: 0.9rem; color: var(--warm-grey); line-height: 1.65; }
.partners-intro strong { color: var(--charcoal); display: block; margin-bottom: 0.4rem; font-weight: 500; }

/* PAGE HEROES */
.page-hero { padding: calc(80px + 4rem) 5% 3.5rem; background: var(--warm-white); }
.page-hero.bg-cream { background: var(--cream); }
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 300; margin-top: 0.5rem; }
.page-hero .lead { max-width: 620px; margin-top: 1rem; }

/* CONTENT STYLES */
.content-h2 { font-size: 1.7rem; font-weight: 300; color: var(--charcoal); margin-bottom: 1rem; }
.content-h3 { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-dark); margin: 2rem 0 0.8rem; font-weight: 500; }
.content-p { font-size: 0.95rem; color: var(--warm-grey); font-weight: 300; margin-bottom: 1rem; line-height: 1.8; }
.content-ul { list-style: none; margin-top: 0.5rem; }
.content-ul li { font-size: 0.88rem; color: var(--warm-grey); padding: 0.35rem 0 0.35rem 1.4rem; position: relative; font-weight: 300; }
.content-ul li::before { content: ''; position: absolute; left: 0; top: 1em; width: 8px; height: 1px; background: var(--sage); }

/* SIDEBAR CARD */
.sidebar-card { background: var(--sage-dark); color: white; padding: 2rem 1.8rem; border-radius: var(--radius); position: sticky; top: 100px; }
.sidebar-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 0.8rem; font-weight: 400; }
.sidebar-card p { font-size: 0.9rem; line-height: 1.7; opacity: 0.9; font-weight: 300; margin-bottom: 1.2rem; }
.sidebar-card .btn-primary { background: white; color: var(--sage-dark); }
.sidebar-card .btn-primary:hover { background: var(--cream); }
.sidebar-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.15); margin: 1.2rem 0; }
.sidebar-card a { color: white; }

/* CTA SECTION */
.cta-section { text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 1rem; }
.cta-section .lead { max-width: 560px; margin: 0 auto 2rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 1.5rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--charcoal); font-weight: 400; transition: color 0.2s; }
.faq-q:hover { color: var(--sage-dark); }
.faq-q .faq-plus { font-size: 1.2rem; color: var(--sage-dark); font-weight: 300; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 0.92rem; color: var(--warm-grey); font-weight: 300; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.5rem; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.blog-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.blog-card-img { aspect-ratio: 16/10; background: var(--sage-light); }
.blog-card-body { padding: 1.5rem; }
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--charcoal); margin-bottom: 0.5rem; font-weight: 400; }
.blog-card-meta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 0.5rem; }
.blog-card-desc { font-size: 0.86rem; color: var(--warm-grey); font-weight: 300; line-height: 1.65; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2rem; }
.contact-info p { font-size: 0.95rem; color: var(--warm-grey); font-weight: 300; line-height: 1.8; margin-bottom: 0.4rem; }
.contact-info strong { color: var(--charcoal); font-weight: 500; }
.contact-info a { color: var(--sage-dark); text-decoration: none; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; padding: 2rem; background: var(--cream); border-radius: var(--radius); }
.contact-form label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); font-weight: 500; }
.contact-form input, .contact-form textarea { border: 1px solid var(--border); background: var(--warm-white); padding: 0.75rem 1rem; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--charcoal); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--sage-dark); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* LEGAL PAGES */
.legal-section { max-width: 780px; margin: 0 auto; }
.legal-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--sage-dark); font-weight: 400; margin: 2rem 0 0.8rem; }
.legal-section p, .legal-section li { font-size: 0.92rem; color: var(--warm-grey); font-weight: 300; line-height: 1.8; margin-bottom: 0.8rem; }
.legal-section ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-meta { font-size: 0.78rem; color: var(--mid-grey); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2rem; }

/* FULL-BLEED CLINIC BAND — section-transition photo strip */
.clinic-band { width: 100%; overflow: hidden; background: var(--sage-light); }
.clinic-band img { display: block; width: 100%; height: clamp(280px, 48vh, 520px); object-fit: cover; }

/* DISCLAIMER BAR */
.disclaimer-bar { background: var(--cream); padding: 1.4rem 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.disclaimer-bar p { max-width: 1160px; margin: 0 auto; font-size: 0.78rem; color: var(--warm-grey); font-weight: 300; line-height: 1.6; text-align: center; }

/* FOOTER */
footer { background: var(--sage-dark); color: rgba(255,255,255,0.7); padding: 4rem 5% 2rem; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; color: white; font-size: 1.3rem; margin-bottom: 0.3rem; }
.footer-logo-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: white; font-weight: 500; margin-bottom: 1rem; }
.footer-col p, .footer-col li, .footer-col a { font-size: 0.86rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.7); text-decoration: none; cursor: pointer; transition: color 0.2s; list-style: none; }
.footer-col a:hover { color: white; }
.footer-bottom { max-width: 1160px; margin: 2.5rem auto 0; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.25); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.footer-bottom-links { display: flex; gap: 1.8rem; }
.footer-bottom a { color: white; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.4); transition: text-decoration-color 0.2s; }
.footer-bottom a:hover { text-decoration-color: white; }

/* RESPONSIVE */
@media (max-width: 968px) {
  .hero-inner, .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid, .conditions-grid, .blog-grid { grid-template-columns: 1fr; }
  .team-grid, .team-grid-3 { grid-template-columns: 1fr; }
  .condition-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sticky-cta { display: block; }
  section { padding: 3.5rem 5%; }
  .partner-card { grid-template-columns: 120px 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .staggered-grid { grid-template-columns: 1fr 1fr; }
}

/* DESKTOP-ONLY BANNER HERO (isolated styles, no inheritance from .hero) */
.hero-bnr { display: none; }
.hero { display: flex; } /* default visible everywhere */

@media (min-width: 969px) {
  .hero { display: none !important; }
  .hero-bnr {
    display: block;
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: #1a1a1a;
    margin-top: 80px;  /* clear the sticky nav */
  }
  .hero-bnr-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 1;
    display: block;
  }
  .hero-bnr-shade {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.15) 80%, rgba(0,0,0,0) 100%);
    z-index: 2;
    pointer-events: none;
  }
  .hero-bnr-content {
    position: relative;
    z-index: 3;
    max-width: 1160px;
    margin: 0 auto;
    padding: 5rem 5% 5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    box-sizing: border-box;
  }
  .hero-bnr-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .hero-bnr-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: #ffffff;
    flex-shrink: 0;
  }
  .hero-bnr-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    max-width: 640px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
  }
  .hero-bnr-h1 em {
    font-style: italic;
    color: #ffffff;
  }
  .hero-bnr-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: #ffffff;
    max-width: 540px;
    margin: 0 0 2.5rem 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1.6;
  }
  .hero-bnr-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
  }
  .hero-bnr-btn {
    display: inline-block;
    padding: 0.95rem 1.8rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    border-radius: var(--radius, 4px);
  }
  .hero-bnr-btn-primary {
    background: var(--sage-dark, #6b7a4f);
    color: #ffffff;
    border-color: var(--sage-dark, #6b7a4f);
  }
  .hero-bnr-btn-primary:hover {
    background: #566040;
    border-color: #566040;
    transform: translateY(-1px);
  }
  .hero-bnr-btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.6);
  }
  .hero-bnr-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
  }
  .hero-bnr-micro {
    font-size: 0.82rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }
  .hero-bnr-micro a {
    color: #ffffff;
    text-decoration: underline;
  }
}


/* HOME TEAM CAROUSEL — horizontal scroll */
.team-scroll-wrap { position: relative; margin-top: 1rem; }
.team-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.18) transparent;
  padding: 0.5rem 6% 1.5rem;
  scroll-padding-left: 6%;
}
.team-scroll::-webkit-scrollbar { height: 6px; }
.team-scroll::-webkit-scrollbar-track { background: transparent; }
.team-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
.team-scroll-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: transparent;
  max-width: 320px;
}
.team-scroll-card .team-card-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius, 4px);
  overflow: hidden;
  background: var(--sage-light, #c8d1bb);
  margin-bottom: 1rem;
}
.team-scroll-card .team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.team-scroll-card .team-name-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.35rem; line-height: 1.2;
}
.team-scroll-card .team-role-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.85rem;
}
.team-scroll-card .team-card-bio {
  font-size: 0.88rem;
  color: var(--warm-grey);
  font-weight: 300;
  line-height: 1.6;
}
.team-scroll-hint {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 0.5rem;
  opacity: 0.7;
}
@media (min-width: 969px) {
  .team-scroll { padding-left: max(6%, calc((100% - 1160px) / 2)); padding-right: max(6%, calc((100% - 1160px) / 2)); scroll-padding-left: max(6%, calc((100% - 1160px) / 2)); }
}
@media (max-width: 560px) {
  .team-scroll-card { flex: 0 0 260px; max-width: 260px; }
}


/* NEW PATIENT PAGE — full-width landscape photo band */
.np-band-section { padding: 0; margin: 0; }
.np-band { width: 100%; max-height: 460px; overflow: hidden; }
.np-band img { width: 100%; height: 100%; min-height: 280px; max-height: 460px; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .np-band { max-height: 280px; }
  .np-band img { max-height: 280px; min-height: 220px; }
}


/* Contact form — stack label above input so all inputs line up */
.contact-form > div { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form label { display: block; }
.contact-form input, .contact-form textarea { width: 100%; box-sizing: border-box; }
/* Mobile-only Book button pinned in the top nav bar */
.nav-book-mobile {
  display: none;
  background: var(--sage-dark);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 968px) {
  .nav-book-mobile { display: inline-block; margin-left: auto; margin-right: 1rem; }
}
