/* ==========================================================================
   Belle Âme Psychotherapy — Main Stylesheet
   ========================================================================== */

/* ─── Custom Properties ─────────────────────────────────────────────────── */
:root {
  --cream:       #F3EFE6;
  --rose:        #BFA7A0;
  --sage:        #8FA08C;
  --slate:       #7F8C98;
  --dark:        #1d2725;
  --white:       #FFFFFF;
  --cream-dark:  #EBE4D8;
  --rose-light:  #D4C0BA;
  --sage-light:  #A8B8A5;
  --sage-dark:   #6B8A68;
  --slate-light: #A0AFBA;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-6xl:  5rem;

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(29,39,37,.06), 0 1px 2px rgba(29,39,37,.04);
  --shadow-md: 0 4px 16px rgba(29,39,37,.08), 0 2px 8px rgba(29,39,37,.04);
  --shadow-lg: 0 12px 40px rgba(29,39,37,.12), 0 4px 16px rgba(29,39,37,.06);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);

  --container-max: 1240px;
  --container-narrow: 800px;
  --nav-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.75;
  color: var(--dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage); }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: none;
  outline: none;
}

::selection { background: var(--rose-light); color: var(--dark); }

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, var(--text-6xl)); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, var(--text-5xl)); }
h3 { font-size: clamp(1.5rem, 3vw, var(--text-4xl)); }
h4 { font-size: var(--text-2xl); font-family: var(--font-body); font-weight: 500; }
h5 { font-size: var(--text-xl); font-family: var(--font-body); font-weight: 500; }
h6 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 500; }

p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

.lead {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
}

blockquote {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--dark);
  padding-left: var(--sp-8);
  border-left: 3px solid var(--sage);
}

.philosophy-quote {
  border-left: none;
  padding-left: 0;
}

strong { font-weight: 500; }
em { font-style: italic; }

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-24);
}

.section--sm { padding-block: var(--sp-16); }
.section--lg { padding-block: var(--sp-32); }

.section--cream  { background-color: var(--cream); }
.section--white  { background-color: var(--white); }
.section--rose   { background-color: #EDE5E2; }
.section--sage   { background-color: #E8EDE7; }
.section--dark   { background-color: var(--dark); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.section-header { margin-bottom: var(--sp-12); }
.section-header .eyebrow { margin-bottom: var(--sp-3); }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p  { color: #4a5a57; max-width: 600px; }
.section-header.text-center p { margin-inline: auto; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:focus { outline: none; }
.btn:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
.btn-ghost::after, .btn-ghost-white::after { display: none; }

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--rose);
  color: var(--dark);
}
.btn-secondary:hover {
  background: var(--rose-light);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-ghost {
  background: transparent;
  color: var(--dark);
  padding-inline: 0;
  border-radius: 0;
  position: relative;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--dark);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform var(--transition);
}
.btn-ghost:hover { color: var(--sage); }
.btn-ghost:hover::before { background: var(--sage); transform: scaleX(1); }

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.92);
  padding-inline: 0;
  border-radius: 0;
  position: relative;
  font-size: var(--text-sm);
}
.btn-ghost-white::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.6);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform var(--transition);
}
.btn-ghost-white:hover { color: white; }
.btn-ghost-white:hover::before { background: white; transform: scaleX(1); }

.btn-white-outline {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
  font-weight: 500;
}
.btn-white-outline:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}

/* ─── Header & Navigation ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-transparent {
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(243,239,230,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(29,39,37,0.08);
}

.site-header.is-solid {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(29,39,37,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  gap: var(--sp-8);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.site-text-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.1;
}
.logo-name {
  /* previous: font-family: 'Petit Formal Script', cursive; */
  font-family: 'Parisienne', cursive;
  font-style: normal;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}
.logo-subtitle {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a6a5a;
  margin-top: 2px;
}

/* Primary Nav */
.primary-nav { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a.nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  transition: color var(--transition);
  border-radius: var(--radius-sm);
}
.nav-menu > li > a.nav-link:hover,
.nav-menu > li.current-menu-item > a.nav-link,
.nav-menu > li.current-menu-ancestor > a.nav-link {
  color: var(--sage);
}

.dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
  margin-top: 2px;
}
.nav-menu > li.is-open .dropdown-arrow { transform: rotate(180deg); }

.dropdown-toggle { display: none; }

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2) var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  pointer-events: none;
  z-index: 200;
}

.nav-menu > li:hover .dropdown-menu,
.nav-menu > li.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--dark);
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--cream);
  color: var(--sage);
}

/* Nav CTA Button */
.nav-cta .btn {
  padding: 0.7rem 1.6rem;
  font-size: var(--text-sm);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(29,39,37,0.06); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29,39,37,0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  padding-top: calc(var(--nav-height) + var(--sp-4));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-slow);
  box-shadow: -8px 0 40px rgba(29,39,37,0.15);
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-nav ul { list-style: none; flex: 1; }
.mobile-nav > ul > li {
  border-bottom: 1px solid rgba(29,39,37,0.08);
}
.mobile-nav > ul > li > a,
.mobile-nav > ul > li > .mobile-nav-row > a {
  display: block;
  padding: var(--sp-3) 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.mobile-nav > ul > li > a:hover,
.mobile-nav > ul > li > .mobile-nav-row > a:hover { color: var(--sage); }

.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--dark);
  opacity: 0.55;
  border-radius: var(--radius-sm);
  transition: background var(--transition), opacity var(--transition);
}
.mobile-dropdown-toggle:hover { opacity: 1; background: rgba(29,39,37,0.06); }
.mobile-dropdown-toggle svg { transition: transform var(--transition); }
li.is-open .mobile-dropdown-toggle svg { transform: rotate(180deg); }

