:root {
  --bg: #f6f1ea;
  --surface: #ece4d8;
  --surface-2: #e0d6c5;
  --border: #c9bda9;
  --muted: #7a6a58;
  --text: #2b241d;
  --primary: #3f5b46;
  --primary-soft: #5a7561;
  --primary-deep: #2d4133;
  --accent: #c98a5b;
  --accent-soft: #d9a47c;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 1px 2px rgba(43, 36, 29, 0.04), 0 2px 8px rgba(43, 36, 29, 0.04);
  --shadow-md: 0 4px 12px rgba(43, 36, 29, 0.06), 0 12px 32px rgba(43, 36, 29, 0.06);
  --shadow-lg: 0 12px 32px rgba(43, 36, 29, 0.08), 0 32px 64px rgba(43, 36, 29, 0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --section-py: clamp(40px, 5vw, 64px);
  --container-px: clamp(20px, 4vw, 56px);
  --ink: var(--text);
  --teal: var(--primary);
  --teal-dark: var(--primary-deep);
  --teal-soft: var(--surface-2);
  --sand: var(--surface);
  --paper: var(--bg);
  --warm: var(--accent);
  --warm-soft: var(--accent-soft);
  --line: var(--border);
  --white: #fff;
  --shadow: var(--shadow-md);
  --radius: var(--radius-sm);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
}

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

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--teal-dark);
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 18px;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 242, 232, 0.94);
  border-bottom: 1px solid rgba(222, 213, 199, 0.9);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1260px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 500;;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.brand span {
  width: 5px;
  height: 5px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--warm);
  color: transparent;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: #4c4a44;
  font-size: 0.91rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.nav-menu a[aria-current="page"] {
  color: var(--teal);
}

.nav-menu .button {
  color: var(--white);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--primary-deep);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.button.secondary {
  background: var(--white);
  color: var(--teal);
  border: 1px solid rgba(63, 101, 74, 0.24);
}

.button.secondary:hover {
  color: var(--teal-dark);
  background: var(--sand);
}

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(216, 137, 103, 0.11), transparent 28%),
    var(--paper);
}

.hero-content {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 98px);
  color: var(--ink);
  padding: clamp(64px, 8vw, 96px) 0 72px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--warm-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(4.2rem, 7vw, 7rem);
  letter-spacing: -0.02em;
}

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

.page-hero h1 {
  max-width: 860px;
  color: var(--white);
}

.hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 400;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-eyebrow {
  position: relative;
  gap: 14px;
  align-items: center;
  color: var(--warm);
}

.hero-eyebrow::before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--warm);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  color: #4c4a44;
  border-bottom: 2px solid rgba(76, 74, 68, 0.46);
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link span[aria-hidden="true"] {
  margin-left: 12px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(122, 112, 99, 0.22);
}

.hero-stats div {
  min-width: 120px;
}

.hero-stats div + div {
  padding-left: 34px;
  border-left: 1px solid rgba(122, 112, 99, 0.22);
}

.hero-stats strong {
  display: block;
  color: #3f654a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: #8b8175;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.hero-visual img,
.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(41, 51, 44, 0.2);
}

.hero-visual img {
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.02);
}

.hero-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 189, 169, 0.34);
  background: var(--surface-2) url("psykisksundhed-wallpaper.webp") center / cover no-repeat;
}

.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.hero-video.is-loaded iframe {
  opacity: 1;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.pill {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section.soft {
  background: var(--sand);
}

.section.teal {
  background: var(--teal-dark);
  color: var(--white);
}

.section.teal h2,
.section.teal h3 {
  color: var(--white);
}

.container {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(228, 224, 217, 0.8);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(33, 53, 55, 0.06);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 137, 103, 0.45);
  box-shadow: var(--shadow);
}

.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--warm-soft);
  color: var(--warm);
  font-size: 1.35rem;
}

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

.card-link {
  margin-top: auto;
  color: var(--teal);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal-soft);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.note {
  padding: 26px;
  border-left: 4px solid var(--warm);
  border-radius: var(--radius);
  background: var(--warm-soft);
}

.quote-slider {
  position: relative;
  max-width: 1040px;
  min-height: clamp(330px, 36vw, 430px);
  margin: 0 auto;
}

.quote-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translateX(0);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.quote-card.entering-next {
  transform: translateX(58px);
}

.quote-card.entering-prev {
  transform: translateX(-58px);
}

.quote-card.leaving-next {
  transform: translateX(-58px);
}

.quote-card.leaving-prev {
  transform: translateX(58px);
}

.quote-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 3vw, 2rem);
  line-height: 1.55;
}

