/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --primary:      #2C5F5D;
  --primary-dark: #1A3D3B;
  --sage:         #5B8C5A;
  --sage-light:   #7AAD79;/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --primary:      #2C5F5D;
  --primary-dark: #1A3D3B;
  --sage:         #5B8C5A;
  --sage-light:   #7AAD79;
  --sage-pale:    #8DB5B2;
  --sand:         #F2F6F5;
  --sand-dark:    #E3EDEB;
  --white:        #FFFFFF;
  --charcoal:     #1A2E2D;
  --mid:          #4A6360;
  --light:        #7A9E9C;
  --rule:         #C8DEDD;
  --display: 'Cormorant Garamond', serif;
  --body:    'Inter', sans-serif;
  --tight:   'Inter Tight', sans-serif;
  --nav-h:   92px;
  --max:     1160px;
  --gutter:  48px;
  --radius:  3px;
  --shadow:  0 4px 24px rgba(44,95,93,0.1);
  --shadow-lg: 0 12px 48px rgba(44,95,93,0.18);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--primary); line-height: 1.2; }
p { color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 2px 12px rgba(44,95,93,0.07);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--tight);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--sage); background: rgba(91,140,90,0.07); }
.nav-links a.active { color: var(--sage); }
.caret { font-size: 9px; transition: transform 0.2s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  overflow: hidden;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 18px; font-size: 13px; border-radius: 0; border-left: 2px solid transparent; }
.dropdown a:hover { background: var(--sand); border-left-color: var(--sage); color: var(--sage); }
.dropdown-divider { height: 1px; background: var(--rule); margin: 3px 0; }
.nav-cta { font-weight: 600 !important; color: var(--white) !important; background: var(--sage) !important; padding: 9px 20px !important; border-radius: var(--radius) !important; letter-spacing: 0.04em !important; }
.nav-cta:hover { background: var(--sage-light) !important; }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 10; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.25s; }
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.section { padding: 80px var(--gutter); max-width: var(--max); margin: 0 auto; }
.section-wide { padding: 80px var(--gutter); }
.section-wide > .inner { max-width: var(--max); margin: 0 auto; }
.bg-sand { background: var(--sand); }
.eyebrow { font-family: var(--tight); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; }
.section-title { font-family: var(--display); font-size: clamp(26px, 3.5vw, 44px); font-weight: 400; margin-bottom: 18px; }
.section-sub { font-size: 17px; color: var(--mid); max-width: 620px; line-height: 1.75; margin-bottom: 44px; }
.rule { width: 44px; height: 2px; background: var(--sage); margin: 18px 0; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--tight); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; padding: 13px 26px; border-radius: var(--radius); border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,140,90,0.35); color: var(--white); }
.btn-secondary { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ═══════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════ */
.page-hero { position: relative; padding: 88px var(--gutter) 72px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.32); }
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--display); font-size: clamp(34px, 5vw, 60px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 580px; margin: 0; }
.page-hero .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 14px; }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band { background: var(--primary); padding: 72px var(--gutter); text-align: center; }
.cta-band h2 { font-family: var(--display); font-size: clamp(26px, 4vw, 44px); font-weight: 300; color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 460px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   HOME HERO
═══════════════════════════════════════════ */
.hero { min-height: calc(100vh - var(--nav-h)); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.38); }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 80px var(--gutter); position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--tight); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 22px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--sage-pale); }
.hero h1 { font-family: var(--display); font-size: clamp(40px, 5.5vw, 76px); font-weight: 300; color: var(--white); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.62); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-panel { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; overflow: hidden; backdrop-filter: blur(10px); }
.panel-header { background: rgba(91,140,90,0.3); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 18px 26px; }
.panel-title { font-family: var(--display); font-size: 17px; font-weight: 400; color: var(--white); }
.panel-title span { font-size: 10px; font-family: var(--tight); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); display: block; margin-bottom: 3px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 26px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.info-row:last-child { border-bottom: none; }
.info-icon { width: 32px; height: 32px; background: rgba(91,140,90,0.25); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.info-lbl { font-family: var(--tight); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.info-val { font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.5; }
.info-val strong { color: var(--white); font-weight: 600; }
.info-tag { display: inline-block; background: rgba(255,255,255,0.1); border-radius: 10px; padding: 2px 8px; font-size: 11px; color: rgba(255,255,255,0.7); margin: 2px 2px 0 0; }

/* TRUST BAR */
.trust { background: var(--primary); padding: 18px var(--gutter); }
.trust-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage-pale); flex-shrink: 0; }
.trust-lbl { font-family: var(--tight); font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-img { overflow: hidden; min-height: 480px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-content { padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.split.reverse .split-img { order: 2; }
.split.reverse .split-content { order: 1; }

/* PHOTO GRID */
.photo-grid-featured { display: grid; grid-template-columns: 2fr 1fr; gap: 3px; }
.photo-grid-featured-main { overflow: hidden; border-radius: 4px 0 0 4px; }
.photo-grid-featured-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid-featured-side { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.photo-grid-featured-side > div { overflow: hidden; }
.photo-grid-featured-side > div:first-child { border-radius: 0 4px 0 0; }
.photo-grid-featured-side > div:last-child { border-radius: 0 0 4px 0; }
.photo-grid-featured-side img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.photo-grid-3 > div { overflow: hidden; aspect-ratio: 4/3; }
.photo-grid-3 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-grid-3 > div:hover img { transform: scale(1.04); }

/* SERVICE CARDS */
.service-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; margin-top: 44px; }
.service-card { background: var(--white); padding: 30px 22px; display: flex; flex-direction: column; gap: 8px; transition: background 0.2s; text-decoration: none; }
.service-card:hover { background: var(--sand); }
.service-card-icon { width: 42px; height: 42px; background: rgba(91,140,90,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 4px; }
.service-card-title { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--primary); line-height: 1.2; }
.service-card-desc { font-size: 13px; color: var(--mid); line-height: 1.6; flex: 1; }
.service-card-link { font-family: var(--tight); font-size: 11px; font-weight: 600; color: var(--sage); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.why-list { display: flex; flex-direction: column; }
.why-item { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--rule); }
.why-item:last-child { border-bottom: none; }
.why-check { width: 22px; height: 22px; background: rgba(91,140,90,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sage); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.why-text { font-size: 14px; color: var(--mid); line-height: 1.65; }
.mission-block { background: var(--primary); padding: 40px; border-radius: 4px; margin-top: 40px; }
.mission-block .eyebrow { color: rgba(255,255,255,0.45); }
.mission-block blockquote { font-family: var(--display); font-size: 20px; font-weight: 300; font-style: italic; color: var(--white); line-height: 1.55; border-left: 2px solid var(--sage); padding-left: 22px; margin: 0; }

/* ═══════════════════════════════════════════
   TEAM
═══════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; margin-top: 44px; }
.team-card { background: var(--white); }
.team-card-photo { aspect-ratio: 1; overflow: hidden; background: var(--sand-dark); }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card-body { padding: 22px 26px 28px; }
.team-card-name { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--primary); margin-bottom: 3px; }
.team-card-role { font-family: var(--tight); font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.team-card-bio { font-size: 13px; color: var(--mid); line-height: 1.75; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-list { list-style: none; }
.services-list li { padding: 11px 0; border-bottom: 1px solid var(--rule); font-size: 14px; color: var(--mid); display: flex; align-items: center; gap: 12px; }
.services-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.services-list li:last-child { border-bottom: none; }
.info-box { background: var(--sand); border-left: 3px solid var(--sage); border-radius: 0 4px 4px 0; padding: 20px 24px; margin-top: 24px; }
.info-box-title { font-family: var(--tight); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.info-box p { font-size: 13px; color: var(--mid); margin: 0; }

/* ═══════════════════════════════════════════
   BEAUTY & WELLNESS
═══════════════════════════════════════════ */
.bw-hero { position: relative; height: 520px; overflow: hidden; display: flex; align-items: flex-end; }
.bw-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.42); }
.bw-hero-content { position: relative; z-index: 1; padding: 48px var(--gutter); width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin: 0 auto; }
.bw-hero-content h1 { font-family: var(--display); font-size: clamp(40px, 6vw, 76px); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 14px; }
.bw-hero-content p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 24px; }
.bw-treatment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px 4px 0 0; overflow: hidden; }
.bw-card { background: var(--white); overflow: hidden; }
.bw-card-img { height: 210px; overflow: hidden; }
.bw-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bw-card:hover .bw-card-img img { transform: scale(1.04); }
.bw-card-body { padding: 24px; }
.bw-card-title { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.bw-card-desc { font-size: 13px; color: var(--mid); margin-bottom: 14px; line-height: 1.65; }
.bw-list { list-style: none; }
.bw-list li { font-size: 13px; color: var(--mid); padding: 6px 0; border-bottom: 1px solid var(--rule); display: flex; align-items: center; gap: 10px; }
.bw-list li::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.bw-list li:last-child { border-bottom: none; }
.bw-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); overflow: hidden; margin-top: 1px; }
.bw-lower-card { display: grid; grid-template-columns: 1fr 1fr; }
.bw-lower-img { overflow: hidden; }
.bw-lower-img img { width: 100%; height: 100%; object-fit: cover; }
.bw-lower-content { padding: 40px; }
.products-strip { background: var(--sand); border: 1px solid var(--rule); border-top: none; border-radius: 0 0 4px 4px; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.products-label { font-family: var(--tight); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); white-space: nowrap; }
.products-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-tag { background: var(--white); border: 1px solid var(--rule); border-radius: 20px; padding: 4px 13px; font-family: var(--tight); font-size: 12px; font-weight: 600; color: var(--primary); }

