/* ============================================
   HART TO HUMAN — Master Stylesheet
   Colors: Cream / Brown / Mustard / Olive
   Fonts: Montserrat / Open Sans / Merriweather
   ============================================ */

/* --- Google Fonts --- */
/* NOTE: Fonts loaded via <link> tags in HTML head for non-blocking render.
   Keeping this comment for reference — DO NOT use @import (blocks rendering). */

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette */
  --cream: #FAF6F0;
  --cream-dark: #F0E8DC;
  --brown-dark: #3E2723;
  --brown: #5D4037;
  --brown-medium: #795548;
  --brown-light: #A1887F;
  --brown-warm: #8D6E63;

  /* Accent Colors */
  --mustard: #C9A84C;
  --mustard-light: #D4B96A;
  --mustard-dark: #B8952E;
  --olive: #556B2F;
  --olive-light: #6B7B3A;
  --olive-dark: #3D4F22;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FEFCF9;
  --text-primary: #2C1810;
  --text-secondary: #5D4037;
  --text-muted: #8D6E63;
  --border-light: #E8DFD4;
  --shadow-color: rgba(62, 39, 35, 0.08);

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: 'Merriweather', serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --nav-height: 140px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--brown);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--mustard-dark);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.25;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1em;
  font-size: 1.05rem;
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--brown-warm);
}

blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown-warm);
  border-left: 4px solid var(--mustard);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--cream-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--brown { background: var(--brown-dark); color: var(--cream); }
.section--brown h2, .section--brown h3 { color: var(--cream); }
.section--brown p { color: var(--cream-dark); }
.section--olive { background: var(--olive-dark); color: var(--cream); }
.section--olive h2, .section--olive h3 { color: var(--cream); }

.grid {
  display: grid;
  gap: 32px;
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-height);
  transition: all var(--transition-base);
}

.nav.scrolled {
  box-shadow: 0 2px 20px var(--shadow-color);
}

.nav__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--brown-dark);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--mustard);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.nav__links li {
  display: flex;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
  background: transparent;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--brown-dark);
}

.nav__links a.active {
  color: var(--brown-dark);
  font-weight: 600;
}

.nav__cta {
  background: var(--brown) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-xl) !important;
}

.nav__cta:hover {
  background: var(--brown-dark) !important;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  margin: 6px 0;
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* --- Hero Sections --- */
.hero {
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero--main {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, rgba(201, 168, 76, 0.08) 100%);
}

.hero--page {
  padding: calc(var(--nav-height) + 48px) 0 48px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  text-align: center;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
  background: rgba(107, 123, 58, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  margin-bottom: 20px;
  max-width: 700px;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--brown);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(93, 64, 55, 0.25);
}

.btn--secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}

.btn--secondary:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--mustard {
  background: var(--mustard);
  color: var(--brown-dark);
}

.btn--mustard:hover {
  background: var(--mustard-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn--olive {
  background: var(--olive);
  color: var(--white);
}

.btn--olive:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-color);
  border-color: var(--mustard-light);
}

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

.card__icon--mustard { background: rgba(201, 168, 76, 0.12); color: var(--mustard-dark); }
.card__icon--olive { background: rgba(107, 123, 58, 0.12); color: var(--olive); }
.card__icon--brown { background: rgba(93, 64, 55, 0.12); color: var(--brown); }

.card__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Service Cards --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-color);
}

.service-card__img {
  height: 220px;
  background: var(--cream-dark);
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 28px;
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card__text {
  color: var(--text-secondary);
  font-size: 0.93rem;
  margin-bottom: 16px;
}

/* --- Pricing Table --- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--border-light);
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--mustard);
  transform: scale(1.03);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mustard);
  color: var(--brown-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 20px;
  border-radius: var(--radius-xl);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-color);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing__amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brown-dark);
}

.pricing__duration {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing__features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing__features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing__features li::before {
  content: '✓';
  color: var(--olive);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--brown-dark);
  padding: 48px 0;
}

.stats-bar .grid {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--mustard);
}

.stat__label {
  font-size: 0.9rem;
  color: var(--cream-dark);
  margin-top: 4px;
}

/* --- Testimonial --- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-accent);
  font-size: 4rem;
  color: var(--mustard-light);
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}

.testimonial__text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  padding-left: 32px;
}

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
  margin-top: 16px;
  padding-left: 32px;
}

/* --- FAQ Accordion --- */
.accordion {
  max-width: 780px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--border-light);
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 40px 24px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brown-dark);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.accordion__trigger::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--mustard);
  transition: transform var(--transition-fast);
}