.mobile-nav .mobile-dropdown {
  display: none;
  padding-bottom: var(--sp-3);
}
.mobile-nav .mobile-dropdown a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  color: #4a5a57;
}
.mobile-nav .mobile-cta {
  margin-top: auto;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(29,39,37,0.08);
}
.mobile-nav .mobile-cta .btn {
  width: 100%;
  justify-content: center;
}
.mobile-nav-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: 1.5rem;
  color: var(--dark);
  background: rgba(29,39,37,0.06);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mobile-nav-close:hover { background: rgba(29,39,37,0.12); }

/* ─── Scroll Animations ───────────────────────────────────────────────────── */
.animate {
  opacity: 0;
  transition: opacity 1s ease;
}
.animate.delay-1 { transition-delay: 0.15s; }
.animate.delay-2 { transition-delay: 0.30s; }
.animate.delay-3 { transition-delay: 0.45s; }
.animate.delay-4 { transition-delay: 0.60s; }
.animate.delay-5 { transition-delay: 0.75s; }
.animate.is-visible {
  opacity: 1;
}

/* ─── Homepage body text scale ───────────────────────────────────────────── */
body.home p:not(.service-card__desc):not(.post-card__excerpt):not(.hero-body),
body.home li,
body.home span:not(.eyebrow):not(.hero-eyebrow):not(.service-card__tag):not(.service-card__link):not(.name-line):not(.logo-subtitle):not(.logo-name):not(.welcome-image-badge-attr):not(.post-card__category):not(.text-highlight) {
  font-size: calc(1em * 1.06);
}
/* Restore CTA paragraph size on homepage to match other pages */
body.home .cta-section .cta-inner p.animate {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

/* ─── Hero (Home) ────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--cream) 0%, #EDE5DF 40%, #D8CFCA 80%, #C8D5C6 100%);
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-bg-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  top: -10%; right: -5%;
}
.hero-bg-blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  bottom: 0%; left: 5%;
}
.hero-bg-blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--slate-light) 0%, transparent 70%);
  top: 30%; left: 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-16);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  padding-block: var(--sp-24);
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3a5a4a;
  margin-bottom: var(--sp-6);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sage);
}

.hero-heading {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
  color: var(--dark);
}
.hero-heading em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-body {
  font-size: 1.45rem;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.6;
  color: #1a2a27;
  max-width: 500px;
  margin-bottom: var(--sp-10);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-6);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #D4C8C0 0%, #B8C4B4 60%, #A8B5C0 100%);
  box-shadow: var(--shadow-lg);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-stats {
  position: absolute;
  top: var(--sp-8);
  right: -var(--sp-8);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.hero-stats .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--rose);
}
.hero-stats .stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: #6a7a77;
  text-transform: uppercase;
}

/* ─── Welcome Section ─────────────────────────────────────────────────────── */
.welcome-section {
  background: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--sp-12);
  align-items: start;
}

.welcome-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4.6;
  background: linear-gradient(160deg, #C8D5C6 0%, #D4C8C0 50%, #B8BFC4 100%);
}
.welcome-image img { width: 100%; height: 100%; object-fit: cover; }

.welcome-image-badge {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-8);
  box-shadow: var(--shadow-lg);
  width: 85%;
  text-align: center;
}
.welcome-image-badge p {
  font-family: var(--font-display);
  font-size: 1.4rem !important;
  font-style: italic;
  color: var(--dark);
  margin: 0 0 0.4rem;
  line-height: 1.5;
}
.welcome-image-badge-attr {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d4f4b;
}

.welcome-content .eyebrow { margin-bottom: var(--sp-4); font-size: var(--text-sm); }
.welcome-content .btn-outline {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
  font-size: var(--text-sm);
}
.welcome-content .btn-outline:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--cream);
}
.welcome-content h2 { margin-bottom: var(--sp-6); }
.welcome-content p  { color: #4a5a57; margin-bottom: var(--sp-5); }
.welcome-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--sage-dark);
  margin-top: var(--sp-6);
  line-height: 1.5;
}

.welcome-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6);
}
.welcome-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #4a5a57;
  font-size: calc(var(--text-sm) + 0.1rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}
.welcome-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.welcome-divider {
  display: none;
}

/* ─── Services Grid (Home) ───────────────────────────────────────────────── */
.services-section { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), opacity 1s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.service-card__image-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .service-card__image-inner { transform: scale(1.05); }

