/* ============================================
   Songs & Self Music Therapy — Stylesheet
   Premium warm aesthetic inspired by Munro Partners:
   generous whitespace, rounded corners, soft shadows,
   warm cream palette, restrained elegance
   ============================================ */

/* --- Custom Properties --- */
:root {
  --oat: #fff9ee;
  --oat-light: #fffcf6;
  --peat: #3f322a;
  --peat-light: #5a4d44;
  --pine: #5b7e6b;
  --pine-dark: #4a6858;
  --pine-light: #e8f0ec;
  --accent: #c8a96e;
  --accent-light: #d4bb8a;
  --warm-gray: #6b6660;
  --warm-gray-light: #9b9688;
  --border: rgba(63, 50, 42, 0.1);
  --border-solid: #e8e0d4;
  --white: #ffffff;
  --error: #c44;

  --font-display: 'Libre Baskerville', 'Georgia', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 15px;
  --radius-sm: 8px;
  --radius-pill: 9999px;
  --shadow: 0 6px 20px rgba(63, 50, 42, 0.06);
  --shadow-hover: 0 8px 30px rgba(63, 50, 42, 0.1);
  --shadow-deep: 0 12px 40px rgba(63, 50, 42, 0.12);

  --container: 1140px;
  --container-wide: 1300px;
  --gap: 2.5rem;
  --section-pad: clamp(5rem, 8vw, 8rem);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--peat);
  background-color: var(--oat);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--pine);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* --- Main content layer (above fixed hero, above sticky footer) --- */
#main {
  position: relative;
  z-index: 1;
  background: var(--oat);
  margin-top: 80vh;
}


/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--peat);
  color: var(--oat);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--oat);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 3px;
}

/* --- Section Label --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 1.25rem;
  background: var(--pine-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
}

/* --- Required / Optional markers --- */
.required {
  color: var(--error);
}

.optional {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--warm-gray-light);
  text-transform: none;
  letter-spacing: 0;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--peat);
  color: var(--oat);
  padding: 1.25rem 0;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 249, 238, 0.7);
  min-width: 250px;
}

.cookie-inner p a {
  color: var(--oat);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-cookie-accept,
.btn-cookie-decline {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-cookie-accept {
  background: var(--pine);
  color: var(--oat);
}

.btn-cookie-accept:hover {
  background: var(--pine-dark);
}

.btn-cookie-decline {
  background: transparent;
  color: rgba(255, 249, 238, 0.6);
  border: 1px solid rgba(255, 249, 238, 0.2);
}

.btn-cookie-decline:hover {
  color: var(--oat);
  border-color: rgba(255, 249, 238, 0.4);
}

/* ============================================
   HERO — Landscape with canvas water ripple
   ============================================ */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--peat);
}

/* Canvas sits on top of the image once loaded */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Fallback image — hidden once canvas takes over */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero.canvas-active .hero-img {
  opacity: 0;
}

/* Brand name — centered, blended into the image */
.hero-brand {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.06em;
  mix-blend-mode: soft-light;
  padding-bottom: 2rem;
  white-space: nowrap;
  text-shadow:
    0 0 60px rgba(63, 50, 42, 0.3),
    0 0 120px rgba(63, 50, 42, 0.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(63, 50, 42, 0.65) 0%, rgba(63, 50, 42, 0.05) 45%, transparent 100%);
  pointer-events: none;
}

.hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 3.5rem var(--gap) 2.5rem;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--oat);
  line-height: 1.2;
  max-width: 700px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-tagline em {
  font-style: italic;
  color: var(--accent-light);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   HEADER — Sticky bar below hero (Munro style)
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--oat);
  border-bottom: 1px solid var(--border-solid);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(63, 50, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0.9rem var(--gap);
}

.header-left {
  display: flex;
  align-items: center;
}

/* Menu toggle — always visible, Munro style */
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
  color: var(--peat);
  transition: color 0.3s ease;
}

.menu-toggle:hover {
  color: var(--pine);
}

.menu-toggle svg {
  flex-shrink: 0;
}

.menu-toggle span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--peat);
  letter-spacing: -0.01em;
}


.logo:hover {
  color: var(--peat);
}

.header-right {
  display: flex;
  align-items: center;
}

/* Desktop inline nav — visible on larger screens */
.main-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 340px;
  height: 100vh;
  height: 100dvh;
  background: var(--oat);
  padding: 6rem 2.5rem 2rem;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.08);
  z-index: 999;
  overflow-y: auto;
}

.main-nav.open {
  left: 0;
}

/* Close button inside nav */
.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--peat-light);
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.nav-close:hover {
  color: var(--pine);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-item > a {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--peat);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.nav-item > a:hover {
  color: var(--pine);
  padding-left: 0.5rem;
}

/* Submenu inside slide-out */
.has-submenu {
  position: relative;
}

.submenu {
  padding: 0.25rem 0 0.5rem 1.25rem;
  display: none;
}

.main-nav.open .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--peat-light);
  transition: all 0.2s ease;
}