.quote-card cite {
  display: block;
  margin-top: 24px;
  color: var(--warm-soft);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
  padding: 0;
  flex-shrink: 0;
  display: block;
}

.dot.active {
  background: var(--white);
  transform: scale(1.18);
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--teal-dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  filter: saturate(1.06);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(13, 46, 49, 0.84), rgba(13, 46, 49, 0.5));
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.content {
  max-width: 780px;
}

.content h2 {
  margin-top: 40px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.content .button {
  margin-top: 20px;
}

.accordion {
  display: grid;
  gap: 14px;
}

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

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 600;
}

details .answer {
  padding: 0 22px 20px;
  color: var(--muted);
}

.price {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price .amount {
  color: var(--teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;;
}

.package {
  position: relative;
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--warm);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-intro {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.86);
}

.contact-intro h2 {
  color: var(--white);
}

.contact-intro img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 14px 16px;
}

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

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card-content {
  padding: 26px;
}

.blog-card .meta,
.article-meta {
  display: block;
  margin-bottom: 10px;
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article {
  max-width: 840px;
  margin: 0 auto;
}

.article img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 28px 0 36px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #213336;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 56px 0;
}

.site-footer h3 {
  color: var(--white);
  font-family: Inter, Lato, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.64);
}

.home-section {
  padding: clamp(76px, 9vw, 126px) 0;
  background: var(--paper);
}

.about-section,
.practical-home,
.final-cta-section {
  background: #faf5ec;
}

.editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(34px, 7vw, 110px);
  margin-bottom: 38px;
}

.editorial-head.compact {
  align-items: center;
}

.editorial-head h2,
.about-title h2,
.final-cta h2 {
  max-width: 680px;
  color: #2c2923;
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.editorial-head h2 em,
.about-title h2 em,
.final-cta h2 em,
.hero h1 em {
  color: #3f654a;
  font-style: italic;
  font-weight: 500;
}

.editorial-head p {
  max-width: 620px;
  color: #81786d;
  font-size: 1.22rem;
  font-weight: 500;;
  line-height: 1.65;
}

.eyebrow.line {
  align-items: center;
  gap: 14px;
  color: var(--warm);
  font-size: 0.77rem;
}

.eyebrow.line::before,
.eyebrow.line::after {
  content: "";
  width: 46px;
  height: 2px;
  background: rgba(216, 137, 103, 0.72);
}

.eyebrow.line::after {
  display: none;
}

.center-line {
  justify-content: center;
}

.center-line::after {
  display: block !important;
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.therapy-card {
  min-height: 260px;
  padding: 34px 34px 30px;
  border: 1px solid #ded3c3;
  border-radius: 28px;
  background: #eee5d8;
  box-shadow: 0 18px 38px rgba(67, 53, 35, 0.08);
  color: #4a443d;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.therapy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px rgba(67, 53, 35, 0.13);
}

.therapy-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d6cbbd;
}

.therapy-icon,
.round-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3f654a;
  color: #f7efe4;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.therapy-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.round-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.therapy-number {
  display: block;
  color: #a3988b;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.therapy-card h3 {
  margin: 0;
  color: #3d352e;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
}

.therapy-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #ddd2c2;
  border-radius: 50%;
  color: #3f654a;
  font-weight: 600;
}

.therapy-card ul {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}

.therapy-card li {
  position: relative;
  padding-left: 20px;
  color: #5d554d;
  font-size: 0.95rem;
  font-weight: 500;;
  line-height: 1.5;
}

.therapy-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--warm);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: start;
}

.signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.signature > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3f654a;
  color: #f6eadb;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.signature strong {
  display: block;
  color: #6b5f54;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
}

.signature small,
.mini-meta,
.info-card small,
.quick-links span,
.about-facts span,
.contact-summary small {
  display: block;
  color: #ad866d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-portrait {
  width: min(180px, 46%);
  margin-top: 30px;
  border: 1px solid color-mix(in srgb, var(--border) 52%, transparent);
  box-shadow: var(--shadow-sm);
  border-radius: 50%;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  border-radius: 50%;
}

.about-copy > p {
  color: #575049;
  font-size: 1.08rem;
  font-weight: 500;;
  line-height: 1.7;
}

.louise-note {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 30px 0 42px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
}

.louise-note span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.louise-note p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-facts div {
  padding-top: 20px;
  border-top: 2px solid #ddd2c3;
}

.about-facts strong {
  display: block;
  margin-top: 12px;
  color: #5a534c;
  font-size: 0.95rem;
}

