/* ============================================
   MY THERAPY SPACE — PREMIUM STYLESHEET
   Earthy · Warm · Joyous · Welcoming · Wellness-first
   (Compatible with existing HTML class names)
   ============================================ */

:root {
  /* Joyous earthy color scheme */
  --color-bg: #fbf8f4;
  --color-surface: #ffffff;
  --color-surface-2: #f3ebe1;
  --color-beige: var(--color-bg);
  --color-beige-dk: var(--color-surface-2);

  --color-terracotta: #d07058;
  --color-terracotta-lt: #f4dcd5;
  --color-terracotta-dk: #b35842;

  --color-sage: #92a884;
  --color-sage-lt: #dde6d8;

  --color-lavender: #bbaed0;
  --color-lavender-lt: #e8e3f0;

  --color-text: #4a423c;
  --color-text-muted: #7d726a;
  --color-charcoal: #2a2522;

  --color-border: rgba(74, 66, 60, 0.1);
  --color-white: #fffefc;
  --color-success: #4a7c3f;
  --color-error: #b84b4b;

  --font-serif: "Lora", Georgia, serif;
  --font-sans: "Lato", system-ui, sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-md: clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.55vw, 1.35rem);
  --text-xl: clamp(1.25rem, 1.05rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.1vw, 2rem);
  --text-3xl: clamp(1.625rem, 1.25rem + 1.35vw, 2.35rem);
  --text-4xl: clamp(1.875rem, 1.35rem + 1.75vw, 2.5rem);
  --text-hero: clamp(2.35rem, 1.45rem + 3.5vw, 3.65rem);

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

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 10px rgba(42, 37, 34, 0.05);
  --shadow-md: 0 10px 30px rgba(42, 37, 34, 0.07);
  --shadow-lg: 0 20px 50px rgba(42, 37, 34, 0.09);
  --shadow-nav: 0 8px 32px rgba(42, 37, 34, 0.06);
  --shadow-glow-terra: 0 12px 40px rgba(208, 112, 88, 0.22);

  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.05);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.25s var(--ease-smooth);

  --max-width: 72rem;
  --narrow: 48rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.72;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100dvh;
  overflow-x: hidden;
}

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

p {
  margin: 0 0 var(--space-4);
  text-wrap: pretty;
  max-width: 70ch;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 var(--space-4);
  padding-left: 1.25rem;
}

a {
  color: var(--color-terracotta);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease-smooth);
}

a:hover {
  color: var(--color-terracotta-dk);
}

:focus-visible {
  outline: 3px solid var(--color-terracotta-lt);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--color-charcoal);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-xl);
}

.text-muted {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.65;
}

em.accent {
  color: var(--color-terracotta);
  font-style: italic;
}

.container {
  width: min(100% - var(--space-8), var(--max-width));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - var(--space-8), var(--narrow));
  margin-inline: auto;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.85rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s var(--ease-spring), background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.btn:active {
  transform: scale(0.97);
}

.btn:focus-visible {
  outline: 3px solid var(--color-terracotta-lt);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-glow-terra);
}

.btn-primary:hover {
  background: var(--color-terracotta-dk);
  border-color: var(--color-terracotta-dk);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(208, 112, 88, 0.32);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-terracotta-dk);
  border-color: var(--color-terracotta-lt);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-terracotta-lt);
  border-color: var(--color-terracotta);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
}

/* —— Glass navigation —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 244, 0.78);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-6);
  min-height: 5rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

@media (min-width: 901px) {
  .nav-links {
    margin-left: auto;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-md);
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(208, 112, 88, 0.15));
  transition: transform 0.4s var(--ease-spring);
}

.brand:hover .brand-mark {
  transform: scale(1.04) rotate(-2deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.22;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--color-charcoal);
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: none;
  padding-block: var(--space-2);
  position: relative;
  transition: color 0.25s var(--ease-smooth);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--color-terracotta);
  transition: width 0.35s var(--ease-spring);
}

.nav-links a:hover {
  color: var(--color-terracotta);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-terracotta);
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-md);
  margin-left: auto;
  z-index: 101;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-spring), opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-drawer {
  display: contents;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-drawer {
    display: block;
    position: fixed;
    left: var(--space-4);
    right: var(--space-4);
    top: 5.25rem;
    max-height: calc(100dvh - 6.5rem);
    overflow-y: auto;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: var(--space-6);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.35s var(--ease-smooth), transform 0.4s var(--ease-spring);
    z-index: 99;
  }

  .nav-drawer.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-drawer .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-drawer .nav-links li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-drawer .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-drawer .nav-links a {
    display: block;
    padding: var(--space-4) 0;
  }

  .nav-drawer .nav-links a::after {
    display: none;
  }

  .nav-drawer .nav-cta {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
  }

  .nav-drawer .nav-cta .btn {
    width: 100%;
  }
}

/* —— Home hero —— */
.hero {
  position: relative;
  text-align: center;
  padding: clamp(5.5rem, 14vw, 10rem) var(--space-6) var(--space-16);
  background: linear-gradient(155deg, #fbf8f4 0%, #e8f0e3 42%, #ebe4f4 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: heroBreath 7.5s ease-in-out infinite;
}

.hero::before {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  top: -18%;
  left: -12%;
  background: radial-gradient(circle, var(--color-terracotta-lt) 0%, transparent 68%);
  animation-delay: 0s;
}

.hero::after {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  bottom: -8%;
  right: -8%;
  background: radial-gradient(circle, var(--color-sage-lt) 0%, transparent 70%);
  animation-delay: 1.4s;
}

@keyframes heroBreath {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.38;
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.07);
    opacity: 0.55;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.38;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  color: var(--color-bg);
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 72px;
}

