/* ===================================================
   OakMD — Brand Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- Tokens --- */
:root {
  --charcoal:      #111111;
  --deep-forest:   #1E2A23;
  --warm-ivory:    #F5F3EF;
  --muted-gold:    #C2A14A;
  --gold-light:    #F0E8D3;
  --soft-stone:    #D8D6D1;
  --stone-light:   #EDEBE7;
  --white:         #FFFFFF;
  --text-muted:    #5A5A52;

  --font-base:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;

  --shadow-card: 0 1px 3px rgba(17,17,17,0.06), 0 4px 12px rgba(17,17,17,0.04);
  --shadow-hover: 0 2px 8px rgba(17,17,17,0.10), 0 8px 24px rgba(17,17,17,0.06);

  --max-width: 1200px;
  --section-v: 96px;
  --section-v-sm: 64px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-base);
  background: var(--warm-ivory);
  color: var(--charcoal);
  line-height: 1.65;
  font-weight: 400;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 48px; } }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-base);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

p { line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--muted-gold);
  color: var(--charcoal);
  border-color: var(--muted-gold);
}
.btn-primary:hover {
  background: #b3923e;
  border-color: #b3923e;
  box-shadow: 0 4px 16px rgba(194,161,74,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--warm-ivory);
}

.btn-outline-ivory {
  background: transparent;
  color: var(--warm-ivory);
  border-color: rgba(245,243,239,0.4);
}
.btn-outline-ivory:hover {
  background: rgba(245,243,239,0.12);
  border-color: var(--warm-ivory);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* --- HEADER / NAV --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  font-family: var(--font-base);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
}
.site-logo .logo-oak { color: var(--warm-ivory); }
.site-logo .logo-md  { color: var(--muted-gold); }

.header-cta { display: flex; align-items: center; gap: 14px; }

/* Hamburger — always visible */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px 10px;
  transition: border-color 0.2s ease;
}
.hamburger:hover { border-color: rgba(255,255,255,0.35); }

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--warm-ivory);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Right-side Drawer */
.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 92vw;
  background: #0e0e0e;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.site-drawer.open { transform: translateX(0); }

/* Drawer top bar */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--warm-ivory);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.drawer-close:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}

/* Drawer scrollable nav area */
.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

/* Category group with accordion */
.drawer-group {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.drawer-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(245,243,239,0.85);
  text-align: left;
  transition: color 0.15s ease;
  letter-spacing: 0.01em;
}
.drawer-category:hover { color: var(--warm-ivory); }
.drawer-category[aria-expanded="true"] { color: var(--warm-ivory); }

.drawer-chevron {
  flex-shrink: 0;
  color: rgba(245,243,239,0.4);
  transition: transform 0.25s ease, color 0.15s ease;
}
.drawer-category[aria-expanded="true"] .drawer-chevron {
  transform: rotate(180deg);
  color: var(--muted-gold);
}

/* Accordion children */
.drawer-children {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.drawer-children.open { max-height: 600px; }

.drawer-child-link {
  display: block;
  padding: 10px 28px 10px 40px;
  font-size: 0.875rem;
  color: rgba(245,243,239,0.6);
  transition: color 0.15s ease, padding-left 0.15s ease;
  border-left: 2px solid transparent;
}
.drawer-child-link:hover {
  color: var(--warm-ivory);
  padding-left: 44px;
}
.drawer-child-link--all {
  color: var(--muted-gold);
  font-weight: 500;
  padding-top: 12px;
  padding-bottom: 16px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.drawer-child-link--all:hover { color: #d4b360; }

/* Standalone links (How It Works, Pricing, FAQ) */
.drawer-link {
  display: block;
  padding: 16px 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(245,243,239,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s ease;
  letter-spacing: 0.01em;
}
.drawer-link:hover { color: var(--warm-ivory); }

/* Drawer footer */
.drawer-footer {
  padding: 24px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.drawer-footer-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(245,243,239,0.35);
  line-height: 1.5;
  text-align: center;
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-stone);
  background: var(--stone-light);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  opacity: 0.4;
}
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--charcoal); }
.breadcrumb-list li:last-child { color: var(--charcoal); font-weight: 500; }

/* --- HERO SECTIONS --- */
.hero {
  background: var(--deep-forest);
  color: var(--warm-ivory);
  padding: var(--section-v) 0;
}

.hero-home {
  padding: 112px 0 96px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--warm-ivory);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero .lead {
  color: rgba(245,243,239,0.7);
  max-width: 560px;
  margin-bottom: 40px;
}

.telehealth-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-gold);
  border: 1px solid rgba(194,161,74,0.35);
  border-radius: 3px;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-treatment {
  padding: 72px 0 64px;
}