.service-card--anxiety   .service-card__image-inner { background: url('https://images.unsplash.com/photo-1541996206728-9e1c3466a148?w=500&auto=format&fit=crop&q=60') center/cover no-repeat; }
.service-card--trauma    .service-card__image-inner { background: url('https://images.unsplash.com/photo-1746160121968-1722e1485834?w=500&auto=format&fit=crop&q=60') center/cover no-repeat; }
.service-card--eip       .service-card__image-inner { background: url('https://images.unsplash.com/photo-1668351778418-a8bb6327652b?w=500&auto=format&fit=crop&q=60') center/cover no-repeat; }
.service-card--perinatal .service-card__image-inner { background: url('https://images.unsplash.com/photo-1770261431327-bd1b0e55874d?w=500&auto=format&fit=crop&q=60') center/cover no-repeat; }

.service-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--sp-3);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.9rem;
  color: #6a7a77;
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-4);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--sage);
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: var(--sp-3); }
.service-card__link::after { content: '→'; }

/* ─── About Teaser ────────────────────────────────────────────────────────── */
.about-teaser {
  background: linear-gradient(135deg, #EDE5E2 0%, var(--cream) 100%);
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-20);
  align-items: center;
}

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

.about-teaser-image-frame {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #C0B0A8 0%, #98A895 60%, #8898A4 100%);
  box-shadow: var(--shadow-lg);
}
.about-teaser-image-frame img { width: 100%; height: 100%; object-fit: cover; }

.about-teaser-image-badge {
  position: absolute;
  bottom: -var(--sp-6);
  right: -var(--sp-6);
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-md);
}
.about-teaser-image-badge .badge-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  display: block;
}
.about-teaser-image-badge .badge-subtitle {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.teaser-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.about-teaser-content .eyebrow { margin-bottom: var(--sp-3); }
.about-teaser-content h2 { margin-bottom: var(--sp-4); }
.about-teaser-content .name-line {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  font-weight: 300;
  color: var(--sage-dark);
  margin-bottom: var(--sp-6);
  display: block;
}
.about-teaser-content p { color: #4a5a57; margin-bottom: var(--sp-5); }

.credentials-list {
  margin: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: #4a5a57;
}
.credential-item::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 8px;
}

.teaser-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
  border-top: 1px solid rgba(29,39,37,0.08);
}
.teaser-credential {
  display: flex;
  gap: var(--sp-4);
  align-items: baseline;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(29,39,37,0.08);
  font-size: var(--text-sm);
  color: #4a5a57;
}
.teaser-credential-label {
  flex-shrink: 0;
  width: 90px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
}

/* ─── Philosophy / Approach ───────────────────────────────────────────────── */
/* Quote block */
.philosophy-section {
  background: var(--dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(143,160,140,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(191,167,160,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.philosophy-inner {
  position: relative;
  z-index: 1;
}

.philosophy-quote-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  max-width: 1100px;
  margin: 0 auto;
}

.quote-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(191,167,160,0.45), transparent);
  min-width: 40px;
  flex-shrink: 0;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
  text-align: center;
  flex: 0 1 760px;
  margin: 0;
}
.philosophy-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-top: var(--sp-4);
}

/* Approach block */
.approach-section {
  background: #EDD8D4;
  color: var(--dark);
}

.approach-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
  font-weight: 300;
  color: var(--dark);
  text-align: center;
  max-width: 680px;
  margin: var(--sp-20) auto 0;
  line-height: 1.5;
  opacity: 0.75;
}

.approach-section .eyebrow {
  color: rgba(29,39,37,0.55);
}

.approach-section h2 {
  color: var(--dark);
}

.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-16);
}

.approach-pillar {
  text-align: center;
}

.approach-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(29,39,37,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  color: var(--dark);
}
.approach-pillar-icon svg { width: 24px; height: 24px; }

.approach-pillar h4 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: var(--sp-3);
}
.approach-pillar p {
  font-size: var(--text-sm);
  color: rgba(29,39,37,0.7);
  line-height: 1.7;
}

/* ─── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-6);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--rose);
  opacity: 0.4;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}
.testimonial-stars span {
  color: var(--sage);
  font-size: 14px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: var(--sp-6);
}

.testimonial-author {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
}
.testimonial-location {
  font-size: var(--text-xs);
  color: #7a8a87;
}

.testimonials-disclaimer {
  text-align: center;
  margin-top: var(--sp-8);
  font-size: var(--text-xs);
  color: #9aaaa7;
  letter-spacing: 0.05em;
}

/* ─── Blog Preview ────────────────────────────────────────────────────────── */
.blog-preview-section { background: var(--cream); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), opacity 1s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--slate) 100%);
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.post-card:hover .post-card__image img { transform: scale(1.05); }

.post-card__body { padding: var(--sp-6); }

.post-card__category {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--sp-3);
}

.post-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--sage); }

.post-card__excerpt {
  font-size: var(--text-sm);
  color: #6a7a77;
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  color: #9aaaa7;
}

