:root {
  /* Warm off-white base — tinted toward amber, not pure white */
  --bg: oklch(97.5% 0.008 72);
  /* Warm parchment for alternate sections — replaces cool sage */
  --sage-50: oklch(93.5% 0.018 70);
  --sage-100: oklch(89% 0.026 70);
  --sage-200: oklch(83% 0.032 68);
  /* Deep warm charcoal — replaces forest green */
  --forest: oklch(19% 0.025 55);
  --forest-2: oklch(27% 0.032 55);
  /* Warm mid-tone for body text */
  --ink: oklch(18% 0.02 58);
  --ink-mid: oklch(34% 0.028 58);
  /* Secondary text */
  --muted: oklch(50% 0.014 62);
  /* Borders */
  --line: oklch(84% 0.018 70);
  /* Card backgrounds */
  --card-bg: oklch(98.5% 0.007 72);
  /* Terracotta CTA — warmer, richer than the previous orange-red */
  --coral: oklch(54% 0.16 36);
  --coral-dark: oklch(46% 0.155 36);
  /* Warm white for text on dark backgrounds */
  --white: oklch(98.5% 0.006 72);
  --shadow: 0 24px 70px oklch(14% 0.015 55 / 0.11);
  --serif: "Spectral", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --page-x: clamp(20px, 5vw, 72px);
  --max: 1180px;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

#yhteydenotto {
  scroll-margin-top: 78px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--page-x);
  z-index: 100;
  padding: 10px 20px;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: top 150ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 var(--page-x);
  background: oklch(98.5% 0.006 72 / 0.95);
  border-bottom: 1px solid oklch(84% 0.018 70 / 0.7);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.62rem;
  font-weight: 700;
  line-height: 1;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-subtitle {
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--muted);
  text-transform: uppercase;
  padding-left: 3px;
}

.brand-name {
  font-size: 1.62rem;
  font-weight: 700;
  font-family: var(--serif);
  color: var(--forest);
  line-height: 1;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  color: var(--forest-2);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--coral);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
  border-radius: 2px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button-primary {
  border: 1px solid var(--coral);
  color: var(--white);
  background: var(--coral);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px oklch(54% 0.16 36 / 0.28);
}

.header-cta:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button-secondary {
  border: 1px solid var(--forest-2);
  color: var(--forest);
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--coral);
  color: var(--coral-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.nav-cta {
  display: none;
}

.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  padding: 12px var(--page-x) max(12px, env(safe-area-inset-bottom));
  background: oklch(98.5% 0.006 72 / 0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
  .mobile-booking-bar.is-visible {
    display: flex;
  }
}

.mobile-booking-bar .button {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 78px));
  background: var(--forest);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.hero-bg:not([src]),
.hero-bg[src=""] {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 120% at 0% 60%, oklch(18% 0.02 70 / 0.82) 0%, oklch(18% 0.02 70 / 0.4) 50%, transparent 75%);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding: clamp(80px, 10vw, 120px) var(--page-x);
}

.hero h1,
.section h2,
.booking h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 610px;
  color: var(--white);
  font-size: 3.8rem;
}

.hero p {
  max-width: 520px;
  margin: 28px 0 0;
  color: oklch(82% 0.012 70);
  font-size: 1.16rem;
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

/* Hero entrance */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-copy > * {
  animation: fade-up 700ms var(--ease-out-expo) both;
}
.hero-copy > *:nth-child(1) { animation-delay: 0ms; }
.hero-copy > *:nth-child(2) { animation-delay: 130ms; }
.hero-copy > *:nth-child(3) { animation-delay: 260ms; }
.hero-copy > *:nth-child(4) { animation-delay: 380ms; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms var(--ease-out-quart), transform 550ms var(--ease-out-quart);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.service-grid .service-card.reveal:nth-child(2) { transition-delay: 90ms; }
.service-grid .service-card.reveal:nth-child(3) { transition-delay: 180ms; }
.package-grid .package-card.reveal:nth-child(2) { transition-delay: 90ms; }
.package-grid .package-card.reveal:nth-child(3) { transition-delay: 180ms; }

.hero .eyebrow {
  color: oklch(95% 0.008 72);
}

.hero p {
  color: oklch(92% 0.008 72);
}

.hero .button-secondary {
  border-color: oklch(70% 0.012 70);
  color: oklch(88% 0.01 72);
}

.hero .button-secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
}


.section {
  padding: clamp(64px, 7vw, 92px) var(--page-x);
}

.section > * {
  max-width: calc(var(--max) - var(--page-x) * 2);
  margin-left: auto;
  margin-right: auto;
}

.section-sage {
  background: var(--sage-50);
}

.section-heading {
  text-align: left;
}

.section h2,
.booking h2 {
  font-size: 2.9rem;
}

.section-heading p {
  margin: 14px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 5vw, 60px);
  margin-top: 46px;
}