.accordion__trigger.active::after {
  content: '−';
}

.accordion__trigger:hover {
  color: var(--mustard-dark);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion__content.open {
  max-height: 500px;
}

.accordion__text {
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

/* --- Footer --- */
.footer {
  background: var(--brown-dark);
  color: var(--cream-dark);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__brand span {
  color: var(--mustard);
}

.footer__desc {
  color: var(--brown-light);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mustard);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--brown-light);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--brown-light);
}

.footer__legal a {
  color: var(--brown-light);
  margin-left: 20px;
}

.footer__legal a:hover {
  color: var(--mustard);
}

/* --- Scroll Reveal — Organic Motion System --- */
/* Organic easing: fast start, gentle settle — like setting something down */
:root {
  --ease-organic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base reveal — fade + rise (children override direction) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-organic), transform 0.8s var(--ease-organic);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0);
  will-change: auto;
}

/* --- FIX #1: Staggered children — cards ripple in like a wave --- */
.grid .reveal:nth-child(1) { transition-delay: 0ms; }
.grid .reveal:nth-child(2) { transition-delay: 100ms; }
.grid .reveal:nth-child(3) { transition-delay: 200ms; }
.grid .reveal:nth-child(4) { transition-delay: 300ms; }
.grid .reveal:nth-child(5) { transition-delay: 400ms; }
.grid .reveal:nth-child(6) { transition-delay: 500ms; }

/* Pillars stagger */
.pillars li { opacity: 0; transform: translateY(10px); transition: opacity 0.5s var(--ease-organic), transform 0.5s var(--ease-organic); }
.reveal.visible .pillars li:nth-child(1) { opacity: 1; transform: none; transition-delay: 200ms; }
.reveal.visible .pillars li:nth-child(2) { opacity: 1; transform: none; transition-delay: 320ms; }
.reveal.visible .pillars li:nth-child(3) { opacity: 1; transform: none; transition-delay: 440ms; }

/* Approach list stagger */
.approach-list li { opacity: 0; transform: translateX(-12px); transition: opacity 0.5s var(--ease-organic), transform 0.5s var(--ease-organic); }
.reveal.visible .approach-list li:nth-child(1) { opacity: 1; transform: none; transition-delay: 100ms; }
.reveal.visible .approach-list li:nth-child(2) { opacity: 1; transform: none; transition-delay: 220ms; }
.reveal.visible .approach-list li:nth-child(3) { opacity: 1; transform: none; transition-delay: 340ms; }
.reveal.visible .approach-list li:nth-child(4) { opacity: 1; transform: none; transition-delay: 460ms; }

/* --- FIX #3: Mixed directions — images from sides, cards scale, text fades --- */

/* Images slide in from the side */
.split__media .reveal,
.split__media.reveal {
  transform: translateX(-40px);
  opacity: 0;
}
.split--text-right .split__media .reveal,
.split--text-right .split__media.reveal {
  transform: translateX(40px);
}
.split__media .reveal.visible,
.split__media.reveal.visible {
  transform: translateX(0);
  opacity: 1;
}

/* Service cards scale up */
.service-card.reveal {
  transform: translateY(20px) scale(0.97);
  opacity: 0;
}
.service-card.reveal.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Topic cards slide up gently */
.topic-card.reveal {
  transform: translateY(18px);
  opacity: 0;
}
.topic-card.reveal.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Step cards count in */
.step-card.reveal {
  transform: translateY(16px) scale(0.98);
  opacity: 0;
}
.step-card.reveal.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Pricing cards rise + scale */
.pricing-card.reveal {
  transform: translateY(24px) scale(0.96);
  opacity: 0;
}
.pricing-card.reveal.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Text blocks fade in (no movement — contrast with moving images) */
.split__text.reveal {
  transform: none;
  opacity: 0;
  transition: opacity 1s var(--ease-soft);
  transition-delay: 200ms;
}
.split__text.reveal.visible {
  opacity: 1;
}

/* --- FIX #5: Subtle parallax on images --- */
.media-frame img,
.portrait-frame__img {
  transition: transform 0.3s var(--ease-soft);
}
.media-frame {
  overflow: hidden;
  border-radius: var(--radius-md);
}