/* ─── CTA Section ─────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(191,167,160,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner .eyebrow { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: var(--sp-4); }
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.cta-inner p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: var(--font-display);
  font-weight: 400;
  color: rgba(255,255,255,1);
  max-width: 600px;
  margin: 0 auto var(--sp-10);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
}

/* ─── Page Hero (Inner Pages) ────────────────────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding-top: calc(var(--nav-height) + var(--sp-16));
  padding-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(29,39,37,0.08);
}

.page-hero--rose    { background: #EDE5E2; }
.page-hero--sage    { background: #E8EDE7; }
.page-hero--slate   { background: #E8EDF0; }

.page-hero-inner { text-align: center; max-width: 760px; margin-inline: auto; }
.page-hero-inner .eyebrow { margin-bottom: var(--sp-4); }
.page-hero-inner h1 { margin-bottom: var(--sp-5); }
.page-hero-inner .lead { color: #4a5a57; }

/* ─── About Page ─────────────────────────────────────────────────────────── */
.text-highlight {
  background: linear-gradient(transparent 55%, rgba(191, 167, 160, 0.35) 45%);
  background-repeat: no-repeat;
}
.therapist-bio-section { background: var(--white); }

.therapist-bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-20);
  align-items: start;
}

.therapist-photo {
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-8));
}
.therapist-photo-frame {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #C0B0A8 0%, #98A895 60%, #8898A4 100%);
  box-shadow: var(--shadow-lg);
}
.therapist-photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.therapist-photo-caption {
  margin-top: var(--sp-5);
  text-align: center;
}
.therapist-photo-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
}
.therapist-photo-caption span {
  font-size: var(--text-sm);
  color: #6a7a77;
}

.therapist-bio-content { padding-top: var(--sp-4); }
.therapist-bio-content h2 { margin-bottom: var(--sp-2); }
.therapist-bio-content .therapist-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: var(--sp-8);
  display: block;
}
.therapist-bio-content p { color: #2a3a37; margin-bottom: var(--sp-4); font-size: var(--text-base); line-height: 1.75; }

/* Credentials */
.credentials-section { background: var(--cream); }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.credential-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  border-top: 3px solid var(--sage);
}
.credential-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--sp-4);
}
.credential-card ul { list-style: none; }
.credential-card ul li {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(29,39,37,0.06);
  font-size: var(--text-sm);
  color: #4a5a57;
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.credential-card ul li:last-child { border-bottom: none; }
.credential-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 9px;
}

/* Approach Modalities */
.approach-section { background: var(--white); }

.modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.signs-grid-cols {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  max-width: 760px;
  margin-inline: auto;
}

.signs-grid-cols .modality-card {
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.signs-grid-cols .modality-card::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 0.55em;
}

.signs-grid-cols .modality-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--dark);
}


.modality-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: transform var(--transition), box-shadow var(--transition), opacity 1s ease;
}
.modality-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.modality-card h5 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--sp-2);
}
.modality-card p { font-size: var(--text-sm); color: #6a7a77; margin: 0; }

/* Values */
/* ── Get to Know Me ── */
.get-to-know {
  background: var(--cream);
}

.gtk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.gtk-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  border: 1.5px solid rgba(191,167,160,0.2);
  transition: transform var(--transition), box-shadow var(--transition), opacity 1s ease;
}

.gtk-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gtk-last-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.gtk-last-row .gtk-card {
  flex: 0 1 calc(33.333% - var(--sp-4));
  min-width: 280px;
}

.gtk-q {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.gtk-a {
  font-size: var(--text-sm);
  color: #4a5a57;
  line-height: 1.7;
  margin: 0;
}

.gtk-choices {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.gtk-choice {
  font-size: var(--text-sm);
  color: #7a8a87;
  line-height: 1.5;
}
.gtk-choice-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  margin-right: 0.35rem;
  vertical-align: middle;
  font-size: 0.8rem;
}
.gtk-choice--selected {
  color: var(--dark);
  font-weight: 500;
}
.gtk-choice--selected .gtk-choice-letter {
  border: 2px solid var(--rose);
  color: var(--dark);
  font-weight: 700;
}

.values-section { background: var(--dark); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8) var(--sp-6);
  margin-top: var(--sp-12);
}

.value-item { text-align: center; }
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(143,160,140,0.15);
  border: 1.5px solid rgba(143,160,140,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  color: var(--sage-light);
}
.value-icon svg { width: 22px; height: 22px; }
.value-item h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--sp-3);
}
.value-item p {
  font-size: var(--text-sm);
  color: rgba(243,239,230,0.6);
  line-height: 1.65;
}

/* ─── Service/Specialty Pages ────────────────────────────────────────────── */
.service-hero {
  padding-top: calc(var(--nav-height) + var(--sp-8));
  padding-bottom: var(--sp-20);
  position: relative;
  overflow: hidden;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.service-hero-content .eyebrow { margin-bottom: var(--sp-4); }
.service-hero-content h1 { margin-bottom: var(--sp-4); font-weight: 300; }
.service-hero-content .tagline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  font-weight: 300;
  color: var(--sage-dark);
  margin-bottom: var(--sp-6);
}
.service-hero-content p { color: #4a5a57; margin-bottom: var(--sp-8); }

.service-hero-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-signs-section { background: var(--cream); }

.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-top: var(--sp-8);
  max-width: 900px;
  margin-inline: auto;
}

.sign-item {
  display: block;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(29,39,37,0.1);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.35;
}
.sign-item:nth-child(odd):nth-last-child(1),
.sign-item:nth-child(odd):nth-last-child(1) ~ .sign-item {
  border-bottom: 1px solid rgba(29,39,37,0.1);
}