.submenu li a:hover {
  color: var(--pine);
  padding-left: 0.5rem;
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(63, 50, 42, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   INTRO STATEMENT — below nav bar
   ============================================ */
.intro-statement {
  padding: 3.5rem 0 4rem;
  border-bottom: 1px solid var(--border-solid);
}

.intro-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.intro-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--peat);
  max-width: 800px;
}

.intro-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--pine);
  color: var(--oat) !important;
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 0.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(91, 126, 107, 0.2);
}

.intro-cta::after {
  content: '\2192';
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 1.1em;
}

.intro-cta:hover {
  background: var(--pine-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91, 126, 107, 0.35);
  padding-right: 2.5rem;
}

.intro-cta:hover::after {
  transform: translateX(4px);
}

.intro-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 126, 107, 0.25);
}

/* ============================================
   SESSION PHOTO BANNER
   ============================================ */
.session-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.session-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--peat);
  margin-bottom: 1.75rem;
  line-height: 1.15;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--peat-light);
  margin-bottom: 1.1rem;
}

.about-text p strong {
  color: var(--pine);
  font-weight: 500;
}

/* Registration Badges */
.registration-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-solid);
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-solid);
  transition: box-shadow 0.3s ease;
}

.badge:hover {
  box-shadow: var(--shadow);
}

.badge-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* About image */
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--pine-light) 0%, #d5e2da 100%);
  border-radius: var(--radius);
  position: relative;
}

.about-image-placeholder::after {
  content: 'Photo';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  color: var(--warm-gray-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   MUSIC THERAPY
   ============================================ */
.music-therapy {
  padding: var(--section-pad) 0;
  background-color: var(--oat-light);
}

.therapy-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.therapy-intro {
  max-width: 750px;
}

.therapy-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-deep);
}

.therapy-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--peat);
  margin-bottom: 2.5rem;
}

.therapy-intro h2 em {
  color: var(--pine);
  font-style: italic;
}

blockquote {
  border-left: 3px solid var(--pine);
  padding-left: 1.75rem;
  margin: 0;
}

blockquote p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--peat-light);
  font-style: italic;
}

blockquote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--warm-gray);
  margin-top: 1rem;
}

/* ============================================
   WHAT TO EXPECT / COMPARISON
   ============================================ */
.what-to-expect {
  padding: var(--section-pad) 0;
  background: linear-gradient(165deg, #eef3ed 0%, #f4efe6 50%, #eef0ec 100%);
}

.expect-intro {
  max-width: 750px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--peat-light);
  margin-bottom: 3.5rem;
}

.expect-intro strong {
  color: var(--peat);
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.comparison-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.comparison-col h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--peat);
}

.therapy-col {
  background: var(--pine);
  border: none;
  color: var(--oat);
}

.therapy-col h3 {
  color: var(--oat);
}

.comparison-col ul {
  list-style: none;
}

.comparison-col ul li {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--peat-light);
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.comparison-col ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.comparison-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-solid);
}

.therapy-col ul li {
  color: rgba(255, 249, 238, 0.85);
  border-bottom-color: rgba(255, 249, 238, 0.12);
}

.therapy-col ul li::before {
  background: var(--accent);
}

.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}

.comparison-divider span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--warm-gray-light);
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

/* ============================================
   APPROACHES
   ============================================ */
.approaches {
  padding: var(--section-pad) 0;
  background-color: var(--oat-light);
}

.approaches-intro {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--peat-light);
  margin-bottom: 3rem;
}

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

.approach-card {
  background: var(--white);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.approach-card:hover {
  border-color: var(--pine);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.approach-icon {
  color: var(--pine);
  margin-bottom: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pine-light);
  border-radius: 12px;
}

.approach-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--peat);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.approach-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--peat-light);
  margin-bottom: 0.75rem;
}

.approach-card p:last-child {
  margin-bottom: 0;
}

/* ============================================
   WHO I WORK WITH
   ============================================ */
.who-i-work-with {
  padding: var(--section-pad) 0;
  padding-top: 0;
}

.who-i-work-with-banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.who-i-work-with-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--oat) 0%, transparent 100%);
}

.wiww-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.who-i-work-with .container {
  padding-top: 3rem;
}

.who-i-work-with h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--peat);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.25;
}

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

.client-card {
  background: var(--white);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

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

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

.client-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--peat);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.client-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--peat-light);
}

/* ============================================
   HOW TO GET STARTED
   ============================================ */
.get-started {
  padding: var(--section-pad) 0;
  background-color: var(--pine);
  color: var(--oat);
}

.get-started .section-label {
  background: rgba(255, 249, 238, 0.15);
  color: rgba(255, 249, 238, 0.7);
}

