:root {
  --sage: #889e80;
  --sage-dark: #5f7458;
  --gold: #dac187;
  --gold-dark: #b8975c;
  --ink: #3a3f35;
  --cream: #faf7f1;
  --cream-deep: #f1ebdf;
  --white: #ffffff;
  --line: rgba(58, 63, 53, 0.14);
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Newsreader', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--sage-dark);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 500; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.1em; }

a { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--gold-dark); }

.eyebrow {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.9em;
  display: block;
}

.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.95em 2.1em;
  border-radius: var(--radius);
  border: 1px solid var(--sage-dark);
  transition: all 0.25s ease;
}
.btn-primary { background: var(--sage-dark); color: var(--white) !important; }
.btn-primary:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-ghost { background: transparent; color: var(--sage-dark); }
.btn-ghost:hover { background: var(--sage-dark); color: var(--white); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1120px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 52px; width: auto; display: block; }
.nav-brand .wordmark {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--sage-dark);
  line-height: 1.1;
}
.nav-brand .wordmark small {
  display: block; font-family: 'Lato', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-top: 2px;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: 'Lato', sans-serif; font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--ink); font-weight: 600;
}
.nav-links a.current { color: var(--sage-dark); border-bottom: 2px solid var(--gold); padding-bottom: 4px; }
.nav-links a:hover { color: var(--sage-dark); }

/* Hero radiating motif */
.radiant {
  position: relative;
  overflow: hidden;
}
.radiant::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 1px; height: 0;
  pointer-events: none;
}
.ray-field {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-conic-gradient(from 0deg, rgba(136,158,128,0.06) 0deg 2deg, transparent 2deg 18deg);
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}

/* Section spacing */
section { padding: 88px 0; }
section.tight { padding: 56px 0; }
.bg-deep { background: var(--cream-deep); }
.bg-sage { background: var(--sage-dark); color: var(--white); }
.bg-sage h2, .bg-sage h3 { color: var(--white); }
.bg-sage .eyebrow { color: var(--gold); }

hr.leaf-divider {
  border: 0; height: 1px; background: var(--line);
  width: 64px; margin: 28px 0;
}

/* Cards */
.grid { display: grid; gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: var(--radius);
}
.card .leaf-mark { color: var(--gold-dark); font-size: 1.6rem; margin-bottom: 16px; display: block; }
.card .leaf-mark img.leaf-icon { width: 32px; height: 32px; display: block; }

.card-values { background: var(--sage-dark); border-color: var(--sage-dark); }
.card-values h3 { color: #c9a876; }
.card-values p { color: #f9f6ef; }

/* Footer */
footer.site {
  background: var(--ink); color: rgba(255,255,255,0.78);
  padding: 56px 0 32px;
  font-family: 'Lato', sans-serif; font-size: 0.88rem;
}
footer.site .wrap { display: flex; justify-content: space-between; align-items: stretch; flex-wrap: wrap; gap: 24px; }
footer.site .foot-col-brand { order: 2; flex: 1; text-align: center; }
footer.site .foot-col-contact { order: 3; }
footer.site .foot-col-pages { order: 1; }
footer.site h4 {
  font-family: 'Cormorant Garamond', serif; color: var(--white); font-size: 1.2rem; margin-bottom: 12px;
}
footer.site a { color: rgba(255,255,255,0.78); }
footer.site a:hover { color: var(--gold); }
.foot-social { display: flex; gap: 14px; margin-top: 14px; }
.foot-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.78);
  transition: all 0.2s ease;
}
.foot-social a:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.foot-social svg { width: 16px; height: 16px; fill: currentColor; }
.foot-bottom {
  max-width: 1120px; margin: 36px auto 0; padding: 20px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.76rem; color: rgba(255,255,255,0.5);
}

/* Pricing table */
.price-card {
  background: var(--white); border: 1px solid var(--line); padding: 40px 32px;
  text-align: center; border-radius: var(--radius);
  display: flex; flex-direction: column; height: 100%;
}
.price-card.featured { border: 1px solid var(--gold-dark); position: relative; }
.price-card .amount { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--sage-dark); margin: 14px 0 4px; }
.price-card .amount span { font-family: 'Lato', sans-serif; font-size: 0.8rem; color: var(--ink); }
.price-card ul { list-style: none; padding: 0; margin: 22px 0; text-align: left; font-size: 0.92rem; }
.price-card li { padding: 8px 0; border-top: 1px solid var(--line); }
.price-card li:first-child { border-top: none; }
.price-card .price-cta { margin-top: auto; padding-top: 12px; }

/* Form */
form.contact-form { display: grid; gap: 18px; max-width: 580px; }
form.contact-form label {
  font-family: 'Lato', sans-serif; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700; color: var(--sage-dark); margin-bottom: 6px; display: block;
}
form.contact-form input, form.contact-form textarea, form.contact-form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: 'Newsreader', serif; font-size: 1rem; background: var(--white); color: var(--ink);
}
form.contact-form input:focus, form.contact-form textarea:focus, form.contact-form select:focus {
  outline: 2px solid var(--sage); outline-offset: 1px;
}

.info-row { display: flex; gap: 28px; margin-bottom: 18px; align-items: flex-start; }
.info-row .label { font-family: 'Lato', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-dark); font-weight: 700; min-width: 140px; flex-shrink: 0; white-space: nowrap; }

@media (max-width: 860px) {
  .nav-links { gap: 18px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  footer.site .wrap { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--sage-dark); outline-offset: 2px;
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 101;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--sage-dark); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(58,63,53,0.12);
  flex-direction: column;
  padding: 80px 32px 24px;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink); padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.current { color: var(--sage-dark); border-left: 3px solid var(--gold); padding-left: 12px; }
.mobile-menu a.btn-primary {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700;
  background: var(--sage-dark); color: var(--white) !important;
  text-align: center; padding: 12px 20px;
  border-radius: var(--radius); margin-top: 12px;
  border-bottom: none;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-brand .wordmark { font-size: 1.1rem; }
  .nav { justify-content: space-between; }
  .nav-brand { flex: 1; justify-content: center; }
}

/* Orientation-aware responsive */

/* Portrait mobile */
@media (max-width: 860px) and (orientation: portrait) {
  .carousel-track .therapist-card,
  .team-carousel-track .therapist-card { flex: 0 0 100%; width: 100%; }
  section { padding: 56px 0; }
  .wrap { padding: 0 20px; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
}

/* Landscape mobile */
@media (max-width: 860px) and (orientation: landscape) {
  .carousel-track .therapist-card,
  .team-carousel-track .therapist-card { flex: 0 0 50%; width: 50%; }
  section { padding: 36px 0; }
  .wrap { padding: 0 24px; }
  h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 4vw, 1.8rem); }
  .nav-brand img { height: 40px; }
  .radiant { padding: 60px 0 50px !important; }
}

/* Footer responsive */
@media (max-width: 860px) {
  footer.site .wrap {
    flex-direction: column;
    gap: 32px;
  }
  footer.site .foot-col-brand { order: 1; }
  footer.site .foot-col-contact { order: 2; }
  footer.site .foot-col-pages { order: 3; }
}
