/* =====================================================
   JD THERAPIES — Premium CSS
   Design System: "Spiritual Modernism"
   Palette: Sage Green · Cream · Terracotta
   Typography: Cormorant Garamond + Inter
   ===================================================== */

/* ─── TOKENS & RESET ──────────────────────────────── */
:root {
  /* Core Palette */
  --cream: #f7f3ee;
  --cream-dark: #ede7de;
  --sage: #7a9e7e;
  --sage-light: #a8c5a0;
  --sage-dark: #4e7a52;
  --terracotta: #c4714a;
  --terra-light: #d9916c;
  --terra-dark: #9e4e2a;
  --bark: #3e2b1e;
  --bark-mid: #5c3d2a;
  --bark-light: #8a6550;
  --warm-white: #fdfaf6;
  --stone: #b8a89a;
  --stone-light: #d9cfc8;

  /* Semantic */
  --bg: var(--warm-white);
  --text: var(--bark);
  --text-light: var(--bark-light);
  --accent: var(--terracotta);
  --accent-hover: var(--terra-dark);
  --brand: var(--sage-dark);

  /* Typography */
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 2rem;
  --space-l: 4rem;
  --space-xl: 7rem;

  /* Radii */
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-s: 0 2px 12px rgba(62, 43, 30, 0.08);
  --shadow-m: 0 8px 32px rgba(62, 43, 30, 0.12);
  --shadow-l: 0 20px 60px rgba(62, 43, 30, 0.16);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Nav height */
  --nav-h: 72px;
}

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

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

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
/* Better touch feedback on mobile */
a,
button {
  -webkit-tap-highlight-color: rgba(196, 113, 74, 0.15);
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ─── UTILITIES ───────────────────────────────────── */
.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.glass-card {
  background: rgba(253, 250, 246, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--bark);
}
.section-heading em {
  font-style: italic;
  color: var(--sage-dark);
}

.section-subline {
  margin-top: var(--space-s);
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-l);
}
.section-header .section-subline {
  margin-inline: auto;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  border: 2px solid var(--terracotta);
  transition:
    background 0.3s var(--ease),
    transform 0.25s var(--ease-bounce),
    box-shadow 0.3s var(--ease);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 113, 74, 0.35);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid var(--terracotta);
  transition:
    background 0.3s var(--ease),
    color 0.3s;
}
.btn-outline:hover {
  background: var(--terracotta);
  color: #fff;
}

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}
.btn-small {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── SCROLL REVEAL ───────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3 {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── NAVIGATION ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(62, 43, 30, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1300px, 92%);
  margin-inline: auto;
  gap: var(--space-m);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-shrink: 0;
}
.logo-jd {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-therapies {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark-mid);
}
.site-header.scrolled .logo-therapies {
  color: var(--bark-mid);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition:
    color 0.3s,
    background 0.3s;
  white-space: nowrap;
}
.site-header.scrolled .nav-link {
  color: var(--bark);
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.site-header.scrolled .nav-link:hover {
  background: var(--cream-dark);
  color: var(--terracotta);
}

.nav-social-group {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.site-header.scrolled .nav-social-group {
  border-color: var(--stone-light);
}

.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  transition:
    color 0.3s,
    background 0.3s;
}
.nav-social-icon svg {
  width: 16px;
  height: 16px;
}
.nav-social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.site-header.scrolled .nav-social-icon {
  color: var(--bark-light);
}
.site-header.scrolled .nav-social-icon:hover {
  background: var(--cream-dark);
  color: var(--terracotta);
}

.btn-book-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  border: 2px solid var(--terracotta);
  white-space: nowrap;
  transition:
    background 0.3s,
    transform 0.25s var(--ease-bounce);
}
.btn-book-nav:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  transform: translateY(-2px);
}

/* Hamburger — 44px min touch target */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s;
}
.site-header.scrolled .nav-toggle span {
  background: var(--bark);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  object-fit: cover;
  object-position: center 30%;
  animation: hero-zoom 14s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(30, 20, 12, 0.62) 0%,
    rgba(62, 43, 30, 0.45) 50%,
    rgba(78, 122, 82, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1300px, 92%);
  margin-inline: auto;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.4rem;
  max-width: 700px;
}
.hero-headline em {
  font-style: italic;
  color: var(--terra-light);
}

.hero-subline {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(10px);
  }
}

/* Hero pills */
.hero-pills {
  position: absolute;
  bottom: 2.5rem;
  right: max(5%, calc((100% - 1300px) / 2));
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(253, 250, 246, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-m);
  padding: 0.7rem 1.2rem;
  text-align: center;
  min-width: 100px;
}
.pill-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--terra-light);
  line-height: 1;
}
.pill-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-band {
  overflow: hidden;
  background: var(--sage-dark);
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(253, 250, 246, 0.9);
  letter-spacing: 0.04em;
}
.marquee-track .sep {
  color: var(--terra-light);
  font-style: normal;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── ABOUT ───────────────────────────────────────── */
.about {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  align-items: start;
}

.about-image-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-l);
}

