/* ─────────────────────────────────────────
   NeuroSolace Behavioral Health — Styles
   ───────────────────────────────────────── */

/* ── RESET & VARIABLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage:       #4a95a3;
  --sage-light: #9dc9d1;
  --sage-dark:  #2c6470;
  --cream:      #f7f4ef;
  --warm-white: #fdfcfa;
  --stone:      #c9c0b3;
  --stone-dark: #8a8078;
  --ink:        #1e1e1e;
  --ink-soft:   #3d3d3d;
  --accent:     #c6a87c;
  --accent-lt:  #e8d9c4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 192, 179, 0.25);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo .logo-img {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sage-dark);
}

.nav-logo-text span:last-child {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-dark);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--sage-dark) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.25s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--sage) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--warm-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.mobile-nav a:hover {
  color: var(--sage-dark);
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 5vw;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
}

/* ── SHARED SECTION STYLES ── */
section {
  padding: 7rem 8vw;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--stone);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* ── SHARED BUTTON STYLES ── */
.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--sage-dark);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--sage-dark);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}

.btn-secondary:hover {
  border-color: var(--sage);
}

.btn-secondary svg {
  transition: transform 0.25s;
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* ── SCROLL REVEAL ANIMATION ── */
/* js-reveal is added by JS once it's ready, so elements are visible without JS */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 5vw 8vw 8vw;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-light) 0%, #cfe6ea 50%, #c0dde2 100%);
}

.hero-shape {
  position: absolute;
  bottom: 0;
  left: -2px;
  width: 80px;
  height: 100%;
  background: var(--warm-white);
  clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(44, 100, 112, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-accent-text {
  position: absolute;
  bottom: 12%;
  right: 8%;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(44, 100, 112, 0.12);
  line-height: 1;
  user-select: none;
}

.hero-card {
  position: absolute;
  bottom: 10%;
  left: 12%;
  background: white;
  border-radius: 4px;
  padding: 1.4rem 1.8rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  max-width: 220px;
}

.hero-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1;
}

.hero-card p {
  font-size: 0.78rem;
  color: var(--stone-dark);
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* ── ABOUT ── */
#about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}

.about-text p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-box {
  background: white;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--sage-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-box:hover::after {
  transform: scaleX(1);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--stone-dark);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ── SERVICES ── */
#services {
  background: var(--warm-white);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--stone);
  border: 1.5px solid var(--stone);
}

.service-card {
  background: white;
  padding: 2.8rem 2.2rem;
  transition: background 0.3s;
  cursor: default;
}

.service-card:hover {
  background: var(--cream);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-light);
  border-radius: 50%;
  color: var(--sage-dark);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ── BOOKING ── */
#booking {
  background: var(--sage-dark);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

#booking .section-label {
  color: rgba(255, 255, 255, 0.55);
}

#booking .section-label::before {
  background: rgba(255, 255, 255, 0.3);
}

#booking .section-title {
  color: white;
}

#booking > div > p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-bottom: 2rem;
}

.booking-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.booking-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.booking-card-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.3rem;
}

.booking-card-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.booking-card-arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.25s;
}

.booking-card:hover .booking-card-arrow {
  background: rgba(255, 255, 255, 0.15);
}

/* ── APPROACH ── */
#approach {
  background: var(--cream);
}

.approach-header {
  margin-bottom: 3.5rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone);
}

.pillar {
  background: var(--cream);
  padding: 2.5rem 1.8rem;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: attr(data-num);
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  transition: color 0.3s;
}

.pillar:hover::before {
  color: var(--sage-light);
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.pillar p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
  position: relative;
}

.pillar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  margin-bottom: 0.8rem;
}

/* ── INSURANCE ── */
#insurance {
  background: var(--warm-white);
  text-align: center;
}

.insurance-inner {
  max-width: 640px;
  margin: 0 auto;
}

.insurance-inner .section-label {
  justify-content: center;
}

.insurance-inner .section-label::before {
  display: none;
}

.insurance-inner p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.insurance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.ins-badge {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--stone);
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: border-color 0.25s, background 0.25s;
}

.ins-badge:hover {
  border-color: var(--sage);
  background: var(--cream);
}

/* ── CONTACT ── */
#contact {
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}

#contact .section-label {
  color: rgba(255, 255, 255, 0.45);
}

#contact .section-label::before {
  background: rgba(255, 255, 255, 0.25);
}

#contact .section-title {
  color: white;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage-light);
  fill: none;
  stroke-width: 1.5;
}

.contact-item-text span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.3rem;
}

.contact-item-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.6;
}

.contact-item-text a {
  color: inherit;
  text-decoration: none;
}

.contact-item-text a:hover {
  color: var(--sage-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  resize: none;
  transition: border-color 0.25s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--sage-light);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.btn-send {
  background: var(--sage);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
  transition: background 0.25s, transform 0.2s;
}

.btn-send:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.4);
  padding: 1.8rem 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 1rem;
}

footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

footer a:hover {
  color: var(--sage-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 6rem 8vw 5rem;
  }

  #about {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr 1fr;
  }

  #booking {
    grid-template-columns: 1fr;
  }

  #contact {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 560px) {
  section {
    padding: 5rem 6vw;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════
   MULTI-PAGE SHARED STYLES
   ═══════════════════════════════════════════ */

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 72px;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
}
.page-hero-inner {
  padding: 5rem 8vw 4rem;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 560px;
  font-weight: 300;
}