.home-testimonial {
  padding: clamp(58px, 7vw, 90px) 0;
  background: #3f654a;
  color: #f7efe4;
  text-align: center;
}

.home-testimonial .quote-mark {
  margin-top: 24px;
  color: var(--warm);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
}

.home-testimonial .quote-card {
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px clamp(18px, 4vw, 52px) 54px;
}

.home-testimonial .quote-card blockquote {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: #f7efe4;
  font-size: clamp(2rem, 3.25vw, var(--quote-size, 3.15rem));
  font-weight: 400;
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.home-testimonial .quote-card cite {
  margin-top: 26px;
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.76rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 34px;
  border: 1px solid #ded3c3;
  border-radius: 26px;
  background: #eee5d8;
  box-shadow: 0 16px 34px rgba(67, 53, 35, 0.07);
}

.info-card .round-icon {
  background: transparent;
  border: 2px solid #ded3c3;
  color: #3f654a;
}

.info-card small {
  margin-top: 26px;
}

.info-card strong {
  display: block;
  margin-top: 10px;
  color: #5b4f45;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.info-card p {
  color: #7c7168;
  font-weight: 500;;
}

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

.quick-links a {
  position: relative;
  display: block;
  padding: 30px 86px 30px 34px;
  border: 1px solid #ded3c3;
  border-radius: 24px;
  background: #eee5d8;
  color: #4d453e;
  box-shadow: 0 14px 28px rgba(67, 53, 35, 0.06);
}

.quick-links strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.quick-links small {
  display: block;
  color: #81776e;
  font-weight: 500;;
}

.quick-links b {
  position: absolute;
  right: 32px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3f654a;
  color: #f7efe4;
  transform: translateY(-50%);
}

.quick-links a:nth-child(2) b {
  background: var(--warm);
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.home-blog-card {
  overflow: hidden;
  border: 1px solid #ded3c3;
  border-radius: 28px;
  background: #faf5ec;
}

.home-blog-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.home-blog-content {
  padding: 30px 34px 34px;
}

.home-blog-content h3 {
  color: #3d352e;
  font-size: 1.75rem;
  font-weight: 500;
}

.home-blog-content p {
  color: #81786d;
  font-weight: 500;;
}

.read-more {
  color: #3d352e;
  font-weight: 900;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
  gap: 30px;
  padding: clamp(44px, 6vw, 78px);
  border-radius: 34px;
  background: #eae0d2;
}

.final-cta p {
  max-width: 680px;
  color: #80766c;
  font-size: 1.15rem;
  font-weight: 500;;
}

.button.ghost {
  background: transparent;
  color: #5a5149;
  border: 2px solid #d7cbbd;
}

.contact-summary {
  padding: 32px;
  border-radius: 28px;
  background: #fbf6ed;
}

.contact-summary p {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid #ddd2c3;
}

.contact-summary p:first-of-type {
  border-top: 0;
}

.contact-summary strong {
  color: #5b5148;
}

/* Elegance pass: lighter type, finer lines, quieter cards and clearer hovers. */
body {
  font-size: 16px;
  line-height: 1.68;
}

.site-header {
  border-bottom-color: rgba(222, 213, 199, 0.58);
}

.nav-wrap {
  min-height: 72px;
}

.brand {
  font-size: 1.14rem;
  align-items: center;
}

.brand span {
  position: relative;
  top: 2px;
}

.nav-menu {
  gap: 30px;
}

.nav-menu a {
  font-size: 0.84rem;
  font-weight: 500;
}

.button,
button.button {
  min-height: 46px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(44, 75, 52, 0.18);
}

.hero {
  min-height: auto;
}

.hero-content {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.02fr);
  gap: clamp(46px, 6vw, 88px);
  padding: clamp(56px, 7vw, 82px) 0 66px;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(4.1rem, 6.25vw, 6.45rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero p {
  max-width: 565px;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  font-weight: 400;
  line-height: 1.72;
}

.hero-actions {
  gap: 18px;
  margin-top: 26px;
}

.text-link {
  min-height: 46px;
  border-bottom-width: 1px;
  font-size: 0.83rem;
  font-weight: 500;;
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.text-link span[aria-hidden="true"] {
  margin-left: 14px;
}

.text-link:hover {
  color: #3f654a;
  border-color: #3f654a;
  transform: translateX(3px);
}

.hero-stats {
  max-width: 520px;
  margin-top: 34px;
  padding-top: 22px;
  border-top-color: rgba(122, 112, 99, 0.16);
}

.hero-stats div + div {
  border-left-color: rgba(122, 112, 99, 0.16);
}

.hero-stats strong {
  font-size: 1.32rem;
  font-weight: 400;
}

.hero-stats span {
  color: #9a9084;
  font-size: 0.65rem;
  font-weight: 500;;
}

.hero-visual {
  min-height: 0;
}

.hero-visual img,
.hero-video {
  height: auto;
  min-height: 0;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(41, 51, 44, 0.13);
}

.mini-meta,
.info-card small,
.quick-links span,
.about-facts span,
.contact-summary small {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.home-section {
  padding: clamp(66px, 8vw, 106px) 0;
}

.editorial-head {
  margin-bottom: 34px;
}

.editorial-head h2,
.about-title h2,
.final-cta h2 {
  max-width: 620px;
  font-size: clamp(3.35rem, 5.35vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.editorial-head p {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
}

.eyebrow.line::before,
.eyebrow.line::after,
.hero-eyebrow::before {
  height: 1px;
  background: rgba(216, 137, 103, 0.7);
}

.therapy-grid {
  gap: 20px;
}

.therapy-card {
  min-height: 224px;
  padding: 28px 30px 26px;
  border-color: rgba(222, 211, 195, 0.72);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(67, 53, 35, 0.045);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.therapy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(63, 101, 74, 0.34);
  background: #f1e8db;
  box-shadow: 0 22px 44px rgba(67, 53, 35, 0.09);
}

.therapy-card-top {
  gap: 16px;
  padding-bottom: 20px;
  border-bottom-color: rgba(120, 105, 88, 0.18);
}

.therapy-icon,
.round-icon {
  width: 46px;
  height: 46px;
}

.therapy-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.65;
}

.therapy-number {
  font-size: 0.66rem;
  font-weight: 600;
}

.therapy-card h3 {
  font-size: 1.82rem;
  line-height: 0.95;
}

.therapy-arrow,
.quick-links b {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(120, 105, 88, 0.18);
  background: transparent;
  color: #3f654a;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.therapy-card:hover .therapy-arrow,
.quick-links a:hover b {
  border-color: #3f654a;
  background: #3f654a;
  color: #f7efe4;
}

.quick-links a:hover b {
  transform: translateY(-50%) scale(1.18);
}

.therapy-card ul {
  gap: 9px;
  margin-top: 21px;
}

.therapy-card li {
  color: #625950;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
}

.therapy-card li::before {
  width: 3px;
  height: 3px;
}

.about-copy > p {
  font-size: 1rem;
  font-weight: 400;
}

.quote-box {
  padding: 26px 34px;
  border-left-width: 1px;
  border-radius: 18px;
}

.quote-box p {
  font-size: 1.32rem;
}

.about-facts div {
  border-top-width: 1px;
}

.about-facts strong {
  font-weight: 400;
}

.info-grid {
  gap: 16px;
}

.info-card {
  padding: 30px;
  border-color: rgba(222, 211, 195, 0.72);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(67, 53, 35, 0.04);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 101, 74, 0.28);
  box-shadow: 0 18px 38px rgba(67, 53, 35, 0.075);
}

.info-card .round-icon {
  border-width: 1px;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.info-card:hover .round-icon {
  transform: scale(1.14);
  border-color: #3f654a;
  background: #3f654a;
  color: #f7efe4;
}

.info-card strong {
  font-size: 1.22rem;
  font-weight: 500;
}

.info-card p,
.quick-links small,
.home-blog-content p,
.final-cta p {
  font-weight: 400;
}

.quick-links {
  gap: 18px;
}

.quick-links a {
  border-color: rgba(222, 211, 195, 0.72);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(67, 53, 35, 0.04);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.quick-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 101, 74, 0.3);
  background: #f1e8db;
  box-shadow: 0 18px 38px rgba(67, 53, 35, 0.08);
}

.quick-links a:nth-child(2) b {
  background: transparent;
  color: var(--warm);
}

.quick-links a:nth-child(2):hover b {
  border-color: #3f654a;
  background: #3f654a;
  color: #f7efe4;
}

.quick-links strong {
  font-size: 1.48rem;
}

.home-blog-card {
  border-color: rgba(222, 211, 195, 0.72);
  border-radius: 24px;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.home-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(63, 101, 74, 0.3);
  box-shadow: 0 18px 42px rgba(67, 53, 35, 0.08);
}

.home-blog-card img {
  height: 340px;
  transition: transform 420ms ease, filter 420ms ease;
}

.home-blog-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.92);
}

.home-blog-content {
  padding: 28px 31px 31px;
}

.home-blog-content h3 {
  font-size: 1.48rem;
}

.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 220ms ease;
}

.read-more:hover {
  color: #3f654a;
}

.final-cta {
  border-radius: 28px;
}

.contact-summary {
  border-radius: 22px;
}

.contact-summary p {
  border-top-color: rgba(120, 105, 88, 0.16);
}

/* Token cleanup for the current homepage direction. */
h1,
h2,
h3,
.brand,
.hero h1,
.editorial-head h2,
.about-title h2,
.final-cta h2,
.therapy-card h3,
.info-card strong,
.quick-links strong,
.home-blog-content h3,
.signature strong {
  font-weight: 400;
}

.site-header {
  background: color-mix(in srgb, var(--bg) 94%, var(--white));
  border-bottom-color: color-mix(in srgb, var(--border) 46%, transparent);
}

.button,
button.button {
  background: var(--primary);
  box-shadow: var(--shadow-sm);
}

.button:hover {
  background: var(--primary-deep);
  box-shadow: var(--shadow-md);
}

.button-icon {
  display: inline-grid;
  place-items: center;
}

.button-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.text-link:hover,
.read-more:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.hero,
.home-section {
  background: var(--bg);
}

.therapy-section,
.blog-home {
  background: color-mix(in oklab, var(--surface) 40%, transparent);
}

.about-section,
.practical-home,
.final-cta-section {
  background: var(--bg);
}

.hero h1,
.editorial-head h2,
.about-title h2,
.final-cta h2 {
  color: var(--text);
}

.hero h1 {
  font-size: clamp(3.55rem, 5.35vw, 4.8rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.page-hero h1 {
  font-size: clamp(2.9rem, 5.2vw, 5.15rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.editorial-head h2,
.about-title h2,
.final-cta h2 {
  font-size: clamp(2.85rem, 4.45vw, 4rem);
  letter-spacing: -0.032em;
  line-height: 1.02;
}

.home-blog-content h3 {
  font-size: clamp(1.28rem, 1.7vw, 1.48rem);
}

.therapy-card h3,
.quick-links strong {
  font-size: clamp(1.42rem, 2vw, 1.72rem);
}

.hero h1 em,
.editorial-head h2 em,
.about-title h2 em,
.final-cta h2 em {
  color: var(--primary);
  font-weight: 400;
}

.hero p,
.editorial-head p,
.about-copy > p,
.therapy-card li,
.info-card p,
.quick-links small,
.home-blog-content p,
.final-cta p {
  color: var(--muted);
  font-weight: 400;
}

.eyebrow.line,
.mini-meta,
.info-card small,
.quick-links span,
.about-facts span,
.contact-summary small,
.louise-note span {
  color: var(--accent);
}

.eyebrow.line::before,
.eyebrow.line::after,
.hero-eyebrow::before {
  background: color-mix(in srgb, var(--accent) 68%, transparent);
}

.therapy-card,
.info-card,
.quick-links a,
.home-blog-card {
  border-color: color-mix(in srgb, var(--border) 58%, transparent);
  box-shadow: var(--shadow-sm);
}

.therapy-card:hover,
.quick-links a:hover {
  border-color: color-mix(in srgb, var(--primary) 36%, transparent);
  background: color-mix(in srgb, var(--surface) 84%, var(--bg));
  box-shadow: var(--shadow-md);
}

.therapy-card-top,
.about-facts div,
.contact-summary p {
  border-color: color-mix(in srgb, var(--border) 48%, transparent);
}

.contact-summary {
  background: color-mix(in srgb, var(--bg) 86%, var(--white));
  border: 1px solid color-mix(in srgb, var(--border) 34%, transparent);
}

.contact-summary .mini-meta {
  margin-bottom: 20px;
}

.contact-summary-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.contact-summary-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-summary-item:last-child {
  padding-bottom: 0;
}

.contact-summary-item .round-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--surface) 74%, var(--bg));
}

.contact-summary-item p {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.48;
}

.contact-summary-item small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contact-summary-item strong {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.therapy-icon,
.signature > span {
  background: var(--primary);
  color: var(--bg);
}

.round-icon {
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.round-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.therapy-arrow,
.quick-links b {
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  background: transparent;
  color: var(--primary);
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.therapy-card:hover .therapy-arrow,
.quick-links a:hover b {
  transform: scale(1.16);
  border-color: var(--primary);
  background: var(--primary);
  color: var(--bg);
}

.quick-links a:hover b {
  transform: translateY(-50%) scale(1.16);
}

.quick-links a:nth-child(2) b {
  color: var(--accent);
}

.quick-links a:nth-child(2):hover b {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--bg);
}

.info-card:hover {
  border-color: color-mix(in srgb, var(--primary) 32%, transparent);
  box-shadow: var(--shadow-md);
}

.info-card:hover .round-icon {
  transform: scale(1.12);
  border-color: var(--primary);
  background: var(--primary);
  color: var(--bg);
}

.info-card strong {
  color: var(--text);
  font-size: 1.18rem;
}

.louise-note {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 30px 0 42px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
}

.louise-note span {
  flex: 0 0 auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.louise-note p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

/* Modern subpages */
.subhero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, color-mix(in srgb, var(--accent-soft) 20%, transparent), transparent 26%),
    radial-gradient(circle at 14% 82%, color-mix(in srgb, var(--surface-2) 34%, transparent), transparent 24%),
    linear-gradient(to bottom, var(--bg) 0%, var(--bg) 82%, color-mix(in srgb, var(--surface) 52%, var(--bg)) 82%, color-mix(in srgb, var(--surface) 52%, var(--bg)) 100%),
    var(--bg);
}

.subhero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent) 20%, transparent), var(--accent));
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% {
    opacity: 0.38;
    transform: translate(-50%, -5px);
  }

  50% {
    opacity: 0.9;
    transform: translate(-50%, 5px);
  }
}

.subhero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
  min-height: clamp(430px, 56vh, 590px);
  padding: clamp(44px, 5vw, 72px) 0 clamp(64px, 7vw, 96px);
}