/* Hero section — text staggers in */
.hero-edit .eyebrow { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease-organic), transform 0.6s var(--ease-organic); }
.hero-edit .hero-edit__title { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-organic) 0.15s, transform 0.7s var(--ease-organic) 0.15s; }
.hero-edit .hero-edit__lede { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-organic) 0.3s, transform 0.7s var(--ease-organic) 0.3s; }
.hero-edit .btn-group { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease-organic) 0.45s, transform 0.6s var(--ease-organic) 0.45s; }
.hero-edit .hero-edit__meta { opacity: 0; transition: opacity 0.8s var(--ease-organic) 0.6s; }
.hero-edit .portrait-frame { opacity: 0; transform: translateX(30px); transition: opacity 0.9s var(--ease-organic) 0.2s, transform 0.9s var(--ease-organic) 0.2s; }

/* Trigger hero animations on load */
.hero-loaded .eyebrow,
.hero-loaded .hero-edit__title,
.hero-loaded .hero-edit__lede,
.hero-loaded .btn-group,
.hero-loaded .hero-edit__meta,
.hero-loaded .portrait-frame {
  opacity: 1;
  transform: none;
}

/* Brown section CTA — glow in */
.section--brown .reveal {
  transform: translateY(12px) scale(0.99);
}
.section--brown .reveal.visible {
  transform: translateY(0) scale(1);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--mustard);
  border-radius: 2px;
  margin: 24px auto;
}

.divider--left {
  margin-left: 0;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

/* --- Image Containers --- */
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-color);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-frame--accent {
  border: 4px solid var(--mustard-light);
}

/* --- Coaching vs Therapy Callout --- */
.callout {
  background: var(--cream-dark);
  border-left: 4px solid var(--mustard);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.callout--olive {
  border-left-color: var(--olive);
}

.callout p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.callout strong {
  color: var(--brown-dark);
}

/* --- Badge / Tag --- */
.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}

.badge--mustard { background: rgba(201, 168, 76, 0.15); color: var(--mustard-dark); }
.badge--olive { background: rgba(107, 123, 58, 0.15); color: var(--olive-dark); }
.badge--brown { background: rgba(93, 64, 55, 0.12); color: var(--brown); }

/* --- RESPONSIVE --- */

/* Tablet */
@media (max-width: 968px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero--main { min-height: auto; padding-top: calc(var(--nav-height) + 48px); padding-bottom: 48px; }
}

/* Mobile / Tablet nav collapse */
@media (max-width: 768px) {
  :root { --section-padding: 56px 0; --nav-height: 80px; }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px var(--shadow-color);
    z-index: 999;
  }

  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .nav__links a { padding: 12px 16px; font-size: 1rem; }
  .nav__links li { width: 100%; }
  .nav__cta--mustard { text-align: center; margin-top: 8px; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; width: 100%; }
  .btn--lg { padding: 16px 32px; font-size: 1rem; }

  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

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

  /* Touch-friendly targets */
  .accordion__trigger { padding: 20px 40px 20px 0; min-height: 48px; }
  .footer__links a { padding: 6px 0; display: inline-block; }

  /* Prevent horizontal overflow */
  .hero-edit__meta { flex-direction: column; gap: 8px; }
  .pillars { flex-direction: column; gap: 12px; }
  .compare-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Nav logo mobile */
  .nav__logo--img img { height: 65px; }
  .footer__brand-logo img { height: 100px; }
}

/* --- Print Styles --- */
@media print {
  .nav, .footer, .btn, .chatbot-widget { display: none !important; }
  body { background: white; color: black; font-size: 12pt; }
  .section { padding: 20px 0; }
  a { color: black; text-decoration: underline; }
}

/* --- Accessibility --- */
:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 8px 16px;
  z-index: 2000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* --- Chatbot Widget Placeholder --- */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(62, 39, 35, 0.3);
  transition: all var(--transition-base);
}

.chatbot-toggle:hover {
  background: var(--brown-dark);
  transform: scale(1.08);
}

/* ============================================
   EDITORIAL REDESIGN — added 2026-04-28
   ============================================ */

:root {
  --ink: #1F1410;
  --ink-2: #5A463E;
  --rule: #E5DCCD;
  --display-1: clamp(2.8rem, 6vw, 4.6rem);
  --eyebrow-size: 0.78rem;
}

