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

:root {
  --cream:       #FAF7F4;
  --cream-dark:  #F0EAE0;
  --brown:       #3D3028;
  --brown-mid:   #6B5A4E;
  --sage:        #7D9672;
  --sage-light:  #C2D4BB;
  --sand:        #C4A882;
  --terra:       #C47B5A;
  --terra-dark:  #A3623F;
  --white:       #FFFFFF;
  --shadow:      rgba(61, 48, 40, 0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--brown);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.25;
  font-weight: 500;
}

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

img { display: block; max-width: 100%; }

/* ─── Navigation ───────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.25);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.nav-logo span {
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--brown-mid);
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--brown-mid);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--terra);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ─── Nav Dropdown ─────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--brown-mid);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(196, 168, 130, 0.25);
  border-radius: 12px;
  padding: 0.85rem 0.5rem 0.5rem;
  list-style: none;
  min-width: 230px;
  box-shadow: 0 8px 28px rgba(61, 48, 40, 0.1);
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  color: var(--brown-mid);
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.02em;
}

.dropdown-menu li a:hover {
  background: var(--cream);
  color: var(--brown);
}

@media (max-width: 900px) {
  .nav-dropdown > a::after { display: none; }

  .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--sage-light);
    border-radius: 0;
    padding: 0 0 0 0.75rem;
    background: transparent;
    min-width: auto;
    margin-top: 0.25rem;
  }

  .dropdown-menu li a {
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
  }
}

/* ─── Page Header (inner pages) ────────────────── */
.page-header {
  background: var(--cream-dark);
  padding: calc(68px + 3.5rem) 2rem 3rem;
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
}

.page-header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--brown);
  margin-bottom: 0.85rem;
}

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

.page-header p {
  font-size: 1rem;
  color: var(--brown-mid);
  max-width: 580px;
  line-height: 1.8;
}

/* ─── Hero ─────────────────────────────────────── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
}

.hero-text {
  padding: 6rem 4rem 6rem 8vw;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--brown);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

.hero-text p {
  font-size: 1.05rem;
  color: var(--brown-mid);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

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

.btn-secondary {
  color: var(--brown-mid);
  font-size: 0.9rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--brown); }

.btn-secondary::after { content: '→'; }

.hero-image {
  height: 100vh;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stock-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 168, 130, 0.3);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-badge p {
  font-size: 0.8rem;
  color: var(--brown-mid);
  font-weight: 400;
}

.hero-badge strong {
  color: var(--brown);
  font-weight: 500;
}

/* ─── Section Shared ───────────────────────────── */
section { scroll-margin-top: 68px; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--brown);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.section-title em {
  font-style: italic;
  color: var(--terra);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--sand);
  margin-bottom: 2.5rem;
  border-radius: 2px;
}

/* ─── About ────────────────────────────────────── */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px 80px 4px 80px;
  overflow: hidden;
}

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

.about-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terra);
  color: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(196, 123, 90, 0.35);
}

.about-accent-card .num {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}

.about-accent-card p {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.about-content p {
  color: var(--brown-mid);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
}

.credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.credential-tag {
  background: var(--cream-dark);
  border: 1px solid rgba(196, 168, 130, 0.4);
  color: var(--brown-mid);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ─── Services ─────────────────────────────────── */
#services {
  background: var(--cream);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.services-intro p {
  color: var(--brown-mid);
  font-size: 1rem;
  line-height: 1.85;
}

.specialty-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.specialty-card {
  flex: 0 1 calc(33.33% - 1rem);
  min-width: 260px;
}

.specialty-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(196, 168, 130, 0.2);
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow);
}

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

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

.specialty-card h3 {
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.specialty-card p {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.75;
  flex-grow: 1;
}

.card-price {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 168, 130, 0.25);
  font-size: 0.85rem;
  color: var(--brown-mid);
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.card-price strong {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--terra);
  font-weight: 500;
}

/* Approach phases */
.approach-section {
  background: var(--cream-dark);
  border-radius: 24px;
  padding: 3.5rem;
  margin-bottom: 4rem;
}

.approach-section .section-label { margin-bottom: 0.75rem; }
.approach-section .section-title { font-size: 1.65rem; margin-bottom: 0.5rem; }

.approach-section > p {
  color: var(--brown-mid);
  font-size: 0.95rem;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.phase {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.phase-num {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--cream-dark);
  line-height: 1;
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  user-select: none;
}

.phase h4 {
  font-size: 1rem;
  color: var(--terra);
  margin-bottom: 0.6rem;
  font-style: italic;
}

.phase p {
  font-size: 0.88rem;
  color: var(--brown-mid);
  line-height: 1.7;
}

/* Modalities */
.modalities-wrap {
  margin-bottom: 2rem;
}

.modalities-wrap h3 {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 1.25rem;
}

.modality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.modality-tag {
  background: var(--white);
  border: 1.5px solid var(--sage-light);
  color: var(--brown-mid);
  font-size: 0.82rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 400;
  transition: background 0.2s, border-color 0.2s;
}

.modality-tag:hover {
  background: var(--sage-light);
  border-color: var(--sage-light);
}

/* ─── EMDR Dedicated Sections ─────────────────── */
.emdr-section {
  border-top: 1px solid rgba(196, 168, 130, 0.2);
}

.emdr-section:nth-of-type(odd) { background: var(--cream-dark); }
.emdr-section:nth-of-type(even) { background: var(--white); }

.emdr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.emdr-grid.reverse { direction: rtl; }
.emdr-grid.reverse > * { direction: ltr; }

.emdr-content .section-label { margin-bottom: 0.75rem; }
.emdr-content .section-title { margin-bottom: 0.5rem; }

.emdr-content p {
  color: var(--brown-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.emdr-price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.emdr-price {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--terra);
}

.emdr-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--brown-mid);
  font-weight: 400;
}