@media (min-width: 768px) {
  .hero-wave svg {
    height: 100px;
  }
}

/* —— Inner page heroes —— */
.page-hero {
  padding: clamp(4.5rem, 10vw, 7.5rem) var(--space-6) clamp(3.5rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero .container--narrow {
  position: relative;
  z-index: 1;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.page-hero::before {
  width: 55vw;
  height: 55vw;
  max-width: 480px;
  max-height: 480px;
  top: -35%;
  left: -10%;
  background: radial-gradient(circle, var(--color-terracotta-lt) 0%, transparent 72%);
}

.page-hero::after {
  width: 45vw;
  height: 45vw;
  max-width: 400px;
  max-height: 400px;
  bottom: -25%;
  right: -8%;
  background: radial-gradient(circle, var(--color-sage-lt) 0%, transparent 72%);
}

.page-hero--sage {
  background: linear-gradient(160deg, var(--color-bg) 0%, var(--color-sage-lt) 55%, var(--color-bg) 100%);
}

.page-hero--lavender {
  background: linear-gradient(165deg, var(--color-bg) 0%, var(--color-lavender-lt) 50%, #faf7fc 100%);
}

.page-hero--lavender::before {
  background: radial-gradient(circle, var(--color-lavender-lt) 0%, transparent 72%);
}

.page-hero--terra {
  background: linear-gradient(165deg, var(--color-bg) 0%, var(--color-terracotta-lt) 45%, var(--color-bg) 100%);
}

.page-hero--terra::after {
  background: radial-gradient(circle, var(--color-terracotta-lt) 0%, transparent 75%);
}

.page-hero h1 {
  margin-bottom: var(--space-5);
}

.page-hero .text-muted {
  max-width: 52ch;
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-terracotta);
}

/* —— Sections —— */
.section {
  padding: clamp(var(--space-16), 10vw, var(--space-24)) var(--space-6);
}

.section--alt {
  padding: clamp(var(--space-16), 10vw, var(--space-24)) var(--space-6);
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-4);
}

.section-heading {
  margin-bottom: var(--space-10);
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.section-heading h2 {
  margin-bottom: var(--space-3);
}

/* —— Grids —— */
.grid-2 {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

.grid-3 {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 901px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* —— Cards —— */
.card {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s var(--ease-smooth), border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card--lavender .card-icon {
  background: var(--color-lavender-lt);
}

.card--sage .card-icon {
  background: var(--color-sage-lt);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--color-terracotta-lt);
  margin-bottom: var(--space-5);
  transition: transform 0.4s var(--ease-spring);
}

.card:hover .card-icon {
  transform: scale(1.08) rotate(4deg);
}

.card-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card-text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-terracotta);
  text-decoration: none;
}

.card-link::after {
  content: "→";
  transition: transform 0.3s var(--ease-spring);
}

.card:hover .card-link::after {
  transform: translateX(5px);
}

/* —— Testimonials —— */
.testimonial-card {
  background: rgba(243, 235, 225, 0.6);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease-smooth), transform 0.35s var(--ease-spring);
}

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

.stars {
  color: #c4863a;
  letter-spacing: 0.2em;
  font-size: 1.15rem;
  margin-bottom: var(--space-4);
}

.testimonial-card blockquote {
  margin: 0 0 var(--space-6);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.testimonial-card blockquote::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 5rem);
  color: rgba(255, 255, 255, 0.65);
  position: absolute;
  top: -2.25rem;
  left: -0.35rem;
  z-index: -1;
  line-height: 1;
  pointer-events: none;
}

.testimonial-cite {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-charcoal);
  font-style: normal;
}