/* --- Eyebrow (hairline + small caps) --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--olive);
}

/* --- Editorial hero --- */
.hero-edit {
  padding: calc(var(--nav-height) + 88px) 0 104px;
  background:
    radial-gradient(ellipse 80% 60% at 90% 0%, rgba(201, 168, 76, 0.10), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}
.hero-edit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.hero-edit__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--display-1);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 24px 0;
}
.hero-edit__title em {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
  color: var(--mustard-dark);
}
.hero-edit__lede {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 36ch;
  margin-bottom: 36px;
}
.hero-edit__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  font-size: 0.83rem;
  color: var(--brown-warm);
}
.hero-edit__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-edit__meta svg {
  color: var(--olive);
  flex-shrink: 0;
}

/* --- Portrait with offset accent block --- */
.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 600px;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 28px -28px -28px 28px;
  background: var(--mustard);
  border-radius: var(--radius-md);
  z-index: 0;
}
.portrait-frame__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(62, 39, 35, 0.18);
  background: var(--cream-dark);
}

/* --- Ghost button --- */
.btn--ghost {
  background: transparent;
  color: var(--brown-dark);
  border: 1.5px solid var(--brown);
  padding: 13px 30px;
}
.btn--ghost:hover {
  background: var(--brown-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

/* --- Refined stats bar --- */
.stats-edit {
  background: var(--brown-dark);
  padding: 64px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}
.stats-edit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-edit__item {
  text-align: center;
  padding: 4px 24px;
}
.stats-edit__item + .stats-edit__item {
  border-left: 1px solid rgba(250, 246, 240, 0.12);
}
.stats-edit__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--mustard);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-edit__label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.7);
  margin-top: 14px;
}

/* --- Editorial responsive --- */
@media (max-width: 968px) {
  .hero-edit__grid { grid-template-columns: 1fr; gap: 56px; }
  .portrait-frame { max-width: 440px; margin: 0 auto; }
  .stats-edit__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stats-edit__item:nth-child(2n+1) { border-left: 0; }
}
@media (max-width: 640px) {
  .hero-edit { padding: calc(var(--nav-height) + 56px) 0 72px; }
  .portrait-frame::before { inset: 18px -18px -18px 18px; }
}

/* ============================================
   BOTANICAL ACCENTS — subtle Caribbean line art
   Monstera, palm frond silhouettes at very low
   opacity. Abstract geometry, not literal.
   ============================================ */

/* Monstera leaf — bottom-right of cream sections */
.section--cream {
  position: relative;
  overflow: hidden;
}
.section--cream::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 380px;
  height: 380px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none' stroke='%236B7B3A' stroke-width='0.8'%3E%3Cpath d='M200 380c0-80-40-140-80-180 20 10 50 20 70 15-30-30-70-70-90-130 25 30 60 60 85 55C160 90 140 50 130 20c20 35 50 75 75 80 0-30-5-60-15-85 15 30 35 70 40 90 10-25 15-55 15-80 5 30 5 65-5 90 15-20 35-45 50-60-5 25-20 50-40 65 20-10 45-25 60-40-10 20-30 40-55 50 25-5 50-10 70-20-15 20-40 35-65 40 20 5 40 5 60 0-15 15-35 25-60 30 15 10 35 15 50 15-15 10-30 20-50 20z'/%3E%3Cpath d='M200 380c0-60 10-100 30-140M200 380c-10-50-40-100-60-130M200 380c20-70 50-110 80-140M200 380c-30-40-70-80-90-120M200 380c30-50 60-90 95-115'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* Palm frond — top-left of white sections (only odd ones) */
.section--white:nth-of-type(odd) {
  position: relative;
  overflow: hidden;
}
.section--white:nth-of-type(odd)::after {
  content: '';
  position: absolute;
  top: -30px;
  left: -50px;
  width: 320px;
  height: 400px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 400' fill='none' stroke='%23C9A84C' stroke-width='0.6'%3E%3Cpath d='M150 390c0-50 5-100 15-150M150 390c10-40 30-80 55-120M150 390c-5-45-5-95 5-145M150 390c15-35 40-70 70-105M150 390c-10-35-15-75-10-120'/%3E%3Cpath d='M165 240c30-50 70-90 120-110-50 30-85 65-110 105M165 240c-25-45-60-85-100-105 40 25 72 60 95 100M155 200c35-40 80-70 130-80-45 20-85 50-120 80M155 200c-30-35-70-60-115-65 40 15 78 40 110 65M160 160c25-35 65-60 110-65-35 15-70 40-100 65M160 160c-20-30-55-55-95-60 30 12 62 35 88 58M165 120c20-25 50-45 85-50-25 12-55 32-78 48M165 120c-15-22-40-40-70-45 22 10 45 26 65 42'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

/* Small bird-of-paradise accent — footer top area */
.footer::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 40px;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='%23C9A84C' stroke-width='0.7'%3E%3Cpath d='M100 180c0-40 5-80 10-110M100 180c5-30 15-60 30-85M115 70c10-15 25-30 50-35-15 15-30 30-40 45M115 70c-8-15-20-30-40-40 15 12 28 28 35 42M110 95c12-12 30-22 50-25-12 10-28 20-40 28M110 95c-10-10-25-18-42-20 12 8 25 16 35 22'/%3E%3Cpath d='M130 55c15-8 30-10 45-8-10 5-22 10-32 15M130 55c5-12 12-25 25-32-5 12-12 22-18 30' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}
.footer { position: relative; overflow: hidden; }

