/* ── LEAD Recovery Center — Shared Design System ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --sage:        #4a6741;
  --sage-light:  #6b8f62;
  --sage-pale:   #eef3ec;
  --sage-mid:    #c4d6c1;
  --earth:       #8b6f47;
  --earth-light: #c9a97a;
  --earth-pale:  #f5efe6;
  --cream:       #faf8f3;
  --warm-white:  #fffdf9;
  --charcoal:    #2a2a28;
  --mid:         #5a5a56;
  --muted:       #8a8a84;
  --border:      rgba(74,103,65,0.15);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --radius:      4px;
  --radius-lg:   12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo-link { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.logo-link:hover { opacity: 0.88; transition: opacity 0.2s; }
/* Legacy fallback for any remaining text logos */
.logo { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--sage); letter-spacing: 0.02em; text-decoration: none; }
.logo span { color: var(--earth); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13.5px; font-weight: 400; color: var(--mid); text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--sage); }
.nav-links a.active::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--sage); border-radius:2px; }

.nav-cta { background: var(--sage); color:#fff; padding: 10px 22px; border-radius:50px; font-weight:500; font-size:13.5px; text-decoration:none; transition: all 0.2s; white-space:nowrap; }
.nav-cta:hover { background: var(--sage-light); transform: translateY(-1px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  margin-top: 68px;
  padding: 72px 80px 64px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { font-size:11px; font-weight:500; letter-spacing:0.18em; color:var(--earth); text-transform:uppercase; margin-bottom:16px; }
.page-hero h1 { font-family:var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight:500; line-height:1.1; color:var(--charcoal); margin-bottom:20px; }
.page-hero p { font-size:16px; color:var(--mid); line-height:1.75; max-width:600px; }

/* ── SHARED UTILITIES ── */
.eyebrow { font-size:11px; font-weight:500; letter-spacing:0.18em; color:var(--earth); text-transform:uppercase; margin-bottom:16px; }
.section-label { font-size:11px; font-weight:500; letter-spacing:0.16em; text-transform:uppercase; color:var(--earth-light); margin-bottom:40px; display:flex; align-items:center; gap:16px; }
.section-label::after { content:''; flex:1; height:1px; background:rgba(255,255,255,0.1); }

.btn-primary { background:var(--sage); color:#fff; padding:14px 30px; border-radius:50px; font-size:14px; font-weight:500; text-decoration:none; letter-spacing:0.04em; transition:all 0.2s; display:inline-flex; align-items:center; gap:8px; border:none; cursor:pointer; }
.btn-primary:hover { background:var(--sage-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(74,103,65,0.25); }
.btn-outline { background:transparent; color:var(--sage); padding:13px 28px; border-radius:50px; font-size:14px; font-weight:500; text-decoration:none; letter-spacing:0.04em; border:1.5px solid var(--sage-mid); transition:all 0.2s; display:inline-flex; align-items:center; gap:8px; }
.btn-outline:hover { background:var(--sage-pale); border-color:var(--sage); }
.btn-text { color:var(--charcoal); font-size:14px; font-weight:400; text-decoration:none; border-bottom:1px solid var(--earth-light); padding-bottom:2px; transition:color 0.2s; }
.btn-text:hover { color:var(--earth); }

/* ── CONTENT AREA ── */
.content-wrap { max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 88px 80px; }
.section-pad-sm { padding: 60px 80px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--sage);
  padding: 56px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band h2 { font-family:var(--serif); font-size:32px; font-weight:500; color:#fff; line-height:1.2; }
.cta-band p { color:rgba(255,255,255,0.7); font-size:15px; margin-top:8px; }
.cta-band a { background:rgba(255,255,255,0.15); color:#fff; padding:14px 28px; border-radius:50px; border:1px solid rgba(255,255,255,0.3); text-decoration:none; font-size:15px; font-weight:500; transition:background 0.2s; white-space:nowrap; }
.cta-band a:hover { background:rgba(255,255,255,0.25); }

/* ── INSURANCE STRIP ── */
.insurance-strip { padding:48px 80px; background:var(--warm-white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); display:flex; align-items:center; gap:48px; flex-wrap:wrap; }
.insurance-strip .label { font-size:11px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); white-space:nowrap; flex-shrink:0; }
.insurance-strip .logos { display:flex; gap:32px; flex-wrap:wrap; align-items:center; }
.insurance-strip .logo-item { font-family:var(--serif); font-size:17px; font-weight:500; color:var(--mid); }

/* ── FOOTER ── */
footer { background:var(--charcoal); padding:48px 80px; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; margin-bottom:32px; }
.footer-logo { font-family:var(--serif); font-size:20px; font-weight:600; color:rgba(255,255,255,0.7); }
.footer-nav { display:flex; gap:24px; list-style:none; flex-wrap:wrap; }
.footer-nav a { font-size:12.5px; color:rgba(255,255,255,0.4); text-decoration:none; transition:color 0.2s; }
.footer-nav a:hover { color:rgba(255,255,255,0.7); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.28); letter-spacing:0.04em; }
.footer-dhcs { font-size:11px; color:rgba(255,255,255,0.22); }

/* ── MOBILE CTA BAR ── */
.mobile-bar { display:none; position:fixed; bottom:0; left:0; right:0; background:var(--sage); text-align:center; padding:15px; z-index:200; }
.mobile-bar a { color:#fff; font-size:15px; font-weight:500; text-decoration:none; letter-spacing:0.04em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up { opacity:0; }
.fade-up.visible { animation: fadeUp 0.6s ease forwards; }
.fade-up:nth-child(2).visible { animation-delay:0.1s; }
.fade-up:nth-child(3).visible { animation-delay:0.2s; }
.fade-up:nth-child(4).visible { animation-delay:0.3s; }
.fade-up:nth-child(5).visible { animation-delay:0.4s; }
.fade-up:nth-child(6).visible { animation-delay:0.5s; }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  nav { padding:0 24px; }
  .nav-links { display:none; }
  .page-hero { padding:56px 40px 48px; }
  .section-pad { padding:64px 40px; }
  .section-pad-sm { padding:44px 40px; }
  .cta-band { padding:48px 40px; }
  .insurance-strip { padding:40px; }
  footer { padding:40px; }
}
@media(max-width:640px){
  .mobile-bar { display:block; }
  body { padding-bottom:56px; }
  .page-hero { padding:44px 24px 36px; }
  .section-pad { padding:52px 24px; }
  .section-pad-sm { padding:36px 24px; }
  .cta-band { padding:40px 24px; text-align:center; justify-content:center; }
  .insurance-strip { padding:32px 24px; }
  footer { padding:32px 24px; }
  .footer-bottom { flex-direction:column; text-align:center; }
}


/* == index.html == */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --sage: #4a6741;
    --sage-light: #6b8f62;
    --sage-pale: #eef3ec;
    --sage-mid: #c4d6c1;
    --earth: #8b6f47;
    --earth-light: #c9a97a;
    --earth-pale: #f5efe6;
    --cream: #faf8f3;
    --warm-white: #fffdf9;
    --charcoal: #2a2a28;
    --mid: #5a5a56;
    --muted: #8a8a84;
    --border: rgba(74,103,65,0.15);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --radius: 4px;
    --radius-lg: 12px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,248,243,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }

  .logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--sage);
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .logo span { color: var(--earth); }

  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    font-size: 13.5px;
    font-weight: 400;
    color: var(--mid);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--sage); }

  .nav-cta {
    background: var(--sage);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 13.5px !important;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--sage-light); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    padding-top: 68px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=85&fit=crop') center/cover no-repeat;
    z-index: 0;
  }

  /* Multi-layer overlay: dark vignette left-heavy so form is readable */
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(100deg, rgba(20,28,20,0.82) 0%, rgba(20,28,20,0.65) 45%, rgba(20,28,20,0.25) 100%);
  }

  /* Headline text floats right side */
  .hero-headline {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 420px;
    text-align: right;
  }

  .hero-headline .eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: rgba(212,176,122,0.9);
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
  }

  .hero-headline h1 {
    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .hero-headline h1 em {
    font-style: italic;
    color: #d4b07a;
  }

  .hero-headline p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 0;
  }

  /* Quote ribbon at very bottom */
  .hero-quote {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    background: rgba(10,18,10,0.55);
    backdrop-filter: blur(6px);
    padding: 16px 80px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(212,176,122,0.2);
  }
  .hero-quote blockquote {
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.75);
  }
  .hero-quote cite {
    font-size: 11px;
    color: rgba(212,176,122,0.7);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* ── HERO FORM CARD ── */
  .hero-form-card {
    position: relative;
    z-index: 2;
    margin-left: 6%;
    width: 100%;
    max-width: 420px;
    background: rgba(250,245,238,0.97);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 36px 36px 32px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    border: 1px solid rgba(212,176,122,0.25);
    flex-shrink: 0;
  }

  .hero-form-card .hf-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--earth);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
  }

  .hero-form-card h2 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .hero-form-card .hf-sub {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 24px;
    line-height: 1.55;
  }

  .hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .hf-group {
    display: flex; flex-direction: column; gap: 5px;
    margin-bottom: 12px;
  }

  .hf-group label {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--mid);
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .hf-group input,
  .hf-group select {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 13px;
    font-size: 14px;
    font-family: var(--sans);
    color: var(--charcoal);
    background: var(--warm-white);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .hf-group input:focus,
  .hf-group select:focus { border-color: var(--sage-light); }

  .hf-submit {
    width: 100%;
    background: var(--sage);
    color: #fff;
    padding: 13px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    font-family: var(--sans);
    margin-top: 6px;
  }
  .hf-submit:hover { background: var(--sage-light); }

  .hf-phone {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: var(--mid);
  }
  .hf-phone a {
    color: var(--sage);
    font-weight: 500;
    text-decoration: none;
    font-family: var(--serif);
    font-size: 15px;
  }

  .hf-trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .hf-badge {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 50px;
  }

  /* keep btn styles for other sections */
  .eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--earth);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .btn-primary {
    background: var(--sage);
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--sage-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,103,65,0.25); }
  .btn-secondary {
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--earth-light);
    padding-bottom: 2px;
    transition: color 0.2s;
  }
  .btn-secondary:hover { color: var(--earth); }
  .trust-badge {
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 50px;
  }

  /* ── PHASES ── */
  .phases {
    background: var(--charcoal);
    padding: 80px;
  }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--earth-light);
    margin-bottom: 48px;
    display: flex; align-items: center; gap: 16px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
  }

  .phases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .phase-card {
    background: rgba(255,255,255,0.04);
    padding: 36px 32px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
  }
  .phase-card:hover { background: rgba(255,255,255,0.07); }

  .phase-number {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 400;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    margin-bottom: 16px;
  }

  .phase-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
  }

  .phase-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
  }

  /* ── ABOUT ── */
  .about {
    padding: 120px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .about-text h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 500;
    line-height: 1.18;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }

  .about-text p {
    font-size: 15.5px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 48px;
  }

  .about-stat {
    background: var(--warm-white);
    padding: 28px;
  }

  .about-stat-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--sage);
  }

  .about-stat-label {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.04em;
  }

  .about-visual {
    position: relative;
  }

  .about-card {
    background: var(--sage-pale);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--sage-mid);
  }

  .about-card-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 32px;
    line-height: 1.3;
  }

  .pillar-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
  }

  .pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--sage-mid);
  }
  .pillar-item:last-child { border-bottom: none; }

  .pillar-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sage-light);
    margin-top: 6px;
    flex-shrink: 0;
  }

  .pillar-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 3px;
  }

  .pillar-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.6;
  }

  /* ── PROGRAM ── */
  .program {
    background: var(--cream);
    padding: 100px 80px;
  }

  .program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
  }

  .program-header h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.15;
    max-width: 480px;
  }

  .program-intro {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.75;
    max-width: 300px;
    text-align: right;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.25s;
    cursor: default;
  }
  .service-card:hover {
    border-color: var(--sage-mid);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(74,103,65,0.1);
  }

  .service-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--sage-pale);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
  }

  .service-name {
    font-weight: 500;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .service-desc {
    font-size: 13.5px;
    color: var(--mid);
    line-height: 1.65;
  }

  /* ── INSURANCE ── */
  .insurance {
    padding: 60px 80px;
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .insurance-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .insurance-logos {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
  }

  .insurance-item {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--mid);
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }
  .insurance-item:hover { color: var(--sage); }

  /* ── BLOG ── */
  .blog {
    padding: 100px 80px;
    background: var(--cream);
  }

  .blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
  }

  .blog-header h2 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 500;
    color: var(--charcoal);
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .blog-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s;
    cursor: pointer;
  }
  .blog-card:hover {
    border-color: var(--sage-mid);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(74,103,65,0.08);
  }

  .blog-card-body {
    padding: 28px;
  }

  .blog-date {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .blog-title {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .blog-excerpt {
    font-size: 13.5px;
    color: var(--mid);
    line-height: 1.65;
  }

  .blog-read-more {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--sage);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .blog-card:hover .blog-read-more { border-color: var(--sage-mid); }

  /* ── CONTACT ── */
  .contact {
    background: var(--sage);
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .contact-left h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
  }

  .contact-left p {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 36px;
  }

  .contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 14px 28px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-family: var(--serif);
    font-weight: 500;
    transition: background 0.2s;
  }
  .contact-phone:hover { background: rgba(255,255,255,0.22); }

  .contact-address {
    margin-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
  }

  .contact-form {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
  }

  .contact-form h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 28px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--mid);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--sans);
    color: var(--charcoal);
    background: var(--warm-white);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--sage-light);
  }

  .form-group textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    width: 100%;
    background: var(--sage);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--sage-light); }

  /* ── PHOTO GALLERY ── */
  .gallery {
    padding: 100px 80px;
    background: var(--charcoal);
  }

  .gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 32px;
  }

  .gallery-header h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 500;
    color: #fff;
    line-height: 1.12;
  }

  .gallery-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    max-width: 260px;
    text-align: right;
    line-height: 1.6;
  }

  /* Bento gallery grid — 7 photos */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 220px 220px;
    gap: 12px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.06);
    cursor: pointer;
  }

  /* Row 1 */
  /* Living area — wide hero slot */
  .gallery-item:nth-child(1) { grid-column: 1 / 7;  grid-row: 1; }
  /* Bedroom 1 (cream/linen) — tall, spans rows 1+2 */
  .gallery-item:nth-child(2) { grid-column: 7 / 10; grid-row: 1 / 3; }
  /* Outdoor garden — top right */
  .gallery-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1; }

  /* Row 2 */
  /* Bedroom 2 (taupe twin) */
  .gallery-item:nth-child(4) { grid-column: 1 / 5;  grid-row: 2; }
  /* Bedroom 3 (modern) */
  .gallery-item:nth-child(5) { grid-column: 5 / 7;  grid-row: 2; }
  /* Outdoor continues right */
  .gallery-item:nth-child(6) { grid-column: 10 / 13; grid-row: 2; }

  /* Row 3 — full-width split: bathroom + dining */
  .gallery-item:nth-child(7) { grid-column: 1 / 7;  grid-row: 3; }
  .gallery-item:nth-child(8) { grid-column: 7 / 13; grid-row: 3; }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.82) saturate(1.08);
  }

  .gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.97) saturate(1.15);
  }

  /* Warm tone overlay on each photo */
  .gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(139,111,71,0.08) 0%, rgba(74,103,65,0.06) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: var(--radius-lg);
    transition: opacity 0.4s;
  }
  .gallery-item:hover::before { opacity: 0; }

  /* Label sits above warm overlay */
  .gallery-label { z-index: 2; }

  /* Label overlay on each photo */
  .gallery-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 20px 16px;
    background: linear-gradient(to top, rgba(30,28,24,0.75) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .gallery-label-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .gallery-label-icon {
    font-size: 16px;
    opacity: 0.6;
  }

  /* Placeholder shown before real photos are added */
  .gallery-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1.5px dashed rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    transition: background 0.2s;
  }
  .gallery-placeholder:hover { background: rgba(255,255,255,0.07); }

  .gallery-placeholder-icon { font-size: 28px; opacity: 0.3; }

  .gallery-placeholder-label {
    font-size: 11.5px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 16px;
  }

  .gallery-placeholder-url {
    font-size: 10.5px;
    color: rgba(255,255,255,0.18);
    font-family: monospace;
    text-align: center;
    padding: 0 16px;
    word-break: break-all;
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(20,20,18,0.95);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 32px;
  }
  .lightbox.open { display: flex; }

  .lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  }

  .lightbox-close {
    position: absolute;
    top: 24px; right: 28px;
    color: rgba(255,255,255,0.6);
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: #fff; }

  .lightbox-caption {
    position: absolute;
    bottom: 28px; left: 0; right: 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  @media (max-width: 1024px) {
    .gallery { padding: 72px 40px; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
      height: auto;
    }
    .gallery-item,
    .gallery-item:nth-child(n) {
      grid-column: auto;
      grid-row: auto;
      height: 200px;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(7) { grid-column: span 2; height: 260px; }
  }

  @media (max-width: 600px) {
    .gallery { padding: 56px 24px; }
    .gallery-header { flex-direction: column; align-items: flex-start; }
    .gallery-header p { text-align: left; max-width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item,
    .gallery-item:nth-child(n) { grid-column: auto !important; height: 220px; }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    padding: 48px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-logo {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
  }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.7); }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.04em;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate { opacity: 0; }
  .animate.visible { animation: fadeUp 0.65s ease forwards; }
  .animate:nth-child(2) { animation-delay: 0.1s; }
  .animate:nth-child(3) { animation-delay: 0.2s; }
  .animate:nth-child(4) { animation-delay: 0.3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero { align-items: flex-start; padding-top: 88px; padding-bottom: 80px; flex-direction: column; gap: 32px; }
    .hero-form-card { margin-left: 5%; margin-right: 5%; max-width: 100%; }
    .hero-headline { position: static; transform: none; max-width: 100%; text-align: left; padding: 0 5%; }
    .hero-quote { padding: 14px 40px; }
    .about { grid-template-columns: 1fr; gap: 48px; padding: 72px 40px; }
    .phases { padding: 60px 40px; }
    .phases-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .contact { grid-template-columns: 1fr; padding: 72px 40px; }
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .program, .blog { padding: 72px 40px; }
    .insurance { padding: 48px 40px; flex-wrap: wrap; }
    footer { padding: 36px 40px; }
    .program-header { flex-direction: column; align-items: flex-start; }
    .program-intro { text-align: left; max-width: 100%; }
  }

  @media (max-width: 600px) {
    .hero { padding-top: 80px; padding-bottom: 60px; }
    .hero-form-card { margin: 0 16px; padding: 28px 22px; }
    .hero-headline { padding: 0 16px; }
    .hero-headline h1 { font-size: 32px; }
    .hero-quote { padding: 12px 24px; display: none; }
    .hf-row { grid-template-columns: 1fr; }
    .phases { padding: 48px 24px; }
    .phases-grid { grid-template-columns: 1fr; }
    .about { padding: 60px 24px; }
    .program, .blog { padding: 60px 24px; }
    .services-grid, .blog-grid { grid-template-columns: 1fr; }
    .contact { padding: 60px 24px; }
    footer { padding: 32px 24px; flex-direction: column; gap: 20px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .insurance { padding: 40px 24px; }
    .about-stat-grid { grid-template-columns: 1fr; }
  }

  /* Sticky mobile call bar */
  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--sage);
    text-align: center;
    padding: 16px;
    z-index: 200;
  }
  .mobile-cta a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
  }
  @media (max-width: 640px) {
    .mobile-cta { display: block; }
    body { padding-bottom: 56px; }
  }

/* == about.html == */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.about-prose h2 { font-family:var(--serif); font-size:clamp(28px,3vw,40px); font-weight:500; color:var(--charcoal); line-height:1.2; margin-bottom:20px; }
.about-prose p { font-size:15.5px; color:var(--mid); line-height:1.82; margin-bottom:18px; }
.about-prose p:last-child { margin-bottom:0; }

.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.value-card { background:var(--sage-pale); border:1px solid var(--sage-mid); border-radius:var(--radius-lg); padding:28px; }
.value-icon { font-size:22px; margin-bottom:12px; }
.value-title { font-family:var(--serif); font-size:19px; font-weight:500; color:var(--sage); margin-bottom:8px; }
.value-desc { font-size:13.5px; color:var(--mid); line-height:1.65; }

.timeline { display:flex; flex-direction:column; gap:0; }
.tl-item { display:flex; gap:28px; padding-bottom:40px; position:relative; }
.tl-item:last-child { padding-bottom:0; }
.tl-item:not(:last-child)::before { content:''; position:absolute; left:15px; top:32px; bottom:0; width:1px; background:var(--border); }
.tl-dot { width:32px; height:32px; border-radius:50%; background:var(--sage-pale); border:2px solid var(--sage-mid); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.tl-dot::after { content:''; width:8px; height:8px; border-radius:50%; background:var(--sage); }
.tl-body h3 { font-family:var(--serif); font-size:19px; font-weight:500; color:var(--charcoal); margin-bottom:6px; }
.tl-body p { font-size:13.5px; color:var(--mid); line-height:1.65; }

.stat-band { background:var(--charcoal); padding:64px 80px; }
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.06); border-radius:var(--radius-lg); overflow:hidden; }
.stat-box { background:var(--charcoal); padding:36px 32px; text-align:center; }
.stat-num { font-family:var(--serif); font-size:48px; font-weight:400; color:#fff; line-height:1; margin-bottom:8px; }
.stat-lbl { font-size:12.5px; color:rgba(255,255,255,0.45); letter-spacing:0.06em; text-transform:uppercase; }

.quote-section { background:var(--earth-pale); padding:72px 80px; text-align:center; border-top:1px solid rgba(139,111,71,0.12); }
.quote-section blockquote { font-family:var(--serif); font-size:clamp(22px,3vw,32px); font-style:italic; color:var(--charcoal); max-width:700px; margin:0 auto 16px; line-height:1.5; }
.quote-section cite { font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:0.1em; font-style:normal; }

@media(max-width:900px){
  .about-grid { grid-template-columns:1fr; gap:48px; }
  .stat-band { padding:52px 40px; }
  .stats-row { grid-template-columns:1fr 1fr; }
  .quote-section { padding:56px 40px; }
}
@media(max-width:600px){
  .values-grid { grid-template-columns:1fr; }
  .stats-row { grid-template-columns:1fr 1fr; }
  .stat-band { padding:44px 24px; }
  .quote-section { padding:48px 24px; }
}

/* == program.html == */
.program-intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.program-intro-grid h2 { font-family:var(--serif); font-size:clamp(28px,3vw,42px); font-weight:500; color:var(--charcoal); line-height:1.18; margin-bottom:20px; }
.program-intro-grid p { font-size:15.5px; color:var(--mid); line-height:1.82; margin-bottom:16px; }

.phases-dark { background:var(--charcoal); padding:80px; }
.phase-row { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; }
.phase-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.07); padding:40px 32px; transition:background 0.3s; }
.phase-card:hover { background:rgba(255,255,255,0.08); }
.phase-num { font-family:var(--serif); font-size:60px; font-weight:400; color:rgba(255,255,255,0.07); line-height:1; margin-bottom:16px; }
.phase-title { font-family:var(--serif); font-size:21px; font-weight:500; color:#fff; margin-bottom:10px; }
.phase-desc { font-size:13.5px; color:rgba(255,255,255,0.5); line-height:1.7; }

.modalities-section { padding:88px 80px; background:var(--warm-white); }
.modalities-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:56px; gap:40px; flex-wrap:wrap; }
.modalities-header h2 { font-family:var(--serif); font-size:clamp(28px,3vw,42px); font-weight:500; color:var(--charcoal); line-height:1.15; }
.modalities-header p { font-size:14px; color:var(--mid); line-height:1.75; max-width:280px; text-align:right; }
.modalities-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.modality-card { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; transition:all 0.25s; }
.modality-card:hover { border-color:var(--sage-mid); transform:translateY(-3px); box-shadow:0 12px 36px rgba(74,103,65,0.1); }
.modality-tag { display:inline-block; background:var(--sage-pale); color:var(--sage); font-size:10px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; padding:4px 10px; border-radius:50px; margin-bottom:14px; border:1px solid var(--sage-mid); }
.modality-name { font-family:var(--serif); font-size:20px; font-weight:500; color:var(--charcoal); margin-bottom:10px; line-height:1.25; }
.modality-desc { font-size:13.5px; color:var(--mid); line-height:1.65; }