/* --- PAGE INTRO --- */
.page-intro {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--soft-stone);
}
.page-intro h1 { margin-bottom: 16px; }
.page-intro .lead { max-width: 660px; }

/* --- SECTIONS --- */
.section { padding: var(--section-v) 0; }
.section-sm { padding: var(--section-v-sm) 0; }

.section-alt { background: var(--stone-light); }
.section-dark {
  background: var(--deep-forest);
  color: var(--warm-ivory);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--warm-ivory); }
.section-dark .lead, .section-dark p { color: rgba(245,243,239,0.75); }
.section-dark .eyebrow { color: var(--muted-gold); }

.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }

/* --- CARDS --- */
.card {
  background: var(--white);
  border: 1px solid var(--soft-stone);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--soft-stone);
}

.card-link { display: block; color: inherit; }
.card-link:hover .card { box-shadow: var(--shadow-hover); }

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--muted-gold);
}

.card-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: 8px;
}

.card h3 { margin-bottom: 8px; font-size: 1.0625rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-gold);
}
.card-cta::after { content: '→'; }

/* --- GRIDS --- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- TRUST / FEATURE ROWS --- */
.feature-row { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 768px) {
  .feature-row { flex-direction: row; align-items: flex-start; gap: 48px; }
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-gold);
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-content h4 { margin-bottom: 6px; font-size: 1rem; }
.feature-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* --- HOW IT WORKS STRIP --- */
.how-it-works-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .how-it-works-strip { flex-direction: row; }
}

.hiw-step {
  flex: 1;
  padding: 32px 28px;
  border-bottom: 1px solid var(--soft-stone);
  position: relative;
}
@media (min-width: 768px) {
  .hiw-step {
    border-bottom: none;
    border-right: 1px solid var(--soft-stone);
  }
  .hiw-step:last-child { border-right: none; }
}

.hiw-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--muted-gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.hiw-step h4 { margin-bottom: 8px; }
.hiw-step p { font-size: 0.875rem; color: var(--text-muted); }

/* --- FAQ ACCORDION --- */
.faq-list { display: flex; flex-direction: column; gap: 4px; }

details.faq-item {
  background: var(--white);
  border: 1px solid var(--soft-stone);
  border-radius: var(--radius);
  overflow: hidden;
}

details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  list-style: none;
  gap: 16px;
  transition: background 0.15s ease;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { background: var(--stone-light); }

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted-gold);
  transition: transform 0.2s ease;
}
details.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer p + p { margin-top: 12px; }

/* --- CTA BAND --- */
.cta-band {
  background: var(--deep-forest);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--warm-ivory);
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.cta-band p {
  color: rgba(245,243,239,0.65);
  margin-bottom: 32px;
  font-size: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- DISCLAIMER --- */
.disclaimer {
  background: var(--stone-light);
  border-top: 1px solid var(--soft-stone);
  padding: 32px 0;
}
.disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 900px;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--charcoal);
  color: rgba(245,243,239,0.55);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand { max-width: 260px; }

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo .logo-oak { color: var(--warm-ivory); }
.footer-logo .logo-md  { color: var(--muted-gold); }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(245,243,239,0.45);
  margin-bottom: 20px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(245,243,239,0.3);
  line-height: 1.6;
}

.footer-col h6 {
  color: rgba(245,243,239,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(245,243,239,0.55);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--warm-ivory); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8125rem; color: rgba(245,243,239,0.4); }
.footer-legal a:hover { color: var(--warm-ivory); }
.footer-copy { font-size: 0.8125rem; color: rgba(245,243,239,0.3); }

/* --- TREATMENT DETAIL PAGE --- */
.treatment-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
}

.highlight-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted-gold);
  margin-top: 2px;
}