.get-started h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--oat);
  margin-bottom: 3.5rem;
  line-height: 1.25;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 249, 238, 0.15);
  color: var(--oat);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 249, 238, 0.2);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--oat);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 249, 238, 0.7);
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 1.25rem;
  color: rgba(255, 249, 238, 0.3);
}

.form-success[hidden] {
  display: none;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  min-height: 300px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--oat);
  margin: 1.25rem 0 0.75rem;
}

.form-success p {
  font-size: 0.9375rem;
  color: rgba(255, 249, 238, 0.6);
  line-height: 1.7;
  max-width: 360px;
}

.btn-book-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 249, 238, 0.1);
  border: 1px solid rgba(255, 249, 238, 0.2);
  color: var(--oat) !important;
  padding: 0.8rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  margin: 1.5rem 0;
}

.btn-book-call:hover {
  background: rgba(255, 249, 238, 0.15);
  border-color: rgba(255, 249, 238, 0.35);
  color: var(--oat) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.booking-widget {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background-color: var(--oat-light);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

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

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--pine);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--peat-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card footer {
  margin-top: auto;
}

.testimonial-card cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--warm-gray);
  line-height: 1.4;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-pad) 0;
}

.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--peat);
  margin-bottom: 3rem;
  line-height: 1.25;
}

.faq-list {
  max-width: 800px;
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--peat);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--warm-gray-light);
  background: var(--oat-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.faq-item[open] summary::after {
  content: '\2212';
  background: var(--pine-light);
  color: var(--pine);
}

.faq-item summary:hover {
  color: var(--pine);
}

.faq-answer {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--peat-light);
  max-width: 700px;
}

/* ============================================
   AREAS COVERED
   ============================================ */
.areas-covered {
  padding: var(--section-pad) 0;
  background-color: var(--oat-light);
}

.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.areas-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--peat);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.areas-text > p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--peat-light);
  margin-bottom: 1.75rem;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2.5rem;
  margin-bottom: 1.75rem;
}

.areas-list li {
  font-size: 0.95rem;
  color: var(--peat-light);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.areas-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pine);
}

.areas-note {
  font-size: 0.875rem;
  color: var(--warm-gray);
  font-style: italic;
}

.areas-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background-color: #2c3e35;
  color: var(--oat);
}

.contact .section-label {
  background: rgba(255, 249, 238, 0.08);
  color: rgba(255, 249, 238, 0.5);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.contact-text p {
  font-size: 1rem;
  color: rgba(255, 249, 238, 0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9375rem;
  color: rgba(255, 249, 238, 0.7);
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--oat);
  transform: translateX(4px);
}

.contact-link svg {
  flex-shrink: 0;
  color: var(--pine);
}

/* Contact Form */
.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 249, 238, 0.45);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 249, 238, 0.06);
  border: 1px solid rgba(255, 249, 238, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--oat);
  transition: all 0.3s ease;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 249, 238, 0.25);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pine);
  background: rgba(255, 249, 238, 0.1);
}

/* Custom themed dropdown */
.custom-select {
  position: relative;
}

.custom-select-trigger {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: rgba(255, 249, 238, 0.06);
  border: 1px solid rgba(255, 249, 238, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--oat);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  line-height: 1.5;
}

.custom-select-trigger:hover {
  background: rgba(255, 249, 238, 0.08);
  border-color: rgba(255, 249, 238, 0.2);
}

.custom-select-trigger:focus {
  outline: none;
  border-color: var(--pine);
  background: rgba(255, 249, 238, 0.1);
}

.custom-select-value.placeholder {
  color: rgba(255, 249, 238, 0.25);
}

.custom-select-arrow {
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #243029;
  border: 1px solid rgba(255, 249, 238, 0.15);
  border-radius: var(--radius-sm);
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  max-height: 240px;
  overflow-y: auto;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-options li {
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 249, 238, 0.7);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-options li:hover,
.custom-select-options li.focused {
  background: rgba(255, 249, 238, 0.08);
  color: var(--oat);
}

.custom-select-options li.selected {
  color: var(--pine);
}

/* Checkbox in contact form */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: rgba(255, 249, 238, 0.55);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.55;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pine);
  flex-shrink: 0;
  margin-top: 1px;
}

.checkbox-label a {
  color: rgba(255, 249, 238, 0.75);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--oat);
}

.btn-submit {
  background: var(--pine);
  color: var(--oat);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--pine-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(91, 126, 107, 0.3);
}

/* ============================================
   LEGAL PAGES (Privacy, Accessibility)
   ============================================ */
.legal-page {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--oat);
}

.legal-page .container {
  max-width: 780px;
}

.legal-back {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 2.5rem;
  transition: opacity 0.3s ease;
}