/* —— Trust bar (lighter, welcoming) —— */
.trust-bar {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-block: 1px solid var(--color-border);
  color: var(--color-text);
  padding: var(--space-8) var(--space-6);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-smooth);
}

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

.trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #26211f 0%, var(--color-charcoal) 55%, #1d1917 100%);
  color: var(--color-white);
  padding: clamp(var(--space-16), 9vw, var(--space-24)) var(--space-6);
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 112, 88, 0.42) 0%, rgba(208, 112, 88, 0) 70%);
  filter: blur(28px);
  top: -60px;
  left: -40px;
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 174, 208, 0.38) 0%, rgba(187, 174, 208, 0) 70%);
  filter: blur(36px);
  bottom: -80px;
  right: -60px;
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--color-white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  opacity: 0.94;
  font-size: var(--text-lg);
  color: rgba(255, 254, 252, 0.95);
}

.cta-band .btn-primary {
  background: var(--color-surface);
  color: var(--color-charcoal);
  border-color: var(--color-surface);
  box-shadow: 0 10px 36px rgba(42, 37, 34, 0.18);
}

.cta-band .btn-primary:hover {
  background: var(--color-bg);
  color: var(--color-charcoal);
  border-color: var(--color-bg);
  transform: translateY(-3px);
}

/* —— Services —— */
.service-block {
  padding: clamp(var(--space-12), 7vw, var(--space-16)) 0;
  border-bottom: 1px solid var(--color-border);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--color-sage-lt);
  color: #3d5234;
  margin-bottom: var(--space-5);
}

.service-tag--lavender {
  background: var(--color-lavender-lt);
  color: #4a3f5c;
}

.service-tag--sage {
  background: var(--color-sage-lt);
}

.service-tag--beige {
  background: var(--color-surface-2);
  color: var(--color-charcoal);
}

.service-block h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}

.service-block p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-5);
}

.highlight-box {
  background: linear-gradient(105deg, var(--color-lavender-lt), rgba(255, 255, 255, 0.65));
  border-left: 4px solid var(--color-lavender);
  padding: var(--space-6) var(--space-8);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  margin: var(--space-8) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-charcoal);
  box-shadow: var(--shadow-sm);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.service-list li {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  padding: var(--space-2) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), border-color 0.25s ease;
}

.service-list li:hover {
  transform: translateY(-2px);
  border-color: var(--color-terracotta-lt);
}

.programs-list {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.programs-list li {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  font-size: var(--text-sm);
  line-height: 1.55;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.3s ease;
}

.programs-list li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.programs-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-terracotta);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--color-terracotta-lt);
}

.wave-divider {
  margin: var(--space-10) 0;
  opacity: 0.4;
}

.wave-divider--lavender path {
  fill: var(--color-lavender);
}

.wave-divider--sage path {
  fill: var(--color-sage);
}

.wave-divider--terra path {
  fill: var(--color-terracotta-lt);
}

/* —— FAQ —— */
.faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--color-terracotta-lt);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-6);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: background 0.25s ease;
}

.faq-question:hover {
  background: rgba(251, 248, 244, 0.65);
}

.faq-question::after {
  content: "+";
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background: var(--color-lavender-lt);
  color: #4a3f5c;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.25rem;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.45s var(--ease-spring), background 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: "\2212";
  transform: rotate(180deg);
  background: var(--color-lavender);
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-smooth);
}

.faq-item.open .faq-answer {
  max-height: 28rem;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* —— Forms —— */
fieldset.form-group {
  border: none;
  padding: 0;
  min-width: 0;
}

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

.form-group label,
.form-group legend {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-charcoal);
}

.form-control {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px) saturate(1.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.3s var(--ease-smooth);
}

.form-control::placeholder {
  color: #a8a09a;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 4px var(--color-terracotta-lt);
}

.form-control.error {
  border-color: var(--color-error);
  background: #fdf6f5;
}

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

.field-error {
  display: none;
  font-size: var(--text-xs);
  color: var(--color-error);
  font-weight: 700;
  margin-top: var(--space-2);
}

.field-error.visible {
  display: block;
}

.radio-group,
.checkbox-label {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
}

.radio-label input,
.checkbox-label input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--color-terracotta);
}