.service-approach-section { background: var(--white); }

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--sp-10);
  max-width: 780px;
  margin-inline: auto;
}

.approach-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid rgba(29,39,37,0.07);
}
.approach-step:last-child { border-bottom: 1px solid rgba(29,39,37,0.07); }

.approach-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(29,39,37,0.45);
  line-height: 1;
  padding-top: 0.2rem;
}

.approach-step-content h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.approach-step-content p {
  font-size: 0.95rem;
  color: #4a5a57;
  line-height: 1.85;
  margin: 0;
}

.service-cta-section {
  background: var(--dark);
  text-align: center;
  padding: var(--sp-20) 0;
}
.service-cta-section .eyebrow { color: rgba(243,239,230,0.5); }
.service-cta-section h2 { color: var(--cream); margin-bottom: var(--sp-4); }
.service-cta-section p { color: rgba(243,239,230,0.72); max-width: 560px; margin: 0 auto var(--sp-8); }

/* ─── FAQ Page ────────────────────────────────────────────────────────────── */
.faq-section {
  background: #fff;
  padding: 5rem 0 6rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-group {
  margin-bottom: 3.5rem;
}
.faq-group:last-child { margin-bottom: 0; }

.faq-group-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 0.75rem;
  padding-top: 1rem;
}
.faq-group:first-child .faq-group-label {
  padding-top: 0;
}

.faq-item {
  border-top: 1px solid rgba(29,39,37,0.09);
}
.faq-group:last-child .faq-item:last-child {
  border-bottom: 1px solid rgba(29,39,37,0.09);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  gap: 2rem;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--sage); }
.faq-question[aria-expanded="true"] { color: var(--sage); }

/* Plus / minus icon via pseudo-elements */
.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.faq-icon::before {
  /* horizontal bar */
  left: 0; top: 50%;
  width: 100%; height: 1.5px;
  transform: translateY(-50%);
}
.faq-icon::after {
  /* vertical bar */
  left: 50%; top: 0;
  width: 1.5px; height: 100%;
  transform: translateX(-50%);
}
.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 3rem 1.75rem 0;
}
.faq-answer.is-open { display: block; }
.faq-answer p {
  font-size: 0.9rem;
  color: #4a5a57;
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer ul {
  list-style: none;
  margin: 0.5rem 0 0.8rem;
  padding: 0;
}
.faq-answer ul li {
  font-size: 0.9rem;
  color: #4a5a57;
  line-height: 1.75;
  padding: 0.2rem 0 0.2rem 1.25rem;
  position: relative;
}
.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
}

@media (max-width: 640px) {
  .faq-sidebar { padding: 3rem 0 2.5rem; }
  .faq-list { padding-bottom: 4rem; }
  .faq-answer { padding-right: 0.5rem; }
}

/* ─── Resources Page ─────────────────────────────────────────────────────── */
.resources-intro-section { background: var(--white); }
.resources-section { background: var(--cream); }
.resources-section + .resources-section { background: var(--white); }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border-left: 3px solid var(--sage);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.resources-section--alt .resource-card { border-left-color: var(--rose); }
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.resource-card h5 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--sp-2);
}
.resource-card p { font-size: var(--text-sm); color: #6a7a77; margin-bottom: var(--sp-3); }
.resource-card a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--sage);
}
.resource-card a:hover { color: var(--sage-dark); }

.crisis-section {
  background: #FDF0ED;
  border: 1.5px solid #E8C5BC;
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  margin-bottom: var(--sp-12);
}
.crisis-section h3 {
  color: #B85040;
  margin-bottom: var(--sp-2);
}
.crisis-section p { color: #5a3530; margin-bottom: var(--sp-5); }

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.crisis-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
}
.crisis-item strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: var(--sp-1);
}
.crisis-item a {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 600;
  color: #B85040;
}

/* ─── Contact Page ────────────────────────────────────────────────────────── */
.contact-grid-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-form-wrap h3 { margin-bottom: var(--sp-8); font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 400; }

.form-group {
  margin-bottom: var(--sp-6);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: #faf8f5;
  border: 1.5px solid rgba(29,39,37,0.14);
  border-radius: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--dark);
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(143,160,140,0.15);
  background: var(--white);
}
.form-control::placeholder { color: #7a9590; font-style: italic; }

textarea.form-control {
  min-height: 160px;
  resize: vertical;
  line-height: 1.7;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238FA08C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1rem;
  color: var(--dark);
}
select.form-control option[value=""] { color: #bcc9c6; }
select.form-control:invalid,
select.form-control option:first-child:not(:checked) { color: #bcc9c6; }

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a6a67;
  margin-bottom: 0.45rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-note {
  font-size: var(--text-xs);
  color: #9aaaa7;
  margin-top: var(--sp-3);
}

.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-8));
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  margin-bottom: var(--sp-6);
}

.contact-info-items { margin-bottom: var(--sp-8); }

.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(29,39,37,0.06);
}
.contact-info-item:last-child { border-bottom: none; }

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

.contact-info-text strong { display: block; font-size: var(--text-sm); margin-bottom: 2px; }
.contact-info-text span, .contact-info-text a {
  font-size: var(--text-sm);
  color: #6a7a77;
}