/* Hide botanicals on mobile (too small to see, saves paint) */
@media (max-width: 768px) {
  .section--cream::after,
  .section--white:nth-of-type(odd)::after,
  .footer::before { display: none; }
}

/* ============================================
   2026 REFRESH — added 2026-04-28 (rebrand)
   Brand-spec buttons, asymmetric splits,
   logo-image nav, refined hover, glass nav,
   2× whitespace via .section--xl
   ============================================ */

/* --- Solid-color section backgrounds (no gradients) --- */
.hero-edit {
  background: var(--cream);
  position: relative;
}
.hero-edit::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(62, 39, 35, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-edit > .container { position: relative; z-index: 1; }

/* --- Generous whitespace per brand spec --- */
.section--xl { padding: 120px 0; }
@media (max-width: 968px) { .section--xl { padding: 88px 0; } }
@media (max-width: 640px) { .section--xl { padding: 72px 0; } }

/* --- Glass nav --- */
.nav {
  background: rgba(250, 246, 240, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(232, 223, 212, 0.6);
}
.nav.scrolled {
  background: rgba(250, 246, 240, 0.92);
  box-shadow: 0 4px 24px rgba(62, 39, 35, 0.08);
}

/* --- Logo image in nav --- */
.nav__logo--img { display: inline-flex; align-items: center; height: 100%; flex-shrink: 0; }
.nav__logo--img img {
  height: 130px;
  width: auto;
  display: block;
  transition: transform var(--transition-base);
}
.nav__logo--img:hover img { transform: scale(1.03); }

/* --- Mustard nav CTA per brand spec (pill shape, drop shadow, hover scale) --- */
.nav__cta--mustard {
  background: var(--mustard) !important;
  color: var(--brown-dark) !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  padding: 12px 26px !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.nav__cta--mustard:hover {
  background: var(--mustard-dark) !important;
  color: var(--brown-dark) !important;
  transform: translateY(-1px) scale(1.03) !important;
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.45);
}

/* --- Brand-spec buttons: 8px radius + drop shadow + hover scale --- */
.btn { border-radius: 8px; box-shadow: 0 4px 14px rgba(62, 39, 35, 0.10); }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn--mustard { box-shadow: 0 6px 18px rgba(201, 168, 76, 0.28); }
.btn--mustard:hover { box-shadow: 0 12px 28px rgba(201, 168, 76, 0.38); }
.btn--ghost { box-shadow: none; }
.btn--ghost:hover { box-shadow: 0 8px 22px rgba(62, 39, 35, 0.14); }

/* --- Centered eyebrow + on-dark variant --- */
.eyebrow--center { justify-content: center; display: inline-flex; }
.eyebrow--on-dark { color: var(--mustard); }
.eyebrow--on-dark::before { background: var(--mustard); }

/* --- Display headings & lede --- */
.display-h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 24px;
  max-width: 22ch;
}
.display-h2 em {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
  color: var(--mustard-dark);
}
.section-header .display-h2,
.text-center .display-h2 { margin-left: auto; margin-right: auto; }

.lede {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 52ch;
  margin-bottom: 24px;
}
.center-narrow { margin-left: auto; margin-right: auto; max-width: 48ch; }
.text-center { text-align: center; }
.on-dark { color: var(--cream) !important; }
.on-dark-muted { color: rgba(250, 246, 240, 0.78) !important; }

/* --- Asymmetric split layout --- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}
.split--text-right { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.split--text-right .split__media { order: 1; }
.split--text-right .split__text { order: 2; }
@media (max-width: 968px) {
  .split, .split--text-right { grid-template-columns: 1fr; gap: 56px; }
  .split--text-right .split__media { order: 0; }
  .split--text-right .split__text { order: 0; }
}

/* --- Media frame with offset accent block --- */
.media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 580px;
}
.media-frame::before {
  content: '';
  position: absolute;
  inset: 24px -24px -24px 24px;
  border-radius: var(--radius-md);
  z-index: 0;
  transition: transform var(--transition-slow);
}
.media-frame--offset-mustard::before { background: var(--mustard); }
.media-frame--offset-olive::before { background: var(--olive); }
.media-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(62, 39, 35, 0.18);
}
.media-frame:hover::before { transform: translate(-6px, -6px); }