.pillars-section { background:var(--cream); padding:80px; border-top:1px solid var(--border); }

/* ── PROGRAM TRACKS ── */
.tracks-section { background:var(--warm-white); padding:88px 80px; border-top:1px solid var(--border); }
.tracks-header { text-align:center; margin-bottom:56px; }
.tracks-header h2 { font-family:var(--serif); font-size:clamp(28px,3vw,42px); font-weight:500; color:var(--charcoal); line-height:1.15; margin-bottom:14px; }
.tracks-header p { font-size:15px; color:var(--mid); max-width:520px; margin:0 auto; line-height:1.75; }
.tracks-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.track-card { border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); transition:all 0.25s; }
.track-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(74,103,65,0.12); }
.track-card-top { padding:44px 44px 36px; }
.track-card-top.couples { background:var(--earth-pale); border-bottom:1px solid rgba(139,111,71,0.15); }
.track-card-top.pets { background:var(--sage-pale); border-bottom:1px solid var(--sage-mid); }
.track-badge { display:inline-flex; align-items:center; gap:8px; font-size:10px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; padding:5px 14px; border-radius:50px; margin-bottom:20px; }
.track-badge.couples { background:rgba(139,111,71,0.12); color:var(--earth); border:1px solid rgba(139,111,71,0.2); }
.track-badge.pets { background:rgba(74,103,65,0.1); color:var(--sage); border:1px solid var(--sage-mid); }
.track-icon { font-size:44px; margin-bottom:16px; display:block; }
.track-title { font-family:var(--serif); font-size:28px; font-weight:500; color:var(--charcoal); line-height:1.15; margin-bottom:12px; }
.track-subtitle { font-size:14px; font-style:italic; color:var(--mid); margin-bottom:20px; font-family:var(--serif); }
.track-desc { font-size:14.5px; color:var(--mid); line-height:1.8; }
.track-card-bottom { background:var(--warm-white); padding:28px 44px; }
.track-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:24px; }
.track-features li { display:flex; align-items:flex-start; gap:12px; font-size:13.5px; color:var(--mid); line-height:1.55; }
.track-features li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--sage-light); flex-shrink:0; margin-top:5px; }
.track-cta { display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:500; color:var(--sage); text-decoration:none; border-bottom:1px solid var(--sage-mid); padding-bottom:2px; transition:color 0.2s; }
.track-cta:hover { color:var(--sage-light); }