.contact-process-steps { margin-top: var(--sp-6); }
.contact-process-steps h4 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  margin-bottom: var(--sp-8);
}

.process-step {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  align-items: flex-start;
}
.process-step:last-child { margin-bottom: 0; }

.process-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 500;
  margin-top: 2px;
}

.process-text strong { display: block; font-size: var(--text-base); margin-bottom: 3px; }
.process-text span { font-size: var(--text-sm); color: #6a7a77; line-height: 1.4; }

/* Alert boxes */
.alert {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
}
.alert-success {
  background: #EBF5EB;
  color: #2d6a2d;
  border: 1px solid #c3e6c3;
}
.alert-error {
  background: #FDF0ED;
  color: #B85040;
  border: 1px solid #E8C5BC;
}

/* ─── Blog Archive ────────────────────────────────────────────────────────── */
.blog-archive-section { background: var(--white); }

.blog-archive-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-12);
  align-items: start;
}

.blog-posts-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.blog-post-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-6);
  background: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), opacity 1s ease;
}
.blog-post-card:hover { box-shadow: var(--shadow-md); }

.blog-post-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--slate) 100%);
}
.blog-post-card__image img { width: 100%; height: 100%; object-fit: cover; }

.blog-post-card__body {
  padding: var(--sp-6) var(--sp-6) var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-post-card__category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--sp-3);
}

.blog-post-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}
.blog-post-card__title a { color: var(--dark); }
.blog-post-card__title a:hover { color: var(--sage); }

.blog-post-card__excerpt {
  font-size: var(--text-sm);
  color: #6a7a77;
  margin-bottom: var(--sp-4);
}

.blog-post-card__meta {
  font-size: var(--text-xs);
  color: #9aaaa7;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-8));
}

.blog-sidebar .wp-block-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1.5px solid rgba(29,39,37,0.1);
}

.widget {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.widget-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 400;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1.5px solid rgba(29,39,37,0.1);
}

/* WordPress search block inside sidebar */
.blog-sidebar .wp-block-search__inside-wrapper {
  display: flex;
  gap: 0.5rem;
}
.blog-sidebar .wp-block-search__input {
  flex: 1;
  background: var(--white);
  border: 1.5px solid rgba(29,39,37,0.2);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--dark);
  outline: none;
}
.blog-sidebar .wp-block-search__input:focus {
  border-color: var(--sage);
}
.blog-sidebar .wp-block-search__button {
  background: var(--dark);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.blog-sidebar .wp-block-search__button:hover {
  background: var(--sage);
}


/* ─── Single Blog Post ────────────────────────────────────────────────────── */
.post-hero {
  padding-top: calc(var(--nav-height) + var(--sp-16));
  padding-bottom: var(--sp-12);
  background: var(--cream);
}

.post-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-6);
}

.post-category-badge {
  padding: var(--sp-1) var(--sp-3);
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-date, .post-read-time {
  font-size: var(--text-sm);
  color: #6a7a77;
}

.post-hero h1 { margin-bottom: var(--sp-6); }

.post-hero-image {
  aspect-ratio: 21/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose) 0%, var(--slate) 100%);
  margin-top: var(--sp-8);
}
.post-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.post-content-section { background: var(--white); }

.post-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-12);
  align-items: start;
}

.post-content { max-width: none; }

.post-content h2 { font-size: var(--text-3xl); margin: var(--sp-12) 0 var(--sp-4); }
.post-content h3 { font-size: var(--text-2xl); margin: var(--sp-10) 0 var(--sp-3); }
.post-content h4 { font-size: var(--text-xl); margin: var(--sp-8) 0 var(--sp-3); }
.post-content p { color: #4a5a57; margin-bottom: var(--sp-6); line-height: 1.85; font-size: var(--text-base); }
.post-content h2 + p, .post-content h3 + p, .post-content h4 + p { margin-top: 0; }
.post-content ul, .post-content ol { margin: var(--sp-4) 0 var(--sp-7); padding-left: var(--sp-6); }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: var(--sp-3); color: #4a5a57; font-size: var(--text-base); line-height: 1.75; }
.post-content blockquote { margin: var(--sp-10) 0; padding: var(--sp-6) var(--sp-8); background: var(--cream); border-left: 3px solid var(--rose); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.post-content blockquote p { color: var(--dark); font-family: var(--font-display); font-size: var(--text-xl); font-style: italic; margin: 0; }
.post-content a { color: var(--sage); text-decoration: underline; }
.post-content img { border-radius: var(--radius-lg); margin: var(--sp-8) 0; }

.post-footer {
  margin-top: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(29,39,37,0.1);
}

.post-tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.post-tag {
  padding: var(--sp-1) var(--sp-3);
  background: var(--cream);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: #6a7a77;
  transition: background var(--transition), color var(--transition);
}
.post-tag:hover { background: var(--sage); color: var(--white); }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.post-nav-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.post-nav-item .label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9aaaa7;
  display: block;
  margin-bottom: var(--sp-1);
}
.post-nav-item a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--dark);
}
.post-nav-item a:hover { color: var(--sage); }
.post-nav-item--next { text-align: right; }

