﻿@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500&display=swap");
@import url("https://rsms.me/inter/inter.css");

:root {
  --color-olive: #214001;
  --color-stone: #d8d9d7;
  --color-text: #2e2e2e;
  --color-accent: #f2ab6d;
  --color-earth: #59321b;
  --color-clay: #d98555;
  --color-surface: #ffffff;
  --color-surface-soft: #faf5ef;
  --color-border: rgba(46, 46, 46, 0.1);
  --page-gutter: 20px;
  --content-width: 1388px;
  --radius-card: 28px;
  --shadow-soft: 0 24px 60px rgba(46, 46, 46, 0.06);
}

@media (max-width: 767px) {
  html,
  body,
  .page-home,
  .page-main--home {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .home-orbit,
  .home-orbit *,
  .home-orbit__sticky,
  .home-orbit__inner,
  .home-orbit__stage,
  .home-orbit__circle-wrap,
  .home-orbit__circle-height,
  .home-orbit__circle,
  .home-orbit__circle-list,
  .home-orbit__item,
  .home-orbit__description,
  .home-orbit__card,
  .home-orbit__card-title,
  .home-orbit__card-link {
    max-width: 100% !important;
  }

  .home-orbit {
    overflow: hidden !important;
  }

  .home-orbit__card-link::before,
  .home-orbit__card-link::after,
  .home-orbit__card-title::before,
  .home-orbit__card-title::after,
  .home-orbit__card::before,
  .home-orbit__card::after {
    display: none !important;
    content: none !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: "InterVariable", "Inter", sans-serif;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.site-header {
  padding: 28px var(--page-gutter) 0;
  background: transparent;
}

.site-header__inner {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.site-brand {
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.site-brand__mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: -3px;
}

.site-brand__text {
  display: grid;
  gap: 5px;
}

.site-brand__label {
  display: inline-block;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-brand__sub {
  display: inline-block;
  color: rgba(89, 50, 27, 0.82);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav__item + .site-nav__item::before {
  content: "\2022";
  margin: 0 12px;
  color: var(--color-accent);
  font-size: 0.9rem;
  line-height: 1;
}

.site-nav__link {
  color: var(--color-text);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    opacity 160ms ease,
    color 160ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  opacity: 0.68;
}

.site-nav__link[aria-current="page"] {
  opacity: 1;
}

.site-nav__link--menu {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav__link--menu::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-0.18em) rotate(45deg);
  opacity: 0.72;
}

.site-nav__item--has-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 26px;
}

.site-services-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 50;
  width: min(720px, calc(100vw - 40px));
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid rgba(64, 57, 59, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 28px 72px rgba(64, 57, 59, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav__item--has-menu:hover .site-services-menu,
.site-nav__item--has-menu:focus-within .site-services-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.site-services-menu__card {
  min-height: 178px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 26px;
  border: 1px solid rgba(64, 57, 59, 0.1);
  border-radius: 8px;
  color: #40393b;
  background: rgba(251, 250, 247, 0.82);
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.site-services-menu__card:hover,
.site-services-menu__card:focus-visible {
  border-color: rgba(64, 57, 59, 0.22);
  background: rgba(242, 238, 232, 0.88);
  transform: translateY(-2px);
}

.site-services-menu__number {
  color: rgba(64, 57, 59, 0.45);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.14em;
  line-height: 1;
}

.site-services-menu__content {
  display: grid;
  gap: 12px;
}

.site-services-menu__title {
  color: #2e2e2e;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.52rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.site-services-menu__text {
  color: rgba(46, 46, 46, 0.68);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 430;
  letter-spacing: -0.01em;
  line-height: 1.42;
}

.site-mobile-toggle,
.site-mobile-menu {
  display: none;
}

.page-home .site-brand,
.page-home .site-nav__link {
  color: rgba(255, 253, 248, 0.98);
}

.page-home .site-brand__mark {
  width: clamp(56px, 6vw, 92px);
  height: clamp(56px, 6vw, 92px);
}

.page-home .site-brand {
  gap: 18px;
}

.page-home .site-brand__text {
  gap: 8px;
}

.page-home .site-brand__label {
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 0.96;
}

.page-home .site-brand__sub {
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(12px, 1.1vw, 18px);
  letter-spacing: 0.2em;
}

.page-main {
  padding: 60px var(--page-gutter) 88px;
}

.page-main--home {
  padding: 0 0 88px;
}

.page-first-step .site-header,
.page-work-method .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  width: 100%;
}

.page-first-step .site-brand,
.page-first-step .site-nav__link,
.page-work-method .site-brand,
.page-work-method .site-nav__link {
  color: rgba(255, 253, 248, 0.98);
}

.page-first-step .site-brand__sub,
.page-work-method .site-brand__sub {
  color: rgba(255, 253, 248, 0.86);
}

.page-hero,
.page-section,
.page-cta {
  max-width: var(--content-width);
  margin: 0 auto;
}

.page-hero {
  padding-top: clamp(44px, 12vw, 120px);
  display: grid;
  gap: 20px;
}

.page-hero__eyebrow,
.section-label {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero__title,
.section-title {
  margin: 0;
  color: var(--color-text);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.08em;
}

.page-hero__title {
  max-width: 12ch;
  font-size: clamp(2.6rem, 11vw, 5.4rem);
  line-height: 0.94;
}

.section-title {
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 0.98;
}

.page-hero__text,
.section-text,
.card__text,
.step__text,
.contact-panel__text,
.page-note {
  margin: 0;
  max-width: 42rem;
  color: rgba(46, 46, 46, 0.84);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.page-section {
  padding-top: 68px;
  display: grid;
  gap: 24px;
}

.section-heading {
  display: grid;
  gap: 12px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.card__title,
.step__title,
.contact-panel__title {
  margin: 0 0 10px;
  color: var(--color-text);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius-card) - 4px);
  background: rgba(255, 255, 255, 0.88);
}

.step__number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: var(--color-text);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(46, 46, 46, 0.84);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-panel {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 245, 239, 0.88));
  box-shadow: var(--shadow-soft);
}

.contact-panel__meta {
  display: inline-block;
  margin-top: 14px;
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(242, 171, 109, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.page-cta {
  margin-top: 68px;
  padding: 26px;
  border: 1px solid rgba(242, 171, 109, 0.32);
  border-radius: calc(var(--radius-card) + 6px);
  background: linear-gradient(135deg, rgba(242, 171, 109, 0.12), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.page-cta__title {
  margin: 0 0 12px;
  color: var(--color-text);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.first-step-page {
  position: relative;
  overflow: visible;
  background: #f7f3ef;
}

.first-step-page::before {
  content: "";
  display: block;
  height: 100svh;
}

.first-step-hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #d8d9d7;
}

.first-step-hero__media {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}

.first-step-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 16, 15, 0.56) 0%, rgba(18, 16, 15, 0.24) 44%, rgba(18, 16, 15, 0.08) 100%),
    linear-gradient(180deg, rgba(31, 31, 31, 0.12) 0%, rgba(31, 31, 31, 0.28) 100%),
    radial-gradient(circle at 58% 42%, rgba(255, 253, 248, 0.1), transparent 34%);
  pointer-events: none;
}

.first-step-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

.first-step-hero__content {
  position: absolute;
  top: clamp(148px, 18vh, 210px);
  right: auto;
  bottom: auto;
  left: var(--page-gutter);
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(44vw, 620px);
  color: #fffdf8;
}

@media (min-width: 641px) {
  .page-first-step .first-step-hero__content {
    left: clamp(280px, 31.8vw, 430px);
    width: min(52vw, 650px);
  }

  .page-individual-therapy .first-step-hero__content {
    left: clamp(260px, 28vw, 430px);
    width: min(52vw, 650px);
  }
}

.page-individual-therapy .first-step-hero__eyebrow {
  letter-spacing: 0;
}

.first-step-hero__eyebrow {
  margin: 0 0 4px;
  color: rgba(255, 253, 248, 0.82);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: firstStepHeroReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.first-step-hero__title {
  margin: 0;
  color: #fffdf8;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.65rem, 4.6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.first-step-hero__title span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.04em;
  opacity: 0;
  transform: translate3d(0, 42%, 0);
  animation: firstStepHeroReveal 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-woman-measure .first-step-hero__title span {
  white-space: nowrap;
}

.first-step-reveal-title span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.04em;
  opacity: 0;
  transform: translate3d(0, 42%, 0);
}

.first-step-reveal-title.is-visible span {
  animation: firstStepHeroReveal 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.first-step-reveal-title.is-visible span:nth-child(2) {
  animation-delay: 120ms;
}

.first-step-reveal-title.is-visible span:nth-child(3) {
  animation-delay: 240ms;
}

.first-step-hero__title span:nth-child(1) {
  animation-delay: 240ms;
}

.first-step-hero__title span:nth-child(2) {
  animation-delay: 360ms;
}

.first-step-hero__title span:nth-child(3) {
  animation-delay: 480ms;
}

.first-step-hero__text {
  margin: 2px 0 0;
  max-width: 500px;
  color: rgba(255, 253, 248, 0.88);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: firstStepHeroReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) 700ms forwards;
}

.first-step-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 16px 0 22px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: firstStepHeroReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) 840ms forwards;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.first-step-hero__button::after {
  content: "\2197";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ebeae6;
  color: #40393b;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.first-step-hero__button:hover,
.first-step-hero__button:focus-visible {
  background: #f2eadf;
  transform: translate3d(0, -2px, 0);
}

.first-step-hero__button:hover::after,
.first-step-hero__button:focus-visible::after {
  background: #332d2f;
  transform: translate(3px, -3px);
}

@keyframes firstStepHeroReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 42%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.first-step-cta {
  position: relative;
  z-index: 2;
  width: min(100% - 2px, 100vw);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 136px) var(--page-gutter) clamp(96px, 12vw, 154px);
  border-radius: 34px 34px 0 0;
  background: #ffffff;
  box-shadow:
    0 -28px 70px rgba(64, 57, 59, 0.14),
    0 -8px 28px rgba(64, 57, 59, 0.06);
}

.first-step-cta__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: clamp(30px, 5vw, 56px);
}

.first-step-cta__eyebrow {
  margin: 0;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.first-step-cta__title {
  margin: 0;
  max-width: 15ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.65rem, 4.6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.first-step-cta__text {
  margin: -18px 0 0;
  max-width: 520px;
  color: rgba(31, 31, 31, 0.68);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: -0.025em;
}

.first-step-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  min-height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  background: #a6a69a;
  color: #fffdf8;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(166, 166, 154, 0.22);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.first-step-cta__button::after {
  content: "\2192";
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.first-step-cta__button:hover,
.first-step-cta__button:focus-visible {
  background: #929287;
  box-shadow: 0 20px 42px rgba(166, 166, 154, 0.28);
  transform: translateY(-2px);
}

.first-step-cta__button:hover::after,
.first-step-cta__button:focus-visible::after {
  transform: translateX(4px);
}

.woman-program-intro {
  position: relative;
  z-index: 2;
  width: min(100% - 2px, 100vw);
  margin: 0 auto;
  padding: clamp(62px, 7.4vw, 112px) var(--page-gutter) clamp(74px, 8vw, 126px);
  border-radius: 34px 34px 0 0;
  background: #ffffff;
}

.woman-program-intro__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(36px, 5vw, 74px);
  padding-top: clamp(26px, 3vw, 34px);
  border-top: 1px solid #c7c3c0;
}

.woman-program-intro__label {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.woman-program-intro__title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.55rem, 5.1vw, 5.28rem);
  font-weight: 430;
  line-height: 0.97;
  letter-spacing: -0.065em;
  text-align: right;
  text-wrap: balance;
}

.woman-program-intro__title span {
  display: block;
}

.woman-program-intro__title span:first-child {
  color: rgba(31, 31, 31, 0.56);
}

.woman-themes {
  position: relative;
  z-index: 2;
  width: min(100% - 2px, 100vw);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vw, 118px) var(--page-gutter);
  background: #ffffff;
}

.woman-themes__inner {
  width: min(calc(100vw - 76px), 1790px);
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 4vw, 56px);
  padding-top: clamp(28px, 3vw, 38px);
  border-top: 1px solid #c7c3c0;
}

.woman-themes__head {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(180px, 0.28fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: start;
}

.woman-themes__eyebrow {
  grid-column: 2;
  justify-self: end;
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.78rem, 0.86vw, 0.94rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.woman-themes__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  max-width: 14ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.95rem, 2.85vw, 3.2rem);
  font-weight: 430;
  line-height: 1;
  letter-spacing: -0.055em;
}

.woman-themes__content {
  display: grid;
  grid-template-columns: minmax(360px, 480px) minmax(640px, 1fr);
  gap: clamp(120px, 14vw, 270px);
  align-items: start;
}

.page-child-development .woman-themes__content {
  align-items: center;
}

.page-child-development .woman-program-intro {
  padding-bottom: clamp(32px, 4vw, 58px);
}

.page-child-development .woman-themes {
  min-height: auto;
  align-items: start;
  padding-top: clamp(34px, 4vw, 58px);
}

.child-work {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(84px, 9vw, 128px) var(--page-gutter);
  border-radius: 28px 28px 0 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(18, 16, 15, 0.66) 0%, rgba(18, 16, 15, 0.42) 48%, rgba(18, 16, 15, 0.2) 100%),
    linear-gradient(180deg, rgba(18, 16, 15, 0.1), rgba(18, 16, 15, 0.4)),
    url("../images/razvoj-deteta-work-bg.webp") center / cover no-repeat fixed;
}

.child-work__inner {
  width: min(calc(100vw - 76px), 1790px);
  min-height: calc(100svh - clamp(168px, 18vw, 256px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(54px, 8vw, 138px);
  align-items: center;
}

.child-work__eyebrow,
.child-work__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.child-work__note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.child-work__title,
.child-work__result-title {
  margin: clamp(24px, 3vw, 40px) 0 0;
  color: #ffffff;
  font-family: "InterVariable", "Inter", sans-serif;
  font-weight: 520;
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.child-work__title {
  max-width: 10ch;
  font-size: clamp(3.5rem, 6.8vw, 8rem);
}

.child-work__result-title {
  max-width: 9ch;
  font-size: clamp(3.1rem, 5.5vw, 6.2rem);
}

.child-work__grid {
  width: min(100%, 740px);
  margin-top: clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.child-work-card {
  min-height: 176px;
  padding: clamp(20px, 2vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.child-work-card h3,
.child-work-card p,
.child-work__results p {
  font-family: "InterVariable", "Inter", sans-serif;
  letter-spacing: -0.035em;
}

.child-work-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  font-weight: 560;
  line-height: 1.08;
}

.child-work-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  font-weight: 420;
  line-height: 1.28;
}

.child-work__results {
  width: min(100%, 520px);
  margin-top: clamp(40px, 5vw, 68px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.child-work__results p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.2rem, 1.45vw, 1.58rem);
  font-weight: 520;
  line-height: 1.14;
}

.child-programs .individual-topics__title {
  max-width: 18ch;
}

.child-programs {
  min-height: auto;
  padding-bottom: clamp(92px, 10vw, 138px);
  --topics-column-mask-height: 0;
}

.child-programs .individual-topics__head {
  position: relative;
  top: auto;
}

.child-programs .individual-topics__columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: clamp(56px, 7vw, 96px);
  -webkit-mask-image: none;
  mask-image: none;
}

.child-programs .individual-topics__column,
.child-programs .individual-topics__column::before {
  min-height: auto;
}

.child-programs .individual-topics__group {
  position: static;
  margin-bottom: clamp(26px, 3vw, 42px);
}

.child-programs .individual-topics__group {
  font-size: clamp(1.22rem, 1.75vw, 1.9rem);
}

.child-programs .individual-topics__list li {
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  line-height: 1.36;
}

.child-programs-clean {
  position: relative;
  z-index: 2;
  padding: clamp(78px, 8vw, 118px) var(--page-gutter) clamp(98px, 10vw, 148px);
  background: #ffffff;
  color: rgb(31, 31, 31);
}

.child-programs-clean__inner {
  width: min(calc(100vw - 76px), 1790px);
  margin: 0 auto;
}

.child-programs-clean__head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: start;
  padding-top: clamp(28px, 3vw, 38px);
  border-top: 1px solid #c7c3c0;
}

.child-programs-clean__eyebrow {
  grid-column: 2;
  justify-self: end;
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.78rem, 0.86vw, 0.94rem);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.child-programs-clean__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  max-width: 13ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 5.1rem);
  font-weight: 430;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.child-programs-clean__intro {
  grid-column: 1 / -1;
  max-width: 620px;
  margin: clamp(18px, 2vw, 28px) 0 0;
  color: rgba(31, 31, 31, 0.62);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.child-programs-clean__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(50px, 6vw, 84px);
  border-top: 1px solid #c7c3c0;
  border-left: 1px solid #c7c3c0;
}

.child-program-card {
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 38px);
  border-right: 1px solid #c7c3c0;
  border-bottom: 1px solid #c7c3c0;
  background: #ffffff;
}

.child-program-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}

.child-program-card__head {
  display: grid;
  gap: 10px;
  align-content: start;
}

.child-program-card__kicker,
.child-program-card__head span {
  margin: 0;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.child-program-card__head h3 {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.65rem, 2.25vw, 2.7rem);
  font-weight: 430;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.child-program-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.child-program-card li {
  position: relative;
  padding-left: 17px;
  color: rgba(31, 31, 31, 0.76);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -0.025em;
}

.child-program-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a6a69a;
}

.child-seo-programs {
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: 220svh;
  background: #ffffff;
  color: #101010;
}

.child-seo-programs__head {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  padding: clamp(74px, 8vw, 118px) var(--page-gutter) clamp(58px, 6vw, 88px);
  background: #ffffff;
  border-bottom: 1px dashed rgba(16, 16, 16, 0.18);
  text-align: center;
}

.child-seo-programs__head p {
  margin: 0 0 18px;
  color: rgba(16, 16, 16, 0.52);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 520;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.child-seo-programs__head h2 {
  margin: 0 auto;
  max-width: 15ch;
  color: #101010;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  font-weight: 420;
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.child-seo-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.child-seo-program {
  min-height: 150svh;
  padding: 0 clamp(22px, 2.3vw, 42px) clamp(74px, 7vw, 108px);
  border-right: 1px dashed rgba(16, 16, 16, 0.22);
}

.child-seo-program:first-child {
  border-left: 0;
}

.child-seo-program__sticky {
  position: sticky;
  top: clamp(208px, 24vw, 272px);
  z-index: 6;
  min-height: clamp(176px, 19vw, 244px);
  padding-top: clamp(24px, 3vw, 46px);
  padding-bottom: clamp(38px, 5vw, 66px);
  background: #ffffff;
}

.child-seo-program h3 {
  margin: 0;
  color: #101010;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.35rem, 3.55vw, 4.9rem);
  font-weight: 430;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.child-seo-program__age {
  margin: 10px 0 0;
  color: rgba(16, 16, 16, 0.42);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.9rem);
  font-weight: 430;
  line-height: 1;
  letter-spacing: -0.05em;
}

.child-seo-program ul {
  margin: 0;
  padding: 0 0 0 1.05em;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  list-style: disc;
  list-style-position: outside;
}

.child-seo-program li {
  margin: 0;
  padding-left: 0.1em;
  color: #101010;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.05vw, 1.14rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.child-seo-program li::marker {
  color: #101010;
  font-size: 0.78em;
}

.child-final-cta {
  position: relative;
  z-index: 2;
  padding: clamp(96px, 10vw, 152px) var(--page-gutter) clamp(104px, 11vw, 160px);
  background: #ffffff;
  color: rgb(31, 31, 31);
  border-top: 1px solid rgba(16, 16, 16, 0.1);
}

.child-final-cta__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.child-final-cta__title,
.child-final-cta__text {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-weight: 360;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.child-final-cta__title {
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
}

.child-final-cta__text {
  margin-top: clamp(18px, 2.4vw, 30px);
  color: rgba(31, 31, 31, 0.62);
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}

.child-final-cta__separator {
  width: 56px;
  height: 1px;
  margin: clamp(34px, 4vw, 52px) auto;
  background: rgba(31, 31, 31, 0.26);
}

.child-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: #ebeae6;
  color: #3f3837;
  box-shadow: 0 16px 34px rgba(80, 63, 60, 0.12);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.child-final-cta__button::after {
  content: "\2192";
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.child-final-cta__button:hover,
.child-final-cta__button:focus-visible {
  background: #deddd8;
  box-shadow: 0 20px 42px rgba(80, 63, 60, 0.16);
  transform: translateY(-2px);
}

.child-final-cta__button:hover::after,
.child-final-cta__button:focus-visible::after {
  transform: translateX(4px);
}

.woman-themes__profile {
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  align-content: start;
  padding-top: 0;
}

.woman-themes__image {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: auto;
  height: auto;
  justify-self: stretch;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  box-shadow:
    0 24px 58px rgba(31, 31, 31, 0.1),
    0 8px 22px rgba(31, 31, 31, 0.06);
}

.woman-themes__list {
  align-self: start;
}

.woman-themes__card-copy {
  display: grid;
  gap: 18px;
}

.woman-themes__card-copy h3 {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.15rem, 3.3vw, 3.35rem);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.065em;
}

.woman-themes__card-copy p {
  margin: 0;
  max-width: 31rem;
  color: rgba(31, 31, 31, 0.62);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: -0.02em;
}

.woman-themes__list {
  margin-top: clamp(34px, 4.4vw, 76px);
  border-top: 1px solid #c7c3c0;
}

.woman-themes__item {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  min-height: 64px;
  padding: clamp(16px, 1.8vh, 22px) 0;
  border-bottom: 1px solid #c7c3c0;
}

.woman-themes__number {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 28px;
  padding: 0 13px;
  color: #40393b;
  border: 1px solid rgba(31, 31, 31, 0.72);
  border-radius: 999px;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.02em;
}

.woman-themes__item h3 {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.woman-fixed-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(84px, 10vw, 132px) var(--page-gutter);
  border-radius: 28px 28px 0 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(18, 16, 15, 0.68) 0%, rgba(18, 16, 15, 0.38) 42%, rgba(18, 16, 15, 0.16) 100%),
    linear-gradient(180deg, rgba(18, 16, 15, 0.12), rgba(18, 16, 15, 0.36)),
    url("../images/zena-program-fixed-bg.webp") center / cover no-repeat fixed;
}

.woman-fixed-image__inner {
  width: min(calc(100vw - 76px), 1790px);
  margin: 0 auto;
  display: grid;
  min-height: calc(100svh - clamp(168px, 20vw, 264px));
  align-content: center;
}

.woman-fixed-image__content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(56px, 8vw, 148px);
  align-items: center;
}

.woman-fixed-image__eyebrow,
.woman-fixed-image__label {
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.woman-fixed-image__title {
  margin: 0;
  max-width: 10.5ch;
  color: #ffffff;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(4.2rem, 8.4vw, 9.4rem);
  font-weight: 620;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.woman-fixed-image__list {
  width: min(100%, 420px);
  margin-top: clamp(46px, 6vw, 74px);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.woman-fixed-image__list p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.15rem, 1.25vw, 1.35rem);
  font-weight: 520;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.woman-fixed-image__list span {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 520;
}

.woman-fixed-image__support {
  width: min(100%, 640px);
  margin-left: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.woman-fixed-image__support p {
  position: relative;
  margin: 0;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.15rem, 1.25vw, 1.35rem);
  font-weight: 520;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.woman-fixed-image__support p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.02em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.woman-fixed-image__label {
  position: absolute;
  right: var(--page-gutter);
  top: clamp(82px, 9vw, 130px);
  margin: 0;
}

.woman-program-cta {
  position: relative;
  z-index: 3;
  padding: clamp(92px, 10vw, 148px) var(--page-gutter) clamp(104px, 11vw, 156px);
  background: #ffffff;
  color: rgb(31, 31, 31);
}

.woman-program-cta__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.woman-program-cta__title,
.woman-program-cta__text {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-weight: 360;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.woman-program-cta__title {
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
}

.woman-program-cta__separator {
  width: 56px;
  height: 1px;
  margin: clamp(32px, 4vw, 48px) auto;
  background: rgba(31, 31, 31, 0.26);
}

.woman-program-cta__text {
  font-size: clamp(1.35rem, 2.6vw, 2.7rem);
}

.woman-program-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  margin-top: clamp(38px, 4.6vw, 58px);
  padding: 0 30px;
  border-radius: 999px;
  background: #ebeae6;
  color: #3f3837;
  box-shadow: 0 16px 34px rgba(80, 63, 60, 0.12);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.woman-program-cta__button::after {
  content: "\2192";
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.woman-program-cta__button:hover,
.woman-program-cta__button:focus-visible {
  background: #deddd8;
  box-shadow: 0 20px 42px rgba(80, 63, 60, 0.16);
  transform: translateY(-2px);
}

.woman-program-cta__button:hover::after,
.woman-program-cta__button:focus-visible::after {
  transform: translateX(4px);
}

@media (max-width: 920px) {
  .woman-themes__head,
  .woman-themes__content {
    grid-template-columns: 1fr;
  }

  .woman-themes__title {
    max-width: 14ch;
  }

  .woman-fixed-image {
    min-height: 100svh;
    padding: 76px 22px 84px;
    border-radius: 24px 24px 0 0;
    background-attachment: scroll;
  }

  .woman-fixed-image__inner {
    width: 100%;
    min-height: calc(100svh - 160px);
  }

  .woman-fixed-image__content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .woman-fixed-image__title {
    max-width: 9.5ch;
    font-size: clamp(3.3rem, 17vw, 5.8rem);
  }

  .woman-fixed-image__list {
    width: 100%;
  }

  .woman-fixed-image__support {
    width: 100%;
    margin-left: 0;
  }

  .woman-fixed-image__support p {
    font-size: 1rem;
    line-height: 1.26;
  }

  .woman-fixed-image__label {
    position: static;
    margin-top: 28px;
  }

  .woman-program-cta {
    padding: 76px 22px 86px;
  }

  .woman-program-cta__title {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
    line-height: 1.02;
  }

  .woman-program-cta__text {
    font-size: clamp(1.35rem, 5vw, 1.9rem);
    line-height: 1.02;
  }

  .woman-program-cta__button {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
  }

  .child-work {
    min-height: 100svh;
    padding: 76px 22px 86px;
    border-radius: 24px 24px 0 0;
    background-attachment: scroll;
  }

  .child-work__inner {
    width: 100%;
    min-height: calc(100svh - 162px);
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .child-work__title,
  .child-work__result-title {
    font-size: clamp(2.85rem, 14vw, 4.8rem);
  }

  .child-work__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .child-work-card {
    min-height: auto;
  }

  .child-work__results {
    width: 100%;
  }

  .child-programs-clean {
    padding: 58px 22px 82px;
  }

  .child-programs-clean__inner {
    width: 100%;
  }

  .child-programs-clean__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .child-programs-clean__eyebrow,
  .child-programs-clean__title,
  .child-programs-clean__intro {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .child-programs-clean__title {
    max-width: 11.5ch;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    line-height: 1.02;
  }

  .child-programs-clean__grid,
  .child-program-card--wide {
    grid-template-columns: 1fr;
  }

  .child-program-card {
    padding: 24px 20px;
  }

  .child-program-card__head h3 {
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }

  .child-program-card li {
    font-size: 16px;
    line-height: 1.36;
  }

  .child-seo-programs__head {
    position: relative;
    top: auto;
    width: 100%;
    padding: 64px 22px 52px;
    text-align: left;
  }

  .child-seo-programs__head h2 {
    margin-left: 0;
    font-size: clamp(2.7rem, 12vw, 4.3rem);
    line-height: 0.96;
  }

  .child-seo-programs__grid {
    grid-template-columns: 1fr;
  }

  .child-seo-program {
    min-height: auto;
    padding: 38px 22px 48px;
    border-right: 0;
    border-bottom: 1px dashed rgba(16, 16, 16, 0.22);
  }

  .child-seo-program h3 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
    line-height: 0.98;
  }

  .child-seo-program__sticky {
    position: static;
    min-height: auto;
    padding: 0;
  }

  .child-seo-program__age {
    margin-bottom: 34px;
    font-size: 1.25rem;
  }

  .child-seo-program li {
    font-size: 16px;
    line-height: 1.28;
  }

  .child-final-cta {
    padding: 76px 22px 86px;
  }

  .child-final-cta__title {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
    line-height: 1.02;
  }

  .child-final-cta__text {
    font-size: clamp(1.45rem, 6vw, 2.1rem);
    line-height: 1.08;
  }

  .child-final-cta__button {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
  }
}

.individual-recognition {
  position: relative;
  z-index: 2;
  width: min(100% - 2px, 100vw);
  margin: 0 auto;
  padding: clamp(58px, 6.5vw, 86px) var(--page-gutter) clamp(70px, 8vw, 104px);
  border-radius: 0;
  background: #f3f3f3;
  box-shadow: none;
}

.individual-recognition__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: clamp(26px, 4vw, 38px);
  align-items: start;
}

.individual-recognition__head {
  position: static;
  text-align: center;
}

.individual-recognition__eyebrow {
  margin: 0 0 18px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.individual-recognition__title {
  margin: 0;
  max-width: none;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.15rem, 3.4vw, 3.9rem);
  font-weight: 430;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
  white-space: nowrap;
}

.individual-recognition__title span {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

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

.individual-recognition-card {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 28px rgba(31, 31, 31, 0.1), 0 2px 8px rgba(31, 31, 31, 0.05);
}

.individual-recognition-card__media {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 6px 6px 0;
  aspect-ratio: 1.25 / 1;
  border-radius: 16px;
  background: #ebeae6;
  box-shadow: 0 14px 22px -12px rgba(31, 31, 31, 0.32), 0 6px 16px -12px rgba(31, 31, 31, 0.24);
}

.individual-recognition-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.individual-recognition-card:hover .individual-recognition-card__image,
.individual-recognition-card:focus-within .individual-recognition-card__image {
  transform: scale(1.07);
}

.individual-recognition-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 15px 42px 17px 17px;
  border-radius: 0 0 20px 20px;
  background: #ffffff;
}

.individual-recognition-card__body::after {
  content: "\2197";
  position: absolute;
  right: 17px;
  top: 24px;
  color: rgba(166, 167, 154, 0.6);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1;
  transform: translate(0, 0);
  transition: color 220ms ease, transform 220ms ease;
}

.individual-recognition-card:hover .individual-recognition-card__body::after {
  color: #a6a79a;
  transform: translate(3px, -3px);
}

.individual-recognition-card__number {
  color: #a6a79a;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  order: 2;
}

.individual-recognition-card__title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  font-weight: 430;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
  order: 1;
}

.individual-gains {
  position: relative;
  z-index: 2;
  padding: clamp(78px, 8vw, 118px) var(--page-gutter) clamp(92px, 10vw, 138px);
  background: #ebeae6;
  border-top: 1px solid #c7c3c0;
}

.individual-gains__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: clamp(42px, 6vw, 74px);
}

.individual-gains__head {
  display: block;
  text-align: center;
}

.individual-gains__eyebrow {
  margin: 0 0 16px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.individual-gains__title {
  margin: 0 auto;
  max-width: none;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.15rem, 3.4vw, 3.9rem);
  font-weight: 430;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
  white-space: nowrap;
}

.individual-gains__title span {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.individual-gains__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #c7c3c0;
  border-left: 1px solid #c7c3c0;
}

.individual-gains__item {
  min-height: 190px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid #c7c3c0;
  border-bottom: 1px solid #c7c3c0;
}

.individual-gains__number {
  display: block;
  margin-bottom: clamp(28px, 4vw, 48px);
  color: #c6c3c1;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.individual-gains__item p {
  margin: 0;
  max-width: 18rem;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 350;
  line-height: 1.34;
  letter-spacing: 0;
}

.individual-topics {
  --topics-column-mask-height: clamp(380px, 43vh, 430px);
  position: relative;
  z-index: 2;
  min-height: 220svh;
  padding: clamp(72px, 8vw, 112px) 0 clamp(120px, 18vw, 220px);
  background: #ffffff;
  border-top: 1px solid rgba(115, 114, 111, 0.14);
}

.individual-topics__inner {
  width: 100%;
  margin: 0 auto;
}

.individual-topics__head {
  position: sticky;
  top: 0;
  z-index: 3;
  width: min(100% - (var(--page-gutter) * 2), 1180px);
  margin: 0 auto;
  padding: clamp(82px, 10vh, 118px) 0 clamp(28px, 4vw, 46px);
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff calc(100% - 34px), rgba(255, 255, 255, 0) 100%);
}

.individual-topics__eyebrow {
  margin: 0 0 18px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.individual-topics__title {
  margin: 0 auto;
  max-width: 16ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.15rem, 3.4vw, 3.9rem);
  font-weight: 430;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
}

.individual-topics__intro {
  margin: clamp(16px, 2vw, 24px) auto 0;
  max-width: 34rem;
  color: rgba(31, 31, 31, 0.6);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.018em;
  text-align: center;
}

.individual-topics__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  padding-top: 44svh;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 120px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 120px, #000 calc(100% - 40px), transparent 100%);
}

.individual-topics__column {
  position: relative;
  min-height: 90svh;
  padding: 0 clamp(18px, 2vw, 30px);
  border-left: 1px dashed rgba(115, 114, 111, 0.24);
}

.individual-topics__column::before {
  content: "";
  position: sticky;
  top: 0;
  z-index: 1;
  display: block;
  height: var(--topics-column-mask-height);
  margin-bottom: calc(var(--topics-column-mask-height) * -1);
  background: #ffffff;
  pointer-events: none;
}

.individual-topics__column:last-child {
  border-right: 1px dashed rgba(115, 114, 111, 0.24);
}

.individual-topics__group {
  position: sticky;
  top: clamp(286px, 35vh, 332px);
  z-index: 2;
  margin: 0 0 clamp(34px, 5vw, 58px);
  padding: 0 0 28px;
  color: rgb(31, 31, 31);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff calc(100% - 16px), rgba(255, 255, 255, 0) 100%);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.15vw, 2.55rem);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.individual-topics__list {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: clamp(190px, 24vh, 240px) 0 0;
  list-style: none;
}

.individual-topics__list li {
  color: rgba(31, 31, 31, 0.86);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.96rem, 1.05vw, 1.12rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.individual-soft-cta {
  position: relative;
  z-index: 2;
  padding: clamp(84px, 10vw, 132px) var(--page-gutter) clamp(92px, 11vw, 142px);
  border-top: 1px solid #c7c3c0;
  background: #ebeae6;
}

.individual-soft-cta__inner {
  width: min(100%, 900px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: clamp(20px, 3vw, 32px);
  text-align: center;
}

.individual-soft-cta__title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.15rem, 3.4vw, 3.9rem);
  font-weight: 430;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.individual-soft-cta__text {
  margin: -4px 0 0;
  color: rgba(31, 31, 31, 0.7);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  font-weight: 350;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.individual-soft-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  margin-top: 8px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(64, 57, 59, 0.12);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.individual-soft-cta__button::after {
  content: "\2192";
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.individual-soft-cta__button:hover,
.individual-soft-cta__button:focus-visible {
  background: #f7f7f7;
  box-shadow: 0 20px 42px rgba(64, 57, 59, 0.16);
  transform: translateY(-2px);
}

.individual-soft-cta__button:hover::after,
.individual-soft-cta__button:focus-visible::after {
  transform: translateX(4px);
}

@media (max-width: 1180px) {
  .individual-topics__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .individual-recognition__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .individual-recognition__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .individual-recognition__head {
    position: static;
  }

  .individual-recognition__title {
    max-width: none;
  }

  .individual-gains__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .individual-topics {
    min-height: auto;
    --topics-column-mask-height: clamp(340px, 41vh, 390px);
  }

  .individual-topics__columns {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 24svh;
  }

  .individual-topics__column,
  .individual-topics__column:last-child {
    padding: 0;
    border-right: 0;
    border-left: 0;
  }

  .individual-topics__column {
    padding-top: 34px;
    border-top: 1px solid rgba(115, 114, 111, 0.16);
  }

  .individual-topics__group {
    top: clamp(266px, 34vh, 306px);
  }
}

@media (max-width: 640px) {
  .individual-recognition {
    padding: 56px 22px 68px;
    border-radius: 0;
  }

  .individual-recognition__inner {
    gap: 30px;
  }

  .individual-recognition__eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .individual-recognition__title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.04;
  }

  .individual-recognition__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .individual-recognition-card__media {
    aspect-ratio: 1.34 / 1;
    border-radius: 18px;
  }

  .individual-recognition-card__body {
    min-height: 82px;
    padding: 16px 50px 18px 18px;
    border-radius: 0 0 21px 21px;
  }

  .individual-recognition-card__body::after {
    right: 22px;
    top: 27px;
    font-size: 20px;
  }

  .individual-recognition-card {
    min-height: 0;
    border-radius: 21px;
  }

  .individual-recognition-card__body {
    min-height: 0;
    gap: 8px;
    padding: 16px 50px 18px 18px;
  }

  .individual-recognition-card__number {
    font-size: 11px;
  }

  .individual-recognition-card__title {
    font-size: clamp(1rem, 4.6vw, 1.2rem);
    line-height: 1.26;
  }

  .individual-recognition__item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 21px 0;
    font-size: clamp(1.2rem, 5.6vw, 1.55rem);
    line-height: 1.24;
  }

  .individual-recognition__number {
    padding-top: 0.45em;
    font-size: 11px;
  }

  .individual-gains {
    padding: 56px 22px 72px;
  }

  .individual-gains__inner {
    gap: 32px;
  }

  .individual-gains__eyebrow {
    font-size: 12px;
  }

  .individual-gains__title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.04;
  }

  .individual-gains__grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .individual-gains__item {
    min-height: 0;
    padding: 24px 18px;
    border-right: 0;
  }

  .individual-gains__number {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .individual-gains__item p {
    max-width: 100%;
    font-size: clamp(1.08rem, 5vw, 1.35rem);
    line-height: 1.36;
  }

  .individual-topics {
    min-height: auto;
    padding: 54px 16px 68px;
    background: #f7f7f7;
    border-top: 0;
  }

  .individual-topics__head {
    position: static;
    width: 100%;
    padding: 0 6px 26px;
    text-align: left;
    background: transparent;
  }

  .individual-topics__eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .individual-topics__title {
    margin: 0;
    max-width: 12.5ch;
    font-size: clamp(2.05rem, 9.4vw, 2.8rem);
    line-height: 1.04;
    text-align: left;
  }

  .individual-topics__intro {
    margin: 16px 0 0;
    max-width: 22rem;
    font-size: 16px;
    line-height: 1.42;
    text-align: left;
  }

  .individual-topics__columns {
    counter-reset: individual-topics;
    gap: 14px;
    padding-top: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .individual-topics__column {
    counter-increment: individual-topics;
    min-height: 0;
    padding: 18px 16px 20px;
    overflow: hidden;
    border: 1px solid rgba(115, 114, 111, 0.14);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(64, 57, 59, 0.08);
  }

  .individual-topics__column::before {
    display: none;
  }

  .individual-topics__group {
    display: grid;
    gap: 10px;
    position: static;
    margin: 0 0 14px;
    max-width: 17.5ch;
    padding: 0 0 14px;
    border-top: 0;
    border-bottom: 1px solid rgba(115, 114, 111, 0.16);
    background: transparent;
    font-size: clamp(1.08rem, 5vw, 1.26rem);
    font-weight: 560;
    line-height: 1.12;
    text-wrap: balance;
  }

  .individual-topics__group::before {
    content: counter(individual-topics, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 26px;
    margin-top: 1px;
    border: 1px solid rgba(115, 114, 111, 0.28);
    border-radius: 999px;
    color: rgba(31, 31, 31, 0.64);
    font-size: 11px;
    font-weight: 520;
    line-height: 1;
  }

  .individual-topics__list {
    gap: 9px;
    padding-top: 0;
  }

  .individual-topics__list li {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    min-width: 0;
    font-size: 14.5px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .individual-topics__list li::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-top: 0.6em;
    border-radius: 999px;
    background: #c8a39d;
  }

  .individual-soft-cta {
    padding: 66px 22px 78px;
  }

  .individual-soft-cta__inner {
    gap: 18px;
  }

  .individual-soft-cta__title {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.04;
  }

  .individual-soft-cta__text {
    max-width: 20rem;
    font-size: 18px;
  }

  .individual-soft-cta__button {
    width: 100%;
    min-height: 56px;
  }
}

.first-step-flow {
  position: relative;
  z-index: 3;
  padding: clamp(92px, 10vw, 142px) var(--page-gutter);
  background: #ffffff;
}

.first-step-flow__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}

.first-step-flow__profile {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.first-step-flow__portrait {
  display: block;
  width: min(100%, 390px);
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  object-fit: cover;
  object-position: center top;
  box-shadow:
    0 26px 64px rgba(64, 57, 59, 0.14),
    0 10px 24px rgba(64, 57, 59, 0.08);
}

.first-step-flow__signature {
  display: block;
  justify-self: center;
  width: min(72%, 320px);
  margin: 4px auto 0;
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: 0.92;
}

.first-step-flow__content {
  min-width: 0;
}

.first-step-flow__eyebrow {
  margin: 0 0 22px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.first-step-flow__title {
  margin: 0;
  max-width: 11ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.65rem, 5vw, 5.6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.first-step-flow__list {
  margin-top: clamp(46px, 6vw, 76px);
  border-top: 1px solid rgba(64, 57, 59, 0.14);
}

.first-step-flow__item {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 3.5vw, 40px) 0;
  border-bottom: 1px solid rgba(64, 57, 59, 0.14);
}

.first-step-flow__number {
  color: #bfb3a4;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.first-step-flow__item h3 {
  margin: 0;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.first-step-flow__item p {
  margin: 12px 0 0;
  max-width: 520px;
  color: rgba(31, 31, 31, 0.66);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: -0.02em;
}

.first-step-clarity {
  position: relative;
  z-index: 3;
  padding: clamp(88px, 10vw, 138px) var(--page-gutter) clamp(96px, 11vw, 152px);
  background: #ffffff;
}

.first-step-clarity__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.first-step-clarity__block {
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(42px, 6vw, 72px) 0;
  border-top: 1px solid rgba(64, 57, 59, 0.14);
}

.first-step-clarity__block:last-child {
  border-bottom: 1px solid rgba(64, 57, 59, 0.14);
}

.first-step-clarity__eyebrow {
  margin: 0 0 22px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.first-step-clarity__title {
  margin: 0;
  max-width: 11ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.45rem, 4.7vw, 5.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.first-step-clarity__not-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(64, 57, 59, 0.14);
}

.first-step-clarity__not-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(64, 57, 59, 0.14);
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.first-step-clarity__not-list li span {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  background: #73726f;
  mask: url("../images/home-truth-icon.svg") center / contain no-repeat;
}

.first-step-clarity__fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.first-step-clarity__fit-list p {
  position: relative;
  min-height: 116px;
  margin: 0;
  padding: 24px 24px 24px 52px;
  border: 1px solid rgba(64, 57, 59, 0.12);
  border-radius: 22px;
  background: #fbfaf8;
  color: rgba(31, 31, 31, 0.78);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.028em;
}

.first-step-clarity__fit-list p::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bfb3a4;
}

.first-step-clarity__block--close {
  align-items: end;
}

.first-step-clarity__trust p {
  margin: 0;
  max-width: 520px;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.first-step-clarity__trust span {
  display: inline-block;
  margin-top: 22px;
  color: rgba(31, 31, 31, 0.58);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.first-step-clarity__cta {
  display: grid;
  justify-items: start;
  gap: 28px;
}

.first-step-clarity__cta h2 {
  margin: 0;
  max-width: 10ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.45rem, 4.7vw, 5.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.first-step-clarity__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ebeae6;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(80, 63, 60, 0.1);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.first-step-clarity__cta a::after {
  content: "\2192";
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.first-step-clarity__cta a:hover,
.first-step-clarity__cta a:focus-visible {
  background: #deddd8;
  box-shadow: 0 20px 42px rgba(80, 63, 60, 0.16);
  transform: translateY(-2px);
}

.first-step-clarity__cta a:hover::after,
.first-step-clarity__cta a:focus-visible::after {
  transform: translateX(4px);
}

.work-method-page {
  position: relative;
  overflow: visible;
  background: #ffffff;
}

.work-method-page::before {
  content: "";
  display: block;
  height: 100svh;
}

.work-method-hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #d8d9d7;
}

.work-method-hero__media {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}

.work-method-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 16, 15, 0.5) 0%, rgba(18, 16, 15, 0.16) 46%, rgba(18, 16, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(18, 16, 15, 0.34) 0%, rgba(18, 16, 15, 0.08) 42%, rgba(18, 16, 15, 0.48) 100%);
  pointer-events: none;
}

.work-method-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  will-change: transform;
}

.work-method-hero__content {
  position: absolute;
  top: clamp(142px, 17vh, 206px);
  left: clamp(24px, 5.2vw, 92px);
  width: min(1120px, calc(100% - 48px));
  display: grid;
  gap: 16px;
}

.work-method-hero__eyebrow {
  margin: 0;
  color: rgba(255, 253, 248, 0.8);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.work-method-hero__title {
  margin: 0;
  color: #fffdf8;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.45rem, 4.25vw, 4.8rem);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.work-method-hero__title span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.04em;
  opacity: 0;
  transform: translate3d(0, 42%, 0);
  animation: firstStepHeroReveal 880ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.work-method-hero__title span:nth-child(1) {
  animation-delay: 220ms;
}

.work-method-hero__title span:nth-child(2) {
  animation-delay: 340ms;
}

.work-method-hero__title span:nth-child(3) {
  animation-delay: 460ms;
}

.work-method-hero__title span:nth-child(4) {
  animation-delay: 580ms;
}

.work-method-hero__text {
  display: grid;
  gap: 4px;
  margin: 6px 0 0;
  max-width: 650px;
  color: rgba(255, 253, 248, 0.88);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.02rem, 1.35vw, 1.26rem);
  font-weight: 430;
  letter-spacing: -0.02em;
  line-height: 1.38;
}

.work-method-hero__text span {
  display: block;
  opacity: 0;
  transform: translate3d(0, 28%, 0);
  animation: firstStepHeroReveal 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.work-method-hero__text span:nth-child(1) {
  animation-delay: 560ms;
}

.work-method-hero__text span:nth-child(2) {
  animation-delay: 680ms;
}

.work-method-topics {
  position: relative;
  z-index: 2;
  width: min(100% - 2px, 100vw);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) var(--page-gutter) clamp(86px, 10vw, 146px);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.work-method-topics__inner {
  width: min(100%, 1160px);
  margin: 0 auto;
  display: block;
}

.work-method-topics__head {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.work-method-topics__eyebrow {
  margin: 0 0 22px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.26em;
  line-height: 1.1;
  text-transform: uppercase;
}

.work-method-topics__title {
  margin: 0 auto;
  max-width: none;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.25rem, 5.8vw, 4.35rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.work-method-topics__intro {
  margin: 28px 0 0;
  max-width: 360px;
  color: rgba(31, 31, 31, 0.62);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 430;
  line-height: 1.45;
}

.work-method-topics__list {
  margin-top: clamp(54px, 7vw, 90px);
  border-top: 1px solid #c7c3c0;
  counter-reset: work-topic;
}

.work-method-topic {
  counter-increment: work-topic;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 5vw, 68px);
  padding: clamp(34px, 4vw, 48px) 0;
  border-bottom: 1px solid #c7c3c0;
}

.work-method-topic__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(64, 57, 59, 0.22);
  border-radius: 50%;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 0;
  font-weight: 430;
  line-height: 1;
}

.work-method-topic__mark::before {
  content: counter(work-topic);
  font-size: 16px;
}

.work-method-topic h3 {
  margin: 0;
  padding-top: 8px;
  max-width: 24ch;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.work-method-topic p {
  margin: 12px 0 0;
  color: rgba(31, 31, 31, 0.58);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 430;
  line-height: 1.42;
}

.work-method-process {
  position: relative;
  z-index: 3;
  padding: clamp(86px, 10vw, 148px) var(--page-gutter);
  background: #fff;
}

.work-method-process__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(430px, 1fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.work-method-process__head {
  position: sticky;
  top: 108px;
}

.work-method-process__eyebrow {
  margin: 0 0 22px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.26em;
  line-height: 1.1;
  text-transform: uppercase;
}

.work-method-process__title {
  margin: 0;
  max-width: 10ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.work-method-process__steps {
  border-top: 1px solid rgba(64, 57, 59, 0.14);
}

.work-method-process__step {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(34px, 4.8vw, 56px) 0;
  border-bottom: 1px solid rgba(64, 57, 59, 0.14);
}

.work-method-process__number {
  color: #bfb3a4;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: 0.14em;
  line-height: 1;
}

.work-method-process__step h3 {
  margin: 0;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 1;
}

.work-method-process__step p {
  margin: 16px 0 0;
  max-width: 560px;
  color: #5c6063;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 430;
  line-height: 1.48;
}

.work-method-guide {
  position: relative;
  z-index: 3;
  padding: clamp(92px, 10vw, 154px) var(--page-gutter);
  background: #fff;
}

.work-method-guide__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(430px, 1fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
}

.work-method-guide__media {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #f2eadf;
  box-shadow:
    0 28px 74px rgba(64, 57, 59, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.work-method-guide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: inherit;
  pointer-events: none;
}

.work-method-guide__image {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 10;
  object-fit: cover;
  object-position: center top;
}

.work-method-guide__content {
  min-width: 0;
}

.work-method-guide__eyebrow {
  margin: 0 0 24px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.26em;
  line-height: 1.1;
  text-transform: uppercase;
}

.work-method-guide__title {
  margin: 0;
  max-width: 12ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.work-method-guide__text {
  display: grid;
  gap: 22px;
  margin-top: clamp(36px, 5vw, 64px);
  max-width: 620px;
  color: #5c6063;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 430;
  line-height: 1.52;
}

.work-method-guide__text p {
  margin: 0;
}

.work-method-guide__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(34px, 5vw, 54px);
}

.work-method-guide__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(115, 114, 111, 0.24);
  border-radius: 999px;
  color: #40393b;
  background: rgba(242, 234, 223, 0.55);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: -0.01em;
}

.work-method-guide__signature {
  margin: clamp(32px, 5vw, 58px) 0 0;
  color: #40393b;
  font-family: "Segoe Script", "Brush Script MT", "Snell Roundhand", cursive;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  transform: rotate(-4deg);
  transform-origin: left center;
}

.work-method-forms {
  position: relative;
  z-index: 3;
  padding: clamp(88px, 10vw, 150px) var(--page-gutter);
  background: #f7f7f7;
  border-top: 1px solid #c7c3c0;
}

.work-method-forms__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(430px, 1fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.work-method-forms__head {
  position: sticky;
  top: 108px;
}

.work-method-forms__eyebrow,
.work-method-fit__eyebrow,
.work-method-start__eyebrow {
  margin: 0 0 22px;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.26em;
  line-height: 1.1;
  text-transform: uppercase;
}

.work-method-forms__eyebrow {
  color: #a6a69a;
}

.work-method-forms__title {
  margin: 0;
  max-width: 11ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(3rem, 5.8vw, 5.55rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 0.96;
}

.work-method-forms__intro {
  margin: 30px 0 0;
  max-width: 430px;
  color: rgba(31, 31, 31, 0.64);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.5;
}

.work-method-forms__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-method-form {
  min-height: clamp(220px, 18vw, 278px);
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  border: 1px solid #c7c3c0;
  border-radius: 8px;
  background: #ebeae6;
  box-shadow: 0 18px 42px rgba(64, 57, 59, 0.06);
}

.work-method-form--featured {
  grid-column: 1 / -1;
  min-height: clamp(300px, 28vw, 430px);
  color: rgb(31, 31, 31);
  background:
    linear-gradient(145deg, rgba(247, 247, 247, 0.24) 0%, rgba(247, 247, 247, 0) 42%),
    #a6a69a;
  border-color: #a6a69a;
}

.work-method-form:nth-child(3) {
  background: #f7f7f7;
  border-color: #c8a39d;
}

.work-method-form--quiet {
  grid-column: 1 / -1;
  min-height: clamp(190px, 15vw, 238px);
  background: #ebeae6;
  border-color: #c8a39d;
}

.work-method-form--quiet > div {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(220px, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: end;
}

.work-method-form__index {
  color: #a6a69a;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.16em;
  line-height: 1;
}

.work-method-form--featured .work-method-form__index {
  color: rgba(31, 31, 31, 0.5);
}

.work-method-form:nth-child(3) .work-method-form__index {
  color: #c8a39d;
}

.work-method-form--quiet .work-method-form__index {
  color: rgba(31, 31, 31, 0.46);
}

.work-method-form h3 {
  margin: 0;
  max-width: 11ch;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: normal;
}

.work-method-form--featured h3 {
  max-width: 12ch;
  color: rgb(31, 31, 31);
  font-size: clamp(2.5rem, 4vw, 4.35rem);
  line-height: 0.98;
}

.work-method-form--quiet h3 {
  max-width: 15ch;
}

.work-method-form p {
  margin: 18px 0 0;
  max-width: 390px;
  color: rgba(31, 31, 31, 0.64);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.48;
}

.work-method-form--featured p {
  color: rgba(31, 31, 31, 0.72);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

.work-method-form--quiet p {
  margin-top: 0;
  max-width: 460px;
}

.work-method-fit {
  position: relative;
  z-index: 3;
  padding: clamp(82px, 9vw, 136px) var(--page-gutter);
  color: #2f2b2c;
  background: #ebeae6;
}

.work-method-fit__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
}

.work-method-fit__column {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #c7c3c0;
  border-radius: 8px;
  background: #ebeae6;
}

.work-method-fit__column--not {
  color: #fffdf8;
  background: #c8a39d;
  border-color: #c8a39d;
}

.work-method-fit__column--yes {
  background: #f7f7f7;
  color: #2f2b2c;
}

.work-method-fit__eyebrow {
  color: #73726f;
}

.work-method-fit__column--yes .work-method-fit__eyebrow {
  color: #73726f;
}

.work-method-fit__column--not .work-method-fit__eyebrow {
  color: rgba(255, 253, 248, 0.72);
}

.work-method-fit__title {
  margin: 0;
  max-width: 10ch;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 0.98;
}

.work-method-fit__list {
  list-style: none;
  margin: clamp(46px, 6vw, 76px) 0 0;
  padding: 0;
  border-top: 1px solid #c7c3c0;
}

.work-method-fit__column--yes .work-method-fit__list {
  border-top-color: #c7c3c0;
}

.work-method-fit__column--not .work-method-fit__list {
  border-top-color: rgba(255, 253, 248, 0.34);
}

.work-method-fit__list li {
  position: relative;
  margin: 0;
  padding: 22px 0 22px 38px;
  border-bottom: 1px solid #c7c3c0;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.32;
}

.work-method-fit__column--yes .work-method-fit__list li {
  border-bottom-color: #c7c3c0;
}

.work-method-fit__column--not .work-method-fit__list li {
  border-bottom-color: rgba(255, 253, 248, 0.34);
}

.work-method-fit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.48;
}

.work-method-fit__column--yes .work-method-fit__list li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 24px;
  width: 2px;
  height: 18px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.48;
}

.work-method-start {
  position: relative;
  z-index: 3;
  padding: clamp(84px, 10vw, 148px) var(--page-gutter) clamp(96px, 11vw, 160px);
  background: #ffffff;
}

.work-method-start__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  justify-items: start;
  gap: clamp(26px, 4vw, 42px);
}

.work-method-start__eyebrow {
  margin-bottom: 0;
  color: #73726f;
}

.work-method-start__title {
  margin: 0;
  max-width: 15ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(3rem, 6.5vw, 6.6rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 0.94;
}

.work-method-start__title span {
  display: block;
}

.work-method-start__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ebeae6;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(64, 57, 59, 0.1);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.work-method-start__button::after {
  content: "\2192";
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.work-method-start__button:hover,
.work-method-start__button:focus-visible {
  background: #c7c3c0;
  box-shadow: 0 20px 42px rgba(64, 57, 59, 0.14);
  transform: translateY(-2px);
}

.work-method-start__button:hover::after,
.work-method-start__button:focus-visible::after {
  transform: translateX(4px);
}

.page-work-method :is(
  .work-method-hero__title,
  .work-method-topics__title,
  .work-method-topic h3,
  .work-method-process__title,
  .work-method-process__step h3,
  .work-method-guide__title,
  .work-method-forms__title,
  .work-method-form h3,
  .work-method-fit__title,
  .work-method-start__title
) {
  letter-spacing: -0.055em;
}

@media (max-width: 920px) {
  .work-method-topics__inner,
  .work-method-process__inner,
  .work-method-guide__inner,
  .work-method-forms__inner,
  .work-method-fit__inner {
    grid-template-columns: 1fr;
  }

  .work-method-topics__head,
  .work-method-process__head,
  .work-method-forms__head {
    position: static;
  }

  .work-method-topics__title,
  .work-method-process__title,
  .work-method-guide__title,
  .work-method-forms__title,
  .work-method-fit__title {
    max-width: 11ch;
  }

  .work-method-topics__title {
    max-width: none;
  }

  .work-method-guide__media {
    width: min(100%, 526px);
  }

  .work-method-form--featured {
    min-height: clamp(360px, 62vw, 520px);
  }
}

@media (max-width: 640px) {
  .work-method-hero {
    height: 100svh;
    min-height: 100svh;
  }

  .work-method-hero__image {
    height: 100%;
    object-position: center;
  }

  .work-method-hero__content {
    inset: auto 22px clamp(150px, 19svh, 190px);
    width: auto;
    gap: 12px;
  }

  .work-method-hero__title {
    font-size: clamp(2.05rem, 9.3vw, 3.15rem);
    line-height: 1;
  }

  .work-method-hero__text {
    max-width: 22rem;
    font-size: 16px;
  }

  .work-method-topics {
    padding: 58px 22px 76px;
    border-radius: 0;
  }

  .work-method-topics__head {
    text-align: center;
  }

  .work-method-topics__title {
    max-width: none;
    font-size: clamp(2.25rem, 12vw, 3.25rem);
    line-height: 1;
  }

  .work-method-topics__list {
    margin-top: 46px;
  }

  .work-method-topic {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    padding: 26px 0 28px;
  }

  .work-method-topic__mark {
    width: 44px;
    height: 44px;
  }

  .work-method-topic__mark::before {
    font-size: 15px;
  }

  .work-method-topic h3 {
    padding-top: 8px;
    font-size: 1.65rem;
    line-height: 1.08;
  }

  .work-method-process {
    padding: 62px 22px 78px;
  }

  .work-method-process__title {
    max-width: 10ch;
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .work-method-process__step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 30px 0;
  }

  .work-method-process__step h3 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .work-method-process__step p br {
    display: none;
  }

  .work-method-guide {
    padding: 68px 22px 82px;
  }

  .work-method-guide__media {
    border-radius: 24px;
  }

  .work-method-guide__title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .work-method-guide__text {
    margin-top: 32px;
    font-size: 16px;
  }

  .work-method-guide__notes {
    align-items: stretch;
    flex-direction: column;
  }

  .work-method-guide__notes span {
    width: 100%;
  }

  .work-method-forms {
    padding: 68px 22px 78px;
  }

  .work-method-forms__title,
  .work-method-fit__title,
  .work-method-start__title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .work-method-forms__grid {
    grid-template-columns: 1fr;
  }

  .work-method-form,
  .work-method-form--featured {
    min-height: auto;
    gap: 46px;
    padding: 24px;
  }

  .work-method-form--quiet > div {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-method-form--featured h3 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .work-method-fit {
    padding: 62px 22px 76px;
  }

  .work-method-fit__column {
    padding: 24px;
  }

  .work-method-fit__list {
    margin-top: 38px;
  }

  .work-method-fit__list li {
    padding: 20px 0 20px 32px;
    font-size: 17px;
  }

  .work-method-start {
    padding: 68px 22px 88px;
  }

  .work-method-start__button {
    width: 100%;
  }
}

.about-intro {
  max-width: min(100%, 1480px);
  margin: 0 auto;
  padding-top: clamp(22px, 4vw, 56px);
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.about-intro__media {
  min-width: 0;
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  align-content: start;
}

.about-intro__image {
  display: block;
  width: 100%;
  min-height: clamp(520px, 72vh, 780px);
  max-height: 840px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
  box-shadow:
    0 28px 70px rgba(64, 57, 59, 0.16),
    0 10px 24px rgba(64, 57, 59, 0.1);
}

.about-intro__signature {
  display: block;
  width: min(72%, 520px);
  margin: 0 auto;
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: 0.92;
}

.about-intro__content {
  min-width: 0;
}

.about-intro__identity {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.about-intro__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex: 0 0 auto;
}

.about-intro__identity-text {
  display: grid;
  gap: 8px;
}

.about-intro__eyebrow {
  margin: 0;
  color: #73726f;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-intro__name {
  margin: 0;
  color: #121212;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.first-step-clarity__title.first-step-reveal-title span {
  padding-top: 0.12em;
  margin-top: -0.12em;
}

.about-intro__summary {
  margin: clamp(24px, 3vw, 34px) 0 0;
  max-width: 34rem;
  color: rgba(46, 46, 46, 0.68);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.about-intro__headline {
  margin: clamp(34px, 6vw, 78px) 0 0;
  max-width: 12.6ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-style: normal;
  font-size: clamp(2.65rem, 5.4vw, 76px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.about-intro__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 440px);
  margin-top: clamp(28px, 4vw, 46px);
  padding: 18px 0;
  border-top: 1px solid rgba(64, 57, 59, 0.18);
  border-bottom: 1px solid rgba(64, 57, 59, 0.18);
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 420;
  line-height: 1;
  letter-spacing: -0.015em;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.about-intro__link::after {
  content: "\2197";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(64, 57, 59, 0.24);
  border-radius: 50%;
  background: rgba(235, 234, 230, 0.64);
  font-size: 18px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.about-intro__link:hover,
.about-intro__link:focus-visible {
  border-color: rgba(64, 57, 59, 0.46);
  color: #161212;
}

.about-intro__link:hover::after,
.about-intro__link:focus-visible::after {
  border-color: rgba(64, 57, 59, 0.82);
  background: #ebeae6;
  transform: translate(3px, -3px);
}

.about-intro__grid {
  margin-top: clamp(48px, 8vw, 108px);
  border-top: 1px solid rgba(46, 46, 46, 0.12);
  display: grid;
  grid-column: 1 / -1;
}

.about-intro__card {
  padding: 26px 0 30px;
  border-bottom: 1px solid rgba(46, 46, 46, 0.12);
}

.about-intro__card-index {
  margin: 0 0 18px;
  color: #bfb3a4;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-intro__card-title {
  margin: 0;
  max-width: 15ch;
  color: #161212;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.05rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.about-intro__card-text {
  margin: 16px 0 0;
  max-width: 21rem;
  color: rgba(46, 46, 46, 0.66);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.018em;
}

.about-process {
  position: relative;
  margin-top: clamp(72px, 10vw, 152px);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  min-height: 100vh;
  padding: clamp(84px, 9vw, 132px) 0 clamp(92px, 9vw, 138px);
  overflow: hidden;
  color: rgb(31, 31, 31);
  background: #ebeae6;
  isolation: isolate;
}

.about-process::before {
  content: none;
}

.about-process::after {
  content: none;
}

.about-process__image {
  display: none;
}

.about-process__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.about-process__title {
  margin: 0 auto;
  max-width: none;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.25rem, 5.8vw, 4.35rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-align: center;
  text-wrap: balance;
}

.about-process__list {
  margin-top: clamp(54px, 7vw, 90px);
  border-top: 1px solid #c7c3c0;
}

.about-process-step {
  display: grid;
  gap: 24px;
  padding: clamp(34px, 4vw, 48px) 0;
  border-bottom: 1px solid #c7c3c0;
}

.about-process-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid #c7c3c0;
  border-radius: 50%;
  color: rgba(31, 31, 31, 0.7);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-process-step__label {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-process-step__copy {
  max-width: 34rem;
}

.about-process-step__lead {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.048em;
}

.about-process-step__text {
  margin: 12px 0 0;
  max-width: 30rem;
  color: rgba(31, 31, 31, 0.68);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.018em;
}

.about-story {
  max-width: min(100%, 1360px);
  margin: 0 auto;
  padding: clamp(68px, 8vw, 112px) 0 clamp(34px, 5vw, 72px);
}

.about-story__inner {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid #c7c3c0;
}

.about-story__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-story__eyebrow {
  margin: 0;
  color: #73726f;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story__media {
  width: min(100%, 380px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #ebeae6;
  box-shadow:
    0 18px 46px rgba(64, 57, 59, 0.1),
    0 8px 20px rgba(64, 57, 59, 0.06);
}

.about-story__image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
}

.about-story__title {
  margin: 12px auto 0;
  max-width: none;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 360;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.about-story__intro {
  max-width: 670px;
  margin: clamp(16px, 2vw, 22px) auto 0;
  color: rgba(46, 46, 46, 0.66);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.025em;
}

.about-story-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #c7c3c0;
}

.about-story-timeline__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 24px);
  padding: clamp(18px, 2.4vw, 28px) 0;
  border-bottom: 1px solid #c7c3c0;
}

.about-story-timeline__index {
  padding-top: 0.35rem;
  color: #a6a79a;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.about-story-timeline__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.about-story-timeline__body h3 {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.about-story-timeline__body p {
  margin: 0;
  max-width: 52rem;
  color: rgba(46, 46, 46, 0.68);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.05vw, 1.05rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -0.02em;
}

.about-story__note {
  margin: 0;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

@media (min-width: 720px) {
  .about-story-timeline__item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .about-story-timeline__body {
    grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 44px);
    align-items: start;
  }
}

.about-credentials {
  max-width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 108px) 0 clamp(36px, 6vw, 88px);
}

.about-credentials__inner {
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(46, 46, 46, 0.12);
}

.about-credentials__heading {
  display: grid;
  gap: clamp(24px, 4vw, 54px);
}

.about-credentials__eyebrow {
  margin: 0;
  color: #73726f;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-credentials__heading-copy {
  min-width: 0;
}

.about-credentials__title {
  margin: 0;
  max-width: 12ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.15rem, 5vw, 4.1rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.about-credentials__intro {
  margin: clamp(22px, 3vw, 34px) 0 0;
  max-width: 520px;
  color: rgba(46, 46, 46, 0.68);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.about-credentials__frame {
  margin-top: clamp(34px, 5vw, 62px);
  display: grid;
  gap: 14px;
}

.about-credential-card {
  position: relative;
  min-width: 0;
  overflow: visible;
  display: grid;
  grid-template-rows: minmax(0, auto) auto;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  background: #ffffff;
  color: #40393b;
  text-decoration: none;
  box-shadow: 0 15px 28px rgba(31, 31, 31, 0.1), 0 2px 8px rgba(31, 31, 31, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.about-credential-card__preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 6px 6px 0;
  min-height: 0;
  height: clamp(240px, 31vw, 360px);
  padding: clamp(12px, 2vw, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 245, 239, 0.62)),
    #ffffff;
  box-shadow: 0 14px 22px -12px rgba(31, 31, 31, 0.32), 0 6px 16px -12px rgba(31, 31, 31, 0.24);
}

.about-credential-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.9) contrast(0.98);
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.about-credential-card__body {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 18px 18px 20px;
  display: grid;
  gap: 9px;
  border-radius: 0 0 20px 20px;
  background: #ffffff;
}

.about-credential-card__body::after {
  content: "\2197";
  position: absolute;
  right: 17px;
  top: 24px;
  color: rgba(166, 167, 154, 0.6);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.about-credential-card__index {
  color: #a6a79a;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  order: 3;
}

.about-credential-card__title {
  color: #161212;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  font-weight: 430;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
  padding-right: 32px;
}

.about-credential-card__text {
  color: rgba(46, 46, 46, 0.62);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.012em;
}

.about-credential-card__action {
  margin-top: 8px;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.72;
}

.about-credential-card:hover,
.about-credential-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(31, 31, 31, 0.13), 0 4px 12px rgba(31, 31, 31, 0.08);
  transform: translateY(-3px);
}

.about-credential-card:hover .about-credential-card__preview img,
.about-credential-card:focus-visible .about-credential-card__preview img {
  filter: saturate(1) contrast(1);
  transform: scale(1.07);
}

.about-credential-card:hover .about-credential-card__body::after,
.about-credential-card:focus-visible .about-credential-card__body::after {
  color: #a6a79a;
  transform: translate(3px, -3px);
}

.about-faq {
  max-width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 52px) 0 clamp(46px, 7vw, 92px);
}

.about-faq__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  padding-top: clamp(26px, 4vw, 42px);
  border-top: 1px solid rgba(46, 46, 46, 0.14);
}

.about-faq__head {
  position: sticky;
  top: 108px;
}

.about-faq__eyebrow {
  margin: 0;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-faq__title {
  margin: 18px 0 0;
  max-width: 12ch;
  color: #1f1f1f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  font-weight: 360;
  line-height: 1.05;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.about-faq__list {
  border-top: 1px solid rgba(46, 46, 46, 0.12);
}

.about-faq__item {
  border-bottom: 1px solid rgba(46, 46, 46, 0.12);
}

.about-faq__question {
  position: relative;
  cursor: pointer;
  list-style: none;
  min-height: 64px;
  padding: 22px 58px 22px 0;
  color: #1f1f1f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 430;
  line-height: 1.24;
  letter-spacing: -0.018em;
}

.about-faq__question::-webkit-details-marker {
  display: none;
}

.about-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(64, 57, 59, 0.22);
  border-radius: 999px;
  color: #6d6864;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.about-faq__item[open] .about-faq__question::after {
  content: "\2212";
  border-color: rgba(166, 167, 154, 0.58);
  background: #ebeae6;
  transform: rotate(180deg);
}

.about-faq__answer {
  max-width: 690px;
  padding: 0 58px 24px 0;
  color: rgba(46, 46, 46, 0.68);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.about-faq__answer p {
  margin: 0;
}

.about-faq__answer p + p {
  margin-top: 12px;
}

.about-closing-cta {
  max-width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 42px) 0 clamp(86px, 10vw, 132px);
}

.about-closing-cta__inner {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(26px, 4vw, 42px);
  border-top: 1px solid rgba(46, 46, 46, 0.16);
}

.about-closing-cta__eyebrow {
  margin: 0;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-closing-cta__title {
  margin: 0;
  max-width: 22ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.about-closing-cta__button {
  position: relative;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  min-height: 58px;
  margin-top: clamp(30px, 4vw, 48px);
  padding: 0 24px 0 28px;
  border: 1px solid rgba(64, 57, 59, 0.12);
  border-radius: 999px;
  background: #ebeae6;
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(80, 63, 60, 0.08);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.about-closing-cta__button::after {
  content: "\2192";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.about-closing-cta__button:hover,
.about-closing-cta__button:focus-visible {
  border-color: rgba(64, 57, 59, 0.18);
  background: #deddd8;
  box-shadow: 0 20px 42px rgba(80, 63, 60, 0.16);
  transform: translateY(-2px);
}

.about-closing-cta__button:hover::after,
.about-closing-cta__button:focus-visible::after {
  transform: translateX(4px);
}

.contact-page {
  overflow: hidden;
  padding: 74px var(--page-gutter) 118px;
  background: #ffffff;
}

.contact-intro,
.contact-booking {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.contact-intro {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.contact-intro__eyebrow,
.contact-card__kicker {
  margin: 0;
  color: #214001;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-intro__title {
  margin: 0;
  max-width: 13ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.062em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.contact-intro__text {
  margin: 0;
  max-width: 640px;
  color: rgba(31, 31, 31, 0.68);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.56;
  letter-spacing: -0.018em;
}

.contact-booking {
  margin-top: 58px;
}

.contact-booking__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-booking__status {
  display: none;
  margin: 0 0 18px;
  padding: 15px 18px;
  border: 1px solid rgba(33, 64, 1, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(31, 31, 31, 0.76);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 44px rgba(31, 39, 49, 0.055);
}

.contact-booking__status.is-visible {
  display: block;
}

.contact-booking__status.is-success {
  border-color: rgba(33, 64, 1, 0.25);
  color: #214001;
}

.contact-booking__status.is-error {
  border-color: rgba(217, 133, 85, 0.42);
  color: #8d3f1b;
}

.contact-booking__grid {
  display: grid;
  gap: 16px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(216, 217, 215, 0.72);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.22) 0 1px,
      rgba(255, 255, 255, 0) 1px 7px
    );
  box-shadow:
    0 28px 70px rgba(31, 39, 49, 0.07),
    0 8px 22px rgba(31, 39, 49, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  pointer-events: none;
}

.contact-card__title {
  margin: 14px 0 0;
  max-width: 12ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.contact-card__text {
  margin: 18px 0 0;
  max-width: 440px;
  color: rgba(31, 31, 31, 0.65);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.contact-calendar {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(216, 217, 215, 0.68);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-calendar__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(217, 133, 85, 0.12);
  color: #d98555;
}

.contact-calendar__icon svg {
  width: 30px;
  height: 30px;
}

.contact-calendar__quick {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.contact-calendar__day {
  min-height: 62px;
  padding: 8px 4px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(250, 245, 239, 0.62);
  color: rgba(31, 31, 31, 0.52);
  font-family: "InterVariable", "Inter", sans-serif;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-calendar__day span,
.contact-calendar__day strong {
  display: block;
}

.contact-calendar__day span {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.contact-calendar__day strong {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-calendar__day:hover,
.contact-calendar__day:focus-visible,
.contact-calendar__day.is-selected {
  border-color: rgba(217, 133, 85, 0.34);
  background: rgba(217, 133, 85, 0.14);
  color: rgb(31, 31, 31);
  transform: translateY(-1px);
}

.contact-field {
  display: grid;
  gap: 9px;
  color: rgba(31, 31, 31, 0.72);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.012em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(216, 217, 215, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: rgb(31, 31, 31);
  font: inherit;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  outline: none;
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.contact-field input {
  min-height: 58px;
  padding: 0 18px;
}

.contact-field textarea {
  min-height: 164px;
  resize: vertical;
  padding: 18px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(31, 31, 31, 0.42);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(33, 64, 1, 0.36);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(33, 64, 1, 0.055);
}

.contact-choice,
.contact-session {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  border: 0;
  gap: 10px;
}

.contact-choice legend,
.contact-session legend {
  margin-bottom: 12px;
  color: rgba(31, 31, 31, 0.66);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

.contact-choice legend,
.contact-session legend {
  grid-column: 1 / -1;
}

.contact-choice label,
.contact-session label {
  position: relative;
  cursor: pointer;
}

.contact-choice input,
.contact-session input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-choice span,
.contact-session span {
  display: block;
  border: 1px solid rgba(216, 217, 215, 0.7);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(31, 31, 31, 0.68);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-choice span {
  min-height: 48px;
  padding: 15px 16px;
  border-radius: 16px;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.012em;
}

.contact-session span {
  padding: 18px;
  border-radius: 20px;
}

.contact-session strong,
.contact-session small {
  display: block;
  font-family: "InterVariable", "Inter", sans-serif;
}

.contact-session strong {
  color: rgb(31, 31, 31);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.contact-session small {
  margin-top: 8px;
  color: rgba(31, 31, 31, 0.58);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.008em;
}

.contact-choice input:checked + span,
.contact-choice input:focus-visible + span,
.contact-session input:checked + span,
.contact-session input:focus-visible + span {
  border-color: rgba(33, 64, 1, 0.28);
  background: rgba(33, 64, 1, 0.06);
  color: rgb(31, 31, 31);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.contact-choice label:hover span,
.contact-session label:hover span {
  transform: translateY(-1px);
}

.contact-fields {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  background: #a6a69a;
  color: #fffdf8;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(166, 166, 154, 0.22);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #929287;
  box-shadow: 0 20px 42px rgba(166, 166, 154, 0.28);
  transform: translateY(-2px);
}

.contact-card__note {
  margin: 16px 0 0;
  color: rgba(31, 31, 31, 0.48);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-align: center;
}

@media (min-width: 900px) {
  .first-step-clarity__block {
    grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  }

  .first-step-clarity__block--close {
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr);
  }

  .first-step-flow__inner {
    grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  }

  .first-step-flow__profile {
    position: sticky;
    top: 108px;
  }

  .first-step-flow__item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .about-intro {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.82fr);
  }

  .about-intro__headline {
    max-width: 12.6ch;
  }

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

  .about-intro__card {
    min-height: 100%;
    padding: 34px 28px 38px;
    border-bottom: 0;
  }

  .about-intro__card:nth-child(odd) {
    border-right: 1px solid rgba(46, 46, 46, 0.12);
  }

  .about-intro__card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(46, 46, 46, 0.12);
  }

  .about-process-step {
    grid-template-columns: 120px minmax(220px, 0.72fr) minmax(340px, 1fr);
    align-items: start;
    gap: clamp(40px, 5vw, 68px);
  }

  .about-process-step__label {
    padding-top: 8px;
  }

  .about-process-step__copy {
    padding-top: 3px;
  }

  .about-story__inner {
    grid-template-columns: minmax(526px, 0.8fr) minmax(700px, 1.2fr);
    grid-template-areas:
      "head head"
      "media timeline"
      "media note";
    column-gap: clamp(38px, 5vw, 66px);
    row-gap: clamp(28px, 4vw, 42px);
    align-items: start;
  }

  .about-story__head {
    grid-area: head;
  }

  .about-story__media {
    grid-area: media;
    align-self: start;
    width: min(100%, 526px);
    aspect-ratio: 2 / 3;
    min-height: 0;
  }

  .about-story__image {
    height: 100%;
    aspect-ratio: 2 / 3;
    object-position: center top;
  }

  .about-story-timeline {
    grid-area: timeline;
  }

  .about-story__note {
    grid-area: note;
    max-width: 740px;
  }

  .about-credentials__heading {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }

  .about-credentials__frame {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .about-credential-card__preview {
    height: clamp(132px, 13.5vw, 190px);
    padding: 10px;
  }

  .about-credential-card__body {
    padding: 12px 14px 14px;
    gap: 6px;
  }

  .about-credential-card__title {
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    letter-spacing: -0.04em;
  }

  .about-credential-card__text {
    font-size: 0.84rem;
    line-height: 1.32;
  }

  .about-credential-card__action {
    margin-top: 4px;
  }

  .contact-booking__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: stretch;
  }

  .contact-card--form {
    display: flex;
    flex-direction: column;
  }

  .contact-card--form .contact-fields {
    flex: 1;
  }
}

@media (min-width: 1280px) {
  .about-intro__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-intro__card {
    padding: 34px 30px 38px;
  }

  .about-intro__card:nth-child(odd) {
    border-right: 0;
  }

  .about-intro__card:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .about-intro__card:not(:last-child) {
    border-right: 1px solid rgba(46, 46, 46, 0.12);
  }

  .about-process__inner {
    width: min(100%, 1220px);
  }

  .about-process-step {
    grid-template-columns: 132px minmax(260px, 0.74fr) minmax(420px, 1fr);
    gap: 72px;
  }
}

@media (max-width: 640px) {
  .first-step-hero {
    height: 100svh;
    min-height: 100svh;
  }

  .first-step-hero__image {
    height: 100%;
  }

  .first-step-hero__content {
    inset: auto 22px 44px;
    width: auto;
    gap: 14px;
  }

  .page-individual-therapy .first-step-hero__content {
    inset: auto 22px clamp(205px, 25svh, 250px);
  }

  .first-step-hero__title {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 0.96;
  }

  .page-woman-measure .first-step-hero__title {
    font-size: clamp(1.95rem, 8.8vw, 2.85rem);
  }

  .woman-program-intro {
    padding: 58px 22px 70px;
    border-radius: 26px 26px 0 0;
  }

  .woman-program-intro__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 24px;
  }

  .woman-program-intro__label {
    font-size: 13px;
    letter-spacing: -0.02em;
  }

  .woman-program-intro__title {
    max-width: 100%;
    font-size: clamp(2.1rem, 9.3vw, 3.2rem);
    line-height: 1.02;
    text-align: left;
  }

  .first-step-hero__text {
    max-width: 22rem;
    font-size: 16px;
  }

  .first-step-hero__button {
    width: 100%;
    min-height: 54px;
  }

  .first-step-cta {
    margin-top: 0;
    padding: 58px 22px 74px;
    border-radius: 26px 26px 0 0;
  }

  .first-step-cta__title {
    max-width: 10ch;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1;
  }

  .first-step-cta__title br {
    display: none;
  }

  .first-step-cta__button {
    width: 100%;
  }

  .first-step-flow {
    padding: 68px 22px 78px;
  }

  .first-step-flow__portrait {
    width: 100%;
    border-radius: 22px;
  }

  .first-step-flow__title {
    max-width: 10ch;
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .first-step-flow__item {
    gap: 14px;
  }

  .first-step-flow__item h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .first-step-clarity {
    padding: 58px 22px 76px;
  }

  .first-step-clarity__block {
    gap: 28px;
    padding: 38px 0;
  }

  .first-step-clarity__title,
  .first-step-clarity__cta h2 {
    max-width: 10ch;
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .first-step-clarity__not-list li {
    padding: 18px 0;
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .first-step-clarity__fit-list {
    grid-template-columns: 1fr;
  }

  .first-step-clarity__fit-list p {
    min-height: 0;
    padding: 20px 20px 20px 46px;
    border-radius: 18px;
  }

  .first-step-clarity__fit-list p::before {
    top: 25px;
    left: 20px;
  }

  .first-step-clarity__trust p {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .first-step-clarity__cta a {
    width: 100%;
  }

  .about-intro {
    padding-top: 12px;
  }

  .about-intro__image {
    min-height: 440px;
    max-height: 560px;
  }

  .about-intro__signature {
    width: min(82%, 360px);
  }

  .about-intro__headline {
    max-width: 12ch;
    font-size: 2.5rem;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .about-intro__summary br {
    display: none;
  }

  .about-process {
    margin-top: 64px;
    padding: 62px 0 68px;
  }

  .about-process__title {
    max-width: none;
    font-size: clamp(2.25rem, 12vw, 3.25rem);
    line-height: 1;
  }

  .about-process-step {
    gap: 18px;
    padding: 26px 0 28px;
  }

  .about-process-step__badge {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .about-process-step__label {
    font-size: 1.65rem;
  }

  .about-process-step__lead {
    font-size: 1.42rem;
    line-height: 1.14;
  }

  .about-story {
    padding-top: 58px;
  }

  .about-story__inner {
    gap: 28px;
    padding-top: 22px;
  }

  .about-story__head {
    text-align: left;
  }

  .about-story__media {
    width: min(100%, 460px);
    border-radius: 22px;
  }

  .about-story__title {
    margin-right: 0;
    margin-left: 0;
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .about-story__intro {
    margin-right: 0;
    margin-left: 0;
  }

  .about-story-timeline__item {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 18px 0 20px;
  }

  .about-story-timeline__index {
    font-size: 12px;
  }

  .about-story-timeline__body h3 {
    font-size: 1.12rem;
  }

  .about-story__note {
    font-size: 1rem;
  }

  .about-credentials {
    padding-top: 48px;
  }

  .about-credentials__inner {
    padding-top: 22px;
  }

  .about-credentials__heading {
    gap: 22px;
  }

  .about-credentials__title {
    max-width: 11ch;
    font-size: clamp(2.15rem, 11vw, 3.15rem);
    letter-spacing: -0.052em;
  }

  .about-credentials__frame {
    margin-top: 30px;
    padding: 10px;
    border-radius: 24px;
  }

  .about-closing-cta {
    padding: 48px 0 86px;
  }

  .about-closing-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
  }

  .about-closing-cta__title {
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    line-height: 1.03;
    letter-spacing: -0.052em;
  }

  .about-closing-cta__button {
    grid-column: auto;
    width: 100%;
    min-height: 58px;
    margin-top: 26px;
    padding: 0 22px;
  }

  .about-credential-card {
    border-radius: 18px;
  }

  .about-credential-card__preview {
    height: 280px;
    padding: 12px;
  }

  .about-credential-card__body {
    padding: 16px;
  }

  .about-faq {
    padding: 42px 0 62px;
  }

  .about-faq__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 24px;
  }

  .about-faq__head {
    position: static;
  }

  .about-faq__title {
    max-width: none;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    letter-spacing: -0.045em;
  }

  .about-faq__question {
    min-height: 0;
    padding: 19px 44px 19px 0;
    font-size: 1.02rem;
  }

  .about-faq__question::after {
    top: 16px;
    width: 28px;
    height: 28px;
  }

  .about-faq__answer {
    padding: 0 0 21px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .contact-page {
    padding-top: 52px;
    padding-bottom: 84px;
  }

  .contact-intro {
    justify-items: start;
    text-align: left;
  }

  .contact-intro__title {
    max-width: 10ch;
    font-size: clamp(3.1rem, 18vw, 4.7rem);
  }

  .contact-intro__text {
    font-size: 16px;
  }

  .contact-booking {
    margin-top: 38px;
  }

  .contact-card {
    border-radius: 26px;
  }

  .contact-card__title {
    max-width: 11ch;
  }

  .contact-calendar {
    padding: 16px;
    border-radius: 22px;
  }

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

  .contact-choice {
    grid-template-columns: 1fr;
  }
}

.page-home {
  background: var(--color-surface);
  --home-header-height: 76px;
}

.page-home .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  width: 100%;
}

.home-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100svh;
  max-width: none;
  margin: 0;
  background: #f5ede4;
}

.home-hero__shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 138px clamp(24px, 5vw, 86px) 48px;
  display: grid;
  gap: 24px;
}

.home-hero__content {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.home-hero__title {
  margin: 0;
  color: rgba(255, 253, 248, 0.98);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  max-width: none;
  font-size: clamp(3.4rem, 4.08vw, 5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.035em;
  white-space: normal;
}

.home-hero__title span {
  display: block;
}

.home-hero__title span:first-child {
  white-space: nowrap;
}

.home-hero__rule {
  width: 70px;
  height: 2px;
  background: rgba(255, 253, 248, 0.62);
}

.home-hero__body,
.home-hero__quote-text,
.home-hero__meta {
  color: rgba(255, 253, 248, 0.92);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.08em;
}

.home-hero__body {
  margin: 0;
  max-width: 23rem;
  font-size: clamp(1.08rem, 1.15vw, 1.24rem);
  line-height: 1.45;
  letter-spacing: 0;
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  width: fit-content;
  padding: 0 34px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  color: rgb(31, 31, 31);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(31, 31, 31, 0.14);
}

.home-hero__cta::after {
  content: "\2192";
  font-size: 1.15rem;
  line-height: 1;
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  font-size: 12px;
}

.home-hero__meta li {
  display: inline-flex;
  align-items: center;
}

.home-hero__meta li + li::before {
  content: "\2022";
  margin: 0 12px;
  color: var(--color-accent);
  font-size: 0.9rem;
  line-height: 1;
}

.home-hero__visual {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.home-hero__visual::after {
  display: none;
}

.home-hero__scene {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero__aside {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 13.5rem;
  padding-left: 28px;
  margin-left: auto;
  margin-right: clamp(330px, 21vw, 410px);
  margin-top: 82px;
}

.home-hero__aside::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 10px;
  width: 2px;
  background: rgba(255, 253, 248, 0.38);
}

.home-hero__quote {
  margin: 0;
  color: rgba(255, 253, 248, 0.98);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 1.65vw, 2rem);
  font-style: italic;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.home-hero__quote-text {
  margin: 0;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.home-truth {
  width: 100%;
  padding: 34px var(--page-gutter) clamp(112px, 11vw, 172px);
  background: #ffffff;
}

.home-truth__inner {
  width: min(100%, calc(var(--content-width) + 140px));
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.home-truth__intro {
  display: flex;
  justify-content: flex-end;
  padding-right: clamp(18px, 4vw, 72px);
}

.home-truth__eyebrow {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  max-width: 360px;
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-truth__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  flex: 0 0 auto;
  animation: home-truth-spin 8s linear infinite;
  transform-origin: center;
}

.home-truth__icon-mark {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #73726f;
  box-shadow: none;
  filter: none;
  -webkit-mask: url("../images/home-truth-icon.svg") center / contain no-repeat;
  mask: url("../images/home-truth-icon.svg") center / contain no-repeat;
}

.home-truth__title {
  max-width: 24ch;
  margin: 0 auto;
  color: rgb(0, 0, 0);
  font-family: "Inter Display", "Inter Display Placeholder", sans-serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 100px;
  letter-spacing: -0.065em;
  text-align: center;
  text-wrap: balance;
  opacity: 0;
  transform: translate3d(0, 72px, 0);
  will-change: opacity, transform;
}

.home-truth__title.is-visible {
  animation: homeTruthTitleReveal 920ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes home-truth-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes homeTruthTitleReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 72px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-truth__title {
    opacity: 1;
    transform: none;
  }

  .home-truth__title.is-visible {
    animation: none;
  }
}

.home-orbit {
  position: relative;
  height: 460svh;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 48%, #ffffff 100%);
  color: rgb(31, 31, 31);
}

.home-orbit__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.home-orbit__inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.home-orbit__intro {
  position: absolute;
  top: clamp(42px, 8vh, 76px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(980px, calc(100vw - (var(--page-gutter) * 2)));
  max-width: none;
  text-align: center;
}

.home-orbit__eyebrow {
  display: none;
  margin: 0 0 20px;
  color: rgba(33, 64, 1, 0.72);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-orbit__title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.27rem, 1.84vw, 2.16rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
  white-space: nowrap;
}

.home-orbit__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-orbit__circle-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-orbit__circle {
  position: absolute;
  left: 50%;
  top: 94%;
  width: min(72vw, 1360px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 31, 31, 0.82);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  opacity: 0.9;
  will-change: transform;
}

.home-orbit__item {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  pointer-events: none;
}

.home-orbit__anchor {
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 0;
}

.home-orbit__badge {
  position: absolute;
  left: 0;
  top: -58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(31, 31, 31, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: rgb(31, 31, 31);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  transform: translateX(-50%) rotate(var(--orbit-readable-rotation, 0deg));
}

.home-orbit__dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(31, 31, 31);
  transform: translate(-50%, -50%);
  transition:
    background 260ms ease,
    transform 260ms ease;
}

.home-orbit__item.current .home-orbit__dot {
  background: #d98555;
  transform: translate(-50%, -50%) scale(1.5);
}

.home-orbit__description {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(40vw, 520px);
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) rotate(var(--orbit-readable-rotation, 0deg));
  transition: opacity 280ms ease 220ms;
}

.home-orbit__item.current .home-orbit__description {
  opacity: 1;
  pointer-events: auto;
}

.home-orbit__connector {
  display: block;
  width: 1.5px;
  height: clamp(130px, 16vh, 178px);
  margin: 14px auto 0;
  background: rgba(31, 31, 31, 0.72);
}

.home-orbit__card {
  margin-top: 32px;
  text-align: center;
}

.home-orbit__card-title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 4.2rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.home-orbit__card-link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  outline-offset: 7px;
}

.home-orbit__card-link::before,
.home-orbit__card-link::after {
  content: "\2197";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: -86px;
  width: 72px;
  height: 72px;
  border: 1.4px solid rgba(64, 57, 59, 0.7);
  border-radius: 50%;
  color: #40393b;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-50%);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-orbit__card-link::before {
  opacity: 0;
  transform: translate(-18px, -50%);
}

.home-orbit__card-link:hover::before,
.home-orbit__card-link:focus-visible::before {
  border-color: rgba(64, 57, 59, 0.58);
  background: rgba(191, 179, 164, 0.16);
  opacity: 1;
  transform: translate(0, -50%);
}

.home-orbit__card-link:hover::after,
.home-orbit__card-link:focus-visible::after {
  opacity: 0;
  transform: translate(18px, -50%);
}

.home-orbit__card-text {
  margin: 20px auto 0;
  max-width: 26rem;
  color: rgba(31, 31, 31, 0.68);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.28vw, 1.25rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.018em;
}

.home-orbit__card-text--large {
  font-size: clamp(1rem, 1.28vw, 1.25rem);
}

.services-glass {
  position: relative;
  overflow: hidden;
  padding: 0 var(--page-gutter) 110px;
  background: #ffffff;
}

.services-glass::before,
.services-glass::after {
  display: none;
}

.services-glass::before {
  content: none;
}

.services-glass::after {
  content: none;
}

.services-glass__shell {
  position: relative;
  z-index: 1;
  max-width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.services-glass__grid {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.services-glass-card {
  position: relative;
  flex: 1 1 0;
  min-height: 286px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(250, 251, 252, 0.72) 58%, rgba(246, 248, 250, 0.66) 100%);
  box-shadow:
    0 18px 44px rgba(31, 39, 49, 0.06),
    0 4px 12px rgba(31, 39, 49, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(215, 222, 229, 0.56);
  backdrop-filter: blur(14px) saturate(112%);
  -webkit-backdrop-filter: blur(14px) saturate(112%);
  overflow: hidden;
  transition:
    flex 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.services-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04) 44%, rgba(240, 244, 247, 0.12) 100%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16) 0 1px,
      rgba(255, 255, 255, 0) 1px 6px
    );
  opacity: 0.5;
  pointer-events: none;
}

.services-glass-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 52%, rgba(226, 232, 238, 0.08) 100%);
  opacity: 1;
  pointer-events: none;
}

.services-glass-card[open] {
  flex: 1.38 1 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(251, 252, 253, 0.78) 58%, rgba(246, 248, 250, 0.72) 100%);
  box-shadow:
    0 20px 48px rgba(31, 39, 49, 0.07),
    0 6px 16px rgba(31, 39, 49, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(218, 225, 232, 0.6);
}

.services-glass-card__summary {
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 152px;
  margin-top: auto;
  padding-bottom: 18px;
  list-style: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  outline: none;
}

.services-glass-card:not([open]) .services-glass-card__summary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 44px;
  bottom: 0;
  height: 1px;
  background: rgba(34, 38, 44, 0.18);
}

.services-glass-card:not([open]) .services-glass-card__summary::after {
  content: "\2197";
  position: absolute;
  right: 2px;
  bottom: 7px;
  color: rgba(24, 27, 31, 0.72);
  font-size: 28px;
  line-height: 1;
}

.services-glass-card__summary::-webkit-details-marker {
  display: none;
}

.services-glass-card__title {
  display: block;
  max-width: 11ch;
  color: rgba(24, 27, 31, 0.84);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  transition:
    color 220ms ease;
}

.services-glass-card[open] .services-glass-card__summary {
  min-height: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.services-glass-card[open] .services-glass-card__title {
  max-width: 12ch;
}

.services-glass-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition:
    grid-template-rows 340ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 200ms ease,
    margin-top 240ms ease;
}

.services-glass-card[open] .services-glass-card__content {
  grid-template-rows: 1fr;
  margin-top: 16px;
  opacity: 1;
}

.services-glass-card__content-inner {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 12px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services-glass-card[open] .services-glass-card__content-inner {
  opacity: 1;
  transform: translateY(0);
}

.services-glass-card__text {
  margin: 0;
  max-width: 28ch;
  color: rgba(34, 38, 44, 0.8);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0;
}

.services-glass-card__footer {
  display: flex;
  align-items: center;
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid rgba(34, 38, 44, 0.18);
}

.services-glass-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  color: rgba(23, 27, 32, 0.84);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    color 200ms ease,
    opacity 200ms ease;
}

.services-glass-card__link::after {
  content: "\2192";
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1.22em;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 200ms ease;
}

.services-glass-card__link:hover,
.services-glass-card__link:focus-visible {
  opacity: 1;
  color: rgba(23, 27, 32, 0.96);
}

@media (hover: hover) and (pointer: fine) {
  .services-glass-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow:
      0 22px 46px rgba(31, 39, 49, 0.075),
      0 6px 16px rgba(31, 39, 49, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.97),
      inset 0 -1px 0 rgba(218, 225, 232, 0.62);
  }

  .services-glass-card:hover .services-glass-card__title {
    color: rgba(24, 27, 31, 0.92);
  }

  .services-glass-card:hover .services-glass-card__link::after {
    transform: translate(2px, -1px);
  }
}

.home-process {
  position: relative;
  padding: 122px 64px 128px;
  background: #ffffff;
  color: rgb(31, 31, 31);
  overflow: hidden;
}

.home-process::before,
.home-process::after {
  display: none;
}

.home-process__shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}

.home-process__copy {
  max-width: 500px;
}

.home-process__eyebrow {
  margin: 0 0 36px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-process__title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-process__intro {
  max-width: 445px;
  margin: 48px 0 0;
  color: rgba(31, 31, 31, 0.86);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.012em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-process__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  margin-top: 54px;
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(64, 57, 59, 0.3);
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.home-process__link::before,
.home-process__link::after {
  content: "\2192";
  flex: 0 0 auto;
  width: 24px;
  margin-left: 34px;
  font-size: 24px;
  line-height: 1;
  text-align: right;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-process__link::before {
  position: absolute;
  right: 0;
  bottom: 13px;
  margin-left: 0;
  opacity: 0;
  transform: translateX(-18px);
}

.home-process__link::after {
  opacity: 1;
  transform: translateX(0);
}

.home-process__link:hover,
.home-process__link:focus-visible {
  border-color: rgba(64, 57, 59, 0.85);
  color: #40393b;
}

.home-process__link:hover::before,
.home-process__link:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.home-process__link:hover::after,
.home-process__link:focus-visible::after {
  opacity: 0;
  transform: translateX(18px);
}

.home-process__steps {
  display: grid;
  gap: 0;
}

.home-process-step {
  display: grid;
  grid-template-columns: 88px 1px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 42px 0 46px;
  border-bottom: 1px solid rgba(55, 40, 27, 0.2);
}

.home-process-step:first-child {
  padding-top: 0;
}

.home-process-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-process-step__number {
  color: #c6c3c1;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 66px;
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: 0;
}

.home-process-step__divider {
  width: 1px;
  height: 108px;
  background: rgba(55, 40, 27, 0.28);
}

.home-process-step__content {
  padding-top: 2px;
}

.home-process-step__title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-process-step__text {
  margin: 18px 0 0;
  color: rgba(31, 31, 31, 0.84);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.01em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-space {
  padding: 110px 0 90px;
  background: #ffffff;
  color: rgb(31, 31, 31);
  overflow: hidden;
}

.home-space__heading {
  width: min(100% - 40px, 980px);
  margin: 0 auto 74px;
  text-align: center;
}

.home-space__eyebrow {
  margin: 0 0 24px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-space__title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: -0.055em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-space__gallery {
  --home-space-gallery-gap: 12px;
  --home-space-marquee-shift: calc(-50% - 6px);
  position: relative;
  width: 100vw;
  margin-left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  isolation: isolate;
}

.home-space__gallery::before,
.home-space__gallery::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 240px);
  pointer-events: none;
}

.home-space__gallery::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 28%, rgba(255, 255, 255, 0) 100%);
}

.home-space__gallery::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 72%, #ffffff 100%);
}

.home-space__track {
  display: flex;
  width: max-content;
  gap: var(--home-space-gallery-gap);
  will-change: transform;
  animation: home-space-marquee 88s linear infinite;
}

.home-space__set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--home-space-gallery-gap);
}

@keyframes home-space-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--home-space-marquee-shift), 0, 0);
  }
}

.home-space__frame {
  flex: 0 0 360px;
  height: 478px;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f2ee;
}

.home-space__frame--wide {
  flex-basis: 520px;
}

.home-space__frame--narrow {
  flex-basis: 340px;
}

.home-space__frame--slim {
  flex-basis: 260px;
}

.home-space__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
}

.home-space__set .home-space__frame:nth-child(1) img {
  object-position: 42% center;
}

.home-space__set .home-space__frame:nth-child(2) img {
  object-position: center center;
}

.home-space__set .home-space__frame:nth-child(3) img {
  object-position: center center;
}

.home-space__set .home-space__frame:nth-child(4) img {
  object-position: 46% center;
}

.home-space__set .home-space__frame:nth-child(5) img {
  object-position: center center;
}

.home-space__set .home-space__frame:nth-child(6) img {
  object-position: 58% center;
}

.home-space__set .home-space__frame:nth-child(7) img {
  object-position: 62% center;
}

.home-space__note {
  margin: 72px auto 0;
  width: min(100% - 40px, 860px);
  color: #73726f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: 0;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .home-space__track {
    animation: none;
  }
}

.home-about {
  padding: 118px 64px 132px;
  background: #ffffff;
  color: rgb(31, 31, 31);
}

.home-about__shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}

.home-about__media {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #f6f2ee;
}

.home-about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.94) contrast(0.96);
}

.home-about__content {
  max-width: 680px;
}

.home-about__eyebrow {
  margin: 0 0 30px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-about__title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-about__text {
  margin-top: 54px;
  color: rgba(31, 31, 31, 0.84);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: -0.012em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-about__text p {
  margin: 0;
}

.home-about__text p + p {
  margin-top: 26px;
}

.home-about__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  margin-top: 54px;
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(64, 57, 59, 0.3);
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.home-about__link::before,
.home-about__link::after {
  content: "\2192";
  flex: 0 0 auto;
  width: 24px;
  margin-left: 34px;
  font-size: 24px;
  line-height: 1;
  text-align: right;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about__link::before {
  position: absolute;
  right: 0;
  bottom: 13px;
  margin-left: 0;
  opacity: 0;
  transform: translateX(-18px);
}

.home-about__link::after {
  opacity: 1;
  transform: translateX(0);
}

.home-about__link:hover,
.home-about__link:focus-visible {
  border-color: rgba(64, 57, 59, 0.85);
  color: #40393b;
}

.home-about__link:hover::before,
.home-about__link:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.home-about__link:hover::after,
.home-about__link:focus-visible::after {
  opacity: 0;
  transform: translateX(18px);
}

.home-testimonials {
  padding: 88px var(--page-gutter) 96px;
  background: #ffffff;
  color: rgb(31, 31, 31);
  overflow: hidden;
}

.home-testimonials__heading {
  width: min(100%, 1220px);
  margin: 0 auto 58px;
  display: grid;
  gap: 18px;
  text-align: left;
}

.home-testimonials__eyebrow {
  margin: 0;
  color: rgba(31, 31, 31, 0.58);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-testimonials__title {
  margin: 0;
  max-width: 13ch;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.052em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-testimonials__intro {
  margin: 0;
  max-width: 520px;
  color: rgba(31, 31, 31, 0.64);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.home-testimonials__grid {
  width: min(100%, 1220px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.home-testimonials__marquee {
  --home-testimonials-gap: 16px;
  --home-testimonials-shift: calc(-50% - 8px);
  position: relative;
  width: 100vw;
  margin-left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  isolation: isolate;
}

.home-testimonials__marquee::before,
.home-testimonials__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(18vw, 250px);
  pointer-events: none;
}

.home-testimonials__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.84) 30%, rgba(255, 255, 255, 0) 100%);
}

.home-testimonials__marquee::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.84) 70%, #ffffff 100%);
}

.home-testimonials__track {
  display: flex;
  width: max-content;
  gap: var(--home-testimonials-gap);
  align-items: center;
  padding: 18px 0 30px;
  will-change: transform;
  animation: home-testimonials-marquee 118s linear infinite;
}

.home-testimonials__set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--home-testimonials-gap);
}

@keyframes home-testimonials-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--home-testimonials-shift), 0, 0);
  }
}

.home-testimonial-card {
  --testimonial-card-bg: rgba(235, 234, 230, 0.46);
  --testimonial-card-fg: #272524;
  --testimonial-card-soft: rgba(39, 37, 36, 0.62);
  --testimonial-card-accent: #c6c3c1;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(18px, 2.2vw, 28px);
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(39, 37, 36, 0.09);
  border-left: 4px solid var(--testimonial-card-accent);
  border-radius: 8px;
  background: var(--testimonial-card-bg);
  color: var(--testimonial-card-fg);
  box-shadow:
    0 12px 28px rgba(39, 37, 36, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.home-testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  color: rgba(39, 37, 36, 0.08);
  font-family: "Playfair Display", serif;
  font-size: clamp(3.4rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: 0;
  pointer-events: none;
}

.home-testimonial-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 52%, rgba(39, 37, 36, 0.04) 100%);
  opacity: 1;
  pointer-events: none;
}

.home-testimonial-card blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  display: grid;
  gap: 16px;
}

.home-testimonial-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--testimonial-card-fg);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(0.94rem, 1vw, 1.02rem);
  font-weight: 380;
  line-height: 1.54;
  letter-spacing: -0.018em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  text-align: left;
}

.home-testimonial-card__initials {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 0;
  min-width: 46px;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(39, 37, 36, 0.14);
  border-radius: 999px;
  color: var(--testimonial-card-soft);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-testimonial-card--warm {
  --testimonial-card-bg: rgba(200, 162, 156, 0.2);
  --testimonial-card-accent: #c8a29c;
  --testimonial-card-fg: #2e2826;
  --testimonial-card-soft: rgba(46, 40, 38, 0.66);
}

.home-testimonial-card--sage {
  --testimonial-card-bg: rgba(166, 167, 154, 0.2);
  --testimonial-card-accent: #a6a79a;
  --testimonial-card-fg: #252722;
  --testimonial-card-soft: rgba(37, 39, 34, 0.68);
}

.home-testimonial-card--stone {
  --testimonial-card-bg: rgba(198, 195, 193, 0.24);
  --testimonial-card-accent: #c6c3c1;
  --testimonial-card-fg: #292725;
  --testimonial-card-soft: rgba(41, 39, 37, 0.64);
}

.home-testimonial-card--rose {
  --testimonial-card-bg: rgba(200, 162, 156, 0.12);
  --testimonial-card-accent: #c8a29c;
  --testimonial-card-fg: #2d2624;
  --testimonial-card-soft: rgba(45, 38, 36, 0.66);
}

@media (min-width: 900px) {
  .home-testimonials__heading {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }

  .home-testimonials__eyebrow {
    padding-top: 8px;
  }

  .home-testimonials__title,
  .home-testimonials__intro {
    grid-column: 2;
  }

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

@media (hover: hover) and (pointer: fine) {
  .home-testimonial-card {
    transition:
      transform 220ms ease,
      box-shadow 220ms ease,
      border-color 220ms ease,
      background 220ms ease;
  }

  .home-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(39, 37, 36, 0.16);
    box-shadow:
      0 24px 48px rgba(39, 37, 36, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-testimonials__track {
    animation: none;
  }
}

.home-final-cta {
  position: relative;
  overflow: hidden;
  padding: 104px 20px 118px;
  background: #ffffff;
  color: rgb(31, 31, 31);
}

.home-final-cta__shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 74px 72px 68px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.home-final-cta__eyebrow {
  margin: 0 0 26px;
  color: #73726f;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-final-cta__title {
  margin: 0;
  color: rgb(31, 31, 31);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-final-cta__text {
  margin: 30px auto 0;
  max-width: 520px;
  color: rgba(31, 31, 31, 0.72);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
  margin-top: 46px;
}

.home-final-cta__button,
.home-final-cta__message {
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.home-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ebeae6;
  color: #3f3837;
  box-shadow: 0 16px 34px rgba(80, 63, 60, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.home-final-cta__button::after {
  content: "\2192";
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.home-final-cta__message {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #73726f;
}

.home-final-cta__message::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: rgba(115, 114, 111, 0.34);
  transform-origin: left center;
  transition: transform 180ms ease, background 180ms ease;
}

.home-final-cta__button:hover,
.home-final-cta__button:focus-visible {
  background: #deddd8;
  box-shadow: 0 20px 42px rgba(80, 63, 60, 0.16);
  transform: translateY(-2px);
}

.home-final-cta__button:hover::after,
.home-final-cta__button:focus-visible::after {
  transform: translateX(4px);
}

.home-final-cta__message:hover::after,
.home-final-cta__message:focus-visible::after {
  background: rgba(115, 114, 111, 0.68);
  transform: scaleX(0.72);
}

.site-footer {
  --footer-rule: rgba(46, 46, 46, 0.1);
  --footer-copy: #5c6063;
  --footer-copy-soft: #5c6063;
  --footer-brand: #5c6063;
  --footer-accent: #a6a79a;
  padding: 8px var(--page-gutter) 42px;
  background: #ffffff;
}

.page-first-step .site-footer,
.page-work-method .site-footer {
  position: relative;
  z-index: 3;
}

.site-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 44px;
}

.site-footer__lead {
  min-width: 0;
}

.site-footer__intro,
.site-footer__block,
.site-footer__meta {
  border-top: 1px solid var(--footer-rule);
}

.site-footer__intro {
  max-width: 720px;
  padding-top: 20px;
}

.site-footer__eyebrow {
  margin: 0;
  max-width: 420px;
  color: var(--footer-copy);
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: -0.05em;
}

.site-footer__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0;
  margin: 30px 0 0;
  color: var(--footer-brand);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(3.25rem, 15vw, 7.1rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.site-footer__brand-accent {
  color: var(--footer-brand);
}

.site-footer__brand-slash,
.site-footer__brand-neutral {
  color: var(--footer-brand);
}

.site-footer__brand-slash {
  font-weight: 400;
}

.site-footer__profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 520px;
  margin-top: 24px;
}

.site-footer__profile-image {
  width: 82px;
  height: 44px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  object-fit: contain;
  object-position: center center;
}

.site-footer__profile-text,
.site-footer__social a,
.site-footer__copyright,
.site-footer__credit,
.site-footer__label,
.site-footer__text,
.site-footer__link,
.site-footer__phone {
  font-family: "InterVariable", "Inter", sans-serif;
}

.site-footer__profile-text {
  margin: 0;
  color: var(--footer-copy);
  font-size: 18px;
  font-weight: 350;
  line-height: 25px;
  letter-spacing: -0.02em;
}

.site-footer__social {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.site-footer__social a {
  color: #40393b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  opacity: 0.7;
  transform: translateY(-1px);
}

.site-footer__copyright {
  margin: 22px 0 0;
  color: var(--footer-copy);
  font-size: 12px;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--footer-rule);
  text-align: right;
}

.site-footer a {
  text-decoration: none;
}

.site-footer__credit,
.site-footer__link,
.site-footer__phone {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-footer__credit {
  color: var(--footer-copy);
  font-size: 12px;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0;
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
  color: var(--footer-accent);
}

.site-footer__info {
  display: grid;
  gap: 24px;
}

.site-footer__block {
  min-height: 0;
  padding-top: 16px;
}

.site-footer__label {
  margin: 0 0 18px;
  color: var(--footer-copy-soft);
  font-size: 12px;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer__text,
.site-footer__link {
  display: inline-block;
  margin: 0;
  color: var(--footer-copy);
  font-size: 18px;
  font-weight: 350;
  line-height: 25px;
  letter-spacing: -0.02em;
}

.site-footer__link--accent {
  color: #40393b;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  opacity: 0.72;
}

.site-footer__phone {
  display: inline-block;
  color: var(--footer-copy);
  font-size: clamp(2.35rem, 11vw, 4.6rem);
  font-weight: 350;
  line-height: 0.96;
  letter-spacing: -0.1em;
  white-space: nowrap;
}

.site-footer__phone:hover,
.site-footer__phone:focus-visible {
  color: var(--footer-copy);
}

.site-footer__utility {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.site-footer__top {
  display: inline-grid;
  place-items: center;
  gap: 7px;
  width: 76px;
  height: 76px;
  padding: 11px 0 12px;
  border: 1px solid rgba(166, 167, 154, 0.52);
  border-radius: 999px;
  background: rgba(235, 234, 230, 0.62);
  color: var(--footer-accent);
  cursor: pointer;
  font-family: "InterVariable", "Inter", sans-serif;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-footer__top-mark {
  position: relative;
  display: block;
  width: 22px;
  height: 25px;
}

.site-footer__top-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  width: 1px;
  height: 22px;
  background: currentColor;
  transform: translateX(-50%);
}

.site-footer__top-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  width: 12px;
  height: 12px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
}

.site-footer__top-label {
  color: currentColor;
  font-size: 10px;
  font-weight: 520;
  line-height: 1;
  letter-spacing: 0.12em;
}

.site-footer__top:hover,
.site-footer__top:focus-visible {
  border-color: rgba(166, 167, 154, 0.86);
  background: #ebeae6;
  color: var(--footer-copy);
  transform: translateY(-4px);
}

.site-footer__top:focus-visible {
  outline: 2px solid rgba(115, 114, 111, 0.24);
  outline-offset: 4px;
  border-radius: 999px;
}

@media (max-width: 767px) {
  .site-nav {
    display: none !important;
  }

  .site-services-menu {
    display: none;
  }

  .site-footer {
    --footer-rule: rgba(64, 57, 59, 0.13);
    --footer-copy: #40393b;
    --footer-copy-soft: #76716d;
    --footer-brand: #40393b;
    padding: 26px 20px 28px;
    background: #f7f6f2;
  }

  .site-footer__inner {
    gap: 22px;
  }

  .site-footer__intro {
    padding-top: 14px;
  }

  .site-footer__eyebrow {
    max-width: 22rem;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.035em;
  }

  .site-footer__brand {
    margin-top: 18px;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
  }

  .site-footer__profile {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-top: 18px;
  }

  .site-footer__profile-image {
    width: 54px;
    height: 34px;
    padding: 5px 8px;
  }

  .site-footer__profile-text {
    font-size: 14px;
    line-height: 1.38;
    letter-spacing: -0.01em;
  }

  .site-footer__social {
    width: 100%;
    gap: 8px;
    margin-top: 18px;
  }

  .site-footer__social a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(64, 57, 59, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: #40393b;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .site-footer__copyright {
    margin-top: 16px;
    color: #76716d;
    font-size: 11px;
  }

  .site-footer__info {
    gap: 10px;
  }

  .site-footer__block {
    padding: 12px 0 0;
  }

  .site-footer__label {
    margin-bottom: 8px;
    color: #76716d;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .site-footer__text,
  .site-footer__link {
    font-size: 15px;
    line-height: 1.34;
    letter-spacing: -0.01em;
  }

  .site-footer__block--phone {
    display: grid;
    gap: 6px;
  }

  .site-footer__phone {
    width: fit-content;
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1;
    letter-spacing: -0.07em;
  }

  .site-footer__utility {
    justify-content: flex-start;
  }

  .site-footer__top {
    width: auto;
    height: 38px;
    min-width: 78px;
    grid-auto-flow: column;
    gap: 8px;
    padding: 0 14px;
    background: #ebeae6;
    color: #5c6063;
  }

  .site-footer__top-mark {
    width: 14px;
    height: 16px;
  }

  .site-footer__top-mark::before {
    height: 15px;
    top: 2px;
  }

  .site-footer__top-mark::after {
    width: 8px;
    height: 8px;
    top: 2px;
  }

  .site-footer__top-label {
    font-size: 9px;
  }

  .site-footer__meta {
    justify-content: flex-start;
    margin-top: 2px;
    padding-top: 12px;
    text-align: left;
  }

  .site-footer__credit {
    color: #76716d;
    font-size: 11px;
  }
}

@media (min-width: 768px) {
  :root {
    --page-gutter: 56px;
  }

  .site-nav {
    width: auto;
    overflow: visible;
  }

  .site-header__inner {
    width: 100%;
    max-width: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }

  .page-home .site-brand {
    margin-left: clamp(46px, 3vw, 64px);
  }

  .site-nav__list {
    justify-content: flex-end;
  }

  .page-main {
    padding-top: 72px;
    padding-bottom: 120px;
  }

  .page-main--home {
    padding: 0 0 120px;
  }

  .home-truth {
    padding-top: 42px;
    padding-bottom: clamp(128px, 12vw, 196px);
  }

  .home-truth__inner {
    width: min(100%, calc(var(--content-width) + 140px));
    gap: 56px;
  }

  .home-truth__title {
    max-width: 24ch;
  }

  .home-orbit__intro {
    top: clamp(46px, 8vh, 76px);
    left: 50%;
    transform: translateX(-50%);
    width: min(980px, calc(100vw - (var(--page-gutter) * 2)));
    max-width: none;
    text-align: center;
  }

  .home-orbit__title {
    font-size: clamp(1.53rem, 1.84vw, 2.16rem);
  }

  .home-orbit__circle {
    width: min(72vw, 1360px);
    top: 94%;
  }

  .home-orbit__description {
    width: min(40vw, 520px);
  }

  .services-glass__grid {
    gap: 20px;
  }

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

  .site-footer__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(40px, 6vw, 118px);
    align-items: start;
  }

  .site-footer__profile {
    flex-direction: row;
    align-items: center;
  }

  .site-footer__info {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 54px 32px;
    align-items: end;
  }

  .site-footer__block {
    min-height: 146px;
    padding-top: 18px;
  }

  .site-footer__utility {
    justify-content: flex-end;
  }

  .site-footer__top {
    width: 84px;
    height: 84px;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero__shell {
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
    gap: 28px 48px;
    align-items: start;
  }

  .home-hero__content {
    position: absolute;
    top: clamp(205px, 22vh, 255px);
    left: clamp(110px, 8vw, 150px);
    z-index: 2;
    max-width: min(58vw, 900px);
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-hero__cta {
    margin-top: clamp(80px, 12vh, 120px);
  }

  .home-hero__visual {
    min-height: 100%;
  }

  .home-hero__aside {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    margin-top: 78px;
    margin-right: clamp(330px, 21vw, 410px);
    z-index: 2;
  }

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

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

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

@media (min-width: 768px) and (max-width: 1024px) {
  .home-process {
    padding: 98px 36px 108px;
  }

  .home-process__shell {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .home-process__copy {
    max-width: 570px;
  }

  .home-process__title {
    font-size: 58px;
  }

  .home-process__steps {
    width: min(100%, 720px);
    margin-left: auto;
  }

  .home-space {
    padding: 94px 0 82px;
  }

  .home-space__heading {
    margin-bottom: 58px;
  }

  .home-space__title {
    font-size: 44px;
    line-height: 1.15;
  }

  .home-space__frame {
    flex-basis: 300px;
    height: 360px;
  }

  .home-space__frame--wide {
    flex-basis: 420px;
  }

  .home-space__frame--narrow {
    flex-basis: 280px;
  }

  .home-space__frame--slim {
    flex-basis: 220px;
  }

  .home-space__note {
    margin-top: 58px;
  }

  .home-about {
    padding: 96px 36px 108px;
  }

  .home-about__shell {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .home-about__media {
    width: min(100%, 560px);
  }

  .home-about__content {
    max-width: 700px;
  }

  .home-about__title {
    font-size: 46px;
  }

  .home-testimonials {
    padding: 76px var(--page-gutter) 88px;
  }

  .home-testimonials__heading {
    margin-bottom: 48px;
  }

  .home-testimonials__title {
    font-size: 38px;
  }

  .home-testimonial-card {
    min-height: 0;
    padding: 24px;
  }

  .home-testimonial-card p {
    font-size: 16px;
    line-height: 1.52;
  }
}

@media (max-width: 767px) {
  .page-home .site-header {
    position: relative;
    inset: auto;
    padding: 16px 16px 10px;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(255, 250, 245, 0.9));
    border-bottom: 1px solid rgba(89, 50, 27, 0.08);
    backdrop-filter: blur(12px);
  }

  .page-home .site-header__inner {
    gap: 12px;
  }

  .page-home .site-brand {
    gap: 12px;
  }

  .site-brand__mark {
    width: 40px;
    height: 40px;
  }

  .page-home .site-brand__text {
    gap: 4px;
  }

  .page-home .site-brand__label {
    font-size: 15px;
  }

  .page-home .site-brand__sub {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .page-home .site-nav {
    width: calc(100% + 8px);
    margin: 0 -4px;
  }

  .page-home .site-nav__list {
    gap: 16px;
    padding: 0 4px;
  }

  .page-home .site-nav__item + .site-nav__item::before {
    display: none;
  }

  .page-home .site-nav__link {
    font-size: 13px;
    letter-spacing: -0.04em;
  }

  .home-truth {
    padding: 28px 20px 38px;
  }

  .home-truth__inner {
    gap: 26px;
  }

  .home-truth__intro {
    justify-content: flex-start;
  }

  .home-truth__eyebrow {
    max-width: 280px;
    gap: 10px;
    font-size: 15px;
    line-height: 1.1;
  }

  .home-truth__icon {
    width: 18px;
    height: 18px;
    margin-top: 0;
  }

  .home-truth__title {
    max-width: 11ch;
    font-size: clamp(1.6rem, 6vw, 2.25rem);
    line-height: 1.05;
  }

  .services-glass {
    padding: 0 20px 76px;
  }

  .services-glass__grid {
    flex-direction: column;
    gap: 14px;
  }

  .services-glass-card,
  .services-glass-card[open] {
    min-height: 0;
    padding: 14px 12px 12px;
    border-radius: 20px;
    flex: 1 1 auto;
  }

  .services-glass-card__summary {
    min-height: 96px;
    padding-bottom: 14px;
  }

  .services-glass-card__title {
    max-width: 11ch;
    font-size: 20px;
    line-height: 1.04;
  }

  .services-glass-card[open] .services-glass-card__content {
    margin-top: 12px;
  }

  .services-glass-card__text {
    font-size: 15px;
    line-height: 1.42;
  }

  .services-glass-card__footer {
    margin-top: 12px;
    padding-top: 10px;
  }

  .services-glass-card__link {
    font-size: 14px;
  }

  .home-process {
    padding: 78px 20px 84px;
  }

  .home-process__shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-process__copy {
    max-width: 330px;
  }

  .home-process__eyebrow {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .home-process__title {
    font-size: 46px;
    line-height: 1.04;
  }

  .home-process__intro {
    max-width: none;
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.5;
  }

  .home-process__link {
    min-width: 0;
    width: 100%;
    margin-top: 32px;
    font-size: 17px;
  }

  .home-process-step {
    grid-template-columns: 54px 1px minmax(0, 1fr);
    gap: 18px;
    padding: 30px 0 32px;
  }

  .home-process-step__number {
    font-size: 42px;
  }

  .home-process-step__divider {
    height: 92px;
  }

  .home-process-step__title {
    font-size: 27px;
    line-height: 1.12;
  }

  .home-process-step__text {
    margin-top: 13px;
    font-size: 16px;
    line-height: 1.5;
  }

  .home-process-step__text br {
    display: none;
  }

  .home-space {
    padding: 70px 0 64px;
  }

  .home-orbit {
    height: 430svh;
  }

  .home-orbit__inner {
    padding: 0;
  }

  .home-orbit__intro {
    top: 34px;
    left: 20px;
    width: calc(100vw - 40px);
    max-width: none;
  }

  .home-orbit__eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .home-orbit__title {
    font-size: clamp(1.07rem, 4.47vw, 1.4rem);
    line-height: 1.02;
    white-space: normal;
  }

  .home-orbit__circle {
    left: 50%;
    top: 66%;
    width: 255vw;
    border-width: 1px;
  }

  .home-orbit__badge {
    top: -48px;
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .home-orbit__dot {
    width: 10px;
    height: 10px;
  }

  .home-orbit__description {
    width: min(84vw, 360px);
  }

  .home-orbit__card-title {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 0.98;
  }

  .home-orbit__card-text {
    margin-top: 16px;
    max-width: 18rem;
    font-size: 16px;
    line-height: 1.45;
  }

  .home-orbit__card-text--large {
    font-size: 16px;
  }

  .home-orbit__connector {
    height: 292px;
    margin-top: 10px;
  }

  .home-orbit__card {
    margin-top: 24px;
  }

  .home-space__heading {
    width: auto;
    margin: 0 20px 38px;
  }

  .home-space__eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .home-space__title {
    font-size: 35px;
    line-height: 1.1;
  }

  .home-space__title br {
    display: none;
  }

  .home-space__gallery {
    --home-space-gallery-gap: 10px;
    --home-space-marquee-shift: calc(-50% - 5px);
    width: 100vw;
    margin-left: 50%;
    overflow: hidden;
    transform: translateX(-50%);
  }

  .home-space__gallery::before,
  .home-space__gallery::after {
    width: 74px;
  }

  .home-space__track {
    animation-duration: 46s;
  }

  .home-space__frame,
  .home-space__frame--narrow,
  .home-space__frame--wide,
  .home-space__frame--slim {
    flex: 0 0 210px;
    height: 218px;
  }

  .home-space__frame--wide {
    flex-basis: 270px;
    height: 218px;
  }

  .home-space__frame--narrow {
    flex-basis: 205px;
  }

  .home-space__frame--slim {
    flex-basis: 178px;
  }

  .home-space__note {
    width: auto;
    margin: 42px 20px 0;
  }

  .home-about {
    padding: 72px 20px 82px;
  }

  .home-about__shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-about__media {
    border-radius: 24px;
  }

  .home-about__media img {
    aspect-ratio: 4 / 4.8;
    object-position: center 24%;
  }

  .home-about__eyebrow {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .home-about__title {
    font-size: 35px;
    line-height: 1.08;
  }

  .home-about__title br {
    display: none;
  }

  .home-about__text {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.54;
  }

  .home-about__text p + p {
    margin-top: 20px;
  }

  .home-about__link {
    min-width: 0;
    width: 100%;
    margin-top: 34px;
    font-size: 17px;
  }

  .home-testimonials {
    padding: 58px 20px 68px;
  }

  .home-testimonials__heading {
    width: auto;
    margin: 0 0 38px;
    text-align: left;
  }

  .home-testimonials__eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .home-testimonials__title {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
    line-height: 1.02;
  }

  .home-testimonials__intro {
    font-size: 16px;
    line-height: 1.55;
  }

  .home-testimonial-card {
    min-height: 0;
    padding: 20px;
    border-radius: 8px;
  }

  .home-testimonial-card::before {
    top: 14px;
    right: 18px;
    font-size: 56px;
  }

  .home-testimonial-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-testimonial-card__initials {
    margin-top: 14px;
    min-height: 26px;
    font-size: 11px;
  }

  .home-hero {
    min-height: auto;
    height: auto;
    padding-bottom: 26px;
    background: #fffaf5;
    overflow: visible;
  }

  .home-hero__shell {
    position: static;
    inset: auto;
    padding: 20px 20px 12px;
    transform: none;
    gap: 22px;
  }

  .home-hero__visual {
    position: relative;
    height: clamp(188px, 52vw, 228px);
    overflow: hidden;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

  .home-hero__visual::after {
    height: 72px;
  }

  .home-hero__scene {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
  }

  .home-hero__content {
    max-width: none;
    gap: 16px;
  }

  .home-hero__title {
    max-width: 8ch;
    font-size: clamp(2.3rem, 11vw, 3.3rem);
    line-height: 0.94;
    letter-spacing: -0.035em;
    white-space: normal;
    text-wrap: balance;
  }

  .home-hero__rule {
    width: 58px;
  }

  .home-hero__body {
    max-width: none;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .home-hero__cta {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    font-size: 13px;
  }

  .home-hero__meta {
    gap: 8px;
    font-size: 10px;
  }

  .home-hero__meta li {
    min-width: calc(50% - 4px);
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    padding: 10px 8px;
    border: 1px solid rgba(89, 50, 27, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
  }

  .home-hero__meta li + li::before {
    display: none;
  }

  .home-hero__aside {
    max-width: 14rem;
    margin: 0;
    padding-left: 16px;
    gap: 8px;
  }

  .home-hero__aside::before {
    top: 4px;
    bottom: 4px;
  }

  .home-hero__quote {
    font-size: clamp(2rem, 10vw, 2.5rem);
    line-height: 0.95;
  }

  .home-hero__quote-text {
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 1024px) {
  .home-final-cta {
    padding: 88px 20px 98px;
  }

  .home-final-cta__shell {
    padding: 62px 44px 58px;
    border-radius: 30px;
  }
}

@media (max-width: 767px) {
  .home-final-cta {
    padding: 70px 20px 78px;
  }

  .home-final-cta__shell {
    padding: 44px 22px 38px;
    border-radius: 26px;
  }

  .home-final-cta__eyebrow {
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .home-final-cta__title {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .home-final-cta__title br {
    display: none;
  }

  .home-final-cta__text {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.42;
  }

  .home-final-cta__actions {
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }

  .home-final-cta__button {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
  }

  .home-final-cta__message {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
  }

  .page-home,
  .page-main--home,
  .page-main--home > section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    touch-action: pan-y;
  }

  .page-main--home {
    padding-bottom: 0;
    overflow-x: hidden;
  }

  .page-home .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 30;
    padding: 18px 18px 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .page-home .site-header__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .page-home .site-brand {
    gap: 10px;
    color: #fffdf8;
  }

  .page-home .site-brand__mark {
    width: 42px;
    height: 42px;
  }

  .page-home .site-brand__label {
    font-size: 18px;
    line-height: 0.96;
  }

  .page-home .site-brand__sub {
    font-size: 10px;
    letter-spacing: 0.17em;
  }

  .page-home .site-nav {
    display: none;
  }

  .site-mobile-menu-open {
    overflow: hidden;
  }

  .site-mobile-toggle {
    display: inline-flex;
    position: relative;
    z-index: 52;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 253, 248, 0.34);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.1);
    color: #fffdf8;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
  }

  .site-mobile-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .site-mobile-toggle span:first-child {
    transform: translateY(-4px);
  }

  .site-mobile-toggle span:last-child {
    transform: translateY(4px);
  }

  .site-mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    z-index: 80;
    display: grid;
    grid-template-rows: 72px auto minmax(0, 1fr) auto;
    justify-items: center;
    padding: max(20px, env(safe-area-inset-top)) 24px max(22px, env(safe-area-inset-bottom));
    color: rgba(255, 253, 248, 0.94);
    background:
      linear-gradient(180deg, rgba(42, 42, 42, 0.74), rgba(104, 92, 93, 0.78)),
      rgba(36, 36, 36, 0.72);
    backdrop-filter: blur(28px) saturate(120%);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    transition:
      opacity 240ms ease,
      transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-mobile-menu__close {
    grid-row: 1;
    align-self: center;
    position: relative;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fffdf8;
  }

  .site-mobile-menu__close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 1.5px;
    background: currentColor;
    transform-origin: center;
  }

  .site-mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-mobile-menu__line {
    grid-row: 2;
    display: block;
    width: 164px;
    height: 2px;
    margin: 0 0 clamp(18px, 3vh, 26px);
    background: #a7cf2d;
  }

  .site-mobile-menu__nav {
    grid-row: 3;
    display: grid;
    align-content: start;
    gap: clamp(12px, 2.2vh, 18px);
    width: min(100%, 320px);
    padding-bottom: 22px;
  }

  .site-mobile-menu__link {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    color: rgba(255, 253, 248, 0.9);
    font-family: "InterVariable", "Inter", sans-serif;
    font-size: clamp(1.02rem, 4.7vw, 1.28rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.1em;
    text-decoration: none;
  }

  .site-mobile-menu__group {
    display: grid;
    gap: 10px;
  }

  .site-mobile-menu__group-label {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    color: rgba(255, 253, 248, 0.9);
    font-family: "InterVariable", "Inter", sans-serif;
    font-size: clamp(1.02rem, 4.7vw, 1.28rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .site-mobile-menu__group.is-current .site-mobile-menu__group-label {
    color: #a7cf2d;
  }

  .site-mobile-menu__subnav {
    display: grid;
    gap: 8px;
    padding-left: 60px;
  }

  .site-mobile-menu__sublink {
    color: rgba(255, 253, 248, 0.78);
    font-family: "InterVariable", "Inter", sans-serif;
    font-size: clamp(0.92rem, 4vw, 1.04rem);
    font-weight: 360;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-decoration: none;
    overflow-wrap: anywhere;
  }

  .site-mobile-menu__link.is-current,
  .site-mobile-menu__sublink.is-current,
  .site-mobile-menu__sublink:hover,
  .site-mobile-menu__sublink:focus-visible,
  .site-mobile-menu__link:hover,
  .site-mobile-menu__link:focus-visible {
    color: #a7cf2d;
  }

  .site-mobile-menu__icon {
    width: 28px;
    height: 28px;
    border: 1.4px solid currentColor;
    border-radius: 50%;
    opacity: 0.95;
  }

  .site-mobile-menu__link:nth-child(2) .site-mobile-menu__icon {
    border-radius: 6px;
  }

  .site-mobile-menu__link:nth-child(3) .site-mobile-menu__icon {
    border-radius: 0;
    transform: rotate(45deg) scale(0.82);
  }

  .site-mobile-menu__group .site-mobile-menu__icon {
    border-radius: 0;
    transform: rotate(45deg) scale(0.82);
  }

  .site-mobile-menu__link:nth-child(4) .site-mobile-menu__icon,
  .site-mobile-menu__link:nth-child(5) .site-mobile-menu__icon {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .site-mobile-menu__link:nth-child(6) .site-mobile-menu__icon {
    border-radius: 50% 50% 8px 8px;
  }

  .site-mobile-menu__link:nth-child(7) .site-mobile-menu__icon {
    border-radius: 3px;
  }

  .site-mobile-menu__link:nth-child(8) .site-mobile-menu__icon {
    width: 30px;
    height: 20px;
    border-radius: 2px;
  }

  .site-mobile-menu__social {
    position: static;
    grid-row: 4;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: min(100%, 320px);
    padding-top: 12px;
    border-top: 1px solid rgba(255, 253, 248, 0.16);
  }

  .site-mobile-menu__social a {
    color: rgba(255, 253, 248, 0.9);
    font-family: "InterVariable", "Inter", sans-serif;
    font-size: 13px;
    font-weight: 420;
    line-height: 1;
    letter-spacing: 0.14em;
    text-decoration: none;
  }

  .home-hero {
    position: relative;
    min-height: 100svh;
    height: auto;
    padding: 0;
    background: #24160f;
    overflow: hidden;
  }

  .home-hero__visual {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 100%;
    border-radius: 0;
  }

  .home-hero__visual::after {
    height: 100%;
    background:
      linear-gradient(180deg, rgba(20, 13, 9, 0.28) 0%, rgba(20, 13, 9, 0.08) 36%, rgba(20, 13, 9, 0.72) 100%),
      linear-gradient(90deg, rgba(20, 13, 9, 0.38) 0%, rgba(20, 13, 9, 0.08) 56%, rgba(20, 13, 9, 0.3) 100%);
  }

  .home-hero__scene {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% center;
  }

  .home-hero__shell {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    padding: clamp(116px, 21vh, 154px) 20px 28px;
    display: grid;
    align-content: end;
    gap: 22px;
  }

  .home-hero__content {
    max-width: none;
    gap: 14px;
  }

  .home-hero__title {
    max-width: 9.4ch;
    color: #fffdf8;
    font-size: clamp(3.05rem, 14vw, 4.45rem);
    line-height: 0.91;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .home-hero__title span:first-child {
    white-space: normal;
  }

  .home-hero__body {
    max-width: 22rem;
    color: rgba(255, 253, 248, 0.9);
    font-size: 17px;
    line-height: 1.48;
  }

  .home-hero__cta {
    width: 100%;
    min-height: 58px;
    margin-top: 8px;
    color: #40393b;
    background: rgba(255, 253, 248, 0.96);
    font-size: 14px;
  }

  .home-hero__meta {
    gap: 8px;
    color: rgba(255, 253, 248, 0.9);
    font-size: 10px;
  }

  .home-hero__meta li {
    min-width: calc(50% - 4px);
    flex: 1 1 calc(50% - 4px);
    padding: 9px 8px;
    border: 1px solid rgba(255, 253, 248, 0.22);
    background: rgba(255, 253, 248, 0.08);
    backdrop-filter: blur(8px);
  }

  .home-hero__aside {
    max-width: 17rem;
    margin: 0;
    padding-left: 16px;
    color: #fffdf8;
  }

  .home-hero__quote {
    font-size: clamp(2rem, 9.8vw, 2.8rem);
  }

  .home-truth {
    padding: 54px 20px 46px;
  }

  .home-truth__inner {
    gap: 30px;
  }

  .home-truth__intro {
    justify-content: flex-start;
  }

  .home-truth__title {
    max-width: 9.8ch;
    margin: 0;
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-align: left;
  }

  .home-orbit {
    height: auto;
    padding: 54px 20px 68px;
    background: #ffffff;
    overflow-x: hidden;
  }

  .home-orbit__sticky,
  .home-orbit__inner,
  .home-orbit__stage,
  .home-orbit__circle-wrap,
  .home-orbit__circle-height,
  .home-orbit__circle,
  .home-orbit__circle-list {
    position: static;
    inset: auto;
    width: auto;
    height: auto !important;
    min-height: 0;
    overflow: visible;
    transform: none !important;
    aspect-ratio: auto;
  }

  .home-orbit__intro {
    position: static;
    width: auto;
    margin: 0 0 30px;
    text-align: left;
    transform: none;
  }

  .home-orbit__title {
    max-width: 20rem;
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -0.045em;
  }

  .home-orbit__circle {
    display: grid;
    gap: 12px;
    border: 0;
    opacity: 1;
  }

  .home-orbit__circle-list {
    display: grid;
  }

  .home-orbit__item {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(31, 31, 31, 0.12);
    pointer-events: auto;
    transform: none !important;
  }

  .home-orbit__item:last-child {
    border-bottom: 1px solid rgba(31, 31, 31, 0.12);
  }

  .home-orbit__anchor,
  .home-orbit__badge {
    position: static;
    transform: none !important;
  }

  .home-orbit__anchor {
    width: auto;
    height: auto;
  }

  .home-orbit__badge {
    width: 36px;
    height: 24px;
    border-color: rgba(31, 31, 31, 0.45);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 420;
  }

  .home-orbit__dot,
  .home-orbit__connector {
    display: none;
  }

  .home-orbit__description {
    position: static;
    width: auto;
    opacity: 1;
    text-align: left;
    pointer-events: auto;
    transform: none !important;
  }

  .home-orbit__card {
    margin-top: 0;
    text-align: left;
  }

  .home-orbit__card-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .home-orbit__card-link::before,
  .home-orbit__card-link::after {
    display: none;
  }

  .home-orbit__card-text {
    margin: 12px 0 0;
    max-width: 19rem;
    font-size: 16px;
    line-height: 1.42;
  }

  .home-process {
    padding: 64px 20px 70px;
  }

  .home-process__shell {
    gap: 34px;
  }

  .home-process__copy {
    max-width: none;
  }

  .home-process__eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .home-process__title {
    font-size: clamp(3rem, 13vw, 4.2rem);
    line-height: 0.98;
  }

  .home-process__intro {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.48;
  }

  .home-process__link {
    margin-top: 24px;
    min-height: 56px;
  }

  .home-process-step {
    grid-template-columns: 48px 1px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0 26px;
  }

  .home-process-step__number {
    font-size: 36px;
  }

  .home-process-step__divider {
    height: 84px;
  }

  .home-process-step__title {
    font-size: 25px;
  }

  .home-process-step__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.45;
  }

  .home-space {
    padding: 58px 0 58px;
    overflow: hidden;
  }

  .home-space__gallery {
    width: 100%;
    max-width: 100vw;
    margin-left: 0;
    overflow: hidden;
    contain: paint;
    transform: none;
  }

  .home-space__track {
    max-width: none;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    touch-action: pan-y;
  }

  .home-space__heading {
    margin: 0 20px 30px;
  }

  .home-space__title {
    font-size: clamp(2.45rem, 10.5vw, 3.2rem);
    line-height: 1.02;
  }

  .home-space__frame,
  .home-space__frame--narrow,
  .home-space__frame--wide,
  .home-space__frame--slim {
    flex-basis: 190px;
    height: 196px;
  }

  .home-space__frame--wide {
    flex-basis: 246px;
  }

  .home-space__frame--narrow {
    flex-basis: 178px;
  }

  .home-space__note {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.45;
  }

  .home-about {
    padding: 62px 20px 70px;
  }

  .home-testimonials {
    padding: 50px 20px 58px;
  }

  .home-final-cta {
    padding: 58px 20px 66px;
  }

  .home-final-cta__shell {
    padding: 38px 20px 34px;
  }

  .home-final-cta__title {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
  }
}

@media (max-width: 767px) {
  .home-orbit__card-link {
    display: inline !important;
    text-decoration: none;
  }

  .home-orbit__card-link::before,
  .home-orbit__card-link::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 767px) {
  body:not(.page-home):not(.page-first-step):not(.page-work-method) .site-mobile-toggle {
    border-color: rgba(64, 57, 59, 0.26);
    background: rgba(255, 255, 255, 0.72);
    color: #40393b;
  }

  body:not(.page-home):not(.page-first-step):not(.page-work-method) .site-mobile-toggle:focus-visible {
    outline: 2px solid rgba(64, 57, 59, 0.26);
    outline-offset: 4px;
  }

  .woman-program-intro {
    padding: 62px 20px 50px;
  }

  .woman-program-intro__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .woman-program-intro__label {
    font-size: 12px;
    line-height: 1.1;
  }

  .woman-program-intro__title {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    text-align: left;
  }

  .woman-themes,
  .page-child-development .woman-themes {
    width: 100%;
    min-height: auto;
    display: block;
    padding: 58px 20px 72px;
  }

  .woman-themes__inner {
    width: 100%;
    gap: 30px;
    padding-top: 22px;
  }

  .woman-themes__head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .woman-themes__eyebrow,
  .child-programs-clean__eyebrow {
    grid-column: auto;
    justify-self: start;
    font-size: 12px;
    line-height: 1.1;
  }

  .woman-themes__title,
  .child-programs-clean__title {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.15rem);
    line-height: 1;
    letter-spacing: -0.058em;
  }

  .woman-themes__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .woman-themes__profile {
    width: 100%;
  }

  .woman-themes__image {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    border-radius: 18px;
  }

  .woman-themes__list {
    width: 100%;
    margin-top: 0;
  }

  .woman-themes__item {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 22px 0;
  }

  .woman-themes__number {
    justify-self: start;
    min-width: 48px;
    height: 28px;
  }

  .woman-themes__item h3 {
    width: 100%;
    max-width: 20rem;
    font-size: clamp(1.28rem, 6vw, 1.55rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .woman-themes__item h3 br {
    display: none;
  }

  .woman-fixed-image {
    min-height: auto;
    padding: 64px 20px 72px;
    border-radius: 22px 22px 0 0;
  }

  .woman-fixed-image__inner {
    min-height: 0;
  }

  .woman-fixed-image__content {
    gap: 36px;
  }

  .woman-fixed-image__title {
    max-width: none;
    font-size: clamp(2.7rem, 13vw, 4.15rem);
  }

  .woman-fixed-image__list {
    margin-top: 34px;
  }

  .woman-fixed-image__list p {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    font-size: 1rem;
    line-height: 1.28;
  }

  .woman-fixed-image__list span {
    grid-column: 1;
    justify-self: start;
  }

  .woman-fixed-image__support p {
    padding: 10px 0 10px 18px;
    font-size: 0.98rem;
    line-height: 1.32;
  }

  .child-seo-programs {
    min-height: auto;
  }

  .child-seo-programs__head {
    position: relative;
    top: auto;
    padding: 64px 20px 38px;
    text-align: left;
  }

  .child-seo-programs__head h2 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .child-seo-programs__grid {
    grid-template-columns: 1fr;
  }

  .child-seo-program {
    min-height: auto;
    padding: 0 20px 38px;
    border-right: 0;
    border-bottom: 1px dashed rgba(16, 16, 16, 0.22);
  }

  .child-seo-program__sticky {
    position: static;
    min-height: 0;
    padding: 26px 0 18px;
  }

  .child-seo-program h3 {
    font-size: clamp(1.8rem, 8.8vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.058em;
  }

  .child-seo-program__age {
    font-size: 1.1rem;
  }

  .child-seo-program ul {
    gap: 9px;
    padding-left: 1em;
  }

  .child-seo-program li {
    font-size: 1rem;
    line-height: 1.34;
  }

  .child-final-cta {
    padding: 64px 20px 76px;
  }

  .child-final-cta__title {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.02;
  }

  .child-final-cta__text {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
    line-height: 1.05;
  }

  .child-final-cta__button {
    width: 100%;
    min-height: 58px;
  }
}

.blog-page {
  background: #f7f7f7;
  color: #202124;
}

.blog-hero {
  padding: 132px var(--page-gutter) 20px;
  background: #f7f7f7;
}

.blog-hero__inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.blog-hero__eyebrow {
  margin: 0 0 18px;
  color: #6b6765;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.78rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-hero__title {
  margin: 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 8.5rem;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0;
}

.blog-hero__text {
  max-width: 520px;
  margin: 22px 0 0;
  color: #66615e;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1.06rem;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: 0;
}

.blog-mosaic {
  padding: 18px 0 94px;
  background: #f7f7f7;
}

.blog-mosaic__shell {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.blog-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.blog-mosaic-card {
  position: relative;
  min-height: 410px;
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 22px;
  background: #fffdf8;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(64, 57, 59, 0.07);
}

.blog-mosaic-card--featured {
  grid-column: span 2;
}

.blog-mosaic-card__hit {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.blog-mosaic-card__plus {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #40393b;
  color: #fffdf8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 600;
}

.blog-mosaic-card__thumb {
  width: 104px;
  height: 104px;
  margin: 0;
  flex: 0 0 104px;
  border-radius: 16px;
  overflow: hidden;
  background: #ebeae6;
  box-shadow: 0 14px 24px rgba(64, 57, 59, 0.12);
}

.blog-mosaic-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.blog-mosaic-card__overlay {
  display: none;
}

.blog-mosaic-card__copy {
  position: relative;
  z-index: 2;
  min-height: 210px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-mosaic-card__date {
  color: #8b8783;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.blog-mosaic-card__title {
  margin: 12px 0 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1.72rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.blog-mosaic-card__excerpt {
  margin: 12px 0 0;
  color: #696460;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.96rem;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: 0;
}

.blog-mosaic-card--featured .blog-mosaic-card__hit {
  min-height: 100%;
  padding: 0;
}

.blog-mosaic-card--featured .blog-mosaic-card__plus {
  display: none;
}

.blog-mosaic-card--featured .blog-mosaic-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  flex-basis: auto;
  border-radius: 0;
  box-shadow: none;
}

.blog-mosaic-card--featured .blog-mosaic-card__thumb img {
  height: 100%;
  transform: scale(1.02);
}

.blog-mosaic-card--featured .blog-mosaic-card__image--natasa {
  object-position: center 18%;
}

.blog-mosaic-card--featured .blog-mosaic-card__overlay {
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(34, 30, 31, 0.04) 0%, rgba(34, 30, 31, 0.3) 48%, rgba(34, 30, 31, 0.86) 100%);
  z-index: 1;
  transition: background 0.35s ease;
}

.blog-mosaic-card--featured .blog-mosaic-card__copy {
  min-height: auto;
  max-width: 610px;
  margin-top: auto;
  padding: 32px 34px 34px;
  color: #fffdf8;
}

.blog-mosaic-card--featured .blog-mosaic-card__date,
.blog-mosaic-card--featured .blog-mosaic-card__title,
.blog-mosaic-card--featured .blog-mosaic-card__excerpt {
  color: inherit;
}

.blog-mosaic-card--featured .blog-mosaic-card__date,
.blog-mosaic-card--featured .blog-mosaic-card__excerpt {
  color: rgba(255, 253, 248, 0.82);
}

.blog-mosaic-card--featured .blog-mosaic-card__title {
  max-width: 560px;
  margin-top: 12px;
  font-size: 3.6rem;
  line-height: 0.96;
  font-weight: 500;
}

.blog-mosaic-card--featured .blog-mosaic-card__excerpt {
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.45;
}

.blog-mosaic-card:hover .blog-mosaic-card__thumb img {
  transform: scale(1.08);
  filter: blur(2px);
}

.blog-mosaic-card--featured:hover .blog-mosaic-card__overlay {
  background:
    linear-gradient(180deg, rgba(34, 30, 31, 0.1) 0%, rgba(34, 30, 31, 0.36) 48%, rgba(34, 30, 31, 0.9) 100%);
}

@media (max-width: 1180px) {
  .blog-hero {
    padding-top: 112px;
  }

  .blog-hero__title {
    font-size: 6.4rem;
  }

  .blog-mosaic__shell {
    width: min(100% - 32px, 1240px);
  }

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

  .blog-mosaic-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .blog-hero {
    padding: 96px 20px 16px;
  }

  .blog-hero__title {
    font-size: 4.2rem;
    line-height: 0.94;
  }

  .blog-hero__text {
    max-width: none;
    font-size: 1rem;
  }

  .blog-mosaic {
    padding: 16px 0 64px;
  }

  .blog-mosaic__shell {
    width: min(100% - 24px, 1240px);
  }

  .blog-mosaic__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-mosaic-card,
  .blog-mosaic-card--featured {
    min-height: 360px;
    grid-column: auto;
    border-radius: 20px;
  }

  .blog-mosaic-card__thumb {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .blog-mosaic-card__copy {
    min-height: 180px;
  }

  .blog-mosaic-card__title {
    font-size: 1.58rem;
    line-height: 1.04;
  }

  .blog-mosaic-card--featured .blog-mosaic-card__copy {
    padding: 22px;
  }

  .blog-mosaic-card--featured .blog-mosaic-card__title {
    font-size: 2.35rem;
    line-height: 0.98;
  }
}

.page-blog-post {
  background: #fffdf8;
}

.blog-post-page {
  position: relative;
  z-index: 1;
  padding: 34px 0 0;
  background: #fffdf8;
  color: #202124;
}

.blog-post-shell {
  width: 100%;
  margin: 0;
  padding-right: clamp(56px, 8vw, 170px);
  display: grid;
  grid-template-columns: minmax(360px, 38vw) minmax(0, 700px);
  gap: clamp(54px, 7vw, 124px);
  align-items: start;
}

.blog-post-media {
  min-width: 0;
  position: sticky;
  top: 24px;
  height: calc(100vh - 48px);
}

.blog-post-media__sticky {
  height: 100%;
}

.blog-post-media__frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  margin: 0;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  background: #ebeae6;
  box-shadow: 0 34px 80px rgba(64, 57, 59, 0.16);
}

.blog-post-media__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-post-media__image--natasa {
  object-position: center 20%;
}

.blog-post-media__frame--contain {
  background: #ffffff;
}

.blog-post-media__frame--contain img {
  object-fit: contain;
  padding: clamp(14px, 2vw, 28px);
}

.blog-post-article {
  width: min(100%, 680px);
  padding-top: 20px;
  padding-bottom: 42px;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  margin: 0 0 36px;
  color: #6d6864;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 160ms ease;
}

.blog-post-back:hover,
.blog-post-back:focus-visible {
  color: #40393b;
}

.blog-post-date {
  display: block;
  color: #8b8783;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0;
}

.blog-post-kicker {
  margin: 16px 0 0;
  color: #a6a79a;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-post-title {
  margin: 22px 0 0;
  max-width: 680px;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(3.2rem, 5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.blog-post-excerpt {
  max-width: 620px;
  margin: 28px 0 0;
  color: #5f5a56;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}

.blog-post-author {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.blog-post-author img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 999px;
  object-fit: contain;
  background: #ebeae6;
  padding: 7px;
}

.blog-post-author strong,
.blog-post-author span {
  display: block;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  letter-spacing: 0;
}

.blog-post-author strong {
  color: #202124;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

.blog-post-author span {
  margin-top: 5px;
  color: #7b7672;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 400;
}

.blog-post-share {
  margin-top: 30px;
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-post-share__label {
  margin: 0;
  color: #7b7672;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-post-share__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-post-share__actions a,
.blog-post-share__actions button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(64, 57, 59, 0.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  color: #40393b;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.84rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.blog-post-share__actions a:hover,
.blog-post-share__actions button:hover,
.blog-post-share__actions a:focus-visible,
.blog-post-share__actions button:focus-visible {
  border-color: rgba(166, 167, 154, 0.6);
  background: #ebeae6;
  transform: translateY(-1px);
}

.blog-post-share__status {
  min-height: 1em;
  color: #7b7672;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.3;
}

.blog-post-divider {
  width: 100%;
  height: 1px;
  margin: 54px 0;
  background: rgba(64, 57, 59, 0.14);
}

.blog-post-content {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.blog-post-block h2 {
  margin: 0 0 16px;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1.65rem;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: 0;
}

.blog-post-block p {
  margin: 0 0 18px;
  color: #56514e;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1.06rem;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: 0;
}

.blog-post-block p:last-child {
  margin-bottom: 0;
}

.blog-post-block:first-child p:first-of-type {
  color: #202124;
  font-size: 1.58rem;
  line-height: 1.35;
  font-weight: 500;
}

.blog-post-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ebeae6;
  box-shadow: 0 20px 54px rgba(64, 57, 59, 0.1);
}

.blog-post-figure img {
  width: 100%;
  max-height: 460px;
  display: block;
  object-fit: cover;
}

.blog-post-quote {
  padding: 32px;
  border-left: 4px solid #a6a79a;
  border-radius: 0 18px 18px 0;
  background: #ebeae6;
}

.blog-post-quote p {
  margin: 0;
  color: #40393b;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0;
}

.blog-post-magazine {
  padding: 28px;
  border: 1px solid rgba(64, 57, 59, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(64, 57, 59, 0.08);
}

.blog-post-magazine__head {
  margin-bottom: 22px;
}

.blog-post-magazine__head p {
  margin: 0;
  color: #8b8783;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-post-magazine__head h2 {
  margin: 10px 0 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

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

.blog-post-magazine figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f7f7f7;
}

.blog-post-magazine img {
  width: 100%;
  display: block;
}

.blog-post-cta {
  padding: 86px var(--page-gutter) 98px;
  background: #ebeae6;
}

.blog-post-cta__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.blog-post-cta__eyebrow {
  margin: 0 0 22px;
  color: #6d6864;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-post-cta__title {
  max-width: 720px;
  margin: 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
}

.blog-post-cta__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-post-cta__actions a {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(64, 57, 59, 0.14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #40393b;
  background: #fffdf8;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(64, 57, 59, 0.08);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.blog-post-cta__actions a:first-child {
  background: #a6a79a;
  color: #fffdf8;
}

.blog-post-cta__actions a:hover,
.blog-post-cta__actions a:focus-visible {
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .blog-post-shell {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    padding-right: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .blog-post-media {
    position: relative;
    top: auto;
    height: auto;
    order: 2;
  }

  .blog-post-media__frame {
    min-height: 520px;
    max-height: none;
    border-radius: 28px;
  }

  .blog-post-article {
    width: 100%;
    order: 1;
  }
}

@media (max-width: 767px) {
  .blog-post-page {
    padding-top: 22px;
  }

  .blog-post-shell {
    width: min(100% - 24px, 1180px);
    gap: 26px;
  }

  .blog-post-media__frame {
    min-height: 330px;
    border-radius: 22px;
  }

  .blog-post-media__frame--contain img {
    padding: 10px;
  }

  .blog-post-article {
    padding-top: 0;
  }

  .blog-post-back {
    margin-bottom: 28px;
  }

  .blog-post-title {
    margin-top: 18px;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    line-height: 1;
  }

  .blog-post-excerpt {
    margin-top: 20px;
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .blog-post-divider {
    margin: 36px 0;
  }

  .blog-post-share {
    margin-top: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .blog-post-share__actions {
    width: 100%;
  }

  .blog-post-share__actions a,
  .blog-post-share__actions button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .blog-post-content {
    gap: 32px;
  }

  .blog-post-block h2 {
    font-size: 1.36rem;
    line-height: 1.16;
  }

  .blog-post-block p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .blog-post-block:first-child p:first-of-type {
    font-size: 1.24rem;
    line-height: 1.4;
  }

  .blog-post-quote {
    padding: 24px;
  }

  .blog-post-magazine {
    padding: 18px;
    border-radius: 20px;
  }

  .blog-post-magazine__grid {
    grid-template-columns: 1fr;
  }

  .blog-post-cta {
    padding: 62px 20px 76px;
  }

  .blog-post-cta__title {
    font-size: clamp(1.9rem, 8vw, 2.75rem);
    line-height: 1.08;
  }

  .blog-post-cta__actions {
    display: grid;
  }

  .blog-post-cta__actions a {
    width: 100%;
  }
}

.page-parent-support {
  background: #fffdf8;
  overflow-x: clip;
}

.page-parent-support .site-header {
  position: relative;
  z-index: 20;
  background: #fffdf8;
}

.parent-support-page {
  overflow-x: clip;
  background: #fffdf8;
  color: #202124;
}

.parent-support-hero {
  padding: clamp(58px, 7vw, 96px) var(--page-gutter) clamp(76px, 9vw, 124px);
  background:
    radial-gradient(circle at 78% 12%, rgba(200, 163, 157, 0.2), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f7f7f7 100%);
}

.parent-support-hero__inner,
.parent-support-intro__inner,
.parent-support-fit__inner,
.parent-support-gains__inner,
.parent-support-message__inner,
.parent-support-process__inner,
.parent-support-cta__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.parent-support-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.parent-support-hero__content {
  max-width: 720px;
}

.parent-support-hero__eyebrow,
.parent-support-section-label {
  margin: 0;
  color: #77766f;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.parent-support-hero__title,
.parent-support-section-title,
.parent-support-cta__title {
  margin: 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-weight: 430;
  letter-spacing: -0.045em;
}

.parent-support-hero__title {
  max-width: 12.2ch;
  margin-top: 22px;
  font-size: clamp(3.05rem, 5.8vw, 5.95rem);
  line-height: 0.94;
}

.parent-support-hero__lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: #40393b;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.26rem, 2vw, 2rem);
  font-weight: 430;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.parent-support-hero__text,
.parent-support-intro__content p,
.parent-support-message__text p,
.parent-support-cta__inner p {
  color: #5f5d58;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: -0.015em;
}

.parent-support-hero__text {
  max-width: 680px;
  margin: 24px 0 0;
}

.parent-support-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.parent-support-button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(64, 57, 59, 0.14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #40393b;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.parent-support-button::after {
  content: "\2197";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.7);
  color: inherit;
  font-weight: 400;
  line-height: 1;
}

.parent-support-button--primary {
  background: #a6a79a;
  color: #fffdf8;
  box-shadow: 0 18px 44px rgba(64, 57, 59, 0.12);
}

.parent-support-button--ghost {
  background: rgba(255, 253, 248, 0.74);
  color: #40393b;
}

.parent-support-button:hover,
.parent-support-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(64, 57, 59, 0.22);
}

.parent-support-button:focus-visible {
  outline: 2px solid rgba(166, 167, 154, 0.55);
  outline-offset: 3px;
}

.parent-support-hero__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.9);
  border-radius: 30px;
  background: #ebeae6;
  box-shadow: 0 28px 80px rgba(64, 57, 59, 0.12);
}

.parent-support-hero__image {
  width: 100%;
  height: min(64vh, 620px);
  min-height: 460px;
  object-fit: cover;
}

.parent-support-hero__note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.parent-support-hero__note span {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #40393b;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(12px);
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.parent-support-intro,
.parent-support-process {
  padding: clamp(76px, 9vw, 126px) var(--page-gutter);
  background: #fffdf8;
}

.parent-support-intro__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.72fr);
  gap: clamp(34px, 8vw, 106px);
  align-items: start;
}

.parent-support-section-title {
  font-size: clamp(2.45rem, 5vw, 5.3rem);
  line-height: 0.98;
  text-wrap: balance;
}

.parent-support-intro__content p {
  max-width: 740px;
  margin: 26px 0 0;
}

.parent-support-pillars {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.parent-support-pillar,
.parent-support-fit-card,
.parent-support-gains__grid article {
  border: 1px solid rgba(64, 57, 59, 0.09);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.94);
}

.parent-support-pillar {
  min-height: 236px;
  padding: 24px;
  box-shadow: 0 18px 54px rgba(64, 57, 59, 0.06);
}

.parent-support-pillar span,
.parent-support-fit-card span,
.parent-support-gains__grid span,
.parent-support-process-step span {
  color: #a6a79a;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.parent-support-pillar h3 {
  margin: 56px 0 12px;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 1.28rem;
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.parent-support-pillar p,
.parent-support-fit-card p,
.parent-support-gains__grid p,
.parent-support-process-step p {
  margin: 0;
  color: #5f5d58;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.parent-support-fit {
  padding: clamp(76px, 9vw, 126px) var(--page-gutter);
  background: #ebeae6;
}

.parent-support-section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.72fr);
  gap: clamp(34px, 8vw, 106px);
  align-items: end;
}

.parent-support-section-head--center {
  display: block;
  text-align: center;
}

.parent-support-section-head--center .parent-support-section-title {
  margin: 16px auto 0;
}

.parent-support-fit__grid {
  margin-top: clamp(42px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.parent-support-fit-card {
  min-height: 196px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  box-shadow: 0 18px 54px rgba(64, 57, 59, 0.05);
}

.parent-support-fit-card:nth-child(2),
.parent-support-fit-card:nth-child(5) {
  background: #f7f7f7;
}

.parent-support-fit-card:nth-child(3) {
  background: rgba(166, 167, 154, 0.15);
}

.parent-support-fit-card:nth-child(6) {
  background: rgba(200, 163, 157, 0.18);
}

.parent-support-fit-card p {
  color: #40393b;
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.34;
}

.parent-support-gains {
  padding: clamp(82px, 10vw, 138px) var(--page-gutter);
  background: #f7f7f7;
}

.parent-support-gains__grid {
  margin-top: clamp(42px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.parent-support-gains__grid article {
  min-height: 180px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  background: #fffdf8;
  box-shadow: 0 14px 42px rgba(64, 57, 59, 0.04);
}

.parent-support-gains__grid article:nth-child(odd) {
  background: #ebeae6;
}

.parent-support-gains__wide {
  grid-column: span 2;
  background: #a6a79a !important;
}

.parent-support-gains__wide span,
.parent-support-gains__wide p {
  color: #fffdf8;
}

.parent-support-gains__grid p {
  color: #40393b;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
}

.parent-support-message {
  padding: clamp(82px, 10vw, 136px) var(--page-gutter);
  background: #fffdf8;
}

.parent-support-message__inner {
  padding: clamp(34px, 6vw, 72px);
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.56fr);
  gap: clamp(34px, 8vw, 90px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(235, 234, 230, 0.88)),
    url("../images/razvoj-deteta-hero.webp") center / cover;
  box-shadow: 0 24px 70px rgba(64, 57, 59, 0.08);
}

.parent-support-message__copy .parent-support-section-title {
  margin-top: 18px;
}

.parent-support-message__text {
  padding-top: 34px;
  border-top: 1px solid rgba(64, 57, 59, 0.16);
}

.parent-support-message__text p {
  margin: 0;
}

.parent-support-message__text p + p {
  margin-top: 18px;
}

.parent-support-process__inner {
  display: grid;
  gap: clamp(42px, 6vw, 72px);
}

.parent-support-process__steps {
  border-top: 1px solid rgba(64, 57, 59, 0.14);
}

.parent-support-process-step {
  display: grid;
  grid-template-columns: 100px minmax(240px, 0.62fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 76px);
  padding: 32px 0;
  border-bottom: 1px solid rgba(64, 57, 59, 0.14);
  align-items: start;
}

.parent-support-process-step h3 {
  margin: 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.parent-support-cta {
  padding: clamp(76px, 10vw, 138px) var(--page-gutter);
  background: #ebeae6;
}

.parent-support-cta__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.parent-support-cta__title {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(2.45rem, 5vw, 5.1rem);
  line-height: 0.99;
  text-wrap: balance;
}

.parent-support-cta__inner p {
  max-width: 700px;
  margin: 28px auto 0;
}

.parent-support-cta .parent-support-button {
  margin-top: 34px;
}

@media (max-width: 1040px) {
  .parent-support-hero__inner,
  .parent-support-intro__inner,
  .parent-support-section-head,
  .parent-support-message__inner {
    grid-template-columns: 1fr;
  }

  .parent-support-hero__title {
    max-width: 12ch;
  }

  .parent-support-hero__visual {
    max-width: 620px;
  }

  .parent-support-pillars {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .parent-support-fit__grid,
  .parent-support-gains__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .parent-support-process-step {
    grid-template-columns: 72px minmax(220px, 0.62fr) minmax(240px, 0.8fr);
  }
}

@media (max-width: 767px) {
  .page-parent-support {
    --page-gutter: 20px;
  }

  .parent-support-hero {
    padding: 40px 20px 68px;
  }

  .parent-support-hero__inner {
    gap: 30px;
    width: 100%;
    max-width: 100%;
  }

  .parent-support-hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .parent-support-hero__title {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(3.15rem, 14.2vw, 3.95rem);
    line-height: 0.96;
    letter-spacing: -0.078em;
    overflow-wrap: anywhere;
  }

  .parent-support-hero__lead {
    margin-top: 24px;
    font-size: 1.32rem;
    line-height: 1.22;
  }

  .parent-support-hero__text,
  .parent-support-intro__content p,
  .parent-support-message__text p,
  .parent-support-cta__inner p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .parent-support-hero__actions {
    display: grid;
  }

  .parent-support-button {
    width: 100%;
    min-height: 56px;
  }

  .parent-support-hero__visual {
    border-radius: 24px;
  }

  .parent-support-hero__image {
    height: auto;
    min-height: 340px;
    aspect-ratio: 0.86 / 1;
  }

  .parent-support-hero__note {
    position: static;
    padding: 10px;
    grid-template-columns: 1fr;
  }

  .parent-support-hero__note span {
    min-height: 38px;
  }

  .parent-support-intro,
  .parent-support-fit,
  .parent-support-gains,
  .parent-support-message,
  .parent-support-process,
  .parent-support-cta {
    padding: 62px 20px;
  }

  .parent-support-section-title,
  .parent-support-cta__title {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .parent-support-fit__grid,
  .parent-support-gains__grid,
  .parent-support-pillars {
    grid-template-columns: 1fr;
  }

  .parent-support-gains__wide {
    grid-column: auto;
  }

  .parent-support-pillar,
  .parent-support-fit-card,
  .parent-support-gains__grid article {
    min-height: auto;
    border-radius: 20px;
  }

  .parent-support-pillar h3 {
    margin-top: 34px;
  }

  .parent-support-message__inner {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .parent-support-message__text {
    padding-top: 24px;
  }

  .parent-support-process-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 0;
  }
}

/* 404 page */

.page-error {
  background: #fffdf8;
}

.page-error .site-header {
  position: relative;
  z-index: 20;
  background: #fffdf8;
}

.error-page {
  overflow-x: clip;
  background:
    radial-gradient(circle at 76% 16%, rgba(166, 167, 154, 0.22), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f7f6f2 100%);
  color: #202124;
}

.error-hero {
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  place-items: center;
  padding: clamp(72px, 9vw, 128px) var(--page-gutter);
}

.error-hero__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.error-hero__eyebrow {
  margin: 0;
  color: #77766f;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.error-hero__title {
  max-width: 920px;
  margin: 18px auto 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(3.25rem, 8vw, 7.6rem);
  font-weight: 430;
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.error-hero__lead {
  max-width: 650px;
  margin: 28px auto 0;
  color: #5f5d58;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.52;
}

.error-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.error-hero__button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(64, 57, 59, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.error-hero__button::after {
  content: "\2197";
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(64, 57, 59, 0.08);
  font-size: 1rem;
}

.error-hero__button--primary {
  background: #a6a79a;
  color: #fffdf8;
  box-shadow: 0 18px 44px rgba(64, 57, 59, 0.12);
}

.error-hero__button--primary::after {
  background: rgba(255, 253, 248, 0.24);
}

.error-hero__button:hover,
.error-hero__button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(64, 57, 59, 0.24);
}

.error-hero__button:focus-visible {
  outline: 2px solid rgba(166, 167, 154, 0.55);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .error-hero {
    min-height: 560px;
    padding: 58px 20px 66px;
    place-items: start center;
  }

  .error-hero__inner {
    text-align: left;
  }

  .error-hero__title {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(3.05rem, 15vw, 4.25rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .error-hero__lead {
    margin-top: 24px;
    font-size: 1.06rem;
    line-height: 1.58;
  }

  .error-hero__actions {
    display: grid;
    justify-content: stretch;
    margin-top: 30px;
  }

  .error-hero__button {
    width: 100%;
    min-height: 56px;
  }
}

/* Group therapy page */

.page-group-therapy {
  background: #fffdf8;
  overflow-x: clip;
}

.group-therapy-page {
  overflow-x: clip;
  background: #fffdf8;
  color: #202124;
}

.group-therapy-hero {
  padding: clamp(66px, 8vw, 118px) var(--page-gutter) clamp(76px, 9vw, 132px);
  background:
    radial-gradient(circle at 82% 12%, rgba(166, 167, 154, 0.2), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f6f2ec 100%);
}

.group-therapy-hero__inner,
.group-therapy-process__inner,
.group-therapy-change__inner,
.group-therapy-cta__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.group-therapy-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.54fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}

.group-therapy-eyebrow {
  margin: 0;
  color: #77766f;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.group-therapy-hero__title,
.group-therapy-section-title,
.group-therapy-change__title,
.group-therapy-cta h2 {
  margin: 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-weight: 430;
  letter-spacing: -0.072em;
}

.group-therapy-hero__title {
  max-width: 10.5ch;
  margin-top: 20px;
  font-size: clamp(4rem, 8vw, 8.4rem);
  line-height: 0.91;
}

.group-therapy-hero__lead {
  max-width: 760px;
  margin: 34px 0 0;
  color: #40393b;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.42rem, 2.35vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.group-therapy-hero__actions,
.group-therapy-cta__inner .group-therapy-button {
  margin-top: 34px;
}

.group-therapy-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(64, 57, 59, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  color: #40393b;
  font-family: "InterVariable", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.group-therapy-button::after {
  content: "\2197";
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(64, 57, 59, 0.08);
  font-size: 1rem;
}

.group-therapy-button--primary {
  background: #a6a79a;
  color: #fffdf8;
  box-shadow: 0 18px 44px rgba(64, 57, 59, 0.12);
}

.group-therapy-button--primary::after {
  background: rgba(255, 253, 248, 0.24);
}

.group-therapy-button:hover,
.group-therapy-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(64, 57, 59, 0.22);
}

.group-therapy-button:focus-visible {
  outline: 2px solid rgba(166, 167, 154, 0.55);
  outline-offset: 3px;
}

.group-therapy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.group-therapy-hero__panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(64, 57, 59, 0.12);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 28px 70px rgba(64, 57, 59, 0.08);
}

.group-therapy-hero__panel p,
.group-therapy-process__text p,
.group-therapy-change__inner p,
.group-program p,
.group-program li,
.group-therapy-cta p {
  color: #5f5d58;
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.62;
}

.group-therapy-hero__panel p,
.group-therapy-process__text p,
.group-therapy-change__inner p,
.group-program p {
  margin: 0;
}

.group-therapy-hero__panel p + p,
.group-therapy-process__text p + p,
.group-therapy-change__inner p + p,
.group-program p + p {
  margin-top: 18px;
}

.group-therapy-fit,
.group-therapy-process,
.group-therapy-change,
.group-therapy-programs,
.group-therapy-cta {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(76px, 9vw, 128px) var(--page-gutter);
}

.group-therapy-fit,
.group-therapy-programs {
  background: #ffffff;
}

.group-therapy-fit {
  width: 100%;
  margin: 0 auto;
  border-radius: 34px 34px 0 0;
}

.group-therapy-process,
.group-therapy-change,
.group-therapy-programs,
.group-therapy-cta {
  width: 100%;
  margin: 0 auto;
}

.group-therapy-section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  width: min(100%, 1180px);
  margin: 0 auto clamp(34px, 6vw, 72px);
}

.group-therapy-section-head--wide {
  margin-bottom: clamp(44px, 6vw, 82px);
}

.group-therapy-section-title {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.7vw, 6.2rem);
  line-height: 0.95;
}

.group-therapy-list-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(64, 57, 59, 0.14);
  border-left: 1px solid rgba(64, 57, 59, 0.14);
}

.group-therapy-list-grid p {
  min-height: 180px;
  margin: 0;
  padding: 24px;
  border-right: 1px solid rgba(64, 57, 59, 0.14);
  border-bottom: 1px solid rgba(64, 57, 59, 0.14);
  color: #40393b;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.55vw, 1.5rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.group-therapy-list-grid p::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 44px;
  border-radius: 999px;
  background: #a6a79a;
}

.group-therapy-process {
  background: #ebeae6;
}

.group-therapy-process__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.8fr);
  gap: clamp(34px, 8vw, 112px);
  align-items: start;
}

.group-therapy-change {
  background: #fffdf8;
}

.group-therapy-change__inner {
  padding: clamp(34px, 6vw, 74px);
  border-radius: 30px;
  background: #a6a79a;
  box-shadow: 0 28px 70px rgba(64, 57, 59, 0.12);
}

.group-therapy-change__title {
  max-width: 820px;
  margin-top: 18px;
  color: #fffdf8;
  font-size: clamp(2.65rem, 5.4vw, 5.8rem);
  line-height: 0.96;
}

.group-therapy-change__inner .group-therapy-eyebrow,
.group-therapy-change__inner p {
  color: rgba(255, 253, 248, 0.86);
}

.group-therapy-change__inner p {
  max-width: 760px;
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
}

.group-therapy-change__inner p:first-of-type {
  margin-top: clamp(28px, 4vw, 46px);
}

.group-therapy-programs {
  display: grid;
  gap: clamp(34px, 6vw, 70px);
  background: #fffdf8;
}

.group-program {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(64, 57, 59, 0.12);
  border-radius: 30px;
  background: #fbfaf6;
  box-shadow: 0 24px 70px rgba(64, 57, 59, 0.06);
}

.group-program__header {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  border-bottom: 1px solid rgba(64, 57, 59, 0.12);
}

.group-program__number {
  color: #a6a79a;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 430;
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.group-program h3 {
  max-width: 980px;
  margin: 14px 0 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 430;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.group-program__body {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  padding: clamp(28px, 5vw, 58px);
}

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

.group-program__list-block,
.group-program__split,
.group-program__note {
  border-top: 1px solid rgba(64, 57, 59, 0.14);
  padding-top: clamp(24px, 4vw, 42px);
}

.group-program__list-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 82px);
}

.group-program h4 {
  margin: 0;
  color: #202124;
  font-family: "InterDisplay", "InterVariable", "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 430;
  line-height: 1;
  letter-spacing: -0.052em;
}

.group-program ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.group-program li {
  position: relative;
  padding-left: 22px;
}

.group-program li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #a6a79a;
}

.group-program__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
}

.group-program__split div,
.group-program__note {
  display: grid;
  gap: 16px;
}

.group-program__note {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(64, 57, 59, 0.12);
  border-radius: 24px;
  background: #fffdf8;
}

.group-therapy-cta {
  background: #ebeae6;
}

.group-therapy-cta__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.group-therapy-cta h2 {
  max-width: 1000px;
  margin-top: 18px;
  font-size: clamp(2.6rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.group-therapy-cta__text {
  max-width: 620px;
  margin: 24px auto 0;
  color: #5f5d58;
}

.group-therapy-form {
  width: min(100%, 760px);
  margin: clamp(28px, 4vw, 42px) auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(64, 57, 59, 0.12);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 24px 70px rgba(64, 57, 59, 0.08);
  text-align: left;
}

.group-therapy-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.group-therapy-form .contact-booking__status {
  margin-bottom: 18px;
}

.group-therapy-form .group-therapy-button {
  margin-top: 20px;
}

@media (max-width: 1040px) {
  .group-therapy-hero__inner,
  .group-therapy-section-head,
  .group-therapy-process__inner,
  .group-program__copy,
  .group-program__list-block {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .group-therapy-hero {
    padding: 46px 20px 70px;
  }

  .group-therapy-hero__inner {
    gap: 28px;
  }

  .group-therapy-hero__title {
    max-width: 100%;
    font-size: clamp(3.2rem, 15vw, 4.65rem);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .group-therapy-hero__lead {
    margin-top: 24px;
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .group-therapy-hero__actions {
    display: grid;
  }

  .group-therapy-button {
    width: 100%;
    min-height: 56px;
  }

  .group-therapy-hero__panel {
    padding: 22px;
    border-radius: 24px;
  }

  .group-therapy-fit,
  .group-therapy-process,
  .group-therapy-change,
  .group-therapy-programs,
  .group-therapy-cta {
    padding: 62px 20px;
  }

  .group-therapy-section-head {
    gap: 18px;
    margin-bottom: 30px;
  }

  .group-therapy-section-title,
  .group-therapy-change__title,
  .group-therapy-cta h2 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
    line-height: 0.98;
  }

  .group-therapy-form {
    padding: 20px;
    border-radius: 22px;
  }

  .group-therapy-form__grid {
    grid-template-columns: 1fr;
  }

  .group-therapy-list-grid {
    grid-template-columns: 1fr;
  }

  .group-therapy-list-grid p {
    min-height: auto;
    padding: 20px;
    font-size: 1.2rem;
  }

  .group-therapy-list-grid p::before {
    margin-bottom: 26px;
  }

  .group-therapy-change__inner {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .group-program {
    border-radius: 24px;
  }

  .group-program__header {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .group-program h3 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
    line-height: 0.98;
  }

  .group-program__body {
    padding: 26px 22px;
  }

  .group-program__split {
    grid-template-columns: 1fr;
  }

  .group-program__note {
    padding: 22px;
    border-radius: 20px;
  }
}

