@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --sage-100: #e8ede8;
  --sage-200: #c8d8c4;
  --sage-300: #9cb89a;
  --sage-400: #6e9a6c;
  --sage-500: #4a7a48;

  --cream-50:  #faf8f4;
  --cream-100: #f5f0e8;
  --cream-200: #ede4d4;

  --slate-900: #1c2128;
  --slate-700: #2f3847;
  --slate-500: #5a6472;
  --slate-300: #9aa3ad;

  --white: #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(28,33,40,.06);
  --shadow-md: 0 4px 20px rgba(28,33,40,.10);
  --shadow-lg: 0 8px 40px rgba(28,33,40,.14);

  --transition: 0.25s ease;

  --max-w: 1120px;
  --section-y: 96px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream-50);
  color: var(--slate-700);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--slate-900);
  line-height: 1.2;
  font-weight: 500;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--slate-500); font-size: 1rem; font-weight: 300; }
small { font-size: 0.8rem; color: var(--slate-300); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-400);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Layout Helpers ── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.section    { padding-block: var(--section-y); }
.section--cream { background: var(--cream-100); }
.section--sage  { background: var(--sage-100); }
.section--slate { background: var(--slate-900); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn--primary {
  background: var(--sage-400);
  color: var(--white);
  border-color: var(--sage-400);
}
.btn--primary:hover { background: var(--sage-500); border-color: var(--sage-500); }
.btn--outline {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--slate-700);
}
.btn--outline:hover { background: var(--slate-900); color: var(--white); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-200);
  transition: var(--transition);
}
.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--sage-400); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--slate-500);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--slate-900); }
.nav__cta { margin-left: 12px; }

/* ── Services Dropdown ── */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
}
.nav__dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
  display: inline-block;
}
.nav__dropdown.open .nav__dropdown-arrow { transform: rotate(180deg); }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(28,33,40,0.12);
  width: 320px;
  padding: 8px;
  z-index: 200;
  list-style: none;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--cream-200);
  border-top: 1px solid var(--cream-200);
}
.nav__dropdown.open .nav__dropdown-menu { display: block; }
.nav__dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  color: var(--slate-700);
}
.nav__dropdown-menu li a:hover { background: var(--cream-50); color: var(--slate-900); }
.nav__dropdown-menu li a strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.nav__dropdown-menu li a span {
  display: block;
  font-size: 0.775rem;
  color: var(--slate-500);
  letter-spacing: 0.02em;
  font-weight: 300;
}
.nav__dropdown-menu li + li { border-top: 1px solid var(--cream-100); }

/* Mobile services group */
.nav__mobile-group {
  border-bottom: 1px solid var(--cream-200);
}
.nav__mobile-group-label {
  padding: 12px 0 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-500);
  font-weight: 500;
}
.nav__mobile-group a {
  padding-left: 12px;
  border-bottom: none !important;
  font-size: 0.875rem;
}
.nav__mobile-group a:last-child { padding-bottom: 12px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--slate-700);
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream-50);
  border-top: 1px solid var(--cream-200);
  padding: 16px 24px 24px;
}
.nav__mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-200);
  font-size: 0.9rem;
  color: var(--slate-700);
}
.nav__mobile.open { display: flex; }
.page-offset { padding-top: 72px; }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream-50) 0%, var(--sage-100) 60%, var(--cream-100) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(156,184,154,0.18) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  max-width: 680px;
}
.hero__content h1 { margin-bottom: 24px; }
.hero__content p  { font-size: 1.1rem; margin-bottom: 40px; max-width: 520px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-300); }
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--sage-300), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── Divider ── */
.divider {
  width: 48px; height: 1px;
  background: var(--sage-300);
  margin: 20px 0;
}
.divider--center { margin-inline: auto; }

/* ── Section Headers ── */
.section-header { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: 64px; }
.section-header p { margin-top: 16px; }

