
:root {
  --canvas: #fffdf9;
  --paper: #f8f3eb;
  --sand: #eee1d2;
  --sand-deep: #e3d1bd;
  --blue: #3f6795;
  --blue-dark: #2d4d73;
  --blue-soft: #dce8f2;
  --blue-pale: #edf4f8;
  --peach: #d99670;
  --peach-soft: #f5ded1;
  --ink: #27354a;
  --muted: #687386;
  --line: #e4ddd4;
  --white: #ffffff;
  --serif: "Iowan Old Style", Baskerville, "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow-soft: 0 24px 70px rgba(54, 68, 88, 0.12);
  --shadow-small: 0 12px 36px rgba(54, 68, 88, 0.1);
  --max: 1320px;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: inherit;
}

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

button {
  color: inherit;
}

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

::selection {
  background: var(--peach-soft);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  background: var(--white);
  box-shadow: var(--shadow-small);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.info-bar {
  min-height: 36px;
  padding: 0.55rem max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-bar p {
  margin: 0;
}

.info-bar div {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.info-bar a {
  color: var(--ink);
}

.info-bar a:hover {
  color: var(--blue);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 92px;
  padding: 0 max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(228, 221, 212, 0.9);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 54px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(63, 103, 149, 0.16);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(220, 232, 242, 0.72);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.3rem, 2.4vw, 2.5rem);
}

.site-header nav a {
  position: relative;
  padding: 0.55rem 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--peach);
  transition: right 180ms ease;
}

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

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  right: 0;
}

.header-booking,
.button {
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-booking,
.button-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(63, 103, 149, 0.2);
}

.header-booking:hover,
.button-primary:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 12px 30px rgba(45, 77, 115, 0.24);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  padding: clamp(3.5rem, 6vw, 6.5rem) var(--pad) clamp(5rem, 8vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 16%, rgba(217, 150, 112, 0.2), transparent 25rem),
    radial-gradient(circle at 86% 80%, rgba(63, 103, 149, 0.12), transparent 28rem),
    linear-gradient(135deg, #fffdf9 0%, #fbf6ef 58%, #f6efe6 100%);
}