.subhero-copy h1 {
  max-width: 780px;
  color: var(--text);
  font-size: clamp(3.1rem, 5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.subhero-copy h1 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

.subhero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.72;
}

.subhero-visual {
  position: relative;
  margin-bottom: 50px;

}

.subhero-visual img {
  width: 100%;
  height: min(44vh, 455px);
  min-height: 340px;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 26px 80px color-mix(in srgb, var(--primary-deep) 14%, transparent);
}

.subhero-note {
  position: absolute;
  left: -28px;
  bottom: -24px;
  width: min(310px, 82%);
  padding: 22px 24px;
  border: 1px solid color-mix(in srgb, var(--border) 54%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--bg) 88%, var(--white));
  color: var(--muted);
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
  line-height: 1.55;
}

.subhero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.policy-card {
  align-self: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid color-mix(in srgb, var(--border) 56%, transparent);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.policy-card h2 {
  margin: 14px 0 16px;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.policy-card p,
.policy-card a {
  color: var(--muted);
}

.policy-card a {
  font-weight: 700;
}

.subpage-section {
  padding: clamp(60px, 8vw, 112px) 0;
  background: var(--bg);
}

.subhero + .subpage-section,
.subhero + .home-section:not(.prices-overlap) {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  padding-top: clamp(42px, 6vw, 76px);
}

.subpage-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 118px);
  align-items: start;
}