.form-success {
  display: none;
  padding: var(--space-10);
  background: linear-gradient(145deg, #e8f2e4, #f0f7ec);
  border: 1px solid rgba(74, 124, 63, 0.35);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #2b4d1a;
  animation: fadeUp 0.55s var(--ease-smooth) both;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  font-family: var(--font-serif);
  color: var(--color-charcoal);
  margin-bottom: var(--space-3);
}

.form-success p {
  margin: 0;
  font-size: var(--text-lg);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Layout splits —— */
.layout-split {
  display: grid;
  gap: var(--space-10);
  padding: var(--space-12) var(--space-6) var(--space-20);
  max-width: var(--max-width);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .layout-split--form {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .layout-split--contact {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.enquiry-sidebar {
  position: sticky;
  top: 6.5rem;
  background: rgba(243, 235, 225, 0.58);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 899px) {
  .enquiry-sidebar {
    position: static;
  }
}

.enquiry-sidebar h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 var(--space-8);
  counter-reset: steps;
}

.steps-list li {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, var(--color-lavender), #8e82a8);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.sidebar-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-terracotta-dk);
  margin: var(--space-6) 0;
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  font-size: var(--text-base);
  line-height: 1.6;
}

.sidebar-privacy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.crisis-note {
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding: var(--space-5);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  line-height: 1.55;
}

/* —— Contact —— */
.contact-detail {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-smooth);
}

.contact-detail:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--color-sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-info strong {
  display: block;
  font-size: var(--text-base);
  color: var(--color-charcoal);
  margin-bottom: var(--space-1);
}

.contact-info span,
.contact-info a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact-info a {
  font-weight: 600;
}

.hours-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin: var(--space-6) 0;
  border: 1px solid var(--color-border);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-sm);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

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

.social-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin: var(--space-6) 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--color-charcoal);
  color: var(--color-bg);
  transition: transform 0.35s var(--ease-spring), background 0.25s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.social-btn:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.crisis-box {
  background: linear-gradient(160deg, #fcf4eb, #fff9f4);
  border: 1px solid #e8c9a0;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-top: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.crisis-box h3 {
  font-size: var(--text-lg);
  color: #8a6220;
  margin-bottom: var(--space-4);
}

.crisis-box ul {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  padding-left: 0;
  list-style: none;
}

.crisis-box li {
  padding-left: var(--space-4);
  border-left: 3px solid #e0b881;
  margin-bottom: var(--space-3);
  color: #6a4d18;
  font-weight: 600;
}

.crisis-box p {
  font-size: var(--text-sm);
  margin: 0;
  color: var(--color-text-muted);
}

.map-placeholder {
  margin: var(--space-12) var(--space-6) var(--space-20);
  max-width: var(--max-width);
  margin-inline: auto;
  min-height: 280px;
  padding: var(--space-10);
  text-align: center;
  background: var(--color-surface-2);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-2xl);
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

/* —— About visual —— */
.about-visual {
  min-height: 300px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--color-terracotta-lt), var(--color-lavender-lt) 45%, var(--color-sage-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%);
  pointer-events: none;
}

.about-visual blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-xl);
  text-align: center;
  color: var(--color-charcoal);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-smooth), transform 0.85s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Footer —— */
.site-footer {
  background: linear-gradient(180deg, #2f2a26 0%, var(--color-charcoal) 100%);
  color: var(--color-bg);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-6) var(--space-10);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-terracotta) 0%, var(--color-sage) 35%, var(--color-lavender) 70%, var(--color-terracotta) 100%);
  background-size: 240% 100%;
  animation: footerShimmer 6.5s linear infinite;
  opacity: 0.9;
}

@keyframes footerShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.footer-inner {
  display: grid;
  gap: var(--space-12);
  max-width: var(--max-width);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.25fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .footer-inner {
    text-align: center;
  }

  .footer-brand .brand {
    justify-content: center;
  }
}

.site-footer a {
  color: rgba(251, 248, 244, 0.88);
  opacity: 1;
}

.site-footer a:hover {
  color: var(--color-terracotta-lt);
}

.footer-brand .brand-name {
  color: var(--color-bg);
}

.footer-brand .brand-tag {
  color: rgba(251, 248, 244, 0.65);
}

.footer-links h4,
.footer-crisis h4 {
  color: var(--color-terracotta-lt);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
  text-transform: none;
  letter-spacing: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  text-decoration: none;
  font-size: var(--text-sm);
  transition: padding 0.25s var(--ease-spring), color 0.2s ease;
}

.footer-links a:hover {
  padding-left: 4px;
}

.footer-crisis p,
.footer-crisis a {
  font-size: var(--text-sm);
  margin: 0 0 var(--space-2);
  line-height: 1.55;
  color: rgba(251, 248, 244, 0.75);
}

.footer-crisis a {
  color: var(--color-bg);
  font-weight: 600;
}

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(251, 248, 244, 0.12);
  font-size: var(--text-xs);
  color: rgba(251, 248, 244, 0.5);
  text-align: center;
}

.center-actions {
  text-align: center;
  margin-top: var(--space-10);
}

.mt-0 {
  margin-top: 0;
}

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