/* ── PAGE MAIN ── */
.page-main {
  background: var(--warm-white);
}
.inner-section {
  padding: 5rem 8vw 6rem;
}

/* ── NAV ACTIVE STATE ── */
.nav-active {
  color: var(--sage-dark) !important;
}
.nav-active::after {
  width: 100% !important;
}

/* ── QUICK LINKS (home page) ── */
#quick-links {
  padding: 0;
  background: var(--warm-white);
}
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--stone);
  border-top: 1.5px solid var(--stone);
}
.ql-card {
  background: white;
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.25s;
}
.ql-card:hover { background: var(--cream); }
.ql-card.ql-dark { background: var(--sage-dark); color: white; }
.ql-card.ql-dark:hover { background: var(--sage); }
.ql-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; }
.ql-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; }
.ql-arrow { font-size: 1.2rem; margin-top: 0.5rem; opacity: 0.5; }
.ql-card:hover .ql-arrow { opacity: 1; transform: translateX(4px); transition: 0.2s; }

/* ── FOOTER ── */
footer {
  background: #111;
  padding: 3rem 8vw 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 2rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.footer-logo {
  display: flex; flex-direction: column; line-height: 1.3;
}
.footer-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.footer-logo span:last-child {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem;
  align-items: flex-start;
}
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.4); text-decoration: none;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--sage-light); }
.footer-contact {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.2rem;
  font-size: 0.74rem;
}

/* ── SERVICES PAGE ── */
.services-grid-full {
  display: flex; flex-direction: column; gap: 1.5px;
  background: var(--stone); margin-bottom: 4rem;
}
.service-card-full {
  background: white; padding: 2.8rem 2.5rem;
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem;
  align-items: start;
  transition: background 0.25s;
}
.service-card-full:hover { background: var(--cream); }
.scf-icon {
  width: 56px; height: 56px;
  background: var(--sage-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.scf-icon svg { width: 26px; height: 26px; stroke: var(--sage-dark); }
.scf-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500; margin-bottom: 0.6rem;
}
.scf-body p { font-size: 0.95rem; line-height: 1.8; color: var(--ink-soft); font-weight: 300; margin-bottom: 1rem; }
.scf-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.scf-list li { font-size: 0.85rem; color: var(--ink-soft); padding-left: 1.2rem; position: relative; }
.scf-list li::before { content: '–'; position: absolute; left: 0; color: var(--sage); }

.conditions-block { margin-bottom: 3.5rem; }
.conditions-grid {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem;
}
.condition-tag {
  padding: 0.5rem 1.2rem; border: 1px solid var(--stone);
  border-radius: 2px; font-size: 0.82rem; color: var(--ink-soft);
  transition: border-color 0.2s, background 0.2s;
}
.condition-tag:hover { border-color: var(--sage); background: var(--cream); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--cream); border: 1px solid var(--stone);
  padding: 2.5rem; display: flex;
  justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; margin-bottom: 0.3rem;
}
.cta-band p { font-size: 0.9rem; color: var(--ink-soft); font-weight: 300; }

/* ── INSURANCE PAGE ── */
.insurance-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: var(--stone);
  margin-bottom: 4rem;
}
.ins-card {
  background: white; padding: 1.8rem 1.5rem;
  transition: background 0.25s;
}
.ins-card:hover { background: var(--cream); }
.ins-card-icon {
  width: 44px; height: 44px;
  margin-bottom: 1rem;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
}
.ins-card-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.ins-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500; margin-bottom: 0.4rem;
}
.ins-card-note { font-size: 0.78rem; color: var(--stone-dark); }

.self-pay-block {
  background: var(--cream); padding: 3rem; margin-bottom: 2rem;
}
.self-pay-block p { font-size: 0.97rem; line-height: 1.9; color: var(--ink-soft); font-weight: 300; }

.ins-notice {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem 2rem; border: 1px solid var(--stone);
  background: white; margin-bottom: 3rem;
}
.ins-notice svg { flex-shrink: 0; margin-top: 2px; stroke: var(--stone-dark); }
.ins-notice p { font-size: 0.87rem; line-height: 1.7; color: var(--ink-soft); }
.ins-notice a { color: var(--sage-dark); }

/* ── FAQs PAGE ── */
.faq-list { display: flex; flex-direction: column; gap: 1.5px; background: var(--stone); margin-bottom: 3rem; }
.faq-item { background: white; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 1.6rem 2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  font-weight: 500; color: var(--ink);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--cream); }
.faq-icon {
  font-size: 1.4rem; color: var(--sage); flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 2rem;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 2rem 1.8rem; }
.faq-answer p { font-size: 0.92rem; line-height: 1.9; color: var(--ink-soft); font-weight: 300; margin-bottom: 0.8rem; }
.faq-answer ul { margin-left: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.faq-answer li { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }
.faq-answer a { color: var(--sage-dark); }

/* ── #services-preview ── */
#services-preview { background: var(--warm-white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .quick-links-grid { grid-template-columns: 1fr 1fr; }
  .insurance-cards { grid-template-columns: 1fr 1fr; }
  .service-card-full { grid-template-columns: 1fr; gap: 1rem; }
  footer { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .quick-links-grid { grid-template-columns: 1fr; }
  .insurance-cards { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .page-hero-inner { padding: 4rem 6vw 3rem; }
  .inner-section { padding: 3rem 6vw 4rem; }
}