/* ============================================================
   Carmel Pound Psychology — styles.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  /* Palette — Southern Highlands warmth */
  --cream:        #FAF8F4;
  --cream-alt:    #F3EFE8;
  --white:        #FFFFFF;

  /* Sage — calm, healing */
  --sage:         #6B8F7E;
  --sage-dark:    #517265;
  --sage-light:   #EBF1ED;
  --sage-bg:      #F1F5F2;

  /* Blush — warmth, approachability */
  --blush:        #A87862;
  --blush-dark:   #8C6250;
  --blush-light:  #F7EDE8;
  --blush-bg:     #F5EBE5;

  /* Text */
  --text-dark:    #2A2825;
  --text-mid:     #5C5855;
  --text-light:   #8C8885;

  /* UI */
  --border:       #E0DAD4;
  --shadow-sm:    0 2px 8px rgba(42, 40, 37, 0.06);
  --shadow-md:    0 4px 20px rgba(42, 40, 37, 0.10);
  --shadow-lg:    0 10px 40px rgba(42, 40, 37, 0.14);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width:    1180px;
  --pad-x:        1.5rem;
  --section-gap:  5rem;

  /* Radii */
  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;

  /* Transitions */
  --transition:   0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
}

.section-label--blush { color: var(--blush); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin: 1.2rem 0 1.5rem;
  border: none;
}

.divider--blush { background: var(--blush); }
.divider--center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  box-shadow: 0 4px 16px rgba(107, 143, 126, 0.35);
}

.btn-blush {
  background: var(--blush);
  color: var(--white);
  border-color: var(--blush);
}
.btn-blush:hover {
  background: var(--blush-dark);
  border-color: var(--blush-dark);
  box-shadow: 0 4px 16px rgba(168, 120, 98, 0.35);
}

.btn-outline-sage {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-outline-sage:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
}

/* ── Skip Link (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--sage);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ─────────────────────────────────────────
   HEADER & NAVIGATION
───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nav-logo-tag {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text-dark);
  background: var(--sage-light);
}

.nav-links .nav-cta {
  background: var(--sage);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
}

.nav-links .nav-cta:hover {
  background: var(--sage-dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1rem var(--pad-x) 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--sage); }
.nav-mobile .nav-cta-mobile {
  margin-top: 1rem;
  padding: 0.85rem 1.5rem;
  background: var(--sage);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-sm);
  border: none !important;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream) 0%, var(--cream-alt) 60%, var(--sage-light) 100%);
}

/* Optional: hero background image */
.hero.has-bg-image {
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
}

.hero.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,248,244,0.97) 45%, rgba(250,248,244,0.7) 75%, rgba(250,248,244,0.3) 100%);
}

/* Decorative botanical SVG */
.hero-decor {
  position: absolute;
  right: -2%;
  top: -5%;
  width: 480px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--sage);
}

.hero-body {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

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

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1.75rem;
}

.hero-location svg { flex-shrink: 0; }

/* Hero image */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--blush-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ─────────────────────────────────────────
   PATHWAY SECTION
───────────────────────────────────────── */
.pathways {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.pathways-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pathways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pathway-card {
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pathway-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.12;
}

/* Client card */
.pathway--client {
  background: var(--sage-light);
  border: 1px solid rgba(107, 143, 126, 0.2);
}
.pathway--client::before { background: var(--sage); }

/* Therapist card */
.pathway--therapist {
  background: var(--blush-light);
  border: 1px solid rgba(168, 120, 98, 0.2);
}
.pathway--therapist::before { background: var(--blush); }

.pathway-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.pathway--client .pathway-tag {
  color: var(--sage-dark);
  background: rgba(107, 143, 126, 0.15);
}

.pathway--therapist .pathway-tag {
  color: var(--blush-dark);
  background: rgba(168, 120, 98, 0.15);
}

.pathway-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pathway--client .pathway-icon {
  background: rgba(107, 143, 126, 0.2);
  color: var(--sage-dark);
}

.pathway--therapist .pathway-icon {
  background: rgba(168, 120, 98, 0.2);
  color: var(--blush-dark);
}

.pathway-question {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
}

.pathway-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.pathway-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pathway-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.pathway-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.pathway--client .pathway-list li::before { background: var(--sage); }
.pathway--therapist .pathway-list li::before { background: var(--blush); }

.pathway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: auto;
}

.pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.pathway--client .pathway-link {
  color: var(--sage-dark);
}
.pathway--client .pathway-link:hover { border-color: var(--sage); }

.pathway--therapist .pathway-link {
  color: var(--blush-dark);
}
.pathway--therapist .pathway-link:hover { border-color: var(--blush); }

/* ─────────────────────────────────────────
   ABOUT TEASER
───────────────────────────────────────── */
.about-teaser {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

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

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

.about-image-wrap img,
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-image-placeholder {
  background: linear-gradient(160deg, var(--cream-alt) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  border: 1px solid var(--border);
}

.about-accent-block {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--sage);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  min-width: 180px;
  box-shadow: var(--shadow-md);
}

.about-accent-block strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.about-accent-block span {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.4;
  margin-top: 0.2rem;
  display: block;
}

.about-content .section-intro { max-width: 500px; }

.about-quals {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.qual-dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────
   EMDR OVERVIEW
───────────────────────────────────────── */
.emdr-overview {
  padding: var(--section-gap) 0;
  background: var(--sage-bg);
}

.emdr-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.emdr-intro .section-intro { max-width: 380px; }

.emdr-intro-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

.emdr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.emdr-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.emdr-card-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.emdr-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.emdr-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.emdr-card-wide {
  grid-column: 1 / -1;
}

.emdr-endorsements {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.endorsement-pill {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.emdr-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ─────────────────────────────────────────
   CREDENTIALS / TRUST BAR
───────────────────────────────────────── */
.credentials {
  padding: 3.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credentials-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
  text-align: center;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.cred-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.cred-logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.cred-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.cred-desc {
  font-size: 0.775rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ─────────────────────────────────────────
   FINAL CTA SECTION
───────────────────────────────────────── */
.cta-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner .section-label { color: rgba(255,255,255,0.7); }

.cta-inner .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner .section-intro {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo-name { color: var(--white); }
.footer-brand .nav-logo-tag  { color: rgba(255,255,255,0.45); }

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 240px;
}

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

.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-gap: 4rem; }

  .hero-inner        { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image        { display: none; }
  .hero-content      { max-width: 100%; }

  .pathways-grid     { grid-template-columns: 1fr; }

  .about-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap  { max-width: 440px; }

  .emdr-overview-inner { grid-template-columns: 1fr; gap: 3rem; }

  .credentials-inner { grid-template-columns: repeat(2, 1fr); }

  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 3rem;
    --pad-x: 1.25rem;
  }

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

  .hero { padding: 4rem 0 3rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .pathway-card { padding: 2.25rem 1.75rem; }

  .emdr-cards { grid-template-columns: 1fr; }
  .emdr-card-wide { grid-column: auto; }

  .credentials-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline    { max-width: 100%; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .pathway-question { font-size: 1.45rem; }
  .credentials-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════
   INTERIOR PAGES — shared components
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   PAGE HERO (interior pages)
───────────────────────────────────────── */
.page-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(145deg, var(--cream) 0%, var(--cream-alt) 60%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(107,143,126,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--sage);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--sage-dark); }

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.page-hero-title em {
  font-style: italic;
  color: var(--sage);
}

.page-hero-lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 580px;
}

/* ─────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--sage-light);
  line-height: 1;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   CONDITIONS / SERVICES GRID
───────────────────────────────────────── */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.condition-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.condition-item:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}

.condition-dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.condition-dot--blush { background: var(--blush); }

.condition-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.45;
  font-weight: 500;
}

/* ─────────────────────────────────────────
   INFO CARDS (session info, etc.)
───────────────────────────────────────── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.info-card-icon--blush {
  background: var(--blush-light);
  color: var(--blush);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   TWO COLUMN LAYOUT
───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.two-col--wide { grid-template-columns: 1.3fr 1fr; }

/* ─────────────────────────────────────────
   FAQ / ACCORDION
───────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
}

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

.faq-icon {
  width: 26px;
  height: 26px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--sage);
  color: var(--white);
}

.faq-answer {
  display: none;
  padding-bottom: 1.75rem;
}

.faq-item.is-open .faq-answer { display: block; }

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-answer p + p { margin-top: 0.75rem; }

/* ─────────────────────────────────────────
   EMDR PHASES GRID
───────────────────────────────────────── */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.phase-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--sage);
}

.phase-number {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.phase-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.phase-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   FEES CARDS
───────────────────────────────────────── */
.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.fee-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.fee-card--sage {
  background: var(--sage-light);
  border-color: rgba(107,143,126,0.25);
}

.fee-card--blush {
  background: var(--blush-light);
  border-color: rgba(168,120,98,0.25);
}

.fee-card-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.fee-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.fee-card--sage .fee-card-tag { color: var(--sage-dark); }
.fee-card--blush .fee-card-tag { color: var(--blush-dark); }

.fee-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 1rem;
}

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

.fee-row-label {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.fee-row-label small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.fee-row-amount {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.fee-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Medicare info box */
.medicare-box {
  margin-top: 3rem;
  background: var(--sage-light);
  border: 1px solid rgba(107,143,126,0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.medicare-icon {
  width: 56px;
  height: 56px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.medicare-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.medicare-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.medicare-content p + p { margin-top: 0.5rem; }

/* ─────────────────────────────────────────
   BOOKING STEPS
───────────────────────────────────────── */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.booking-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.booking-step-num {
  width: 44px;
  height: 44px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.booking-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.booking-step p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.booking-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.booking-cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.booking-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
}

.booking-cta-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 280px;
}

/* ─────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--blush);
  margin-left: 0.2rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 143, 126, 0.15);
}

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

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

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1.25rem;
  line-height: 1.6;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.contact-info-text a:hover { color: var(--sage); }

.contact-notice {
  background: var(--blush-light);
  border: 1px solid rgba(168,120,98,0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.contact-notice p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.contact-notice strong {
  font-weight: 600;
  color: var(--blush-dark);
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.bio-image-wrap {
  position: sticky;
  top: 100px;
}

.bio-image-wrap img,
.bio-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.bio-image-placeholder {
  background: linear-gradient(160deg, var(--cream-alt) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  border: 1px solid var(--border);
}

.bio-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.bio-content p:last-child { margin-bottom: 0; }

.quals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.qual-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.qual-card-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.qual-card-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.qual-card-text span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.approach-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sage);
}

.approach-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.approach-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   EMDR CONSULTATION
───────────────────────────────────────── */
.consult-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.consult-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.consult-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.consult-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.consult-card > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.consult-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex: 1;
}

.consult-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.consult-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────
   CANCELLATION / POLICY BOX
───────────────────────────────────────── */
.policy-box {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}

.policy-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.policy-box p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.policy-box p + p { margin-top: 0.5rem; }

/* ─────────────────────────────────────────
   INTERIOR PAGE RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .phases-grid { grid-template-columns: repeat(2, 1fr); }
  .fees-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .bio-layout { grid-template-columns: 1fr; gap: 3rem; }
  .bio-image-wrap { position: static; max-width: 400px; }
  .quals-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .consult-cards { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .booking-steps { grid-template-columns: 1fr; }
  .booking-cta-grid { grid-template-columns: 1fr; }
  .medicare-box { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col--wide { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: 3.5rem 0 3rem; }
  .conditions-grid { grid-template-columns: 1fr; }
  .phases-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .quals-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 40px 1fr; }
}