/* --- COMPARISON TABLE --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 32px 0;
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  border: 1px solid var(--soft-stone);
  text-align: left;
}
.comparison-table th {
  background: var(--stone-light);
  font-weight: 600;
  font-size: 0.875rem;
}
.comparison-table tr:nth-child(even) td { background: var(--stone-light); }

/* --- SIDEBAR LAYOUT (treatment pages) --- */
.treatment-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .treatment-layout { grid-template-columns: 1fr 320px; }
}

.treatment-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--soft-stone);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.sidebar-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--soft-stone);
}

.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}
.sidebar-links a:hover {
  background: var(--stone-light);
  color: var(--charcoal);
}

/* --- MEDICATION DIRECTORY --- */
.med-category { margin-bottom: 56px; }
.med-category-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--soft-stone);
}

.med-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .med-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .med-grid { grid-template-columns: repeat(4, 1fr); } }

.med-card {
  background: var(--white);
  border: 1px solid var(--soft-stone);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.med-card:hover {
  border-color: var(--muted-gold);
  box-shadow: 0 2px 8px rgba(194,161,74,0.12);
  color: var(--charcoal);
}

/* --- START PAGE --- */
.start-page { padding: 80px 0; text-align: center; }
.start-page h1 { margin-bottom: 16px; }
.start-page .lead { max-width: 560px; margin: 0 auto 40px; }

.start-portal {
  display: inline-block;
  background: var(--stone-light);
  border: 2px dashed var(--soft-stone);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}
.start-portal p { color: var(--text-muted); font-size: 0.9375rem; margin-top: 16px; }

.start-back {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* --- PROSE CONTENT --- */
.prose { max-width: 720px; }
.prose h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.prose h3 { margin: 32px 0 12px; font-size: 1.125rem; }
.prose p { margin-bottom: 16px; color: var(--text-muted); }
.prose ul, .prose ol { margin: 16px 0 24px 24px; color: var(--text-muted); }
.prose li { margin-bottom: 8px; line-height: 1.6; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { color: var(--charcoal); font-weight: 600; }

/* --- TRUST BADGES --- */
.trust-badges {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245,243,239,0.6);
}
.trust-badge svg { width: 16px; height: 16px; color: var(--muted-gold); }

/* --- HOMEPAGE SPECIFIC --- */
.services-grid { margin-top: 0; }

.service-card {
  background: var(--white);
  border: 1px solid var(--soft-stone);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(194,161,74,0.3);
  transform: translateY(-2px);
}
.service-card-icon {
  width: 36px;
  height: 36px;
  color: var(--muted-gold);
}
.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.service-card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted-gold);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* --- WHY OAKMD --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-item { text-align: center; }
.why-item .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(194,161,74,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--muted-gold);
}
.why-item .why-icon svg { width: 24px; height: 24px; }
.why-item h4 { font-size: 0.9375rem; margin-bottom: 8px; }
.why-item p { font-size: 0.875rem; color: var(--text-muted); }

/* --- RELATED LINKS --- */
.related-links { display: flex; flex-direction: column; gap: 8px; }
.related-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--soft-stone);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.related-link-item:hover {
  border-color: var(--muted-gold);
  box-shadow: 0 2px 8px rgba(194,161,74,0.1);
}
.related-link-item::after { content: '→'; margin-left: auto; color: var(--muted-gold); }

/* --- EXPLORE LINKS GRID --- */
.explore-links-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 768px) {
  .explore-links-grid { grid-template-columns: repeat(3, 1fr); }
}
.explore-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--soft-stone);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.explore-link-item:hover {
  border-color: var(--muted-gold);
  box-shadow: 0 2px 8px rgba(194,161,74,0.1);
  color: var(--charcoal);
}
.explore-link-item::after { content: '→'; margin-left: auto; color: var(--muted-gold); }