/* Pagination */
.pagination { margin-top: var(--sp-12); }
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  list-style: none;
}
.pagination li a, .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition);
}
.pagination li a { color: var(--dark); }
.pagination li a:hover { background: var(--cream); color: var(--sage); }
.pagination li.current span {
  background: var(--sage);
  color: var(--white);
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}

.footer-brand {}
.footer-logo { margin-bottom: var(--sp-8); }
.footer-logo img { width: 64px !important; height: 64px !important; }
.footer-logo .site-text-logo .logo-name { color: var(--cream); font-size: 1.9rem; }
.footer-logo .site-text-logo .logo-subtitle { color: var(--sage-light); font-size: 0.9rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: rgba(243,239,230,0.7);
  margin-bottom: var(--sp-6);
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: var(--sp-3);
}
.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243,239,230,0.7);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}
.footer-social svg { width: 22px; height: 22px; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: var(--sp-6);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul li a {
  font-size: var(--text-base);
  color: rgba(243,239,230,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sage-light);
}
.footer-contact-item span {
  font-size: var(--text-base);
  color: rgba(243,239,230,0.65);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copy {
  font-size: var(--text-xs);
  color: rgba(243,239,230,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 2.5rem;
}
.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(243,239,230,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(243,239,230,0.8); }

.pt-badge { display: inline-flex; align-items: center; }
.pt-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(243,239,230,0.55) !important;
  border: 1px solid rgba(243,239,230,0.2);
  border-radius: 3px;
  padding: 0.25rem 0.55rem;
  transition: border-color var(--transition), color var(--transition);
}
.pt-badge:hover .pt-badge-inner {
  color: rgba(243,239,230,0.85) !important;
  border-color: rgba(243,239,230,0.45);
}

/* ─── FAQ CTA Section ────────────────────────────────────────────────────── */
.faq-cta-section {
  background: var(--cream);
  padding: 5rem 0;
}
.faq-cta-inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}
.faq-cta-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1rem;
}
.faq-cta-sub {
  font-size: 0.95rem;
  color: #6a7a77;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.faq-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Generic Page Layout ────────────────────────────────────────────────── */
.page-content { background: var(--white); }
.page-content .entry-content { max-width: var(--container-narrow); margin-inline: auto; }
.page-content .entry-content h2 { margin: var(--sp-10) 0 var(--sp-4); }
.page-content .entry-content p  { color: #4a5a57; margin-bottom: var(--sp-5); }

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gtk-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-visual { order: -1; }
  .hero-image-main { max-width: 460px; margin-inline: auto; }
  .hero-heading { font-size: clamp(2.2rem, 6vw, 3.5rem); }

  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-image { max-width: 480px; margin-inline: auto; }

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

  .about-teaser-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about-teaser-image { max-width: 460px; margin-inline: auto; }

  .approach-pillars { grid-template-columns: 1fr 1fr; }
  .philosophy-quote-wrap { flex-direction: column; gap: var(--sp-6); }
  .quote-rule { display: none; }
  .philosophy-quote { font-size: clamp(1.4rem, 5vw, 2rem); }

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

  .therapist-bio-grid { grid-template-columns: 1fr; }
  .therapist-photo { position: static; max-width: 400px; }

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

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

  .values-grid { grid-template-columns: repeat(2, 1fr); row-gap: var(--sp-10); }

  .service-hero-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }

  .blog-archive-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }

  .post-content-grid { grid-template-columns: 1fr; }

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

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .gtk-grid { grid-template-columns: 1fr; }
  .gtk-last-row { flex-direction: column; flex-wrap: nowrap; }
  .gtk-last-row .gtk-card { flex: 1 1 100%; min-width: unset; width: 100%; }
  .teaser-actions { justify-content: center; }

  .primary-nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .mobile-header-name {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-left: var(--sp-3);
  }
  .mobile-header-name .name-main {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--dark);
  }
  .mobile-header-name .name-sub {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    font-family: var(--font-body);
  }
  .site-logo {
    align-items: center;
  }

  /* ── Mobile Hero: full-bleed image with text overlay ── */
  .hero-section { overflow: hidden; }

  .hero-bg { display: none; }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    order: 0;
    display: block;
  }
  .hero-image-wrap,
  .hero-image-main {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    max-width: none;
  }
  .hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(15, 23, 21, 0.82) 0%,
      rgba(15, 23, 21, 0.45) 50%,
      rgba(15, 23, 21, 0.15) 100%
    );
    z-index: 1;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 78svh;
    padding-top: var(--nav-height);
    padding-bottom: var(--sp-10);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    background: rgba(15, 23, 21, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    margin-bottom: var(--sp-2);
  }

  .hero-eyebrow { color: rgba(243,239,230,0.75); }
  .hero-eyebrow::before { background: rgba(243,239,230,0.4); }
  .hero-heading { color: var(--cream); font-size: clamp(2rem, 8vw, 3rem); }
  .hero-heading em { color: rgba(191,167,160,0.95); }
  .hero-body { color: rgba(243,239,230,0.85); }
  .hero-actions { justify-content: center; }
  .hero-actions .btn-ghost { color: var(--cream); border-color: rgba(243,239,230,0.5); }
  .hero-actions .btn-ghost:hover { background: rgba(243,239,230,0.1); }

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

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

  .approach-pillars { grid-template-columns: 1fr; }

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

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

  /* Blog preview header: centre all elements on mobile */
  .blog-preview-section .section-header {
    justify-content: center !important;
    text-align: center;
  }
  .blog-preview-section .section-header > div {
    width: 100%;
    text-align: center;
  }
  .blog-preview-section .section-header > .btn {
    margin: 0 auto;
  }

  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-card__body { padding: 2rem 1.75rem; }

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

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }

  .footer-tagline { font-size: 1.32rem !important; }
  .footer-logo .site-text-logo .logo-name { font-size: 2.4rem; }
  .footer-logo .site-text-logo .logo-subtitle { font-size: 1.05rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .post-nav { grid-template-columns: 1fr; }
  .post-nav-item--next { text-align: left; }

  .section { padding-block: var(--sp-16); }
  .section--lg { padding-block: var(--sp-20); }

  .philosophy-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
    display: flex;
    align-items: center;
  }
  .philosophy-inner { width: 100%; }
  .philosophy-quote-wrap { flex-direction: column; gap: var(--sp-4); }
  .quote-rule { display: none; }
  .philosophy-quote { font-size: clamp(2rem, 7.5vw, 2.6rem); flex: none; }

  .page-hero { padding-bottom: var(--sp-12); }

  .service-hero { padding-top: calc(var(--nav-height) + var(--sp-12)); padding-bottom: var(--sp-12); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .values-grid { grid-template-columns: 1fr; }
  .modalities-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
}