.subpage-aside {
  position: sticky;
  top: 104px;
}

.subpage-aside h2 {
  color: var(--text);
  font-size: clamp(2.3rem, 3.8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.02;
}

.subpage-aside h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

.subpage-aside p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.story-stack {
  display: grid;
  gap: 18px;
}

.story-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.story-block:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  box-shadow: var(--shadow-md);
}

.story-block a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.story-block a:hover {
  color: var(--primary-deep);
}

.story-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--border) 62%, transparent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-block h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.08;
}

.story-block p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-toc {
  top: 112px;
}

.about-toc-nav {
  display: grid;
  gap: 2px;
  margin: 26px 0 28px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--border) 68%, transparent);
}

.about-toc-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 0 8px 20px;
  color: color-mix(in srgb, var(--muted) 88%, var(--text));
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.about-toc-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%) scale(0.72);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.about-toc-link:hover,
.about-toc-link.active,
.about-toc-link[aria-current="true"] {
  color: var(--primary);
}

.about-toc-link:hover {
  transform: translateX(3px);
}

.about-toc-link.active::before,
.about-toc-link[aria-current="true"]::before {
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-50%) scale(1);
}

.editorial-story {
  gap: 0;
}

.editorial-story .story-block {
  display: block;
  padding: 0 0 clamp(52px, 7vw, 88px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: 122px;
}

.editorial-story .story-block + .story-block {
  padding-top: clamp(42px, 6vw, 74px);
  border-top: 1px solid color-mix(in srgb, var(--border) 64%, transparent);
}

.editorial-story .story-block:hover {
  transform: none;
  border-color: color-mix(in srgb, var(--border) 64%, transparent);
  box-shadow: none;
}

.editorial-story .story-content {
  max-width: 760px;
}

.editorial-story .story-block h2 {
  max-width: 680px;
  margin-bottom: clamp(18px, 2.4vw, 28px);
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.editorial-story .story-block p {
  max-width: 720px;
  color: color-mix(in srgb, var(--muted) 92%, var(--text));
  font-size: clamp(1rem, 1.06vw, 1.08rem);
  line-height: 1.86;
}

.editorial-story .story-block p + p {
  margin-top: 1.1em;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.related-card {
  position: relative;
  min-height: 250px;
  padding: 28px 72px 30px 28px;
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary) 34%, transparent);
  background: color-mix(in srgb, var(--surface) 84%, var(--bg));
  box-shadow: var(--shadow-md);
}

.related-card h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.related-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.related-card b {
  position: absolute;
  right: 26px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  border-radius: 50%;
  color: var(--primary);
  font-weight: 500;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.related-card:hover b {
  transform: scale(1.16);
  border-color: var(--primary);
  background: var(--primary);
  color: var(--bg);
}

.modern-accordion {
  display: grid;
  gap: 14px;
}

.modern-accordion details {
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.modern-accordion summary {
  padding: 24px 28px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  cursor: pointer;
}

.modern-accordion .answer {
  padding: 0 28px 26px;
  color: var(--muted);
  line-height: 1.72;
}

.modern-price-grid,
.package-grid,
.modern-blog-grid {
  display: grid;
  gap: 22px;
}

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

.prices-overlap {
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding-top: clamp(54px, 7vw, 92px);
  scroll-margin-top: 96px;
  background: color-mix(in srgb, var(--surface) 42%, var(--bg));
}

.prices-overlap .container {
  position: relative;
}

.price-card,
.package-card {
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.price-card:hover,
.package-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary) 32%, transparent);
  box-shadow: var(--shadow-md);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 4vw, 40px);
}