/* --- Pillars (small stat-like row inside split) --- */
.pillars {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--rule);
  margin-top: 28px;
}
.pillars li { display: flex; flex-direction: column; }
.pillars strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mustard-dark);
  letter-spacing: -0.01em;
}
.pillars span {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* --- Approach list --- */
.approach-list {
  list-style: none;
  margin-top: 16px;
}
.approach-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 6px;
}
.approach-list li:last-child { border-bottom: 0; }
.approach-list__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--brown-dark);
}
.approach-list__text {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Section header (refined) --- */
.section-header { margin-bottom: 64px; }
.section-header .display-h2 { max-width: 24ch; }
.section-header .lede { margin-left: auto; margin-right: auto; }

/* --- Service cards: lift, glow, image zoom --- */
.service-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: 0 4px 14px rgba(62, 39, 35, 0.04);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(62, 39, 35, 0.14),
    0 0 0 1px rgba(201, 168, 76, 0.35);
  border-color: var(--mustard-light);
}
.service-card--featured {
  border-color: var(--mustard);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.18);
}
.service-card__img {
  height: 240px;
  overflow: hidden;
  background: var(--cream-dark);
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-card__title { margin: 4px 0 4px; }
.service-card__text { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }
.service-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mustard-dark);
  margin: 4px 0 16px;
}
.service-card__price span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-card .btn { align-self: flex-start; margin-top: auto; }
.grid--centered { max-width: 820px; margin: 40px auto 0; }

/* --- Testimonials: refined card with mustard accent --- */
.testimonial-grid { gap: 28px; }
.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px 32px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 4px 14px rgba(62, 39, 35, 0.04);
  margin: 0;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-accent);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--mustard);
  position: absolute;
  top: 14px;
  left: 22px;
  opacity: 0.6;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 44px rgba(62, 39, 35, 0.12),
    0 0 0 1px rgba(201, 168, 76, 0.35);
}
.testimonial__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-secondary);
  padding-left: 28px;
  margin: 0 0 20px;
  border-left: 0;
  background: transparent;
  border-radius: 0;
}
.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brown);
  padding-left: 28px;
  letter-spacing: 0.02em;
}

/* --- Footer logo image --- */
.footer__brand-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer__brand-logo img {
  height: 160px;
  width: auto;
}
.footer__heading--spaced { margin-top: 28px; }
.footer__bottom p { max-width: 70ch; }

/* --- Stats: subtle counter feel --- */
.stats-edit { padding: 80px 0; }
.stats-edit__num {
  transition: color var(--transition-base), transform var(--transition-base);
}
.stats-edit__item:hover .stats-edit__num {
  color: var(--mustard-light);
  transform: translateY(-2px);
}

/* --- iPad / Tablet --- */
@media (max-width: 1080px) and (min-width: 769px) {
  :root { --nav-height: 100px; }
  .nav__logo--img img { height: 80px; }
  .nav__links a { font-size: 0.88rem; padding: 8px 10px; }
  .nav__links { gap: 2px; }
  .nav__cta--mustard { font-size: 0.88rem !important; padding: 10px 18px !important; }
  .split { gap: 48px; }
  .hero-edit__grid { gap: 48px; }
  .footer__brand-logo img { height: 130px; }
}

/* --- Mobile (640px and below) --- */
@media (max-width: 768px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .grid--centered { margin-top: 24px; }
  .section-header { margin-bottom: 40px; }
  .nav__logo--img img { height: 72px; }
  .footer__brand-logo img { height: 120px; }
}

/* --- Reduced motion safety --- */
@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .nav__cta--mustard:hover,
  .service-card:hover,
  .testimonial:hover,
  .nav__logo--img:hover img,
  .media-frame:hover::before { transform: none !important; }
}