.hero-inner {
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(3.5rem, 7vw, 7.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow > span {
  width: 2.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--peach);
}

.hero h1 {
  max-width: 48rem;
  margin: 1.5rem 0 1.7rem;
  font-family: var(--serif);
  font-size: clamp(3.9rem, 6.4vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.97;
}

.hero h1 em {
  color: var(--blue);
  font-weight: 400;
  font-style: italic;
}

.hero-lead {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.button-quiet:hover {
  border-color: var(--peach);
  background: var(--white);
  transform: translateY(-2px);
}

.hero-reassurance {
  margin-top: 2rem;
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-reassurance i {
  width: 1.35rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-soft);
  color: #a65e3b;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  right: -2.5rem;
  width: 15rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--peach-soft);
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -1rem;
  width: 5.5rem;
  height: 11rem;
  border: 1px solid rgba(63, 103, 149, 0.24);
  border-radius: 0 5rem 5rem 0;
}

.hero-photo-main,
.hero-photo-small {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
}

.hero-photo-main {
  top: 0;
  right: 1rem;
  width: 78%;
  height: 92%;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 14rem 14rem 2rem 2rem;
}

.hero-photo-main img,
.hero-photo-small img {
  height: 100%;
  object-fit: cover;
}

.hero-photo-main img {
  object-position: center 58%;
}

.hero-photo-small {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 42%;
  height: 39%;
  border: 9px solid var(--canvas);
  border-radius: 1.8rem;
}

.hero-photo-small img {
  object-position: center;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 2.2rem;
  width: min(48%, 300px);
  padding: 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.3rem;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.hero-note-icon {
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-soft);
  color: #ad6543;
  font-size: 1rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-note strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.benefit-bar {
  padding: 0 max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--blue-soft);
}

.benefit-bar p {
  min-height: 88px;
  margin: 0;
  padding: 1.2rem clamp(0.8rem, 2vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-right: 1px solid rgba(63, 103, 149, 0.16);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
}

.benefit-bar p:first-child {
  border-left: 1px solid rgba(63, 103, 149, 0.16);
}

.benefit-bar p span {
  color: var(--peach);
  font-weight: 800;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(6.5rem, 10vw, 10rem) var(--pad);
}

.welcome {
  display: grid;
  grid-template-columns: 0.58fr 1.15fr 0.78fr;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.welcome-kicker {
  padding-top: 0.75rem;
}

.soft-line {
  width: 4rem;
  height: 2px;
  margin-top: 1.2rem;
  display: block;
  border-radius: 2px;
  background: var(--peach);
}

.welcome h2,
.section-intro h2,
.journey h2,
.practice-heading h2,
.team-intro h2,
.questions h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.85rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.welcome-copy p {
  margin: 0 0 1.7rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.text-link {
  width: fit-content;
  padding-bottom: 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid var(--peach);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--peach);
}

.services {
  max-width: none;
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  background:
    radial-gradient(circle at 95% 5%, rgba(217, 150, 112, 0.12), transparent 22rem),
    var(--blue-pale);
}

.section-intro {
  max-width: calc(var(--max) - (2 * var(--pad)));
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.section-intro .section-label,
.journey-content .section-label,
.practice-heading .section-label,
.questions-intro .section-label,
.contact-main .section-label {
  margin-bottom: 1rem;
}

.section-intro > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-grid {
  max-width: calc(var(--max) - (2 * var(--pad)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 330px;
  padding: clamp(1.8rem, 3vw, 2.7rem);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(63, 103, 149, 0.13);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(63, 103, 149, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(217, 150, 112, 0.55);
  box-shadow: 0 18px 42px rgba(63, 103, 149, 0.11);
  transform: translateY(-5px);
}

.service-number {
  width: 2.6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-soft);
  color: #a75f3d;
  font-family: var(--serif);
  font-size: 0.78rem;
}

.service-card h3 {
  margin: 2rem 0 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card > a {
  width: fit-content;
  margin-top: auto;
  padding-top: 1.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
}

.service-card > a:hover {
  color: var(--peach);
}

.service-help {
  max-width: calc(var(--max) - (2 * var(--pad)));
  margin: 1rem auto 0;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(63, 103, 149, 0.13);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
}

.service-help > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-help > div > span {
  flex: 0 0 auto;
  width: 2.3rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.service-help p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.service-help p strong {
  color: var(--ink);
}

.service-help > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.journey {
  width: min(calc(100% - (2 * var(--pad))), var(--max));
  max-width: var(--max);
  margin-block: clamp(5rem, 9vw, 9rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: clamp(2.5rem, 6vw, 6rem);
  border-radius: 2.2rem;
  background: var(--paper);
}

.journey-photo {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 1.7rem;
}

.journey-photo > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journey-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(39, 53, 74, 0.34));
  pointer-events: none;
}

.journey-photo-label {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1.1rem;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(12px);
}

.journey-photo-label span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-photo-label strong {
  margin-top: 0.2rem;
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.journey-content {
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1rem, 3vw, 3.5rem) clamp(2rem, 4vw, 4.5rem) 0;
  align-self: center;
}

.journey h2 {
  max-width: 40rem;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

.journey-steps {
  margin: 2.8rem 0 2.5rem;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  padding: 1.35rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1.1rem;
  border-top: 1px solid var(--line);
}

.journey-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-steps li > span {
  width: 2.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.journey-steps strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 650;
}

.journey-steps p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.practice {
  padding-top: clamp(6rem, 8vw, 8rem);
}

.practice-heading {
  max-width: 870px;
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}

.practice-heading h2 {
  margin-inline: auto;
}

.practice-heading > p:last-child {
  max-width: 45rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.practice-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.practice-gallery figure {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--sand);
  box-shadow: var(--shadow-small);
}

.practice-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.practice-gallery figure:hover img {
  transform: scale(1.025);
}

.practice-gallery figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(10px);
}

.team {
  max-width: none;
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 150, 112, 0.14), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(63, 103, 149, 0.12), transparent 26rem),
    var(--paper);
}

.team-intro {
  max-width: 850px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.team-intro .section-label {
  margin-bottom: 1rem;
}

.team-intro > p:last-child {
  max-width: 44rem;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.team-grid {
  max-width: calc(var(--max) - (2 * var(--pad)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.therapist-card {
  overflow: hidden;
  border: 1px solid rgba(63, 103, 149, 0.14);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(54, 68, 88, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.therapist-card:hover {
  border-color: rgba(217, 150, 112, 0.5);
  box-shadow: 0 24px 60px rgba(54, 68, 88, 0.13);
  transform: translateY(-5px);
}

.therapist-portrait {
  position: relative;
  height: clamp(390px, 40vw, 520px);
  display: grid;
  place-items: end center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 86%, rgba(63, 103, 149, 0.14), transparent 52%),
    linear-gradient(145deg, var(--blue-pale), #f8f3eb);
}

.therapist-lea .therapist-portrait {
  background:
    radial-gradient(ellipse at 50% 86%, rgba(217, 150, 112, 0.16), transparent 52%),
    linear-gradient(145deg, #fbefe8, var(--blue-pale));
}

.therapist-portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 9%;
  width: min(72%, 360px);
  aspect-ratio: 0.78;
  border: 1px solid rgba(63, 103, 149, 0.16);
  border-radius: 12rem 12rem 1.8rem 1.8rem;
  background: rgba(255, 255, 255, 0.42);
}

.therapist-portrait img {
  width: 88%;
  height: 96%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 18px rgba(39, 53, 74, 0.12));
  transition: transform 400ms ease;
}

.therapist-card:hover .therapist-portrait img {
  transform: translateY(-4px) scale(1.012);
}

.therapist-portrait > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 99px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.therapist-content {
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.therapist-role {
  margin: 0;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.therapist-content h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1;
}

.therapist-content > p:last-child {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.team-choice {
  max-width: calc(var(--max) - (2 * var(--pad)));
  margin: clamp(1.2rem, 2.5vw, 2rem) auto 0;
  padding: clamp(1.6rem, 3.5vw, 2.7rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem 4rem;
  border: 1px solid rgba(63, 103, 149, 0.14);
  border-radius: 1.5rem;
  background: rgba(255, 253, 249, 0.78);
}

.team-choice h3 {
  margin: 0.45rem 0 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.team-choice > div:first-child > p:last-child {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.team-choice-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.questions {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.questions-intro {
  position: sticky;
  top: 9rem;
}

.questions h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.questions-intro > p:not(.section-label) {
  max-width: 28rem;
  margin: 1.4rem 0 1.5rem;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 92px;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  width: 2.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 48rem;
  margin: -0.35rem 4rem 1.8rem 0;
  color: var(--muted);
  line-height: 1.75;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.review-score {
  position: relative;
  min-height: 560px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 94% 8%, rgba(245, 222, 209, 0.2), transparent 13rem),
    linear-gradient(145deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-score::after {
  content: "“";
  position: absolute;
  right: 1.4rem;
  bottom: -4.5rem;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--serif);
  font-size: 20rem;
  line-height: 1;
}

.review-score .section-label {
  color: var(--peach-soft);
}

.review-number {
  position: relative;
  z-index: 1;
  margin: 2rem 0 0.15rem;
  font-family: var(--serif);
  font-size: clamp(6rem, 11vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.review-stars {
  position: relative;
  z-index: 1;
  margin-top: 1.3rem;
  color: var(--peach-soft);
  font-size: 1.22rem;
  letter-spacing: 0.22em;
}

.review-score > strong {
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.review-score > small {
  position: relative;
  z-index: 1;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
}

.review-score .text-link {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  border-color: var(--peach-soft);
  color: var(--white);
}

.review-score .text-link:hover {
  color: var(--peach-soft);
}

.review-content {
  padding: clamp(1rem, 3vw, 3rem) clamp(0rem, 2vw, 1.5rem);
  align-self: center;
}

.review-content h2 {
  max-width: 46rem;
  margin: 0.9rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.review-intro {
  max-width: 45rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.review-quotes {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.review-quotes article {
  min-height: 238px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(31, 78, 121, 0.12);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 222, 209, 0.42), transparent 7rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 1rem 2.8rem rgba(24, 54, 82, 0.07);
}

.review-quote-stars {
  color: var(--peach);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.review-quotes blockquote {
  margin: 1.35rem 0 2rem;
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.65vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.review-author {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid rgba(31, 78, 121, 0.1);
}

.review-author strong {
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 0.94rem;
}

.review-author span {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.review-links {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.contact {
  position: relative;
  width: min(calc(100% - (2 * var(--pad))), var(--max));
  max-width: var(--max);
  margin-bottom: clamp(5rem, 8vw, 8rem);
  padding: clamp(3rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  overflow: hidden;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 222, 209, 0.2), transparent 20rem),
    radial-gradient(circle at 4% 96%, rgba(220, 232, 242, 0.18), transparent 22rem),
    var(--blue);
  color: var(--white);
}

.contact-main {
  position: relative;
  z-index: 1;
}

.contact-main .section-label {
  color: var(--peach-soft);
}

.contact h2 {
  max-width: 42rem;
  color: var(--white);
}

.contact-main > p:not(.section-label) {
  max-width: 38rem;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 12px 28px rgba(22, 39, 60, 0.16);
}

.button-light:hover {
  border-color: var(--peach-soft);
  background: var(--peach-soft);
  transform: translateY(-2px);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.contact-info {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.4rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.contact-info > * {
  min-height: 130px;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-style: normal;
}

.contact-info > *:last-child {
  border-bottom: 0;
}

.contact-info span {
  color: var(--peach-soft);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-info a:hover strong {
  color: var(--peach-soft);
}

.location {
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.location-copy {
  align-self: center;
}

.location-copy h2 {
  max-width: 36rem;
  margin: 1rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.6vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 1.02;
}

.location-copy > p:not(.section-label) {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.location-copy address {
  margin: 1.65rem 0 1.9rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--peach);
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.location-copy address span {
  display: block;
  color: var(--ink);
  font-weight: 750;
}

.map-card {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 490px;
  display: block;
  border: 0;
}

.map-consent {
  position: absolute;
  inset: 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: auto minmax(0, 30rem);
  place-content: center;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(31deg, transparent 0 39%, rgba(63, 103, 149, 0.08) 39% 41%, transparent 41% 100%),
    linear-gradient(142deg, transparent 0 54%, rgba(217, 150, 112, 0.1) 54% 56%, transparent 56% 100%),
    radial-gradient(circle at 78% 18%, rgba(220, 232, 242, 0.85), transparent 15rem),
    var(--paper);
}

.map-pin {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 10%;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(45, 77, 115, 0.24);
  transform: rotate(-45deg);
}

.map-pin i {
  width: 22px;
  aspect-ratio: 1;
  border: 6px solid var(--white);
  border-radius: 50%;
  transform: rotate(45deg);
}

.map-consent h3 {
  margin: 0.55rem 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.map-consent div > p:not(.section-label) {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.map-consent div > p a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--peach);
  text-underline-offset: 0.18em;
}

.map-load {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-bottom: 1px solid var(--peach);
  background: transparent;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 2;
  cursor: pointer;
}

.map-load:hover {
  color: var(--peach);
}

.map-disable {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(39, 53, 74, 0.18);
  border-radius: 0.75rem;
  background: rgba(255, 253, 249, 0.96);
  color: var(--blue-dark);
  box-shadow: var(--shadow-small);
  font-size: 0.67rem;
  font-weight: 750;
  cursor: pointer;
}

.map-disable:hover {
  border-color: var(--peach);
}

.extras {
  max-width: var(--max);
  margin: 0 auto clamp(5rem, 8vw, 8rem);
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.extras > :is(a, button) {
  min-height: 150px;
  padding: 1.7rem 1.8rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 0.35rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.extras > :is(a, button):hover {
  border-color: var(--peach);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.extras span {
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.extras strong {
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
}

.extras i {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--peach);
  font-size: 1.3rem;
  font-style: normal;
}

footer {
  min-height: 150px;
  padding: 2.5rem max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-brand .brand-logo {
  box-shadow: 0 0 0 5px rgba(63, 103, 149, 0.1);
}

.footer-brand .brand-copy small {
  text-transform: none;
}

footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
}

footer nav a:hover {
  color: var(--blue);
}

.mobile-booking {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.recruiting-float {
  position: fixed;
  z-index: 180;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(320px, calc(100vw - 2.5rem));
  min-height: 76px;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(217, 150, 112, 0.52);
  border-radius: 1.15rem;
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(39, 53, 74, 0.18);
  backdrop-filter: blur(14px);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.recruiting-float:hover {
  border-color: var(--peach);
  box-shadow: 0 20px 50px rgba(39, 53, 74, 0.22);
  transform: translateY(-3px);
}

.recruiting-float > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.recruiting-float small {
  color: #a65e3b;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.recruiting-float strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
}

.recruiting-float i {
  color: var(--peach);
  font-size: 1.15rem;
  font-style: normal;
}

.recruiting-pulse {
  position: relative;
  width: 0.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 5px var(--peach-soft);
}

.recruiting-pulse::after {
  content: "";
  position: absolute;
  inset: -0.35rem;
  border: 1px solid rgba(217, 150, 112, 0.5);
  border-radius: 50%;
  animation: recruiting-pulse 2.4s ease-out infinite;
}

.job-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  padding: 1.25rem;
  display: grid;
  place-items: center;
  background: rgba(39, 53, 74, 0.48);
  backdrop-filter: blur(8px);
  animation: modal-fade 180ms ease both;
}

.job-dialog {
  position: relative;
  width: min(100%, 590px);
  max-height: calc(100vh - 2.5rem);
  padding: clamp(2.2rem, 5vw, 4rem);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 222, 209, 0.8), transparent 14rem),
    var(--canvas);
  box-shadow: 0 34px 90px rgba(24, 38, 58, 0.34);
  animation: dialog-rise 220ms ease both;
}

.job-close {
  position: absolute;
  z-index: 2;
  top: 1.1rem;
  right: 1.1rem;
  width: 2.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
}

.job-close:hover {
  border-color: var(--peach);
  color: var(--ink);
}

.job-symbol {
  width: 3.3rem;
  aspect-ratio: 1;
  margin-bottom: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.job-dialog h2 {
  max-width: 28rem;
  margin: 0.8rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.job-lead {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.job-dialog ul {
  margin: 1.7rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.job-dialog li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
}

.job-dialog li::before {
  content: "✓";
  width: 1.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-soft);
  color: #a65e3b;
  font-size: 0.65rem;
  font-weight: 850;
}

.job-actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.3rem;
  flex-wrap: wrap;
}

.job-phone {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--peach);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 750;
}

.job-back {
  margin: 0 0 2rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  cursor: pointer;
}

.job-back:hover {
  color: var(--blue-dark);
}

.application-content {
  animation: application-in 180ms ease both;
}

.application-email {
  margin: 1.8rem 0 2rem;
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.25rem;
  border: 1px solid rgba(63, 103, 149, 0.18);
  border-radius: 1.15rem;
  background: var(--blue-pale);
}

.application-email > span {
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.application-email > a {
  width: fit-content;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.application-email > button {
  width: fit-content;
  margin-top: 0.65rem;
  padding: 0 0 0.2rem;
  border: 0;
  border-bottom: 1px solid var(--peach);
  background: transparent;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

.application-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.room-dialog {
  width: min(100%, 640px);
}

.room-symbol {
  background: var(--peach-soft);
  color: #965434;
}

.room-contact {
  background: rgba(245, 222, 209, 0.4);
  border-color: rgba(217, 150, 112, 0.28);
}

.room-contact > span {
  color: #965434;
}

/* Rechtliche Seiten */

.legal-page {
  min-height: 100vh;
}

.legal-site-header {
  position: relative;
  z-index: 20;
  min-height: 92px;
  padding: 0 max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.96);
}

.legal-site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.8rem);
}

.legal-site-header nav a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.legal-site-header nav a:hover {
  color: var(--blue);
}

.legal-home-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 750;
}

.legal-home-link span {
  color: var(--peach);
}

.legal-hero {
  position: relative;
  min-height: 430px;
  padding: clamp(5rem, 9vw, 8rem) max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 222, 209, 0.64), transparent 15rem),
    linear-gradient(138deg, var(--blue-pale), var(--canvas) 72%);
}

.legal-hero::after {
  content: "";
  position: absolute;
  width: 25rem;
  height: 25rem;
  right: -11rem;
  bottom: -15rem;
  border: 1px solid rgba(63, 103, 149, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(63, 103, 149, 0.035),
    0 0 0 8rem rgba(63, 103, 149, 0.025);
}

.legal-hero > div,
.legal-hero aside {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin: 1rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.legal-hero > div > p:last-child {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.legal-hero aside {
  min-width: 210px;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(63, 103, 149, 0.14);
  border-radius: 1rem;
  background: rgba(255, 253, 249, 0.72);
  backdrop-filter: blur(8px);
}

.legal-hero aside span,
.legal-help > span {
  display: block;
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero aside strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.legal-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(210px, 0.52fr) minmax(0, 1.48fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 9rem);
}

.legal-toc {
  position: sticky;
  top: 2rem;
}

.legal-toc > p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-toc nav a {
  min-height: 48px;
  padding: 0.8rem 0;
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
}

.legal-toc nav a span {
  color: var(--peach);
  font-size: 0.58rem;
  font-weight: 800;
}

.legal-toc nav a:hover {
  color: var(--blue-dark);
  padding-left: 0.25rem;
}

.legal-help {
  margin-top: 2rem;
  padding: 1.25rem;
  display: grid;
  gap: 0.3rem;
  border-radius: 1rem;
  background: var(--blue-pale);
}

.legal-help > span {
  margin-bottom: 0.35rem;
}

.legal-help a {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-article {
  min-width: 0;
}

.legal-article > section {
  position: relative;
  padding: 0 0 clamp(4rem, 7vw, 6rem);
  scroll-margin-top: 2rem;
}

.legal-article > section + section {
  padding-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.legal-section-number {
  display: inline-flex;
  width: 2.4rem;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--peach-soft);
  color: #965434;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.legal-article h2 {
  max-width: 54rem;
  margin: 1rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 1;
}

.legal-article h3 {
  margin: 2.3rem 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.legal-article p,
.legal-article address,
.legal-article li {
  color: var(--muted);
  line-height: 1.85;
}

.legal-article p,
.legal-article address {
  max-width: 52rem;
  margin: 0 0 1.2rem;
}

.legal-article address {
  font-style: normal;
}

.legal-article a {
  color: var(--blue-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: var(--peach);
  text-underline-offset: 0.2em;
}

.legal-article ul {
  max-width: 52rem;
  margin: 1rem 0 1.4rem;
  padding-left: 1.2rem;
}

.legal-address {
  padding: 1.5rem;
  display: grid;
  border: 1px solid rgba(63, 103, 149, 0.14);
  border-radius: 1.15rem;
  background: var(--blue-pale);
}

.legal-address strong {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.legal-details {
  max-width: 52rem;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.legal-details > div {
  padding: 1.4rem 1rem 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-details dt {
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 0.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  overflow-wrap: anywhere;
}

.legal-muted {
  font-size: 0.75rem;
}

.legal-notice {
  max-width: 52rem;
  margin: 1.8rem 0;
  padding: 1.35rem 1.5rem;
  border-left: 3px solid var(--peach);
  border-radius: 0 1rem 1rem 0;
  background: var(--paper);
}

.legal-notice > strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.legal-notice > p {
  margin: 0;
}

.legal-contact {
  width: min(calc(100% - (2 * var(--pad))), var(--max));
  margin: 0 auto clamp(5rem, 8vw, 8rem);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  border-radius: 1.8rem;
  background: var(--blue);
  color: var(--white);
}

.legal-contact .section-label {
  color: var(--peach-soft);
}

.legal-contact h2 {
  max-width: 42rem;
  margin: 0.55rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.legal-contact > div:last-child {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.legal-footer {
  background: var(--paper);
}

@keyframes recruiting-pulse {
  from {
    opacity: 0.7;
    transform: scale(0.8);
  }
  to {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dialog-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes application-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    justify-self: end;
    padding: 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
  }

  .menu-button i {
    font-size: 1.1rem;
    font-style: normal;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 1.8rem var(--pad);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
    box-shadow: var(--shadow-small);
  }

  .site-header nav.is-open {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 6vw, 5.3rem);
  }

  .hero-visual {
    min-height: 610px;
  }

  .welcome {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .welcome-copy {
    grid-column: 2;
  }

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

  .journey {
    grid-template-columns: minmax(310px, 0.86fr) minmax(0, 1.14fr);
    gap: 2.5rem;
  }

  .journey-photo {
    min-height: 640px;
  }
}

@media (max-width: 780px) {
  :root {
    --pad: 1.15rem;
  }

  html {
    scroll-padding-top: 5.5rem;
  }

  body {
    padding-bottom: 74px;
  }

  .info-bar {
    justify-content: flex-end;
  }

  .info-bar p,
  .info-bar span {
    display: none;
  }

  .site-header {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .header-booking {
    display: none;
  }

  .brand-logo {
    width: 44px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero h1 {
    max-width: 40rem;
    font-size: clamp(3.5rem, 13vw, 5.4rem);
  }

  .hero-visual {
    min-height: 570px;
  }

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

  .benefit-bar p,
  .benefit-bar p:first-child {
    min-height: 76px;
    border: 0;
    border-right: 1px solid rgba(63, 103, 149, 0.16);
  }

  .benefit-bar p:last-child {
    border-right: 0;
  }

  .section {
    padding-block: 6rem;
  }

  .welcome,
  .section-intro,
  .questions,
  .contact {
    grid-template-columns: 1fr;
  }

  .welcome {
    gap: 2rem;
  }

  .welcome-copy {
    grid-column: 1;
  }

  .section-intro {
    align-items: start;
    gap: 1.6rem;
  }

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

  .service-card {
    min-height: 300px;
  }

  .service-help {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey {
    width: calc(100% - (2 * var(--pad)));
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .journey-photo {
    min-height: 480px;
  }

  .journey-content {
    padding: 2.5rem 1rem 2rem;
  }

  .practice-gallery {
    margin-right: calc(-1 * var(--pad));
    padding-right: var(--pad);
    grid-template-columns: repeat(3, minmax(250px, 76vw));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .practice-gallery figure {
    scroll-snap-align: start;
  }

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

  .therapist-portrait {
    height: min(560px, 100vw);
  }

  .team-choice {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .questions-intro {
    position: static;
  }

  .faq-list summary {
    min-height: 82px;
  }

  .contact {
    width: calc(100% - (2 * var(--pad)));
    gap: 2.5rem;
    border-radius: 1.5rem;
  }

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

  .map-card,
  .map-card iframe {
    min-height: 440px;
  }

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

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.6rem;
  }

  footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .mobile-booking {
    position: fixed;
    z-index: 200;
    right: 0.75rem;
    bottom: 0.7rem;
    left: 0.75rem;
    min-height: 56px;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border-radius: 0.9rem;
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(45, 77, 115, 0.32);
    font-size: 0.76rem;
    font-weight: 800;
  }

  .recruiting-float {
    right: 0.75rem;
    bottom: 5.2rem;
    width: min(285px, calc(100vw - 1.5rem));
    min-height: 58px;
    padding: 0.7rem 0.85rem;
    border-radius: 0.95rem;
  }

  .recruiting-float small {
    display: none;
  }

  .recruiting-float strong {
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 750;
  }

  .job-modal {
    padding: 0;
    place-items: end center;
  }

  .job-dialog {
    width: 100%;
    max-height: calc(100vh - 1rem);
    padding: 2.2rem 1.3rem 2.5rem;
    border-radius: 1.6rem 1.6rem 0 0;
  }

  .job-symbol {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 520px) {
  .brand-copy small {
    display: none;
  }

  .recruiting-float {
    width: min(250px, calc(100vw - 1.5rem));
  }

  .recruiting-float i {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-reassurance {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo-main {
    right: 0;
    width: 84%;
    border-width: 7px;
    border-radius: 10rem 10rem 1.6rem 1.6rem;
  }

  .hero-photo-small {
    width: 46%;
    height: 34%;
    border-width: 7px;
    border-radius: 1.3rem;
  }

  .hero-note {
    right: 0;
    bottom: 1.3rem;
    width: 70%;
    padding: 0.9rem;
  }

  .hero-note-icon {
    display: none;
  }

  .hero-note {
    grid-template-columns: 1fr;
  }

  .benefit-bar {
    grid-template-columns: 1fr;
  }

  .benefit-bar p,
  .benefit-bar p:first-child {
    min-height: 64px;
    padding-inline: 0.45rem;
    border-right: 0;
    border-bottom: 1px solid rgba(63, 103, 149, 0.16);
    font-size: 0.68rem;
  }

  .benefit-bar p:last-child {
    border-bottom: 0;
  }

  .welcome h2,
  .section-intro h2,
  .journey h2,
  .practice-heading h2,
  .team-intro h2,
  .questions h2,
  .contact h2 {
    font-size: clamp(2.6rem, 12vw, 3.65rem);
  }

  .service-card {
    min-height: 280px;
  }

  .therapist-card {
    border-radius: 1.4rem;
  }

  .therapist-portrait {
    height: 410px;
  }

  .team-choice-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .team-choice-actions .button,
  .team-choice-actions .text-link {
    width: 100%;
  }

  .journey-photo {
    min-height: 420px;
  }

  .journey-content {
    padding-inline: 0.4rem;
  }

  .contact {
    padding: 2.2rem 1.3rem;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .location-copy .button {
    width: 100%;
  }

  .map-card,
  .map-card iframe {
    min-height: 400px;
    border-radius: 1.4rem;
  }

  .map-consent {
    padding: 2rem 1.4rem;
    grid-template-columns: 1fr;
    place-content: center;
    text-align: center;
  }

  .map-pin {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .map-pin i {
    width: 18px;
    border-width: 5px;
  }

  .faq-list summary {
    font-size: 1.05rem;
  }

  .faq-list details > p {
    margin-right: 0;
  }
}

@media (max-width: 1100px) {
  .reviews {
    grid-template-columns: 1fr;
  }

  .review-score {
    min-height: 430px;
  }

  .review-number {
    font-size: clamp(6rem, 18vw, 9rem);
  }

  .legal-site-header {
    grid-template-columns: 1fr auto;
  }

  .legal-site-header nav {
    display: none;
  }
}

@media (max-width: 780px) {
  body:has(.legal-page) {
    padding-bottom: 0;
  }

  .review-score {
    min-height: 410px;
    border-radius: 1.5rem;
  }

  .review-content {
    padding-top: 2rem;
  }

  .review-quotes {
    grid-template-columns: 1fr;
  }

  .review-quotes article {
    min-height: auto;
    padding: 1.4rem;
  }

  .map-disable {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .legal-site-header {
    min-height: 78px;
  }

  .legal-home-link {
    font-size: 0;
  }

  .legal-home-link span {
    width: 2.6rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1rem;
  }

  .legal-hero {
    min-height: 390px;
    padding-block: 4.5rem;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

  .legal-hero aside {
    width: fit-content;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
  }

  .legal-contact {
    grid-template-columns: 1fr;
    border-radius: 1.5rem;
  }

  .legal-contact > div:last-child {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .review-number {
    font-size: 6.2rem;
  }

  .review-links {
    align-items: stretch;
    flex-direction: column;
  }

  .review-links .button {
    justify-content: center;
  }

  .legal-site-header .brand-copy strong {
    font-size: 0.9rem;
  }

  .legal-hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-details {
    grid-template-columns: 1fr;
  }

  .legal-article h2 {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