@media(max-width:1024px){ .tracks-section { padding:64px 40px; } .tracks-grid { grid-template-columns:1fr; } }
@media(max-width:640px){ .tracks-section { padding:52px 24px; } .track-card-top,.track-card-bottom { padding:28px 24px; } }
.pillars-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.pillar-card { background:var(--warm-white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 24px; text-align:center; }
.pillar-icon { font-size:28px; margin-bottom:14px; }
.pillar-name { font-family:var(--serif); font-size:17px; font-weight:500; color:var(--charcoal); margin-bottom:8px; }
.pillar-desc { font-size:12.5px; color:var(--mid); line-height:1.6; }

@media(max-width:1024px){
  .program-intro-grid { grid-template-columns:1fr; gap:48px; }
  .phases-dark { padding:56px 40px; }
  .phase-row { grid-template-columns:1fr 1fr; }
  .modalities-section { padding:64px 40px; }
  .modalities-header p { text-align:left; max-width:100%; }
  .modalities-grid { grid-template-columns:1fr 1fr; }
  .pillars-section { padding:56px 40px; }
  .pillars-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .phase-row { grid-template-columns:1fr; }
  .modalities-grid { grid-template-columns:1fr; }
  .pillars-grid { grid-template-columns:1fr 1fr; }
  .phases-dark { padding:48px 24px; }
  .modalities-section { padding:52px 24px; }
  .pillars-section { padding:48px 24px; }
}

/* == treatment.html == */
.tx-intro { display:grid; grid-template-columns:1.2fr 1fr; gap:72px; align-items:start; }
.tx-intro h2 { font-family:var(--serif); font-size:clamp(28px,3vw,42px); font-weight:500; color:var(--charcoal); line-height:1.18; margin-bottom:20px; }
.tx-intro p { font-size:15.5px; color:var(--mid); line-height:1.82; margin-bottom:16px; }

.tx-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.tx-card { background:var(--warm-white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; cursor:default; transition:all 0.25s; }
.tx-card:hover { border-color:var(--sage-mid); transform:translateY(-3px); box-shadow:0 12px 36px rgba(74,103,65,0.1); }
.tx-card-eyebrow { font-size:10px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--earth); margin-bottom:10px; }
.tx-card-title { font-family:var(--serif); font-size:21px; font-weight:500; color:var(--charcoal); margin-bottom:12px; line-height:1.25; }
.tx-card-desc { font-size:13.5px; color:var(--mid); line-height:1.68; }
.tx-card-link { display:inline-block; margin-top:16px; font-size:13px; color:var(--sage); text-decoration:none; border-bottom:1px solid transparent; transition:border-color 0.2s; }
.tx-card:hover .tx-card-link { border-color:var(--sage-mid); }

.signs-section { background:var(--charcoal); padding:80px; }

/* ── WHAT TO EXPECT ── */
.expect-section { background:var(--warm-white); padding:88px 80px; border-top:1px solid var(--border); }
.expect-header { margin-bottom:56px; }
.expect-header h2 { font-family:var(--serif); font-size:clamp(28px,3vw,42px); font-weight:500; color:var(--charcoal); line-height:1.15; margin-bottom:12px; }
.expect-header p { font-size:15px; color:var(--mid); max-width:600px; line-height:1.75; }
.expect-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.expect-card { border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); }
.expect-card-top { padding:40px 44px 32px; }
.expect-card-top.detox { background:var(--earth-pale); border-bottom:1px solid rgba(139,111,71,0.15); }
.expect-card-top.residential { background:var(--sage-pale); border-bottom:1px solid var(--sage-mid); }
.expect-phase-badge { display:inline-flex; align-items:center; gap:6px; font-size:10px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; padding:4px 12px; border-radius:50px; margin-bottom:18px; }
.expect-phase-badge.detox { background:rgba(139,111,71,0.12); color:var(--earth); border:1px solid rgba(139,111,71,0.2); }
.expect-phase-badge.residential { background:rgba(74,103,65,0.1); color:var(--sage); border:1px solid var(--sage-mid); }
.expect-icon { font-size:40px; margin-bottom:14px; display:block; }
.expect-title { font-family:var(--serif); font-size:28px; font-weight:500; color:var(--charcoal); margin-bottom:10px; line-height:1.15; }
.expect-subtitle { font-size:14px; font-style:italic; color:var(--mid); margin-bottom:16px; font-family:var(--serif); }
.expect-desc { font-size:14px; color:var(--mid); line-height:1.8; }
.expect-card-body { background:var(--warm-white); padding:28px 44px 36px; }
.expect-timeline { display:flex; flex-direction:column; gap:0; }
.expect-step { display:flex; gap:18px; padding-bottom:24px; position:relative; }
.expect-step:last-child { padding-bottom:0; }
.expect-step:not(:last-child)::before { content:''; position:absolute; left:13px; top:28px; bottom:0; width:1px; background:var(--border); }
.expect-step-dot { width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:11px; font-weight:500; }
.expect-step-dot.detox { background:var(--earth-pale); color:var(--earth); border:1.5px solid rgba(139,111,71,0.3); }
.expect-step-dot.residential { background:var(--sage-pale); color:var(--sage); border:1.5px solid var(--sage-mid); }
.expect-step-body h4 { font-family:var(--serif); font-size:16px; font-weight:500; color:var(--charcoal); margin-bottom:4px; }
.expect-step-body p { font-size:13px; color:var(--mid); line-height:1.65; }
.expect-note { margin-top:20px; padding:16px 18px; border-radius:var(--radius); font-size:13px; color:var(--mid); line-height:1.65; }
.expect-note.detox { background:var(--earth-pale); border-left:3px solid var(--earth-light); }
.expect-note.residential { background:var(--sage-pale); border-left:3px solid var(--sage-mid); }