.about-img {
  object-position: top center;
  transition: transform 0.6s var(--ease);
}
.about-img-frame:hover .about-img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--radius-m);
  padding: 0.8rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-m);
}
.about-img-badge span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.qualifications-card {
  padding: 1.5rem;
}
.qualifications-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 1rem;
}
.qualifications-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.qualifications-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.5;
}
.q-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 0.42rem;
}

.about-content {
  padding-top: 0.5rem;
}

.about-body {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-body p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}
.about-body strong {
  color: var(--bark);
  font-weight: 600;
}
.about-body em {
  font-style: italic;
  color: var(--sage-dark);
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-links-about {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--bark-mid);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s var(--ease-bounce);
}
.social-link svg {
  width: 18px;
  height: 18px;
}
.social-link:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-3px);
}

/* ─── SERVICES ────────────────────────────────────── */
.services {
  padding: var(--space-xl) 0;
  background: var(--warm-white);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-l);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  transition: transform 0.6s var(--ease);
}
#service-breathwork .service-img-wrap img {
  object-position: center top;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(62, 43, 30, 0.5) 0%,
    transparent 60%
  );
}

.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.service-icon {
  font-size: 1.8rem;
}
.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.2;
}
.service-body p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}
.service-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  transition:
    color 0.3s,
    letter-spacing 0.3s;
}
.service-link:hover {
  color: var(--terra-dark);
  letter-spacing: 0.08em;
}

/* ─── FULL-WIDTH DIVIDER ──────────────────────────── */
.divider-section {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.divider-img-wrap {
  position: relative;
  height: 100%;
}
.divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(62, 43, 30, 0.72) 0%,
    rgba(78, 122, 82, 0.55) 100%
  );
}
.divider-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.divider-content blockquote {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}
.divider-content blockquote em {
  font-style: italic;
  color: var(--terra-light);
}
.divider-content cite {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ─── EVENTS ──────────────────────────────────────── */
.events {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

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

.event-card {
  background: var(--warm-white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 1.8rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-left: 4px solid var(--sage);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
}
.event-card--featured {
  background: linear-gradient(
    135deg,
    rgba(78, 122, 82, 0.08),
    rgba(196, 113, 74, 0.08)
  );
  border-left-color: var(--terracotta);
}

.event-date-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--sage-dark);
  color: #fff;
  border-radius: var(--radius-s);
  padding: 0.7rem 0.9rem;
  min-width: 72px;
  text-align: center;
}
.event-date-badge--featured {
  background: var(--terracotta);
}
.event-month {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}
.event-day {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0.1rem;
}

.event-content {
  flex: 1;
  min-width: 0;
}
.event-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(122, 158, 126, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.6rem;
}
.event-tag--featured {
  color: var(--terracotta);
  background: rgba(196, 113, 74, 0.1);
}
.event-content h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.event-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}
.event-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.8rem 0 1rem;
}
.event-meta span {
  font-size: 0.78rem;
  color: var(--bark-light);
  font-weight: 500;
}

.btn-event {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.25s var(--ease-bounce);
}
.btn-event:hover {
  background: var(--sage-dark);
  color: #fff;
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}
.btn-event--featured {
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-event--featured:hover {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

.events-footer {
  text-align: center;
  margin-top: var(--space-l);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.events-footer p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonials {
  padding: var(--space-xl) 0;
  background: var(--warm-white);
}

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

.testimonial-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s var(--ease);
  border: none; /* overrides if needed */
}
.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: #d4a017;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-card p {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--bark);
  line-height: 1.7;
  flex: 1;
}
.testimonial-card footer {
  border-top: 1px solid var(--stone-light);
  padding-top: 1rem;
}
.testimonial-card footer strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bark);
}
.testimonial-card footer span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Social proof bar */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-m);
  margin-top: var(--space-l);
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 1.8rem 2.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.proof-icon svg {
  width: 18px;
  height: 18px;
}
.proof-item div {
  display: flex;
  flex-direction: column;
}
.proof-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bark);
}
.proof-item span {
  font-size: 0.75rem;
  color: var(--text-light);
}
.proof-link {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--sage);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-dark);
  transition:
    background 0.3s,
    color 0.3s;
  white-space: nowrap;
}
.proof-link:hover {
  background: var(--sage-dark);
  color: #fff;
  border-color: var(--sage-dark);
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--stone-light);
}

/* ─── BOOKING BANNER ──────────────────────────────── */
.booking-banner {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-banner-bg {
  position: absolute;
  inset: 0;
}
.booking-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.booking-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(62, 43, 30, 0.75),
    rgba(78, 122, 82, 0.65)
  );
}
.booking-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}
.booking-banner-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}
.booking-banner-content h2 em {
  font-style: italic;
  color: var(--terra-light);
}
.booking-banner-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ─── CONTACT ─────────────────────────────────────── */
.contact {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  align-items: start;
}