.emdr-visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream-dark) 50%, var(--sand) 100%);
}

.emdr-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ─── Pricing ─────────────────────────────────── */
#pricing {
  background: var(--cream-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 3.5rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid rgba(196, 168, 130, 0.2);
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  flex-direction: column;
}

.pricing-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.6rem;
}

.pricing-card h3 {
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0.85rem;
}

.pricing-amount {
  font-family: 'Lora', serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pricing-per {
  font-size: 0.82rem;
  color: var(--brown-mid);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(196, 168, 130, 0.2);
  padding-top: 1.25rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--brown-mid);
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  line-height: 1.6;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.8rem;
  top: 0.45rem;
}

.pricing-note-strip {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border: 1px solid rgba(196, 168, 130, 0.2);
}

.pricing-note-strip h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.pricing-note-strip p,
.pricing-note-strip ul {
  font-size: 0.88rem;
  color: var(--brown-mid);
  line-height: 1.75;
}

.pricing-note-strip ul {
  list-style: none;
  padding: 0;
}

.pricing-note-strip ul li::before {
  content: '–';
  color: var(--sand);
  margin-right: 0.5rem;
}

/* ─── FAQ ─────────────────────────────────────── */
#faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.faq-sidebar p {
  color: var(--brown-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 168, 130, 0.25);
}

.faq-item:first-child {
  border-top: 1px solid rgba(196, 168, 130, 0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.35rem 0;
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--terra); }

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--brown-mid);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.25s, stroke 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--terra);
}

.faq-item.open .faq-question { color: var(--terra); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.93rem;
  color: var(--brown-mid);
  line-height: 1.85;
}

/* ─── Contact ──────────────────────────────────── */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.contact-content p {
  color: var(--brown-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid rgba(196, 168, 130, 0.3);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.contact-action-btn:hover {
  background: var(--cream-dark);
  border-color: var(--sand);
}

.contact-action-icon {
  width: 42px;
  height: 42px;
  background: var(--terra);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-action-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }

.contact-action-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 500;
}

.contact-action-text span {
  font-size: 0.82rem;
  color: var(--brown-mid);
}

.note-box {
  background: var(--cream-dark);
  border-left: 3px solid var(--sand);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--brown-mid);
  line-height: 1.65;
}

/* Contact Right Column */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Contact Book Block */
.contact-book {
  background: var(--cream);
  border: 1px solid rgba(196, 168, 130, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-book h3 {
  font-size: 1.2rem;
  color: var(--brown);
  margin: 0;
}

.contact-book p {
  font-size: 0.85rem;
  color: var(--brown-mid);
  margin: 0;
  line-height: 1.6;
}

.contact-book-btn {
  margin-top: 0.25rem;
}

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

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--brown-mid);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid rgba(196, 168, 130, 0.35);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--brown);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(125, 150, 114, 0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5A4E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 90, 78, 0.4);
}

.form-submit {
  width: 100%;
  background: var(--terra);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.95rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
}

/* Info strip */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  border-top: 1px solid rgba(196, 168, 130, 0.2);
  padding-top: 3rem;
}

.info-card {
  background: var(--cream);
  border: 1px solid rgba(196, 168, 130, 0.25);
  border-radius: 14px;
  padding: 1.5rem;
}

.info-card h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.info-card p, .info-card ul {
  font-size: 0.88rem;
  color: var(--brown-mid);
  line-height: 1.75;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card ul li::before {
  content: '–';
  color: var(--sand);
  margin-right: 0.5rem;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
}

.fee-row:last-child { border-bottom: none; }

.fee-row span:last-child {
  font-weight: 500;
  color: var(--brown);
}

/* ─── Footer ───────────────────────────────────── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem;
  text-align: center;
}

footer .footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

footer .footer-name {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

footer .footer-creds {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

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

footer .footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

footer .footer-bottom {
  font-size: 0.75rem;
  opacity: 0.4;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  #home { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 5rem 2rem 3rem; }
  .hero-image { height: 55vw; min-height: 260px; }

  .about-grid,
  .services-intro,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-accent-card { right: 0; bottom: -1rem; }

  .specialty-cards { grid-template-columns: 1fr; }
  .phases { grid-template-columns: 1fr; }
  .approach-section { padding: 2rem; }

  .emdr-grid, .emdr-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .emdr-visual { aspect-ratio: 16/9; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-note-strip { grid-template-columns: 1fr; gap: 1.5rem; }

  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .info-strip { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(196,168,130,0.25);
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .section-inner { padding: 4rem 1.25rem; }
  .hero-text { padding: 4.5rem 1.25rem 2.5rem; }
  .info-strip { grid-template-columns: 1fr; }
}