.price-card h2,
.package-card h3 {
  color: var(--text);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}

.price-card p {
  color: var(--muted);
  line-height: 1.6;
}

.price-primary {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
}

.price-secondary span {
  display: block;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-primary strong,
.package-card .amount {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1;
}

.price-primary strong small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.25vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.price-secondary {
  margin-top: 24px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--bg) 62%, var(--surface));
}

.price-secondary small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 1rem;
}

.price-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding: 15px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 54%, transparent);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 220ms ease;
}

.price-secondary + .price-action {
  margin-top: 24px;
}

.price-action span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  border-radius: 50%;
  color: var(--primary);
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.price-action:hover {
  color: var(--primary);
}

.price-action:hover span,
.price-card:hover .price-action span,
.package-card:hover .price-action span {
  transform: scale(1.14);
  border-color: var(--primary);
  background: var(--primary);
  color: var(--bg);
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 230px;
  padding: 28px;
}

.package-section {
  background:
    radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--primary-soft) 12%, transparent), transparent 24%),
    color-mix(in srgb, var(--primary-soft) 11%, var(--bg));
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 26%, var(--bg));
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card p {
  color: var(--muted);
  line-height: 1.55;
}

.package-card .amount {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
}

.subtle-note {
  margin-top: 26px;
  padding: 22px 26px;
  border-left: 1px solid var(--accent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--bg) 72%, var(--surface));
  color: var(--muted);
}