/* ═══════════════════════════════════════════
   RECOVERY & WELLNESS
═══════════════════════════════════════════ */
.recovery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.recovery-card { background: var(--white); border-radius: 4px; overflow: hidden; border: 1px solid var(--rule); box-shadow: var(--shadow); }
.recovery-card-header { background: var(--primary); padding: 22px 26px; }
.recovery-card-icon { font-size: 28px; margin-bottom: 8px; }
.recovery-card-title { font-family: var(--display); font-size: 21px; font-weight: 400; color: var(--white); }
.recovery-card-subtitle { font-family: var(--tight); font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.recovery-card-body { padding: 22px 26px; }
.recovery-card-desc { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.recovery-benefits { list-style: none; }
.recovery-benefits li { font-size: 12px; color: var(--mid); padding: 5px 0; border-bottom: 1px solid var(--rule); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.recovery-benefits li::before { content: '✓'; color: var(--sage); font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.recovery-benefits li:last-child { border-bottom: none; }
.recovery-combined { background: var(--primary); border-radius: 4px; padding: 44px; margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.recovery-combined h3 { font-family: var(--display); font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.recovery-combined p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 22px; }
.recovery-combined-list { list-style: none; }
.recovery-combined-list li { font-size: 13px; color: rgba(255,255,255,0.75); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 8px; }
.recovery-combined-list li::before { content: '✓'; color: var(--sage-pale); font-size: 12px; flex-shrink: 0; }
.recovery-combined-list li:last-child { border-bottom: none; }
.recovery-disclaimer { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 16px 20px; margin-top: 16px; }
.recovery-disclaimer p { font-size: 11px; color: rgba(255,255,255,0.5); margin: 0; font-style: italic; line-height: 1.7; }

/* ═══════════════════════════════════════════
   SUBOXONE
═══════════════════════════════════════════ */
.sub-badge { display: inline-flex; align-items: center; background: rgba(91,140,90,0.2); border: 1px solid rgba(141,181,178,0.4); border-radius: 20px; padding: 5px 16px; font-family: var(--tight); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); text-transform: uppercase; margin-bottom: 18px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; margin-top: 44px; }
.step { background: var(--white); padding: 26px 22px; }
.step-num { font-family: var(--display); font-size: 44px; font-weight: 300; color: rgba(91,140,90,0.18); line-height: 1; margin-bottom: 8px; }
.step-title { font-family: var(--tight); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--mid); line-height: 1.7; }
.qualify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.qualify-item { display: flex; align-items: flex-start; gap: 10px; background: var(--sand); border-radius: 4px; padding: 13px 15px; }
.qualify-check { color: var(--sage); font-size: 13px; margin-top: 1px; flex-shrink: 0; }
.qualify-text { font-size: 13px; color: var(--mid); line-height: 1.6; }
.conf-cta { background: var(--sage); border-radius: 4px; padding: 44px; text-align: center; margin-top: 44px; }
.conf-cta h3 { font-family: var(--display); font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.conf-cta p { color: rgba(255,255,255,0.72); margin-bottom: 22px; font-size: 14px; }
.disclaimer { background: var(--sand); border: 1px solid var(--rule); border-radius: 4px; padding: 20px 24px; margin-top: 40px; }
.disclaimer p { font-size: 12px; color: var(--light); margin: 0; font-style: italic; }

/* ═══════════════════════════════════════════
   NEW PATIENTS
═══════════════════════════════════════════ */
.np-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.np-card { background: var(--white); border: 1px solid var(--rule); border-radius: 4px; padding: 30px; box-shadow: var(--shadow); }
.np-card + .np-card { margin-top: 18px; }
.np-card-title { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--sage); }
.np-list { list-style: none; }
.np-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 13px; color: var(--mid); line-height: 1.6; }
.np-list li:last-child { border-bottom: none; }
.np-list li::before { content: '→'; color: var(--sage); font-size: 11px; margin-top: 2px; flex-shrink: 0; }
.book-box { background: var(--primary); border-radius: 4px; padding: 32px; margin-bottom: 18px; }
.book-box h3 { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 14px; }
.book-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.book-row:last-child { border-bottom: none; }
.book-icon { width: 32px; height: 32px; background: rgba(91,140,90,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.book-lbl { font-family: var(--tight); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.book-val { font-size: 14px; font-weight: 500; color: var(--white); }
.ins-block { background: var(--sand); border-left: 3px solid var(--sage); border-radius: 0 4px 4px 0; padding: 22px; }
.ins-block h3 { font-family: var(--tight); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.ins-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.ins-tag { background: var(--white); border: 1px solid var(--rule); border-radius: 20px; padding: 4px 12px; font-family: var(--tight); font-size: 12px; font-weight: 600; color: var(--primary); }
.ins-note { font-size: 12px; color: var(--light); font-style: italic; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start; }
.faq-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-nav-title { font-family: var(--tight); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.faq-nav-link { font-family: var(--tight); font-size: 13px; color: var(--mid); padding: 7px 10px; border-radius: 3px; border-left: 2px solid transparent; cursor: pointer; display: block; margin-bottom: 2px; transition: all 0.15s; }
.faq-nav-link:hover { color: var(--sage); background: rgba(91,140,90,0.06); border-left-color: var(--sage); }
.faq-group { margin-bottom: 44px; }
.faq-group-title { font-family: var(--display); font-size: 24px; font-weight: 400; color: var(--primary); margin-bottom: 18px; }
.faq-item { border-bottom: 1px solid var(--rule); padding: 18px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q { font-family: var(--tight); font-size: 14px; font-weight: 600; color: var(--primary); display: flex; align-items: center; justify-content: space-between; gap: 12px; user-select: none; }
.faq-toggle { width: 22px; height: 22px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--sage); flex-shrink: 0; transition: transform 0.2s, background 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--sage); color: var(--white); }
.faq-a { font-size: 14px; color: var(--mid); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.contact-row:first-child { border-top: 1px solid var(--rule); }
.contact-icon { width: 36px; height: 36px; background: rgba(91,140,90,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.contact-lbl { font-family: var(--tight); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); margin-bottom: 3px; }
.contact-val { font-size: 14px; font-weight: 500; color: var(--primary); line-height: 1.5; }
.contact-val a { color: var(--sage); }
.hours-block { margin-top: 20px; border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
.hours-row { display: flex; justify-content: space-between; padding: 11px 16px; font-size: 13px; border-bottom: 1px solid var(--rule); }
.hours-row:nth-child(even) { background: var(--sand); }
.hours-row:last-child { border-bottom: none; }
.hrs-day { font-weight: 500; color: var(--primary); font-family: var(--tight); }
.hrs-time { color: var(--mid); }
.hrs-closed { color: var(--light); font-style: italic; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 40px; height: 40px; background: var(--sand); border: 1px solid var(--rule); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background 0.2s; }
.social-link:hover { background: var(--primary); }
.map-box { aspect-ratio: 4/3; background: var(--sand-dark); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--light); font-family: var(--tight); font-size: 13px; border: 1px solid var(--rule); text-align: center; padding: 24px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { background: var(--primary-dark, #1A3D3B); color: rgba(255,255,255,0.55); padding: 52px var(--gutter) 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-logo { margin-bottom: 12px; }
.footer-tagline { font-size: 12px; line-height: 1.7; max-width: 250px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.16); }
.footer-col-title { font-family: var(--tight); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-hours { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; max-width: var(--max); margin: 0 auto; flex-wrap: wrap; gap: 8px; }

/* ═══════════════════════════════════════════
   404
═══════════════════════════════════════════ */
.not-found { text-align: center; padding: 120px var(--gutter); }
.not-found h1 { font-size: clamp(60px, 10vw, 120px); color: var(--sage-pale); font-weight: 300; margin-bottom: 16px; }
.not-found h2 { font-size: 28px; font-weight: 400; margin-bottom: 14px; }
.not-found p { font-size: 16px; max-width: 400px; margin: 0 auto 32px; }

/* ═══════════════════════════════════════════
   MOBILE — IMPROVED
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .hero-inner { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  :root { --gutter: 20px; --nav-h: 80px; }

  /* Nav */
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 16px 0; gap: 0; overflow-y: auto; z-index: 999; box-shadow: 0 4px 24px rgba(44,95,93,0.15); }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { font-size: 15px; padding: 14px 24px; border-radius: 0; width: 100%; border-bottom: 1px solid var(--sand-dark); display: block; }
  .nav-links a:hover { background: var(--sand); color: var(--sage); border-radius: 0; }
  .nav-links .nav-cta { background: var(--sage) !important; color: white !important; text-align: center; justify-content: center; margin-top: 8px; border-bottom: none; }
  /* Option B: Services links directly to /services page — hide dropdown on mobile */
  .dropdown { display: none !important; }
  .has-dropdown .caret { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-inner { padding: 0 20px; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-inner { grid-template-columns: 1fr; padding: 48px 20px 40px; gap: 0; }
  .hero-panel { display: none; }
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Trust */
  .trust { padding: 14px 20px; }
  .trust-inner { gap: 10px; justify-content: center; }
  .trust-lbl { font-size: 11px; }

  /* Split */
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; order: 0 !important; }
  .split-content { padding: 40px 20px; order: 0 !important; }

  /* Photo grid */
  .photo-grid-featured { grid-template-columns: 1fr; }
  .photo-grid-featured-main { border-radius: 4px; aspect-ratio: 16/9; }
  .photo-grid-featured-side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .photo-grid-featured-side > div:first-child { border-radius: 4px 0 0 4px; }
  .photo-grid-featured-side > div:last-child { border-radius: 0 4px 4px 0; }
  .photo-grid-featured-side img { height: 180px; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }

  /* Service cards */
  .service-cards { grid-template-columns: 1fr 1fr; }

  /* About */
  .two-col { grid-template-columns: 1fr; gap: 40px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  /* Beauty & Wellness */
  .bw-hero { height: auto; min-height: 360px; padding-bottom: 40px; }
  .bw-hero-content h1 { font-size: clamp(34px, 7vw, 52px); }
  .bw-hero-content .btn { display: block; width: 100%; text-align: center; margin-bottom: 10px; }
  .bw-treatment-grid { grid-template-columns: 1fr; border-radius: 4px; }
  .bw-lower { grid-template-columns: 1fr; }
  .bw-lower-card { grid-template-columns: 1fr; }
  .bw-lower-img { height: 240px; }
  .bw-lower-img img { height: 100%; }

  /* Recovery */
  .recovery-grid { grid-template-columns: 1fr; }
  .recovery-combined { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }

  /* Suboxone */
  .steps { grid-template-columns: 1fr 1fr; }
  .qualify-grid { grid-template-columns: 1fr; }

  /* New Patients */
  .np-grid { grid-template-columns: 1fr; gap: 32px; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sticky { position: relative; top: 0; display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Section padding */
  .section { padding: 56px 20px; }
  .section-wide { padding: 56px 20px; }
  .cta-band { padding: 56px 20px; }
  .page-hero { padding: 64px 20px 48px; }
}

@media (max-width: 560px) {
  .service-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .photo-grid-3 { grid-template-columns: 1fr; }
  .photo-grid-featured-side { grid-template-columns: 1fr; }
  .photo-grid-featured-side img { height: 220px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .bw-hero { height: 300px; }
}
  --sage-pale:    #8DB5B2;
  --sand:         #F2F6F5;
  --sand-dark:    #E3EDEB;
  --white:        #FFFFFF;
  --charcoal:     #1A2E2D;
  --mid:          #4A6360;
  --light:        #7A9E9C;
  --rule:         #C8DEDD;
  --display: 'Cormorant Garamond', serif;
  --body:    'Inter', sans-serif;
  --tight:   'Inter Tight', sans-serif;
  --nav-h:   92px;
  --max:     1160px;
  --gutter:  48px;
  --radius:  3px;
  --shadow:  0 4px 24px rgba(44,95,93,0.1);
  --shadow-lg: 0 12px 48px rgba(44,95,93,0.18);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--primary); line-height: 1.2; }
p { color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 2px 12px rgba(44,95,93,0.07);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--tight);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--sage); background: rgba(91,140,90,0.07); }
.nav-links a.active { color: var(--sage); }
.caret { font-size: 9px; transition: transform 0.2s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  overflow: hidden;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 18px; font-size: 13px; border-radius: 0; border-left: 2px solid transparent; }
.dropdown a:hover { background: var(--sand); border-left-color: var(--sage); color: var(--sage); }
.dropdown-divider { height: 1px; background: var(--rule); margin: 3px 0; }
.nav-cta { font-weight: 600 !important; color: var(--white) !important; background: var(--sage) !important; padding: 9px 20px !important; border-radius: var(--radius) !important; letter-spacing: 0.04em !important; }
.nav-cta:hover { background: var(--sage-light) !important; }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 10; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.25s; }
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.section { padding: 80px var(--gutter); max-width: var(--max); margin: 0 auto; }
.section-wide { padding: 80px var(--gutter); }
.section-wide > .inner { max-width: var(--max); margin: 0 auto; }
.bg-sand { background: var(--sand); }
.eyebrow { font-family: var(--tight); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; }
.section-title { font-family: var(--display); font-size: clamp(26px, 3.5vw, 44px); font-weight: 400; margin-bottom: 18px; }
.section-sub { font-size: 17px; color: var(--mid); max-width: 620px; line-height: 1.75; margin-bottom: 44px; }
.rule { width: 44px; height: 2px; background: var(--sage); margin: 18px 0; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--tight); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; padding: 13px 26px; border-radius: var(--radius); border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,140,90,0.35); color: var(--white); }
.btn-secondary { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ═══════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════ */
.page-hero { position: relative; padding: 88px var(--gutter) 72px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.32); }
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--display); font-size: clamp(34px, 5vw, 60px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 580px; margin: 0; }
.page-hero .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 14px; }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band { background: var(--primary); padding: 72px var(--gutter); text-align: center; }
.cta-band h2 { font-family: var(--display); font-size: clamp(26px, 4vw, 44px); font-weight: 300; color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 460px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   HOME HERO
═══════════════════════════════════════════ */
.hero { min-height: calc(100vh - var(--nav-h)); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.38); }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 80px var(--gutter); position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--tight); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 22px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--sage-pale); }
.hero h1 { font-family: var(--display); font-size: clamp(40px, 5.5vw, 76px); font-weight: 300; color: var(--white); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.62); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-panel { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; overflow: hidden; backdrop-filter: blur(10px); }
.panel-header { background: rgba(91,140,90,0.3); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 18px 26px; }
.panel-title { font-family: var(--display); font-size: 17px; font-weight: 400; color: var(--white); }
.panel-title span { font-size: 10px; font-family: var(--tight); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); display: block; margin-bottom: 3px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 26px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.info-row:last-child { border-bottom: none; }
.info-icon { width: 32px; height: 32px; background: rgba(91,140,90,0.25); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.info-lbl { font-family: var(--tight); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.info-val { font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.5; }
.info-val strong { color: var(--white); font-weight: 600; }
.info-tag { display: inline-block; background: rgba(255,255,255,0.1); border-radius: 10px; padding: 2px 8px; font-size: 11px; color: rgba(255,255,255,0.7); margin: 2px 2px 0 0; }

/* TRUST BAR */
.trust { background: var(--primary); padding: 18px var(--gutter); }
.trust-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage-pale); flex-shrink: 0; }
.trust-lbl { font-family: var(--tight); font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-img { overflow: hidden; min-height: 480px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-content { padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.split.reverse .split-img { order: 2; }
.split.reverse .split-content { order: 1; }

/* PHOTO GRID */
.photo-grid-featured { display: grid; grid-template-columns: 2fr 1fr; gap: 3px; }
.photo-grid-featured-main { overflow: hidden; border-radius: 4px 0 0 4px; }
.photo-grid-featured-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid-featured-side { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.photo-grid-featured-side > div { overflow: hidden; }
.photo-grid-featured-side > div:first-child { border-radius: 0 4px 0 0; }
.photo-grid-featured-side > div:last-child { border-radius: 0 0 4px 0; }
.photo-grid-featured-side img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.photo-grid-3 > div { overflow: hidden; aspect-ratio: 4/3; }
.photo-grid-3 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-grid-3 > div:hover img { transform: scale(1.04); }

/* SERVICE CARDS */
.service-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; margin-top: 44px; }
.service-card { background: var(--white); padding: 30px 22px; display: flex; flex-direction: column; gap: 8px; transition: background 0.2s; text-decoration: none; }
.service-card:hover { background: var(--sand); }
.service-card-icon { width: 42px; height: 42px; background: rgba(91,140,90,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 4px; }
.service-card-title { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--primary); line-height: 1.2; }
.service-card-desc { font-size: 13px; color: var(--mid); line-height: 1.6; flex: 1; }
.service-card-link { font-family: var(--tight); font-size: 11px; font-weight: 600; color: var(--sage); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.why-list { display: flex; flex-direction: column; }
.why-item { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--rule); }
.why-item:last-child { border-bottom: none; }
.why-check { width: 22px; height: 22px; background: rgba(91,140,90,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sage); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.why-text { font-size: 14px; color: var(--mid); line-height: 1.65; }
.mission-block { background: var(--primary); padding: 40px; border-radius: 4px; margin-top: 40px; }
.mission-block .eyebrow { color: rgba(255,255,255,0.45); }
.mission-block blockquote { font-family: var(--display); font-size: 20px; font-weight: 300; font-style: italic; color: var(--white); line-height: 1.55; border-left: 2px solid var(--sage); padding-left: 22px; margin: 0; }

/* ═══════════════════════════════════════════
   TEAM
═══════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; margin-top: 44px; }
.team-card { background: var(--white); }
.team-card-photo { aspect-ratio: 1; overflow: hidden; background: var(--sand-dark); }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card-body { padding: 22px 26px 28px; }
.team-card-name { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--primary); margin-bottom: 3px; }
.team-card-role { font-family: var(--tight); font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.team-card-bio { font-size: 13px; color: var(--mid); line-height: 1.75; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-list { list-style: none; }
.services-list li { padding: 11px 0; border-bottom: 1px solid var(--rule); font-size: 14px; color: var(--mid); display: flex; align-items: center; gap: 12px; }
.services-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.services-list li:last-child { border-bottom: none; }
.info-box { background: var(--sand); border-left: 3px solid var(--sage); border-radius: 0 4px 4px 0; padding: 20px 24px; margin-top: 24px; }
.info-box-title { font-family: var(--tight); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.info-box p { font-size: 13px; color: var(--mid); margin: 0; }

/* ═══════════════════════════════════════════
   BEAUTY & WELLNESS
═══════════════════════════════════════════ */
.bw-hero { position: relative; height: 520px; overflow: hidden; display: flex; align-items: flex-end; }
.bw-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.42); }
.bw-hero-content { position: relative; z-index: 1; padding: 48px var(--gutter); width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin: 0 auto; }
.bw-hero-content h1 { font-family: var(--display); font-size: clamp(40px, 6vw, 76px); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 14px; }
.bw-hero-content p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 24px; }
.bw-treatment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px 4px 0 0; overflow: hidden; }
.bw-card { background: var(--white); overflow: hidden; }
.bw-card-img { height: 210px; overflow: hidden; }
.bw-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bw-card:hover .bw-card-img img { transform: scale(1.04); }
.bw-card-body { padding: 24px; }
.bw-card-title { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.bw-card-desc { font-size: 13px; color: var(--mid); margin-bottom: 14px; line-height: 1.65; }
.bw-list { list-style: none; }
.bw-list li { font-size: 13px; color: var(--mid); padding: 6px 0; border-bottom: 1px solid var(--rule); display: flex; align-items: center; gap: 10px; }
.bw-list li::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.bw-list li:last-child { border-bottom: none; }
.bw-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); overflow: hidden; margin-top: 1px; }
.bw-lower-card { display: grid; grid-template-columns: 1fr 1fr; }
.bw-lower-img { overflow: hidden; }
.bw-lower-img img { width: 100%; height: 100%; object-fit: cover; }
.bw-lower-content { padding: 40px; }
.products-strip { background: var(--sand); border: 1px solid var(--rule); border-top: none; border-radius: 0 0 4px 4px; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.products-label { font-family: var(--tight); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); white-space: nowrap; }
.products-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-tag { background: var(--white); border: 1px solid var(--rule); border-radius: 20px; padding: 4px 13px; font-family: var(--tight); font-size: 12px; font-weight: 600; color: var(--primary); }

/* ═══════════════════════════════════════════
   RECOVERY & WELLNESS
═══════════════════════════════════════════ */
.recovery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.recovery-card { background: var(--white); border-radius: 4px; overflow: hidden; border: 1px solid var(--rule); box-shadow: var(--shadow); }
.recovery-card-header { background: var(--primary); padding: 22px 26px; }
.recovery-card-icon { font-size: 28px; margin-bottom: 8px; }
.recovery-card-title { font-family: var(--display); font-size: 21px; font-weight: 400; color: var(--white); }
.recovery-card-subtitle { font-family: var(--tight); font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.recovery-card-body { padding: 22px 26px; }
.recovery-card-desc { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.recovery-benefits { list-style: none; }
.recovery-benefits li { font-size: 12px; color: var(--mid); padding: 5px 0; border-bottom: 1px solid var(--rule); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.recovery-benefits li::before { content: '✓'; color: var(--sage); font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.recovery-benefits li:last-child { border-bottom: none; }
.recovery-combined { background: var(--primary); border-radius: 4px; padding: 44px; margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.recovery-combined h3 { font-family: var(--display); font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.recovery-combined p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 22px; }
.recovery-combined-list { list-style: none; }
.recovery-combined-list li { font-size: 13px; color: rgba(255,255,255,0.75); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 8px; }
.recovery-combined-list li::before { content: '✓'; color: var(--sage-pale); font-size: 12px; flex-shrink: 0; }
.recovery-combined-list li:last-child { border-bottom: none; }
.recovery-disclaimer { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 16px 20px; margin-top: 16px; }
.recovery-disclaimer p { font-size: 11px; color: rgba(255,255,255,0.5); margin: 0; font-style: italic; line-height: 1.7; }

/* ═══════════════════════════════════════════
   SUBOXONE
═══════════════════════════════════════════ */
.sub-badge { display: inline-flex; align-items: center; background: rgba(91,140,90,0.2); border: 1px solid rgba(141,181,178,0.4); border-radius: 20px; padding: 5px 16px; font-family: var(--tight); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); text-transform: uppercase; margin-bottom: 18px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; margin-top: 44px; }
.step { background: var(--white); padding: 26px 22px; }
.step-num { font-family: var(--display); font-size: 44px; font-weight: 300; color: rgba(91,140,90,0.18); line-height: 1; margin-bottom: 8px; }
.step-title { font-family: var(--tight); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--mid); line-height: 1.7; }
.qualify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.qualify-item { display: flex; align-items: flex-start; gap: 10px; background: var(--sand); border-radius: 4px; padding: 13px 15px; }
.qualify-check { color: var(--sage); font-size: 13px; margin-top: 1px; flex-shrink: 0; }
.qualify-text { font-size: 13px; color: var(--mid); line-height: 1.6; }
.conf-cta { background: var(--sage); border-radius: 4px; padding: 44px; text-align: center; margin-top: 44px; }
.conf-cta h3 { font-family: var(--display); font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.conf-cta p { color: rgba(255,255,255,0.72); margin-bottom: 22px; font-size: 14px; }
.disclaimer { background: var(--sand); border: 1px solid var(--rule); border-radius: 4px; padding: 20px 24px; margin-top: 40px; }
.disclaimer p { font-size: 12px; color: var(--light); margin: 0; font-style: italic; }

/* ═══════════════════════════════════════════
   NEW PATIENTS
═══════════════════════════════════════════ */
.np-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.np-card { background: var(--white); border: 1px solid var(--rule); border-radius: 4px; padding: 30px; box-shadow: var(--shadow); }
.np-card + .np-card { margin-top: 18px; }
.np-card-title { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--sage); }
.np-list { list-style: none; }
.np-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 13px; color: var(--mid); line-height: 1.6; }
.np-list li:last-child { border-bottom: none; }
.np-list li::before { content: '→'; color: var(--sage); font-size: 11px; margin-top: 2px; flex-shrink: 0; }
.book-box { background: var(--primary); border-radius: 4px; padding: 32px; margin-bottom: 18px; }
.book-box h3 { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 14px; }
.book-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.book-row:last-child { border-bottom: none; }
.book-icon { width: 32px; height: 32px; background: rgba(91,140,90,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.book-lbl { font-family: var(--tight); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.book-val { font-size: 14px; font-weight: 500; color: var(--white); }
.ins-block { background: var(--sand); border-left: 3px solid var(--sage); border-radius: 0 4px 4px 0; padding: 22px; }
.ins-block h3 { font-family: var(--tight); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.ins-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.ins-tag { background: var(--white); border: 1px solid var(--rule); border-radius: 20px; padding: 4px 12px; font-family: var(--tight); font-size: 12px; font-weight: 600; color: var(--primary); }
.ins-note { font-size: 12px; color: var(--light); font-style: italic; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start; }
.faq-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-nav-title { font-family: var(--tight); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.faq-nav-link { font-family: var(--tight); font-size: 13px; color: var(--mid); padding: 7px 10px; border-radius: 3px; border-left: 2px solid transparent; cursor: pointer; display: block; margin-bottom: 2px; transition: all 0.15s; }
.faq-nav-link:hover { color: var(--sage); background: rgba(91,140,90,0.06); border-left-color: var(--sage); }
.faq-group { margin-bottom: 44px; }
.faq-group-title { font-family: var(--display); font-size: 24px; font-weight: 400; color: var(--primary); margin-bottom: 18px; }
.faq-item { border-bottom: 1px solid var(--rule); padding: 18px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q { font-family: var(--tight); font-size: 14px; font-weight: 600; color: var(--primary); display: flex; align-items: center; justify-content: space-between; gap: 12px; user-select: none; }
.faq-toggle { width: 22px; height: 22px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--sage); flex-shrink: 0; transition: transform 0.2s, background 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--sage); color: var(--white); }
.faq-a { font-size: 14px; color: var(--mid); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.contact-row:first-child { border-top: 1px solid var(--rule); }
.contact-icon { width: 36px; height: 36px; background: rgba(91,140,90,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.contact-lbl { font-family: var(--tight); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); margin-bottom: 3px; }
.contact-val { font-size: 14px; font-weight: 500; color: var(--primary); line-height: 1.5; }
.contact-val a { color: var(--sage); }
.hours-block { margin-top: 20px; border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
.hours-row { display: flex; justify-content: space-between; padding: 11px 16px; font-size: 13px; border-bottom: 1px solid var(--rule); }
.hours-row:nth-child(even) { background: var(--sand); }
.hours-row:last-child { border-bottom: none; }
.hrs-day { font-weight: 500; color: var(--primary); font-family: var(--tight); }
.hrs-time { color: var(--mid); }
.hrs-closed { color: var(--light); font-style: italic; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 40px; height: 40px; background: var(--sand); border: 1px solid var(--rule); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background 0.2s; }
.social-link:hover { background: var(--primary); }
.map-box { aspect-ratio: 4/3; background: var(--sand-dark); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--light); font-family: var(--tight); font-size: 13px; border: 1px solid var(--rule); text-align: center; padding: 24px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { background: var(--primary-dark, #1A3D3B); color: rgba(255,255,255,0.55); padding: 52px var(--gutter) 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-logo { margin-bottom: 12px; }
.footer-tagline { font-size: 12px; line-height: 1.7; max-width: 250px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.16); }
.footer-col-title { font-family: var(--tight); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-hours { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; max-width: var(--max); margin: 0 auto; flex-wrap: wrap; gap: 8px; }

/* ═══════════════════════════════════════════
   404
═══════════════════════════════════════════ */
.not-found { text-align: center; padding: 120px var(--gutter); }
.not-found h1 { font-size: clamp(60px, 10vw, 120px); color: var(--sage-pale); font-weight: 300; margin-bottom: 16px; }
.not-found h2 { font-size: 28px; font-weight: 400; margin-bottom: 14px; }
.not-found p { font-size: 16px; max-width: 400px; margin: 0 auto 32px; }

/* ═══════════════════════════════════════════
   MOBILE — IMPROVED
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .hero-inner { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  :root { --gutter: 20px; --nav-h: 80px; }

  /* Nav */
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 24px 20px; gap: 2px; overflow-y: auto; z-index: 999; box-shadow: 0 4px 24px rgba(44,95,93,0.15); }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { font-size: 15px; padding: 13px 16px; border-radius: 6px; width: 100%; }
  .nav-links .nav-cta { background: var(--sage) !important; color: white !important; text-align: center; justify-content: center; margin-top: 8px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--sand); border-radius: 6px; margin-top: 4px; }
  .dropdown a { font-size: 14px; padding: 10px 16px; }
  .has-dropdown .caret { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-inner { padding: 0 20px; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-inner { grid-template-columns: 1fr; padding: 48px 20px 40px; gap: 0; }
  .hero-panel { display: none; }
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Trust */
  .trust { padding: 14px 20px; }
  .trust-inner { gap: 10px; justify-content: center; }
  .trust-lbl { font-size: 11px; }

  /* Split */
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; order: 0 !important; }
  .split-content { padding: 40px 20px; order: 0 !important; }

  /* Photo grid */
  .photo-grid-featured { grid-template-columns: 1fr; }
  .photo-grid-featured-main { border-radius: 4px; aspect-ratio: 16/9; }
  .photo-grid-featured-side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .photo-grid-featured-side > div:first-child { border-radius: 4px 0 0 4px; }
  .photo-grid-featured-side > div:last-child { border-radius: 0 4px 4px 0; }
  .photo-grid-featured-side img { height: 180px; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }

  /* Service cards */
  .service-cards { grid-template-columns: 1fr 1fr; }

  /* About */
  .two-col { grid-template-columns: 1fr; gap: 40px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  /* Beauty & Wellness */
  .bw-hero { height: 360px; }
  .bw-hero-content h1 { font-size: clamp(34px, 7vw, 52px); }
  .bw-treatment-grid { grid-template-columns: 1fr; border-radius: 4px; }
  .bw-lower { grid-template-columns: 1fr; }
  .bw-lower-card { grid-template-columns: 1fr; }
  .bw-lower-img { height: 240px; }
  .bw-lower-img img { height: 100%; }

  /* Recovery */
  .recovery-grid { grid-template-columns: 1fr; }
  .recovery-combined { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }

  /* Suboxone */
  .steps { grid-template-columns: 1fr 1fr; }
  .qualify-grid { grid-template-columns: 1fr; }

  /* New Patients */
  .np-grid { grid-template-columns: 1fr; gap: 32px; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sticky { position: relative; top: 0; display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Section padding */
  .section { padding: 56px 20px; }
  .section-wide { padding: 56px 20px; }
  .cta-band { padding: 56px 20px; }
  .page-hero { padding: 64px 20px 48px; }
}

@media (max-width: 560px) {
  .service-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .photo-grid-3 { grid-template-columns: 1fr; }
  .photo-grid-featured-side { grid-template-columns: 1fr; }
  .photo-grid-featured-side img { height: 220px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .bw-hero { height: 300px; }
}