.legal-back:hover {
  opacity: 0.7;
  color: var(--pine);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--peat);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.8125rem;
  color: var(--warm-gray-light);
  margin-bottom: 3rem;
}

.legal-page section {
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--peat);
  margin-bottom: 0.75rem;
}

.legal-page p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--peat-light);
  margin-bottom: 1rem;
}

.legal-page ul {
  margin: 0.75rem 0 1rem 1.25rem;
  list-style: disc;
}

.legal-page ul li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--peat-light);
  margin-bottom: 0.4rem;
}

.legal-page a {
  color: var(--pine);
}

.legal-page a:hover {
  color: var(--pine-dark);
}

/* ============================================
   BOOKING CONFIRMATION PAGE
   ============================================ */
.confirmation-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem var(--gap);
  background: linear-gradient(165deg, #eef3ed 0%, var(--oat) 50%, #f4efe6 100%);
}

.confirmation-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-deep);
}

.confirmation-icon {
  margin-bottom: 1.5rem;
}

.confirmation-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--peat);
  margin-bottom: 0.5rem;
}

.confirmation-subtitle {
  font-size: 1rem;
  color: var(--peat-light);
  margin-bottom: 2rem;
}

.confirmation-details {
  background: rgba(91, 126, 107, 0.06);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-row:first-child {
  padding-top: 0;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray-light);
  flex-shrink: 0;
}

.detail-value {
  font-size: 0.9375rem;
  color: var(--peat);
  text-align: right;
  margin-left: 1rem;
}

.confirmation-message {
  margin-bottom: 2rem;
}

.confirmation-message p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--peat-light);
  margin-bottom: 0.75rem;
}

.btn-back-home {
  display: inline-block;
  background: var(--pine);
  color: var(--oat) !important;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.btn-back-home:hover {
  background: var(--pine-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 126, 107, 0.3);
  color: var(--oat) !important;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
  padding: 4rem 0 2.5rem;
  background-color: #1e2b23;
  color: rgba(255, 249, 238, 0.6);
}

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

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 249, 238, 0.35);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.footer-badge {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 249, 238, 0.3);
  border: 1px solid rgba(255, 249, 238, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--oat);
  margin-bottom: 1rem;
}

.footer-subheading {
  margin-top: 1.5rem;
}

.footer-areas {
  font-size: 0.8125rem;
  color: rgba(255, 249, 238, 0.35);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 249, 238, 0.4);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--oat);
  padding-left: 4px;
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 249, 238, 0.2);
}

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

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 249, 238, 0.2);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(255, 249, 238, 0.5);
}

/* ============================================
   ANIMATIONS (scroll-triggered)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.stagger-in > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-in.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-in.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-in.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-in.visible > *:nth-child(4) { transition-delay: 0.2s; }

.stagger-in.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    max-width: 400px;
    aspect-ratio: 1 / 1;
  }

  .about-image-placeholder {
    max-width: 400px;
    aspect-ratio: 1 / 1;
  }

  .therapy-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .therapy-photo {
    max-width: 400px;
    aspect-ratio: 1 / 1;
  }

  .approaches-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }

  .step-arrow {
    display: none;
  }

  .step {
    text-align: left;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .step-number {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .areas-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .comparison-table {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-divider {
    padding: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --gap: 1.5rem;
  }

  .hero {
    height: 55vh;
    min-height: 350px;
  }

  #main {
    margin-top: 55vh;
  }

  .hero-brand {
    font-size: 3.5rem;
  }

  .intro-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .session-banner {
    height: 200px;
  }

  .hero-tagline {
    font-size: clamp(1.5rem, 5.5vw, 2.25rem);
  }

  .hero-text {
    padding: 2.5rem var(--gap) 1.5rem;
  }

  .main-nav {
    width: 280px;
    padding: 5rem 2rem 2rem;
  }

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

  .who-i-work-with-banner {
    height: 250px;
  }

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

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

  .registration-badges {
    flex-direction: row;
  }

  .cookie-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .site-footer {
    position: relative;
    bottom: auto;
  }

  .custom-select-options {
    max-height: 200px;
  }

  .intro-cta {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 45vh;
    min-height: 300px;
  }

  #main {
    margin-top: 45vh;
  }

  .hero-brand {
    font-size: 2.75rem;
    letter-spacing: 0.03em;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .hero-text {
    padding: 2rem var(--gap) 1.25rem;
  }

  .comparison-col {
    padding: 1.75rem;
  }

  .approach-card {
    padding: 2rem;
  }

  .faq-question {
    padding: 1rem 0;
  }

  .step {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .step h3 {
    font-size: 1.1rem;
  }

  .step p {
    font-size: 0.85rem;
  }

  .get-started h2 {
    margin-bottom: 2.5rem;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .stagger-in > * {
    opacity: 1;
    transform: none;
  }

  .hero-bg-img {
    animation: none;
  }
}