/* --- Nav dropdown (Services menu) --- */
.nav__dropdown { position: relative; }
.nav__dropdown > a span { font-size: 0.7em; margin-left: 4px; opacity: 0.7; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px var(--shadow-color);
  padding: 10px 0;
  min-width: 230px;
  list-style: none;
  z-index: 1001;
  border: 1px solid var(--border-light);
}
.nav__dropdown-menu li a {
  display: block;
  padding: 10px 22px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  white-space: nowrap;
  border-radius: 0;
}
.nav__dropdown-menu li a:hover {
  background: var(--cream-dark);
  color: var(--brown-dark);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { display: block; }
@media (max-width: 640px) {
  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: none;
    background: transparent;
    min-width: 0;
  }
  .nav__dropdown:hover .nav__dropdown-menu { display: block; }
}

/* --- Inner-page hero polish --- */
.hero--page {
  padding: calc(var(--nav-height) + 88px) 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero--page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(62, 39, 35, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.6;
}
.hero--page > .container { position: relative; z-index: 1; }
.hero--page .display-h2 { margin: 20px auto 16px; max-width: 22ch; }
.hero--page .lede { margin-left: auto; margin-right: auto; }

/* --- Soft ambient glow behind page heroes --- */
.hero--page::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  top: -100px;
  right: -100px;
  background: var(--mustard);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.10; }
  100% { transform: translate(-40px, 30px) scale(1.15); opacity: 0.16; }
}

/* --- Per-page hero accent colors --- */
body[data-page="individual"] .hero--page::after { background: var(--mustard); right: -80px; }
body[data-page="couples"] .hero--page::after { background: var(--brown); right: auto; left: -100px; top: -60px; }
body[data-page="family"] .hero--page::after { background: var(--olive); }
body[data-page="wellness"] .hero--page::after { background: var(--olive); right: auto; left: -120px; }
body[data-page="mens-group"] .hero--page::after { background: var(--brown); top: -80px; }
body[data-page="fees"] .hero--page::after { background: var(--mustard); right: auto; left: -60px; }
body[data-page="faq"] .hero--page::after { background: var(--olive); }

/* --- Subtle section divider accents --- */
.section--cream { position: relative; }
.section--white + .section--cream::before,
.section--cream + .section--white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--mustard), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

/* --- Soft float animation for media frames --- */
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.media-frame--offset-mustard,
.media-frame--offset-olive {
  animation: softFloat 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .media-frame--offset-mustard,
  .media-frame--offset-olive,
  .hero--page::after { animation: none !important; }
}

@media (max-width: 640px) {
  .hero--page { padding: calc(var(--nav-height) + 56px) 0 56px; }
  .hero--page::after { width: 300px; height: 300px; filter: blur(80px); }
  .media-frame--offset-mustard,
  .media-frame--offset-olive { animation: none; }
}

/* --- Pricing card refinement --- */
.pricing-card {
  border-radius: var(--radius-md);
  border-width: 1px;
}
.pricing-card .badge { margin-bottom: 8px; }

/* --- Pillars / approach list / fact list shared --- */
.fact-list {
  list-style: none;
  margin: 8px 0 0;
}
.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.fact-list li:last-child { border-bottom: 0; }
.fact-list strong {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brown-dark);
}

/* --- Numbered step cards --- */
.step-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  text-align: left;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: 0 4px 14px rgba(62, 39, 35, 0.04);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(62, 39, 35, 0.10);
  border-color: var(--mustard-light);
}
.step-card__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--mustard-dark);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: inline-block;
  border-bottom: 2px solid var(--mustard);
  padding-bottom: 4px;
}
.step-card h4 { margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }

/* --- Topic / area cards (replaces emoji-card pattern) --- */
.topic-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: 0 4px 14px rgba(62, 39, 35, 0.04);
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(62, 39, 35, 0.10);
  border-color: var(--mustard-light);
}
.topic-card__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
  display: block;
}
.topic-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.topic-card p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; line-height: 1.65; }