/* ── About Summary (Homepage) ── */
.about-thumb {
  aspect-ratio: 4/5;
  background: var(--sage-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-thumb__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sage-400);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-thumb__placeholder svg { opacity: 0.5; }
.about-content .divider { margin-bottom: 24px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 16px; }

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card__image {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.service-card__image--bio  { background: linear-gradient(135deg, var(--sage-100), var(--sage-200)); }
.service-card__image--hyp  { background: linear-gradient(135deg, var(--cream-100), var(--cream-200)); }
.service-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { margin-bottom: 12px; }
.service-card__body p  { flex: 1; margin-bottom: 24px; }

/* ── Newsletter ── */
.newsletter {
  background: var(--slate-900);
  padding: 72px 0;
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.newsletter__copy h2, .newsletter__copy h3 { color: var(--white); margin-bottom: 12px; }
.newsletter__copy p  { color: var(--slate-300); }
.newsletter__form    { display: flex; gap: 12px; flex-shrink: 0; }
.newsletter__form input {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  width: 280px;
  transition: border-color var(--transition);
}
.newsletter__form input::placeholder { color: var(--slate-300); }
.newsletter__form input:focus { outline: none; border-color: var(--sage-300); }

/* ── Footer ── */
.footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .nav__logo { display: block; margin-bottom: 16px; color: var(--white); }
.footer__brand p { color: var(--slate-300); font-size: 0.875rem; max-width: 260px; }
.footer__col h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a  { display: block; color: var(--slate-300); font-size: 0.875rem; margin-bottom: 10px; transition: color var(--transition); }
.footer__col a:hover { color: var(--sage-300); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer__bottom small { color: var(--slate-300); line-height: 1.6; max-width: 680px; }
.footer__bottom-right small { color: var(--slate-500); text-align: right; white-space: nowrap; }

/* ── Disclaimer Block ── */
.disclaimer {
  background: var(--cream-200);
  border-left: 3px solid var(--sage-300);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin-top: 32px;
}
.disclaimer h4 { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-500); margin-bottom: 10px; }
.disclaimer p  { font-size: 0.875rem; line-height: 1.7; color: var(--slate-500); }

.disclaimer--full {
  background: var(--slate-900);
  border-left: none;
  border-radius: 0;
  padding: 64px 0;
  margin: 0;
}
.disclaimer--full h3 { color: var(--white); font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.disclaimer--full p  { color: var(--slate-300); max-width: 800px; margin-inline: auto; text-align: center; font-size: 0.9rem; }

/* ── Steps (How It Works) ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step__number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage-100);
  border: 1.5px solid var(--sage-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--sage-500);
  margin-bottom: 24px;
}
.step h3 { margin-bottom: 12px; }

/* ── Benefit List ── */
.benefit-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.benefit-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.benefit-item h4 { margin-bottom: 4px; }
.benefit-item p  { font-size: 0.9rem; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: box-shadow var(--transition);
  position: relative;
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card--featured {
  border-color: var(--sage-300);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.price-card--featured:hover { box-shadow: 0 12px 48px rgba(28,33,40,.18); }
.badge {
  display: inline-block;
  background: var(--sage-400);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.price-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--slate-900);
  margin-bottom: 8px;
  font-weight: 500;
}
.price-card__tagline { font-size: 0.875rem; color: var(--slate-300); margin-bottom: 28px; }
.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-card__amount .currency { font-size: 1rem; color: var(--slate-500); font-weight: 400; }
.price-card__amount .amount   { font-family: var(--font-serif); font-size: 3rem; color: var(--slate-900); line-height: 1; }
.price-card__amount .period   { font-size: 0.85rem; color: var(--slate-300); }
.price-card__divider { height: 1px; background: var(--cream-200); margin: 28px 0; }
.price-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--slate-500);
}
.feature-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-500);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── Pricing Note ── */
.pricing-note {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin-inline: auto;
  margin-top: 48px;
}
.pricing-note p { font-size: 0.875rem; }

/* ── Service Tabs (Hypnotherapy) ── */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--cream-200);
  margin-bottom: 48px;
}
.tab-btn {
  padding: 16px 32px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--slate-300);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: -1px;
}
.tab-btn.active { color: var(--slate-900); border-bottom-color: var(--sage-400); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ── Testimonial ── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px; left: 32px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--sage-200);
  line-height: 1;
}
.testimonial p { font-size: 1rem; font-style: italic; color: var(--slate-700); padding-top: 32px; margin-bottom: 20px; }
.testimonial__author { font-size: 0.8rem; color: var(--slate-300); letter-spacing: 0.08em; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--slate-700);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-300);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--sage-100);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sage-400);
  border: 1.5px dashed var(--sage-200);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 24px;
}
.hours-table { width: 100%; margin-top: 24px; }
.hours-table tr td { padding: 8px 0; font-size: 0.875rem; border-bottom: 1px solid var(--cream-200); }
.hours-table tr td:first-child { color: var(--slate-700); font-weight: 500; }
.hours-table tr td:last-child  { color: var(--slate-300); text-align: right; }

/* ── About Page ── */
.headshot-placeholder {
  aspect-ratio: 3/4;
  background: var(--sage-100);
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--sage-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sage-400);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.quals { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.qual-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--slate-500);
}
.qual-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage-400);
  flex-shrink: 0;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.value-card .icon { font-size: 1.8rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p  { font-size: 0.875rem; }

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-700) 100%);
  padding: 96px 0 80px;
  text-align: center;
}
.page-hero h1  { color: var(--white); margin-bottom: 20px; }
.page-hero p   { color: var(--slate-300); max-width: 560px; margin-inline: auto; font-size: 1.05rem; }
.page-hero .eyebrow { color: var(--sage-300); margin-bottom: 16px; }

/* ── CTA Band ── */
.cta-band {
  background: var(--sage-500);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 500px; margin-inline: auto; }

/* ── Tag List ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  background: var(--sage-100);
  color: var(--sage-500);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ── Hero Split Grid ── */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Step Images ── */
.step__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  display: block;
}
.step__caption {
  font-size: 0.82rem;
  color: var(--slate-300);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ── Ambient Video Section ── */
.video-section {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,33,40,.6), rgba(28,33,40,.5));
}
.video-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  padding: 0 24px;
}
.video-section__content h2 { color: var(--white); margin-bottom: 16px; }
.video-section__content p  { color: rgba(255,255,255,.8); margin-bottom: 28px; }

/* ── Tab Panel Image (Hypnotherapy) ── */
.tab-panel__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tab-panel__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tab-panel__image-caption {
  font-size: 0.8rem;
  color: var(--slate-300);
  font-style: italic;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── Service Card Image (real photo) ── */
.service-card__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Practitioner / Headshot Photo ── */
.practitioner-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ── About thumb real image ── */
.about-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --section-y: 64px; }
  .grid-2, .grid-3, .tab-panel.active, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps, .pricing-grid, .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter__inner { flex-direction: column; align-items: flex-start; }
  .newsletter__form { flex-direction: column; width: 100%; }
  .newsletter__form input { width: 100%; }
  .price-card--featured { transform: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .video-section { height: 320px; }
}
@media (max-width: 540px) {
  :root { --section-y: 48px; }
  .hero__actions { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .footer__bottom-right small { text-align: left; }
}