.subtle-note a {
  display: inline-flex;
  margin-left: 8px;
  color: var(--primary);
  font-weight: 700;
}

.price-faq-section {
  padding-top: clamp(46px, 6vw, 80px);
}

.modern-contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.44fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.modern-form {
  display: grid;
  gap: 16px;
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.modern-form h2 {
  max-width: 620px;
  color: var(--text);
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--border) 68%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--bg) 82%, var(--white));
  color: var(--text);
  padding: 15px 17px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.modern-form textarea {
  min-height: 170px;
  resize: vertical;
}

.modern-form input:focus,
.modern-form textarea:focus {
  border-color: var(--primary-soft);
  background: var(--bg);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 10%, transparent);
}

.map-shell {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.map-shell iframe {
  display: block;
  border: 0;
  filter: saturate(0.72) sepia(0.08);
}

.modern-blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modern-blog-card a:first-child {
  display: block;
  overflow: hidden;
}

.article-hero {
  padding: clamp(58px, 7vw, 96px) 0;
  background: var(--bg);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 8vw, 106px);
  align-items: center;
}

.article-hero h1 {
  max-width: 780px;
  color: var(--text);
  font-size: clamp(3rem, 5vw, 5.15rem);
  font-weight: 400;
  letter-spacing: -0.036em;
  line-height: 1;
}

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

.article-hero img {
  width: 100%;
  height: min(52vh, 500px);
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.modern-article {
  max-width: 850px;
}

.modern-article p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.82;
}

