/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #FAF7F2;
  --bg-alt:     #F0EAE0;
  --brown:      #7A5C42;
  --brown-dark: #3D2B1F;
  --sage:       #8FA882;
  --tan:        #C4A882;
  --text:       #3D2B1F;
  --text-muted: #7A6A5E;
  --white:      #FFFFFF;
  --radius:     10px;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid #E8DDD3;
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown-dark);
}

.nav-logo span {
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--brown); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown-dark);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  background: var(--bg-alt);
  padding: 6rem 0 5rem;
  border-bottom: 1px solid #E2D7CB;
}

.hero-inner {
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-dark);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--brown-dark);
  padding: 1.75rem 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9B99F;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── Section Label ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.75rem;
}

/* ── About ── */
.about {
  padding: 5.5rem 0;
}

.about h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brown-dark);
  max-width: 600px;
  margin-bottom: 2rem;
}

.about-body {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ── Therapeutic Approaches ── */
.approaches-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.75rem;
}

.approach-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.approach-pills span {
  background: var(--bg-alt);
  border: 1px solid #DDD0C0;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  color: var(--brown);
}

/* ── Services ── */
.services {
  background: var(--bg-alt);
  padding: 5.5rem 0;
  border-top: 1px solid #E2D7CB;
  border-bottom: 1px solid #E2D7CB;
}

.services h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.services-sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid #E2D7CB;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1rem;
  font-family: var(--font-serif);
  color: var(--brown-dark);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Fees & Insurance ── */
.fees {
  padding: 5.5rem 0;
}

.fees h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brown-dark);
  margin-bottom: 2rem;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.fee-block {
  background: var(--bg-alt);
  border: 1px solid #E2D7CB;
  border-radius: var(--radius);
  padding: 2rem;
}

.fee-block h3 {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.75rem;
}

.fee-amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.fee-amount span {
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-weight: 400;
}

.fee-block > p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.insurance-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.insurance-list li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.insurance-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* ── Contact ── */
.contact {
  background: var(--bg-alt);
  padding: 5.5rem 0;
  border-top: 1px solid #E2D7CB;
}

.contact-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
}

.contact-inner > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid #E2D7CB;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  color: var(--brown-dark);
  font-weight: 500;
  width: fit-content;
  transition: box-shadow 0.2s, transform 0.15s;
}

.contact-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}

.contact-icon {
  color: var(--sage);
  font-size: 1.1rem;
}

/* ── Footer ── */
.footer {
  background: var(--brown-dark);
  color: #C9B99F;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-license {
  font-size: 0.75rem;
  color: #A8947E;
}

.footer-right {
  text-align: right;
}

.footer-copy {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.footer-credit {
  font-size: 0.8rem;
}

.footer-credit a {
  color: #C9B99F;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-credit a:hover { color: var(--white); }

/* ── Responsive ── */
@media (max-width: 700px) {
  .stat { padding: 0.5rem 1.25rem; }
  .stat-divider { display: none; }
  .stats-inner { gap: 1rem; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; margin-left: auto; }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid #E8DDD3;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.open {
    max-height: 300px;
    visibility: visible;
    opacity: 1;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-logo { font-size: 1rem; }

  .hero { padding: 3.5rem 0 3rem; }
  .about, .services, .fees, .contact { padding: 3.5rem 0; }

  .stats-bar { padding: 1.25rem 0; }
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0.5rem;
    justify-items: center;
  }
  .stat { padding: 0; }

  .approach-pills span { font-size: 0.78rem; }

  .contact-item { width: 100%; }
}