@media(max-width:1024px){ .expect-section { padding:64px 40px; } .expect-grid { grid-template-columns:1fr; } }
@media(max-width:640px){ .expect-section { padding:52px 24px; } .expect-card-top, .expect-card-body { padding:28px 24px; } }
.signs-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.signs-text h2 { font-family:var(--serif); font-size:clamp(26px,2.8vw,38px); font-weight:500; color:#fff; line-height:1.2; margin-bottom:16px; }
.signs-text p { font-size:15px; color:rgba(255,255,255,0.65); line-height:1.78; margin-bottom:20px; }
.signs-list { list-style:none; display:flex; flex-direction:column; gap:12px; }
.signs-list li { display:flex; align-items:flex-start; gap:14px; }
.sign-dot { width:20px; height:20px; border-radius:50%; background:rgba(196,214,193,0.2); border:1px solid rgba(196,214,193,0.35); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.sign-dot::after { content:''; width:6px; height:6px; border-radius:50%; background:var(--sage-mid); }
.signs-list li span { font-size:14px; color:rgba(255,255,255,0.6); line-height:1.6; }

.mh-section { padding:88px 80px; background:var(--cream); }
.mh-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.mh-card { background:var(--warm-white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; display:flex; gap:20px; align-items:flex-start; transition:all 0.2s; }
.mh-card:hover { border-color:var(--sage-mid); box-shadow:0 8px 24px rgba(74,103,65,0.08); }
.mh-icon { width:44px; height:44px; background:var(--sage-pale); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.mh-body h3 { font-family:var(--serif); font-size:19px; font-weight:500; color:var(--charcoal); margin-bottom:8px; }
.mh-body p { font-size:13.5px; color:var(--mid); line-height:1.65; }

@media(max-width:1024px){
  .tx-intro { grid-template-columns:1fr; gap:48px; }
  .tx-grid { grid-template-columns:1fr 1fr; }
  .signs-section { padding:56px 40px; }
  .signs-inner { grid-template-columns:1fr; gap:48px; }
  .mh-section { padding:64px 40px; }
}
@media(max-width:640px){
  .tx-grid { grid-template-columns:1fr; }
  .mh-grid { grid-template-columns:1fr; }
  .signs-section { padding:48px 24px; }
  .mh-section { padding:52px 24px; }
}

/* == getting-started.html == */
.steps-section { padding:88px 80px; background:var(--warm-white); }
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:48px; }
.step-card { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; position:relative; transition:all 0.25s; }
.step-card:hover { border-color:var(--sage-mid); box-shadow:0 10px 30px rgba(74,103,65,0.09); }
.step-num { font-family:var(--serif); font-size:52px; font-weight:400; color:var(--sage-mid); line-height:1; margin-bottom:16px; }
.step-title { font-family:var(--serif); font-size:20px; font-weight:500; color:var(--charcoal); margin-bottom:10px; }
.step-desc { font-size:13.5px; color:var(--mid); line-height:1.65; }

.faq-section { padding:88px 80px; background:var(--cream); }
.faq-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.faq-list { display:flex; flex-direction:column; gap:0; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:20px 0; cursor:pointer; }
.faq-q span { font-family:var(--serif); font-size:18px; font-weight:500; color:var(--charcoal); line-height:1.3; }
.faq-toggle { width:24px; height:24px; border-radius:50%; background:var(--sage-pale); border:1px solid var(--sage-mid); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:16px; color:var(--sage); transition:all 0.2s; }
.faq-item.open .faq-toggle { background:var(--sage); color:#fff; transform:rotate(45deg); }
.faq-a { overflow:hidden; max-height:0; transition:max-height 0.35s ease, padding 0.25s; }
.faq-item.open .faq-a { max-height:200px; padding-bottom:20px; }
.faq-a p { font-size:14px; color:var(--mid); line-height:1.75; }

.insurance-section { padding:88px 80px; background:var(--warm-white); }
.ins-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.ins-card { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; text-align:center; }
.ins-name { font-family:var(--serif); font-size:22px; font-weight:500; color:var(--charcoal); margin-bottom:8px; }
.ins-desc { font-size:13px; color:var(--mid); }

.contact-strip { background:var(--sage-pale); border:1px solid var(--sage-mid); border-radius:var(--radius-lg); padding:40px; display:flex; align-items:center; gap:32px; flex-wrap:wrap; }
.contact-strip h3 { font-family:var(--serif); font-size:24px; font-weight:500; color:var(--charcoal); margin-bottom:6px; }
.contact-strip p { font-size:14px; color:var(--mid); }

@media(max-width:1024px){
  .steps-section, .faq-section, .insurance-section { padding:64px 40px; }
  .steps-grid { grid-template-columns:1fr 1fr; }
  .faq-inner { grid-template-columns:1fr; gap:48px; }
  .ins-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .steps-section, .faq-section, .insurance-section { padding:52px 24px; }
  .steps-grid, .ins-grid { grid-template-columns:1fr; }
}

/* == blog.html == */
.resources-section { padding:88px 80px; background:var(--warm-white); border-top:1px solid var(--border); }
.resources-intro { max-width:640px; margin-bottom:56px; }
.resources-intro h2 { font-family:var(--serif); font-size:clamp(28px,3vw,40px); font-weight:500; color:var(--charcoal); line-height:1.15; margin-bottom:14px; }
.resources-intro p { font-size:15px; color:var(--mid); line-height:1.78; }
.resources-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.resource-group { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; }
.resource-group-icon { font-size:28px; margin-bottom:14px; }
.resource-group-title { font-family:var(--serif); font-size:20px; font-weight:500; color:var(--charcoal); margin-bottom:6px; }
.resource-group-desc { font-size:13px; color:var(--mid); line-height:1.6; margin-bottom:20px; }
.resource-list { list-style:none; display:flex; flex-direction:column; gap:12px; }
.resource-item { display:flex; flex-direction:column; gap:3px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.resource-item:last-child { border-bottom:none; padding-bottom:0; }
.resource-name { font-size:13.5px; font-weight:500; color:var(--charcoal); }
.resource-name a { color:var(--sage); text-decoration:none; }
.resource-name a:hover { text-decoration:underline; }
.resource-detail { font-size:12px; color:var(--muted); line-height:1.5; }
.resource-phone { font-size:12px; color:var(--earth); font-weight:500; }
.resource-note { margin-top:48px; background:var(--sage-pale); border:1px solid var(--sage-mid); border-radius:var(--radius-lg); padding:28px 32px; display:flex; gap:20px; align-items:flex-start; }
.resource-note-icon { font-size:24px; flex-shrink:0; margin-top:2px; }
.resource-note h4 { font-family:var(--serif); font-size:18px; font-weight:500; color:var(--sage); margin-bottom:8px; }
.resource-note p { font-size:13.5px; color:var(--mid); line-height:1.7; }
@media(max-width:1024px){ .resources-section { padding:64px 40px; } .resources-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:640px){ .resources-section { padding:52px 24px; } .resources-grid { grid-template-columns:1fr; } }
.filter-btn { background:transparent; border:1px solid var(--border); border-radius:50px; padding:8px 18px; font-size:13px; color:var(--mid); cursor:pointer; transition:all 0.2s; font-family:var(--sans); }
.filter-btn:hover, .filter-btn.active { background:var(--sage); border-color:var(--sage); color:#fff; }

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card { background:var(--warm-white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:all 0.25s; cursor:pointer; }
.blog-card:hover { border-color:var(--sage-mid); transform:translateY(-3px); box-shadow:0 12px 36px rgba(74,103,65,0.1); }
.blog-card-bar { height:4px; background:var(--sage-pale); }
.blog-card-bar.cat-addiction { background:linear-gradient(90deg, var(--sage) 0%, var(--sage-light) 100%); }
.blog-card-bar.cat-mh { background:linear-gradient(90deg, var(--earth) 0%, var(--earth-light) 100%); }
.blog-card-bar.cat-family { background:linear-gradient(90deg, #5a7a9a 0%, #8aaec8 100%); }
.blog-card-body { padding:28px; }
.blog-cat { font-size:10px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--earth); margin-bottom:8px; }
.blog-title { font-family:var(--serif); font-size:19px; font-weight:500; color:var(--charcoal); line-height:1.35; margin-bottom:10px; }
.blog-excerpt { font-size:13px; color:var(--mid); line-height:1.65; margin-bottom:16px; }
.blog-meta { display:flex; justify-content:space-between; align-items:center; padding-top:14px; border-top:1px solid var(--border); }
.blog-date { font-size:11.5px; color:var(--muted); }
.blog-link { font-size:12.5px; color:var(--sage); text-decoration:none; }

.featured-card { grid-column: span 3; background:var(--warm-white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; display:grid; grid-template-columns:1fr 1fr; transition:all 0.25s; }
.featured-card:hover { border-color:var(--sage-mid); box-shadow:0 12px 36px rgba(74,103,65,0.1); }
.featured-image { background:linear-gradient(135deg, var(--sage-pale) 0%, var(--sage-mid) 100%); display:flex; align-items:center; justify-content:center; min-height:260px; }
.featured-image-inner { font-family:var(--serif); font-size:64px; opacity:0.3; }
.featured-body { padding:40px; display:flex; flex-direction:column; justify-content:center; }
.featured-badge { display:inline-block; background:var(--sage-pale); border:1px solid var(--sage-mid); color:var(--sage); font-size:10px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; padding:4px 12px; border-radius:50px; margin-bottom:16px; width:fit-content; }

@media(max-width:1024px){
  .blog-grid { grid-template-columns:1fr 1fr; }
  .featured-card { grid-column:span 2; }
}
@media(max-width:640px){
  .blog-grid { grid-template-columns:1fr; }
  .featured-card { grid-column:span 1; grid-template-columns:1fr; }
  .featured-image { min-height:160px; }
}

/* == contact.html == */
.contact-layout { display:grid; grid-template-columns:1fr 1.2fr; gap:0; min-height:70vh; }
.contact-left { background:var(--sage); padding:80px; display:flex; flex-direction:column; justify-content:center; }
.contact-left h2 { font-family:var(--serif); font-size:clamp(28px,3.5vw,46px); font-weight:500; color:#fff; line-height:1.12; margin-bottom:20px; }
.contact-left p { font-size:15px; color:rgba(255,255,255,0.72); line-height:1.78; margin-bottom:36px; max-width:400px; }

.contact-detail { display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.contact-detail-icon { width:40px; height:40px; background:rgba(255,255,255,0.12); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.contact-detail-text { font-size:14px; color:rgba(255,255,255,0.7); line-height:1.5; }
.contact-detail-text strong { display:block; color:#fff; font-size:16px; font-weight:500; margin-bottom:2px; }
.contact-detail-text a { color:#fff; text-decoration:none; }

.trust-row { margin-top:40px; padding-top:32px; border-top:1px solid rgba(255,255,255,0.12); display:flex; flex-wrap:wrap; gap:12px; }
.trust-pill { background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.18); border-radius:50px; padding:6px 14px; font-size:12px; color:rgba(255,255,255,0.7); letter-spacing:0.05em; }

.contact-right { background:var(--warm-white); padding:72px 80px; display:flex; flex-direction:column; justify-content:center; }
.contact-right h3 { font-family:var(--serif); font-size:28px; font-weight:500; color:var(--charcoal); margin-bottom:8px; }
.contact-right .sub { font-size:14px; color:var(--mid); margin-bottom:36px; line-height:1.6; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:16px; display:flex; flex-direction:column; gap:6px; }
.form-group label { font-size:11.5px; font-weight:500; color:var(--mid); letter-spacing:0.07em; text-transform:uppercase; }
.form-group input, .form-group select, .form-group textarea {
  border:1px solid var(--border); border-radius:var(--radius); padding:12px 14px; font-size:14.5px; font-family:var(--sans); color:var(--charcoal); background:var(--cream); outline:none; transition:border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--sage-light); background:#fff; }
.form-group textarea { resize:vertical; min-height:100px; }
.form-submit { width:100%; background:var(--sage); color:#fff; padding:15px; border:none; border-radius:50px; font-size:15px; font-weight:500; cursor:pointer; letter-spacing:0.04em; transition:background 0.2s; margin-top:8px; font-family:var(--sans); }
.form-submit:hover { background:var(--sage-light); }

.privacy-note { font-size:12px; color:var(--muted); text-align:center; margin-top:14px; line-height:1.6; }

.map-section { padding:64px 80px; background:var(--cream); border-top:1px solid var(--border); }
.map-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.map-box { background:var(--warm-white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; }
.map-placeholder { height:300px; background:var(--sage-pale); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:12px; }
.map-placeholder span { font-family:var(--serif); font-size:20px; color:var(--sage); }
.map-placeholder p { font-size:13px; color:var(--mid); }
.map-box-footer { padding:20px 24px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.map-address { font-size:14px; color:var(--charcoal); font-weight:500; }
.map-address span { display:block; font-size:12.5px; color:var(--muted); font-weight:400; margin-top:2px; }

@media(max-width:1024px){
  .contact-layout { grid-template-columns:1fr; }
  .contact-left { padding:60px 40px; }
  .contact-right { padding:56px 40px; }
  .map-section { padding:52px 40px; }
  .map-inner { grid-template-columns:1fr; gap:40px; }
}
@media(max-width:640px){
  .contact-left { padding:48px 24px; }
  .contact-right { padding:44px 24px; }
  .form-row { grid-template-columns:1fr; }
  .map-section { padding:44px 24px; }
}

/* == resources.html == */
.resources-section { padding:88px 80px; background:var(--warm-white); border-top:1px solid var(--border); }
.resources-intro { max-width:640px; margin-bottom:56px; }
.resources-intro h2 { font-family:var(--serif); font-size:clamp(28px,3vw,40px); font-weight:500; color:var(--charcoal); line-height:1.15; margin-bottom:14px; }
.resources-intro p { font-size:15px; color:var(--mid); line-height:1.78; }
.resources-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.resource-group { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; }
.resource-group-icon { font-size:28px; margin-bottom:14px; }
.resource-group-title { font-family:var(--serif); font-size:20px; font-weight:500; color:var(--charcoal); margin-bottom:6px; }
.resource-group-desc { font-size:13px; color:var(--mid); line-height:1.6; margin-bottom:20px; }
.resource-list { list-style:none; display:flex; flex-direction:column; gap:12px; }
.resource-item { display:flex; flex-direction:column; gap:3px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.resource-item:last-child { border-bottom:none; padding-bottom:0; }
.resource-name { font-size:13.5px; font-weight:500; color:var(--charcoal); }
.resource-name a { color:var(--sage); text-decoration:none; }
.resource-detail { font-size:12px; color:var(--muted); line-height:1.5; }
.resource-phone { font-size:12px; color:var(--earth); font-weight:500; }
.resource-note { margin-top:48px; background:var(--sage-pale); border:1px solid var(--sage-mid); border-radius:var(--radius-lg); padding:28px 32px; display:flex; gap:20px; align-items:flex-start; }
.resource-note-icon { font-size:24px; flex-shrink:0; margin-top:2px; }
.resource-note h4 { font-family:var(--serif); font-size:18px; font-weight:500; color:var(--sage); margin-bottom:8px; }
.resource-note p { font-size:13.5px; color:var(--mid); line-height:1.7; }
@media(max-width:1024px){ .resources-section { padding:64px 40px; } .resources-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:640px){ .resources-section { padding:52px 24px; } .resources-grid { grid-template-columns:1fr; } }