.modern-article h2 {
  margin-top: 44px;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.modern-article h3 {
  margin-top: 30px;
  color: var(--text);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.012em;
}

.modern-article ol {
  display: grid;
  gap: 18px;
  margin: 30px 0;
  padding-left: 1.35rem;
  color: var(--muted);
}

.modern-article li {
  padding-left: 8px;
  line-height: 1.78;
}

.modern-article li::marker {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.25em;
}

.modern-article li strong {
  color: var(--text);
  font-weight: 600;
}

.modern-article blockquote {
  margin: 34px 0;
  padding: 28px 34px;
  border-left: 1px solid var(--accent);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-style: italic;
  line-height: 1.35;
}

.policy-article {
  max-width: 780px;
}

.policy-article h2:first-child {
  margin-top: 0;
}

.policy-article address {
  margin-top: 18px;
  padding: 26px 30px;
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--muted);
  font-style: normal;
  line-height: 1.82;
}

.policy-article a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu .button {
    width: 100%;
  }

  .grid.three,
  .grid.four,
  .split,
  .hero-content,
  .subhero-grid,
  .editorial-head,
  .therapy-grid,
  .about-grid,
  .info-grid,
  .quick-links,
  .home-blog-grid,
  .subpage-layout,
  .related-grid,
  .modern-price-grid,
  .package-grid,
  .modern-contact-grid,
  .modern-blog-grid,
  .article-hero-grid,
  .final-cta,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: clamp(3rem, 10vw, 4.85rem);
  }

  .subhero-grid {
    min-height: auto;
  }

  .subhero-visual img {
    height: 460px;
    min-height: 0;
  }

  .subhero::after {
    bottom: 18px;
    height: 34px;
  }

  .prices-overlap {
    margin-top: 0;
  }

  .subhero + .subpage-section,
  .subhero + .home-section:not(.prices-overlap) {
    margin-top: -30px;
  }

  .subpage-aside {
    position: static;
  }

  .about-toc-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 18px;
  }

  .about-toc-link {
    min-height: 34px;
    font-size: 0.9rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img,
  .hero-video {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .editorial-head {
    align-items: start;
  }

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

  .related-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .nav-wrap,
  .container,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-content {
    padding: 46px 0 70px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.05rem);
  }

  .editorial-head h2,
  .about-title h2,
  .final-cta h2,
  .subhero-copy h1,
  .article-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
  }

  .subpage-aside h2,
  .modern-form h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .hero-actions,
  .section-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stats div + div {
    padding-left: 20px;
  }

  .hero-visual img,
  .hero-video {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
  }

  .subhero-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -24px;
  }

  .subhero-grid {
    padding: 38px 0 70px;
  }

  .subhero-visual img {
    height: 360px;
  }

  .prices-overlap {
    margin-top: 0;
    scroll-margin-top: 82px;
  }

  .subhero + .subpage-section,
  .subhero + .home-section:not(.prices-overlap) {
    margin-top: -18px;
    padding-top: 42px;
  }

  .price-primary strong {
    font-size: clamp(2.5rem, 15vw, 3.25rem);
  }

  .price-secondary {
    padding: 16px;
  }

  .price-action span {
    width: 32px;
    height: 32px;
  }

  .subtle-note a {
    margin-left: 0;
    margin-top: 8px;
  }

  .home-section {
    padding: 58px 0;
  }

  .therapy-card,
  .info-card,
  .story-block,
  .related-card,
  .price-card,
  .package-card,
  .modern-form,
  .final-cta,
  .contact-summary {
    border-radius: 22px;
  }

  .story-block {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

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

  .editorial-story .story-block {
    padding: 0 0 48px;
    border-radius: 0;
  }

  .editorial-story .story-block + .story-block {
    padding-top: 40px;
  }

  .editorial-story .story-block h2 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .therapy-card {
    padding: 26px 22px;
  }

  .therapy-card-top {
    gap: 12px;
  }

  .therapy-card h3 {
    font-size: 1.75rem;
  }

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

  .related-grid,
  .package-grid,
  .modern-blog-grid {
    grid-template-columns: 1fr;
  }

  .contact-summary-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .quick-links a {
    padding: 26px 78px 26px 26px;
  }

  .home-blog-card img {
    height: 260px;
  }

  .home-blog-content {
    padding: 24px;
  }

  .final-cta {
    padding: 30px 24px;
  }

  .copyright {
    flex-direction: column;
  }

  .card {
    padding: 24px;
  }

  .image-frame img {
    min-height: 280px;
  }
}