.contact-info {
  padding-top: 0.5rem;
}
.contact-info .section-heading {
  margin-top: 0.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--warm-white);
  border-radius: var(--radius-m);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-s);
}
.contact-icon {
  font-size: 1.4rem;
}
.contact-item div {
  display: flex;
  flex-direction: column;
}
.contact-item strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bark);
}

.contact-social p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.social-icons-row {
  display: flex;
  gap: 0.8rem;
}
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--warm-white);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bark-mid);
  border: 1.5px solid var(--stone-light);
  transition: all 0.3s var(--ease);
}
.social-icon-btn svg {
  width: 14px;
  height: 14px;
}
.social-icon-btn:hover {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

/* Contact form */
.contact-form-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.contact-form {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 0.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--bark-light);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--bark);
  background: var(--cream);
  border: 1.5px solid var(--stone-light);
  border-radius: var(--radius-s);
  padding: 0.75rem 1rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}
.form-note a {
  color: var(--terracotta);
  font-weight: 600;
}
.form-note a:hover {
  text-decoration: underline;
}

/* ─── NEWSLETTER ──────────────────────────────────── */
.newsletter {
  padding: var(--space-l) 0;
  background: var(--warm-white);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--bark);
}
.newsletter-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 280px;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--bark);
  background: var(--cream);
  border: 1.5px solid var(--stone-light);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.2rem;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.newsletter-form input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.15);
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  position: relative;
  color: rgba(253, 250, 246, 0.8);
  padding: var(--space-l) 0 0;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(62, 43, 30, 0.88) 0%,
    rgba(62, 43, 30, 0.82) 50%,
    rgba(46, 32, 22, 0.9) 100%
  );
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-m);
  padding-bottom: var(--space-l);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.site-footer .logo-jd {
  color: var(--terra-light);
}
.site-footer .logo-therapies {
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.5);
}
.footer-tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(253, 250, 246, 0.55);
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(253, 250, 246, 0.7);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s var(--ease-bounce);
}
.footer-social-icon svg {
  width: 16px;
  height: 16px;
}
.footer-social-icon:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.45);
  margin-bottom: 1rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links li a {
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.7);
  transition: color 0.3s;
}
.footer-links li a:hover {
  color: var(--terra-light);
}

.footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.45);
  margin-bottom: 1rem;
}
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.7);
  margin-bottom: 0.5rem;
}
.footer-contact p a {
  color: rgba(253, 250, 246, 0.7);
  transition: color 0.3s;
}
.footer-contact p a:hover {
  color: var(--terra-light);
}
.footer-book-btn {
  margin-top: 1.2rem;
  display: inline-flex;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  padding-right: 280px; /* clear of floating Book Therapy button */
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(253, 250, 246, 0.4);
}
.footer-credit {
  font-style: italic;
}
.footer-built {
  margin-left: auto;
  margin-right: 0;
  padding-right: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(253, 250, 246, 0.35);
  max-width: calc(100% - 280px); /* stay left of FAB */
}
.footer-built a {
  color: rgba(253, 250, 246, 0.5);
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer-built a:hover {
  color: var(--terra-light);
}

/* ─── FLOATING BOOK BUTTON ────────────────────────── */
.fab-book {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(196, 113, 74, 0.45);
  transition:
    background 0.3s,
    transform 0.35s var(--ease-bounce),
    box-shadow 0.3s;
  text-decoration: none;
}
.fab-book svg {
  width: 18px;
  height: 18px;
}
.fab-book:hover {
  background: var(--terra-dark);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px rgba(196, 113, 74, 0.55);
}
.fab-book.hidden {
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-m);
  }
}

@media (max-width: 860px) {
  :root {
    --space-xl: 5rem;
    --space-l: 3rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(253, 250, 246, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    color: var(--bark);
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
  }
  .nav-link:hover {
    background: var(--cream-dark);
    color: var(--terracotta);
  }
  .nav-social-group {
    border: none;
  }
  .nav-social-icon {
    color: var(--bark-mid);
  }
  .btn-book-nav {
    font-size: 1rem;
    padding: 0.85rem 2rem;
  }

  .hero-pills {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image-wrap {
    position: static;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    position: static;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 4rem;
    --nav-h: 64px;
  }

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

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

  .social-proof-bar {
    flex-direction: column;
    gap: 1.2rem;
  }
  .proof-divider {
    width: 60px;
    height: 1px;
  }

  .event-card {
    flex-direction: column;
  }
  .event-date-badge {
    flex-direction: row;
    gap: 0.5rem;
    width: fit-content;
  }

  .fab-book span {
    display: none;
  }
  .fab-book {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
  .fab-book svg {
    width: 22px;
    height: 22px;
  }

  .contact-form {
    padding: 1.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
  .newsletter-inner {
    padding: 1.5rem;
  }
  .newsletter-form input {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .hero-headline {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-right: 0;
    padding-bottom: 5rem; /* clear of floating Book Therapy button */
  }
  .footer-built {
    margin-left: 0;
    max-width: none;
  }
}