/* --- UTILS --- */
.text-gold  { color: var(--muted-gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.gap-4 { gap: 16px; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }

/* ===================================================
   HOMEPAGE REDESIGN — Editorial Ivory Layout
   =================================================== */

/* --- Hero Light (Ivory Background) --- */
.hero-light {
  background: var(--warm-ivory);
  color: var(--charcoal);
  padding: 120px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.hero-light-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-light-inner h1,
.hero-light-inner p,
.hero-light-inner .hero-kicker,
.hero-light-inner .hero-subtitle {
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-display-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-display-h1 em {
  font-style: italic;
  color: var(--charcoal);
}

.hero-seo-h1 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-text-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(90,90,82,0.35);
  transition: color 0.15s ease;
}
.hero-text-link:hover { color: var(--charcoal); text-decoration-color: var(--charcoal); }

/* --- Trust Strip --- */
.trust-strip {
  background: var(--stone-light);
  border-top: 1px solid var(--soft-stone);
  border-bottom: 1px solid var(--soft-stone);
  padding: 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 16px 20px;
  border-right: 1px solid var(--soft-stone);
  line-height: 1.35;
}

.trust-strip-item:last-child { border-right: none; }

.trust-icon {
  width: 16px;
  height: 16px;
  stroke: var(--muted-gold);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--soft-stone);
    padding: 14px 20px;
  }
  .trust-strip-item:nth-child(odd) {
    border-right: 1px solid var(--soft-stone);
  }
  .trust-strip-item:last-child,
  .trust-strip-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
}

@media (max-width: 520px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
  .trust-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--soft-stone);
    padding: 12px 20px;
  }
  .trust-strip-item:last-child { border-bottom: none; }
}

/* --- Display Typography (serif headings) --- */
.display-serif {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.display-serif-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}

/* --- Process Section (4-step cards) --- */
.process-intro {
  max-width: 560px;
  margin: 0 auto;
}

.section-display-label {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-display-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Section kicker / title / sub helpers */
.section-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

/* Treatment Programs Grid */
.programs-section { background: var(--warm-ivory); }

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .programs-grid { gap: 24px; }
}

.program-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--charcoal);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  border-color: var(--muted-gold);
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
}

.program-card:hover .program-card-cta {
  color: var(--charcoal);
}

.program-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.program-card-icon {
  width: 24px;
  height: 24px;
  stroke: var(--muted-gold);
  flex-shrink: 0;
}

.program-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
}

.program-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: 6px;
}

.program-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 18px 0;
}

.program-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  flex: 1;
}

.program-card-benefits li {
  font-size: 0.8125rem;
  color: var(--charcoal);
  line-height: 1.4;
  padding: 5px 0 5px 22px;
  position: relative;
}

.program-card-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--muted-gold);
  font-weight: 700;
  font-size: 0.8rem;
}

.program-card-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted-gold);
  letter-spacing: 0.02em;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s ease;
}

/* ── Process Grid ─────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 48px 0 44px;
}

@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-card {
  background: var(--white);
  border: 1px solid var(--soft-stone);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  text-align: left;
}

.process-card-icon {
  width: 32px;
  height: 32px;
  color: var(--muted-gold);
  margin-bottom: 16px;
  stroke-width: 1.25;
}

.process-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.process-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Pillars Section (dark forest) --- */
.section-pillars {
  background: var(--deep-forest);
  color: var(--warm-ivory);
  padding: var(--section-v) 0;
}

.pillars-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 600;
  color: var(--warm-ivory);
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

.pillar-card {
  background: rgba(245,243,239,0.05);
  border: 1px solid rgba(245,243,239,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}

.pillar-card-icon {
  width: 32px;
  height: 32px;
  color: var(--muted-gold);
  margin-bottom: 16px;
  stroke-width: 1.25;
}

.pillar-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--warm-ivory);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pillar-card p {
  font-size: 0.8125rem;
  color: rgba(245,243,239,0.55);
  line-height: 1.6;
}

/* --- Pricing Tiers --- */
.pricing-intro { margin-bottom: 52px; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-tier {
  border: 1px solid var(--soft-stone);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.pricing-tier-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.pricing-featured .pricing-tier-name {
  color: var(--muted-gold);
}

.pricing-tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-tier-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.pricing-tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--soft-stone);
  border-radius: 50%;
}

.pricing-featured .pricing-tier-features li::before {
  background: var(--muted-gold);
}

.btn-outline-charcoal {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--soft-stone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-outline-charcoal:hover {
  border-color: var(--charcoal);
  background: var(--stone-light);
}