.service-detail {
  margin: 20px 0 0;
  font-size: 0.82rem;
  color: var(--ink-mid);
  letter-spacing: 0.01em;
}

.service-detail a {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.service-detail a:hover {
  border-bottom-color: var(--forest);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest-2);
}

.service-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.2;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--ink-mid);
}

.service-also {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 60px;
  align-items: start;
}

.service-also-heading {
  grid-column: 1 / 3;
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
}

.service-also-intro {
  grid-column: 1 / 3;
  margin: 0 0 20px;
  color: var(--ink-mid);
  font-size: 0.95rem;
}

.service-also-list {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-also-list li {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
}

.service-also-close {
  grid-column: 1 / 3;
  margin: 20px 0 0;
  font-size: 0.9rem;
  color: var(--ink-mid);
  font-style: italic;
}

@media (max-width: 680px) {
  .service-also-list {
    grid-template-columns: 1fr;
  }
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.section-cta p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-mid);
  font-size: 1rem;
  font-weight: 600;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 32px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 0;
  text-decoration: none;
  background: transparent;
  border: none;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-link:hover {
  text-decoration: underline;
}

.service-link-desc {
  display: none;
}


.packages {
  background: var(--white);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 285px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
}

.package-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.18;
}

.package-card p {
  margin: 0;
  color: var(--ink-mid);
}

.package-meta {
  color: var(--coral-dark) !important;
  font-size: 0.9rem;
  font-weight: 700;
}

.package-card strong {
  margin-top: auto;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.package-card--featured {
  position: relative;
  border-color: var(--forest-2);
  background: oklch(27% 0.032 55 / 0.04);
}

.package-discount {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--coral-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.suitability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.suitability-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
}

.suitability-panel h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.2;
}

.suitability-panel ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 22px;
  color: var(--ink-mid);
}

.suitability-panel li::marker {
  color: var(--coral);
}

.crisis-box {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid oklch(74% 0.06 40);
  border-radius: 8px;
  background: oklch(96.5% 0.018 68);
}

.crisis-box h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
}

.crisis-box p {
  max-width: 930px;
  margin: 14px 0 0;
  color: var(--muted);
}

.working-method {
  background: var(--sage-50);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.method-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.method-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.method-list h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.2;
}

.method-list p {
  margin: 14px 0 0;
  color: var(--ink-mid);
}

.method-note {
  max-width: 760px;
  margin-top: 30px;
  color: var(--ink-mid);
  font-size: 1.08rem;
  font-weight: 600;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  max-width: none;
  background: linear-gradient(90deg, var(--bg) 0 50%, var(--sage-50) 50% 100%);
}

.section-split > * {
  max-width: none;
}

.therapist-image {
  justify-self: end;
  width: min(460px, 100%);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.therapist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portrait-placeholder {
  background:
    linear-gradient(145deg, oklch(19% 0.025 55 / 0.12), oklch(54% 0.16 36 / 0.08)),
    oklch(93% 0.016 70);
}

.portrait-placeholder .image-placeholder {
  min-height: 100%;
}

.therapist-copy {
  max-width: 560px;
}

.therapist-copy .lead {
  margin-top: 24px;
  color: var(--ink-mid);
  font-size: 1.15rem;
}

.therapist-copy p:not(.lead) {
  color: var(--muted);
}

.therapist-copy h3 {
  margin: 26px 0 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
}

.therapist-copy ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
  padding-left: 22px;
  color: var(--muted);
}

.therapist-copy li::marker {
  color: var(--coral);
}

.therapist-copy strong {
  color: var(--ink-mid);
}

.therapist-copy .therapist-cta {
  color: var(--ink-mid);
  font-weight: 700;
}

.booking {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.booking > * {
  max-width: none;
}

.booking-intro,
.vello-embed {
  grid-column: 1 / -1;
  width: 100%;
}

.booking-intro {
  max-width: 760px;
}

.booking-intro p {
  color: var(--muted);
}

.booking-form-wrap h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
}

.booking-lead {
  margin-top: 18px;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
}

.vello-embed {
  display: block;
  margin: -18px 0 0;
  color: var(--ink-mid);
}

