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

:root {
  --cream: #FAF6F0;
  --cream-dark: #F0EAE0;
  --sage: #5C7A62;
  --sage-light: #C6D8C8;
  --sage-pale: #EBF1EC;
  --sage-dark: #2A4030;
  --terra: #B5603B;
  --terra-light: #E8C5B2;
  --terra-pale: #FAF0EB;
  --brown: #3A2E28;
  --muted: #7A7068;
  --white: #FFFFFF;
  --border: #D8D0C4;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--brown);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active { color: var(--terra); }

.nav-cta {
  background: var(--sage-dark) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 100px !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover { background: var(--terra) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- PAGE SECTIONS ---------- */
.page { display: none; padding-top: var(--nav-h); animation: fadeUp 0.5s ease both; }
.page.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- HERO ---------- */
.hero {
  min-height: calc(90vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 520px; height: 520px;
  background: var(--sage-pale);
  border-radius: 50%;
  z-index: 0;
}

.hero-text { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--terra);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--terra);
  flex-shrink: 0;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 em { font-style: italic; color: var(--terra); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary { background: var(--sage-dark); color: var(--cream); }
.btn-primary:hover { background: var(--terra); }
.btn-outline { background: transparent; color: var(--sage-dark); border: 1.5px solid var(--sage); }
.btn-outline:hover { background: var(--sage-pale); }

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero-portrait {
  width: 360px;
  height: 460px;
  background: var(--sage-light);
  border-radius: 220px 220px 180px 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  font-size: 0.78rem;
  color: var(--brown);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  max-width: 180px;
}

.hero-badge strong {
  display: block;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  color: var(--sage-dark);
}

/* ---------- STRIP / MARQUEE ---------- */
.strip {
  background: var(--sage-dark);
  color: var(--sage-light);
  padding: 0.9rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.strip-inner {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTION LAYOUT ---------- */
.section { padding: 5rem 5vw; }
.section-alt { background: var(--cream-dark); }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--terra); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 em { font-style: italic; }

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg { width: 22px; height: 22px; stroke: var(--sage); fill: none; stroke-width: 1.5; }

.emdr-card {
  background: var(--terra-pale);
  border-color: var(--terra-light);
}

.emdr-card .card-icon {
  background: var(--terra-light);
}

.emdr-card .card-icon svg { stroke: var(--terra); }

.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--white);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 0.6rem;
}

/* ---------- TWO-COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col-img {
  border-radius: 20px;
  height: 420px;
  overflow: hidden;
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- QUOTE ---------- */
.quote-section {
  background: var(--sage-dark);
  color: var(--cream);
  padding: 5rem 5vw;
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  color: var(--sage-light);
}

.quote-attr {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-light);
}

/* ---------- CREDENTIALS GRID ---------- */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.cred-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  font-size: 0.85rem;
}

.cred-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.4rem;
}

/* ---------- SPECIALTIES ---------- */
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.spec-pill {
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  color: var(--sage-dark);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.83rem;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--sage-dark);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--cream);
}

.contact-info-card h2 { color: var(--sage-light); }

.contact-detail {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--cream-dark);
}

.contact-row svg { width: 18px; height: 18px; stroke: var(--terra-light); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }

.contact-row strong { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 0.2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

input, textarea, select {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}

input:focus, textarea:focus, select:focus { border-color: var(--sage); }

textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--brown);
  color: var(--cream-dark);
  padding: 3rem 5vw 2rem;
  text-align: center;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

footer p { font-size: 0.8rem; color: var(--muted); line-height: 1.8; }

footer a { color: var(--terra-light); text-decoration: none; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dark);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--terra-light); }

.footer-line { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5rem 0; }

/* ---------- ABOUT PAGE ---------- */
.about-hero {
  padding: 4rem 5vw 3rem;
  background: linear-gradient(to bottom, var(--sage-pale), var(--cream));
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 160px 160px 120px 120px;
  overflow: hidden;
  background: var(--sage-light);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-name-block { padding-top: 1rem; }

.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.about-title {
  font-size: 0.88rem;
  color: var(--terra);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-body { font-size: 1rem; color: var(--muted); line-height: 1.85; }
.about-body p + p { margin-top: 1rem; }

/* ---------- SERVICES PAGE ---------- */
.services-hero {
  padding: 4rem 5vw 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.full-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 5vw 5rem;
}

.full-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.full-service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }
.full-service-card.emdr { background: var(--terra-pale); border-color: var(--terra-light); }

.modality-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.m-tag { font-size: 0.7rem; background: var(--sage-pale); border: 1px solid var(--sage-light); color: var(--sage-dark); border-radius: 100px; padding: 0.2rem 0.6rem; }
.m-tag.terra { background: var(--terra-pale); border-color: var(--terra-light); color: var(--terra); }

/* ---------- FEELINGS WHEEL ---------- */
.wheel-wrap {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 0.75rem;
}

#feelingsWheel {
  width: 100%;
  max-width: 560px;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

#feelingsWheel:active {
  cursor: grabbing;
}

.wheel-credit {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
  font-style: italic;
}

.wheel-credit a {
  color: var(--terra);
  text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); padding: 1.5rem 5vw; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 3rem 5vw; min-height: unset; }
  .hero-image { display: none; }
  .hero::before { display: none; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-portrait { max-width: 240px; margin: 0 auto; }
}