/* --- Compare cards (therapy vs coaching) --- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.compare-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 4px 14px rgba(62, 39, 35, 0.04);
}
.compare-card--brown { border-top: 4px solid var(--brown); }
.compare-card--olive { border-top: 4px solid var(--olive); }
.compare-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(62, 39, 35, 0.10); }
.compare-card h3 { margin-bottom: 16px; }
.compare-card ul { list-style: none; margin: 0 0 24px; }
.compare-card li { padding: 8px 0; font-size: 0.95rem; color: var(--text-secondary); display: flex; gap: 10px; align-items: flex-start; }
.compare-card li::before { content: '✦'; color: var(--mustard-dark); flex-shrink: 0; font-size: 0.9rem; }
.compare-card--brown li::before { content: '✓'; color: var(--brown); font-weight: 700; }
@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } }

/* --- Quote callout (subtle highlight inside dark sections) --- */
.quote-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(250, 246, 240, 0.14);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  text-align: center;
}
.quote-card p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* --- Long-form prose (legal pages) --- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--brown-dark);
}
.prose h2:first-of-type { margin-top: 24px; }
.prose p, .prose li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.prose ul {
  margin: 12px 0 16px 24px;
}
.prose strong { color: var(--brown-dark); }

/* --- Form refinements --- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: 0 4px 14px rgba(62, 39, 35, 0.04);
}
.form-card .form-group label { color: var(--brown-dark); }
@media (max-width: 640px) {
  .form-card { padding: 28px 22px; }
}

/* ============================================
   ORGANIC FEEL — Texture, Depth & Personality
   ============================================ */

/* --- FIX #4: Subtle grain texture on hero --- */
.hero-edit::after,
.hero--page::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}
.hero-edit > .container,
.hero--page > .container { position: relative; z-index: 1; }

/* Organic soft blob shapes behind alternating sections */
.section--cream { position: relative; overflow: hidden; }
.section--cream::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
  z-index: 0;
}
.section--cream::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 123, 58, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
  z-index: 0;
}
.section--cream > .container { position: relative; z-index: 1; }

/* --- FIX #6: Handwritten accent font for tagline italic words --- */
/* Caveat font loaded via <link> in HTML head — no @import needed */

.hero-edit__title em,
.display-h2 em {
  font-family: 'Caveat', var(--font-accent), cursive;
  font-weight: 600;
  font-style: normal;
  font-size: 1.15em;
  color: var(--mustard-dark);
  letter-spacing: 0.01em;
}

/* --- Warm cursor glow (desktop only) --- */
@media (hover: hover) and (min-width: 769px) {
  body {
    cursor: default;
  }
  .btn {
    position: relative;
    overflow: hidden;
  }
  .btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
  }
  .btn:hover::before {
    opacity: 1;
  }
  .btn > * { position: relative; z-index: 1; }
}

/* --- Enhanced quote styling — warmer, more personal --- */
blockquote,
.testimonial__text,
.quote-card p {
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--mustard);
}
blockquote::before {
  content: '\201C';
  font-family: 'Caveat', cursive;
  font-size: 4rem;
  color: var(--mustard);
  opacity: 0.25;
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
}

/* --- Organic image hovers — tilt instead of flat scale --- */
.service-card__img img {
  transition: transform 0.8s var(--ease-organic);
}
.service-card:hover .service-card__img img {
  transform: scale(1.04) rotate(0.5deg);
}

.media-frame img {
  transition: transform 0.8s var(--ease-organic);
}
.media-frame:hover img {
  transform: scale(1.03) rotate(-0.3deg);
}

/* --- Soft floating animation for portrait frame --- */
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.portrait-frame__img {
  animation: gentle-float 6s var(--ease-soft) infinite;
}

/* --- Eyebrow line draws in --- */
.eyebrow::before {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-organic) 0.1s;
}
.reveal.visible .eyebrow::before,
.hero-loaded .eyebrow::before {
  transform: scaleX(1);
}

/* --- Callout boxes — softer, warmer --- */
.callout {
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 4px solid var(--mustard);
  background: rgba(201, 168, 76, 0.06);
}
.callout--olive {
  border-left-color: var(--olive);
  background: rgba(107, 123, 58, 0.06);
}
.callout--mustard {
  border-left-color: var(--mustard);
  background: rgba(201, 168, 76, 0.06);
}

/* --- Smooth section transitions — no hard color breaks --- */
.section--white + .section--cream,
.section--cream + .section--white {
  border-top: none;
}

/* --- Nav links — organic underline sweep --- */
.nav__links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--mustard);
  transition: width 0.4s var(--ease-organic);
  margin: 2px auto 0;
  border-radius: 1px;
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}
/* Don't show underline on CTA button */
.nav__cta--mustard::after { display: none !important; }

/* --- Footer — fade separator --- */
.footer__bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  position: relative;
}
.footer__bottom::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--mustard);
  opacity: 0.5;
}