.vello-widget {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}

.vello-scroll-guard {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
}

.vello-widget iframe,
.vello-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
}

.vello-fallback {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.vello-fallback a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-contact-intro h2 {
  font-family: var(--serif);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.08;
  margin: 0 0 16px;
}

.booking-contact-intro p {
  color: var(--ink-mid);
  margin: 0 0 24px;
}

.booking-contact-direct {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-mid);
}

.booking-contact-direct a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--forest);
  text-decoration: none;
  font-weight: 500;
}

.booking-contact-direct a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.booking-contact-direct a:hover {
  text-decoration: underline;
}

.booking-form-wrap {
  max-width: 720px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-mid);
  font-size: 0.9rem;
  font-weight: 600;
}

.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.booking-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 4px oklch(27% 0.032 55 / 0.1);
}

.booking-form input:user-invalid,
.booking-form select:user-invalid,
.booking-form textarea:user-invalid {
  border-color: var(--coral);
}

.booking-form input:user-invalid:focus,
.booking-form select:user-invalid:focus,
.booking-form textarea:user-invalid:focus {
  box-shadow: 0 0 0 4px oklch(54% 0.16 36 / 0.12);
}

.booking-form label:has(input[required]) > span::after,
.booking-form label:has(textarea[required]) > span::after {
  content: " *";
  color: var(--coral);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-top: 42px;
}

.faq-list h3 {
  margin: 26px 0 2px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
}

.faq-list h3:first-child {
  margin-top: 0;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 18px 22px;
  color: var(--forest);
  font-weight: 700;
  transition: color 150ms ease;
}

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

.faq-list summary:hover {
  color: var(--coral-dark);
}

.faq-list summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 250ms var(--ease-out-quart);
}

.faq-list details[open] > summary::after {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-mid);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.newsletter h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2.75rem;
  line-height: 1.08;
}

.newsletter p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.newsletter-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-mid);
  font-size: 0.9rem;
  font-weight: 600;
}

.newsletter-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 4px oklch(27% 0.032 55 / 0.1);
}

.newsletter-form p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.95rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 42px;
  padding: 44px var(--page-x) 24px;
  color: oklch(92% 0.008 72);
  background: var(--forest);
}

.site-footer > * {
  max-width: var(--max);
}

.site-footer strong,
.site-footer a {
  display: block;
}

.footer-brand {
  color: var(--white);
  font-size: 1.45rem;
}

.site-footer p,
.site-footer address,
.site-footer a,
.site-footer span {
  font-style: normal;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: oklch(85% 0.08 38);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid oklch(100% 0 0 / 0.18);
}

.footer-bottom a {
  display: inline-block;
}

.footer-policy-pending {
  opacity: 0.45;
  font-size: 0.9rem;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 6px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: var(--forest);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    justify-self: stretch;
    display: grid;
    gap: 0;
    width: 100%;
    padding: 16px var(--page-x) 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px oklch(19% 0.025 55 / 0.08);
    animation: fade-down 200ms var(--ease-out-quart) both;
  }

  @keyframes fade-down {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .site-header.is-open .site-nav a {
    padding: 13px 0;
  }

  .site-header.is-open .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 8px;
    padding: 0 24px;
    border: 1px solid var(--coral);
    border-radius: 8px;
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
  }

  .site-header.is-open .nav-cta:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--white);
  }

  .site-footer {
    padding-bottom: 80px;
  }

  .section-split,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(600px, calc(100vh - 78px));
  }

  .hero-copy {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .service-grid,
  .package-grid,
  .suitability-grid,
  .method-list,
  .newsletter-inner {
    grid-template-columns: 1fr;
  }


  .section-split {
    background: var(--sage-50);
  }

  .therapist-image {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .brand {
    font-size: 1.35rem;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .section h2,
  .booking h2,
  .newsletter h2 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .form-actions,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

}

/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px var(--page-x);
  background: var(--forest);
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.5;
  flex-wrap: wrap;
}

#cookie-banner p {
  margin: 0;
  max-width: 680px;
  color: oklch(88% 0.01 70);
}

#cookie-banner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-accept,
#cookie-reject {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  transition: opacity 150ms ease;
}

#cookie-accept {
  background: var(--coral);
  color: var(--white);
}

#cookie-reject {
  background: transparent;
  color: oklch(88% 0.01 70);
  border: 1px solid oklch(60% 0.02 70);
}

#cookie-accept:hover,
#cookie-reject:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