/* ─── Book Cards (Resources Page) ───────────────────────────────────────── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.book-card__cover {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: linear-gradient(160deg, #D4C8C0 0%, #C8D5C6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.book-card__cover-placeholder {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(29,39,37,0.4);
  padding: var(--sp-4);
  text-align: center;
}

.book-card__body {
  padding: var(--sp-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.book-card__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--sp-2);
}

.book-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
}

.book-card__author {
  font-size: 0.72rem;
  color: #8fa09a;
  margin-bottom: var(--sp-3);
  flex: 1;
}

.book-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  transition: color var(--transition);
  margin-top: auto;
}
.book-card__link:hover { color: var(--sage-dark); }
.book-card__link::after { content: ' →'; }

/* ─── Resource Sections ──────────────────────────────────────────────────── */
.resource-section {
  margin-bottom: 5rem;
}
.resource-section--cream {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.resource-section--sage {
  background: #E8EDE7;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* ─── Info Cards (Apps / Podcasts / Links) ───────────────────────────────── */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-8);
  margin-top: var(--sp-6);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8) var(--sp-4);
}
.info-card--sage .info-card__icon  { background: linear-gradient(135deg, #E8EDE7 0%, #D4E0D2 100%); }
.info-card--rose .info-card__icon  { background: linear-gradient(135deg, #F5EDEB 0%, #EDD8D4 100%); }
.info-card--slate .info-card__icon { background: linear-gradient(135deg, #E8ECF0 0%, #D8E0E8 100%); }

.info-card__body {
  padding: var(--sp-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.info-card__tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-2);
}
.info-card__tag--rose { color: var(--rose); }

.info-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.info-card__desc {
  font-size: var(--text-sm);
  color: #6a7a77;
  flex: 1;
  margin-bottom: var(--sp-3);
  line-height: 1.5;
}

.info-card__link {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  transition: color var(--transition);
  margin-top: auto;
}
.info-card__link:hover { color: var(--sage-dark); }
.info-card__link::after { content: ' →'; }

/* ─── Mobile Header Name ─────────────────────────────────────────────────── */
.mobile-header-name {
  display: none;
}

/* ─── Services Overview Page ─────────────────────────────────────────────── */
.services-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.services-overview-card {
  display: flex;
  flex-direction: row;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, opacity 1s ease;
}
.services-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.services-overview-card__image {
  width: 180px;
  flex-shrink: 0;
}
.services-overview-card__image-inner {
  width: 100%;
  height: 100%;
  min-height: 180px;
}
.services-overview-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}
.services-feature-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
}
.services-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--sage);
}

@media (max-width: 900px) {
  .services-overview-grid { grid-template-columns: 1fr; }
  .services-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .services-overview-card { flex-direction: column; }
  .services-overview-card__image { width: 100%; }
  .services-overview-card__image-inner { min-height: 160px; }
  .services-features-grid { grid-template-columns: 1fr; }
}

/* ─── WordPress Core Overrides ────────────────────────────────────────────── */
.wp-block-image img { border-radius: var(--radius-lg); }
.aligncenter { margin-inline: auto; text-align: center; }
.alignleft { float: left; margin-right: var(--sp-6); }
.alignright { float: right; margin-left: var(--sp-6); }

/* CF7 Form Styling */
.wpcf7 .form-control { }
.wpcf7-not-valid-tip { font-size: var(--text-xs); color: #B85040; margin-top: var(--sp-1); }
.wpcf7-response-output {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  margin-top: var(--sp-4);
}

/* Yoast SEO */
.yoast-schema-graph { display: none; }
