:root {
  --bg: #f7f2e8;
  --paper: #fffdf7;
  --cream: #efe5d4;
  --cream-2: #faf4e8;
  --green: #58764f;
  --green-dark: #25342d;
  --green-soft: #dce7d8;
  --text: #25342d;
  --muted: #657268;
  --line: rgba(88, 118, 79, 0.18);
  --sand-line: rgba(162, 133, 92, 0.2);
  --shadow: 0 24px 70px rgba(45, 56, 48, 0.12);
  --shadow-soft: 0 14px 36px rgba(45, 56, 48, 0.1);
  --container: 1560px;
  --radius-lg: 64px;
  --radius-md: 36px;
  --radius-sm: 18px;
  --font-sans: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

/* Unified site chrome and photographic treatment */
.site-header--unified {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0 0;
  pointer-events: none;
}

.header-panel--unified {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(540px, 1.5fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  min-height: 104px;
  padding: 13px 18px 13px 28px;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(122, 117, 99, 0.13);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(38, 54, 45, 0.12);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.header-panel--unified::before,
.header-panel--unified::after {
  display: none;
}

.brand--unified {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand--unified .brand__logo {
  width: 76px;
  height: 76px;
}

.brand--unified .brand__name {
  color: #19342b;
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 1.28vw, 1.42rem);
  font-weight: 400;
  line-height: 1.16;
}

.brand--unified .brand__tagline {
  color: #456657;
  font-size: clamp(0.86rem, 0.95vw, 1.02rem);
  font-weight: 560;
  line-height: 1.28;
}

.main-nav--unified ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.35vw, 26px);
}

.main-nav--unified a {
  position: relative;
  padding: 12px 0;
  color: #25372f;
  font-size: clamp(0.79rem, 0.82vw, 0.94rem);
  font-weight: 620;
}

.main-nav--unified a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: #64815b;
  transform: scaleX(0);
  transform-origin: center;
  content: "";
  transition: transform 160ms ease;
}

.main-nav--unified a:hover::after,
.main-nav--unified a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta--unified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, #6f8a63, #4d6946);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(57, 79, 49, 0.2);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta--unified svg {
  width: 23px;
  height: 23px;
}

.reference-hero {
  aspect-ratio: 1672 / 811;
}

.reference-hero > img {
  position: absolute;
  top: -15.97%;
  left: 0;
  width: 100%;
  max-width: none;
}

.team-list {
  display: grid;
  gap: 0;
}

.team-hero .editorial-hero__grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
}

.team-hero h1 {
  font-size: clamp(3rem, 4.35vw, 4.6rem);
}

.team-person {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  padding: clamp(48px, 6vw, 86px) 0;
  border-bottom: 1px solid rgba(114, 112, 88, 0.14);
}

.team-person--reverse > figure {
  order: 2;
}

.team-person--reverse > div {
  order: 1;
}

.team-person .editorial-photo {
  height: clamp(330px, 34vw, 520px);
}

.team-person h2 + p,
.team-person p + p {
  margin-top: 20px;
}

.team-person p:not(.editorial-kicker) {
  color: #40544b;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.78;
}

.generic-inner-page .page-hero .photo-frame {
  min-height: 430px;
  border-radius: 8px 36px 8px 36px;
}

.generic-inner-page .page-hero .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1180px) {
  .header-panel--unified {
    grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.1fr) auto;
  }

  .main-nav--unified ul {
    gap: 12px;
  }

  .main-nav--unified a {
    font-size: 0.77rem;
  }

  .header-cta--unified span {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header--unified {
    position: relative;
  }

  .header-panel--unified {
    grid-template-columns: 1fr auto;
    padding: 12px 14px;
  }

  .main-nav--unified {
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav--unified ul {
    justify-content: flex-start;
    min-width: max-content;
  }

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

  .team-person--reverse > figure,
  .team-person--reverse > div {
    order: initial;
  }
}

@media (max-width: 620px) {
  .brand--unified .brand__logo {
    width: 58px;
    height: 58px;
  }

  .brand--unified .brand__name {
    font-size: 1rem;
  }

  .brand--unified .brand__tagline {
    font-size: 0.78rem;
  }

  .header-cta--unified {
    width: 48px;
    min-height: 48px;
    padding: 10px;
  }

  .team-person .editorial-photo {
    height: 300px;
  }
}

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

html {
  color-scheme: only light;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.9), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(239, 229, 212, 0.78), transparent 28rem),
    var(--bg);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 280px;
  height: 280px;
  pointer-events: none;
  opacity: 0.22;
  content: "";
}

body::before {
  left: -82px;
  bottom: 10%;
  background:
    radial-gradient(ellipse at 56% 22%, rgba(88, 118, 79, 0.22), transparent 34%),
    radial-gradient(ellipse at 44% 60%, rgba(88, 118, 79, 0.16), transparent 38%);
  border-radius: 70% 30% 65% 35%;
}

body::after {
  right: -74px;
  top: 18%;
  background:
    radial-gradient(ellipse at 44% 38%, rgba(173, 151, 113, 0.22), transparent 36%),
    radial-gradient(ellipse at 60% 68%, rgba(88, 118, 79, 0.13), transparent 38%);
  border-radius: 35% 65% 30% 70%;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 12px;
}

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

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

.reference-header,
.reference-hero,
.reference-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f7f2e8;
}

.reference-header img,
.reference-hero img,
.reference-section img {
  display: block;
  width: 100%;
  height: auto;
}

.reference-header {
  z-index: 60;
  background: #fbfaf6;
}

.reference-header--hero-crop {
  aspect-ratio: 1625 / 130;
}

.reference-header--hero-crop img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: auto;
}

.reference-header--secondary-menu {
  aspect-ratio: 1181 / 103;
  background: #f8f5ed;
}

.reference-header--secondary-menu img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-section {
  margin: 0;
}

.reference-section--post-support,
.reference-section--cities {
  aspect-ratio: 1672 / 905;
}

.reference-section--post-support img,
.reference-section--cities img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 36px);
  object-fit: cover;
  transform: translateY(-18px);
}

.hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  border-radius: 12px;
  cursor: pointer;
  text-indent: -9999px;
}

.hotspot:focus-visible {
  outline: 3px solid rgba(88, 118, 79, 0.7);
  outline-offset: 3px;
}

.hotspot--header-logo {
  left: 2.2%;
  top: 2.8%;
  width: 24%;
  height: 10.1%;
}

.hotspot--secondary-logo {
  left: 2.2%;
  top: 8%;
  width: 24%;
  height: 76%;
}

.hotspot--secondary-about {
  left: 29.1%;
  top: 31%;
  width: 6.4%;
  height: 35%;
}

.hotspot--secondary-program {
  left: 36.2%;
  top: 31%;
  width: 7.1%;
  height: 35%;
}

.hotspot--secondary-living {
  left: 43.8%;
  top: 31%;
  width: 6.1%;
  height: 35%;
}

.hotspot--secondary-relatives {
  left: 50.1%;
  top: 31%;
  width: 8.7%;
  height: 35%;
}

.hotspot--secondary-cities {
  left: 59.6%;
  top: 31%;
  width: 10.1%;
  height: 35%;
}

.hotspot--secondary-team {
  left: 70.6%;
  top: 31%;
  width: 5.7%;
  height: 35%;
}

.hotspot--secondary-contacts {
  left: 77.2%;
  top: 31%;
  width: 6.3%;
  height: 35%;
}

.hotspot--secondary-cta {
  left: 84.5%;
  top: 24%;
  width: 14.5%;
  height: 51%;
}

.hotspot--nav-about {
  left: 28.8%;
  top: 5.5%;
  width: 5.7%;
  height: 4.3%;
}

.hotspot--nav-program {
  left: 35.5%;
  top: 5.5%;
  width: 7.0%;
  height: 4.3%;
}

.hotspot--nav-living {
  left: 43.0%;
  top: 5.5%;
  width: 6.2%;
  height: 4.3%;
}

.hotspot--nav-relatives {
  left: 49.4%;
  top: 5.5%;
  width: 9.7%;
  height: 4.3%;
}

.hotspot--nav-cities {
  left: 59.1%;
  top: 5.5%;
  width: 11.4%;
  height: 4.3%;
}

.hotspot--nav-team {
  left: 70.3%;
  top: 5.5%;
  width: 5.7%;
  height: 4.3%;
  z-index: 70;
}

.hero-nav-team {
  display: none;
  position: absolute;
  left: 76.7%;
  top: 7.4%;
  z-index: 65;
  color: #17231f;
  font-family: var(--font-sans);
  font-size: clamp(11px, 0.95vw, 17px);
  line-height: 1;
  text-decoration: none;
}

.hotspot--nav-contacts {
  left: 76.7%;
  top: 5.5%;
  width: 5.8%;
  height: 4.3%;
}

.hotspot--header-cta {
  left: 83.6%;
  top: 4.0%;
  width: 14.8%;
  height: 6.9%;
}

.hotspot--hero-consult {
  left: 3.55%;
  top: 57.1%;
  width: 18%;
  height: 8%;
}

.hotspot--hero-phone {
  left: 22.8%;
  top: 57.1%;
  width: 12.6%;
  height: 8%;
}

.hotspot--hero-program {
  left: 36.6%;
  top: 57.1%;
  width: 14%;
  height: 8%;
}

.hotspot--hero-social {
  left: 3.5%;
  top: 69.4%;
  width: 47.1%;
  height: 7.3%;
}

.hero-chip-replacement {
  display: none;
  position: absolute;
  left: 2.9%;
  top: 78.8%;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34.2%;
  height: 10.5%;
  padding: 0 26px;
  color: #18221e;
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background: #fffdf8;
  border: 1px solid rgba(229, 220, 205, 0.95);
  border-radius: 13px;
  box-shadow: 0 10px 22px rgba(39, 49, 43, 0.14);
  cursor: pointer;
}

.hotspot--hero-recovery {
  left: 3.45%;
  top: 83.3%;
  width: 15.7%;
  height: 9.9%;
}

.hotspot--hero-living {
  left: 20.1%;
  top: 83.3%;
  width: 15.5%;
  height: 9.9%;
}

.hotspot--hero-relatives {
  left: 36.6%;
  top: 83.3%;
  width: 17.9%;
  height: 9.9%;
}

.hotspot--hero-cities {
  left: 55.6%;
  top: 83.3%;
  width: 16.6%;
  height: 9.9%;
}

.hotspot--hero-reviews {
  left: 73.2%;
  top: 83.3%;
  width: 12.8%;
  height: 9.9%;
}

.hotspot--about-details {
  left: 3.6%;
  top: 74%;
  width: 20.2%;
  height: 7.2%;
}

.hotspot--program-details {
  left: 50.2%;
  top: 69.4%;
  width: 23%;
  height: 8.4%;
  z-index: 20;
}

.hotspot--living-details {
  left: 4.1%;
  top: 70.3%;
  width: 22.1%;
  height: 7.4%;
  z-index: 20;
}

.hotspot--relatives-details {
  left: 5%;
  top: 67.2%;
  width: 24.7%;
  height: 6.9%;
  z-index: 20;
}

.hotspot--post-support-details {
  left: 37.8%;
  top: 70.8%;
  width: 22.5%;
  height: 6.5%;
  z-index: 20;
}

.hotspot--cities-details {
  left: 3.6%;
  top: 64.4%;
  width: 30%;
  height: 7.5%;
  z-index: 20;
}

.reference-section--team {
  aspect-ratio: 1664 / 936;
}

.reference-section--reviews {
  aspect-ratio: 1671 / 941;
}

.reference-section--reviews img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 48px);
  object-fit: cover;
  transform: translateY(-24px);
}

.hotspot--team-details {
  left: 39.75%;
  top: 69.1%;
  width: 18.9%;
  height: 5.2%;
  z-index: 20;
}

.hotspot--reviews-details {
  left: 36%;
  top: 85%;
  width: 28%;
  height: 8.8%;
  z-index: 20;
}

.reference-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(230, 216, 195, 0.55), transparent 30%),
    var(--paper);
}

.reference-page__frame {
  position: relative;
  width: min(100%, 1024px);
  margin: 0 auto;
}

.reference-page--full {
  background: #f4efe5;
}

.reference-page__frame--full {
  width: min(100%, 941px);
}

.reference-page__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.about-page {
  color: #1f322b;
  background: #f8f3e9;
}

.about-page h1,
.about-page h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.about-page h1 {
  max-width: 700px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 1.02;
}

.about-page h2 {
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1.08;
}

.about-page p {
  margin: 0;
}

.about-hero,
.about-band {
  padding: clamp(42px, 5vw, 84px) 0;
}

.about-hero {
  padding-top: clamp(48px, 6vw, 96px);
}

.about-hero__grid,
.about-intro,
.about-feature-row,
.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px !important;
  color: var(--green);
  font-weight: 700;
}

.about-kicker svg,
.about-actions svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.about-hero__lead {
  margin-top: 28px !important;
  color: var(--green);
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  line-height: 1.5;
}

.about-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 36px;
}

.about-actions .button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 15px 16px;
  border: 1px solid rgba(88, 118, 79, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(47, 62, 52, 0.12);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-actions .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(47, 62, 52, 0.16);
}

.button--green {
  color: #fff;
  background: linear-gradient(135deg, #6f8b62, #496741);
}

.button--white {
  color: #1f322b;
  background: rgba(255, 255, 255, 0.88);
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(49, 61, 52, 0.12);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo--hero {
  height: clamp(420px, 45vw, 690px);
}

.about-band--soft {
  background: rgba(255, 253, 247, 0.62);
  border-top: 1px solid rgba(158, 132, 91, 0.12);
  border-bottom: 1px solid rgba(158, 132, 91, 0.12);
}

.about-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.about-intro__copy {
  display: grid;
  gap: 36px;
}

.about-note,
.about-double article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.about-note p,
.about-feature-copy > p,
.about-atmosphere__copy p,
.about-double p,
.about-cta p {
  color: #33453e;
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  line-height: 1.75;
}

.about-note__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--green);
  background: rgba(236, 239, 226, 0.88);
  border-radius: 50%;
}

.about-note__icon svg {
  width: 30px;
  height: 30px;
}

.about-photo--sauna,
.about-photo--window {
  height: clamp(400px, 38vw, 620px);
}

.about-feature-row {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-feature-copy > p,
.about-atmosphere__copy p,
.about-cta p {
  margin-top: 22px;
}

.about-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.about-feature-cards > div {
  display: grid;
  place-items: center;
  min-height: 148px;
  padding: 18px;
  text-align: center;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(158, 132, 91, 0.14);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(49, 61, 52, 0.07);
}

.about-feature-cards span {
  color: var(--green);
}

.about-feature-cards svg {
  width: 42px;
  height: 42px;
}

.about-feature-cards strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.about-atmosphere {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

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

.about-gallery figure {
  height: clamp(220px, 22vw, 360px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-double {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 80px);
}

.about-double article {
  padding: clamp(26px, 3vw, 46px);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(158, 132, 91, 0.14);
  border-radius: 8px;
}

.about-double h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 2.3vw, 2.7rem);
}

.about-band--cta {
  padding-bottom: clamp(64px, 8vw, 120px);
}

.about-cta {
  padding: clamp(28px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.76);
  border: 1px solid rgba(158, 132, 91, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(49, 61, 52, 0.08);
}

.about-photo--cta {
  height: clamp(280px, 30vw, 440px);
}

@media (max-width: 900px) {
  .about-hero__grid,
  .about-intro,
  .about-feature-row,
  .about-cta,
  .about-atmosphere,
  .about-double {
    grid-template-columns: 1fr;
  }

  .about-hero__copy {
    order: 1;
  }

  .about-photo--hero {
    order: 2;
    height: 440px;
  }

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

  .about-atmosphere__copy {
    max-width: 720px;
  }

  .about-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .about-page h1 {
    font-size: 2.65rem;
  }

  .about-hero,
  .about-band {
    padding: 42px 0;
  }

  .about-photo--hero,
  .about-photo--sauna,
  .about-photo--window {
    height: 340px;
  }

  .about-feature-cards,
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery figure {
    height: 280px;
  }

  .about-actions {
    display: grid;
  }

  .about-actions .button {
    justify-content: center;
  }
}

.hotspot--about-page-logo {
  left: 1.1%;
  top: 0.4%;
  width: 28.4%;
  height: 3.9%;
}

.hotspot--about-page-nav-about {
  left: 30.7%;
  top: 1.9%;
  width: 6%;
  height: 1.6%;
}

.hotspot--about-page-nav-program {
  left: 37.9%;
  top: 1.9%;
  width: 7%;
  height: 1.6%;
}

.hotspot--about-page-nav-living {
  left: 45.6%;
  top: 1.9%;
  width: 6.3%;
  height: 1.6%;
}

.hotspot--about-page-nav-relatives {
  left: 52%;
  top: 1.9%;
  width: 9.4%;
  height: 1.6%;
}

.hotspot--about-page-nav-cities {
  left: 62.4%;
  top: 1.9%;
  width: 11.4%;
  height: 1.6%;
}

.hotspot--about-page-nav-team {
  left: 74.6%;
  top: 1.9%;
  width: 6.1%;
  height: 1.6%;
}

.hotspot--about-page-header-cta {
  left: 81.1%;
  top: 1.1%;
  width: 15.9%;
  height: 2.6%;
}

.hotspot--about-page-phone {
  left: 4%;
  top: 18.2%;
  width: 13.3%;
  height: 2.5%;
}

.hotspot--about-page-consult {
  left: 19.1%;
  top: 18.2%;
  width: 19.4%;
  height: 2.5%;
}

.hotspot--about-page-bottom-consult {
  left: 4.6%;
  top: 95.2%;
  width: 18.9%;
  height: 2.5%;
}

.hotspot--about-page-bottom-contact {
  left: 25.1%;
  top: 95.2%;
  width: 18.5%;
  height: 2.5%;
}

.hotspot--team-page-cta {
  left: 36.4%;
  top: 94.6%;
  width: 27.2%;
  height: 2.3%;
  z-index: 20;
}

.hotspot--inner-logo {
  left: 0;
  top: 0;
  width: 37%;
  height: 78%;
}

.hotspot--inner-nav-about {
  left: 38.4%;
  top: 32%;
  width: 6.2%;
  height: 18%;
}

.hotspot--inner-nav-program {
  left: 44.6%;
  top: 32%;
  width: 7.1%;
  height: 18%;
}

.hotspot--inner-nav-living {
  left: 51.8%;
  top: 32%;
  width: 6.2%;
  height: 18%;
}

.hotspot--inner-nav-relatives {
  left: 58.1%;
  top: 32%;
  width: 9.3%;
  height: 18%;
}

.hotspot--inner-nav-cities {
  left: 68%;
  top: 32%;
  width: 12.1%;
  height: 18%;
}

.hotspot--inner-nav-team {
  left: 79.6%;
  top: 32%;
  width: 6.2%;
  height: 18%;
  z-index: 70;
}

.inner-nav-team {
  position: absolute;
  left: 79.8%;
  top: 34.5%;
  z-index: 65;
  color: #17231f;
  font-family: var(--font-sans);
  font-size: clamp(11px, 0.9vw, 17px);
  line-height: 1;
  text-decoration: none;
}

.hotspot--inner-nav-contacts {
  left: 84.5%;
  top: 32%;
  width: 6.8%;
  height: 18%;
}

.hotspot--inner-cta {
  left: 86.4%;
  top: 24.5%;
  width: 13.2%;
  height: 27%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0 0;
  pointer-events: none;
}

.site-header--secondary {
  padding: 8px 0 0;
}

.site-header .container {
  width: min(100% - 32px, 1888px);
}

.header-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(500px, auto) auto;
  align-items: center;
  gap: clamp(20px, 1.5vw, 34px);
  min-height: 148px;
  padding: 24px 22px 24px 42px;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(88, 118, 79, 0.18), transparent 21rem),
    radial-gradient(ellipse at 100% 0%, rgba(239, 229, 212, 0.95), transparent 27rem),
    linear-gradient(110deg, rgba(255, 253, 247, 0.985), rgba(255, 253, 247, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(39, 49, 43, 0.13);
  backdrop-filter: blur(20px);
  pointer-events: auto;
  overflow: hidden;
}

.header-panel--no-cta {
  grid-template-columns: minmax(360px, 1fr) minmax(640px, auto);
}

.header-panel--secondary {
  grid-template-columns: minmax(330px, 0.82fr) minmax(610px, auto) minmax(190px, auto);
  gap: clamp(14px, 1.45vw, 28px);
  min-height: 104px;
  padding: 15px 14px 15px 31px;
  background: rgba(255, 253, 247, 0.96);
  border-radius: 17px;
  box-shadow: 0 14px 34px rgba(39, 49, 43, 0.12);
}

.header-panel--secondary::before,
.header-panel--secondary::after {
  display: none;
}

.header-panel::before,
.header-panel::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.header-panel::before {
  left: -34px;
  bottom: -40px;
  width: 360px;
  height: 180px;
  background: rgba(88, 118, 79, 0.12);
  border-radius: 12% 88% 28% 72% / 70% 40% 60% 30%;
}

.header-panel::after {
  right: -44px;
  top: -30px;
  width: 360px;
  height: 190px;
  background: rgba(239, 229, 212, 0.78);
  border-radius: 70% 0 0 70%;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  text-decoration: none;
}

.brand__logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand--secondary {
  gap: 20px;
}

.brand--secondary .brand__logo {
  width: 78px;
  height: 78px;
}

.brand--secondary .brand__name {
  font-size: clamp(1.05rem, 1.05vw, 1.35rem);
}

.brand--secondary .brand__tagline {
  color: #1f2d2b;
  font-size: clamp(0.95rem, 0.96vw, 1.18rem);
  font-weight: 650;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-family: var(--font-serif);
  color: #1f2d2b;
  font-size: clamp(1.4rem, 1.45vw, 1.78rem);
  line-height: 1.15;
}

.brand__tagline {
  color: #77927f;
  font-size: clamp(1rem, 1.1vw, 1.28rem);
  font-weight: 720;
}

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

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.45vw, 31px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  color: #1d2625;
  font-size: clamp(0.82rem, 0.78vw, 0.98rem);
  font-weight: 580;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--green);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 253, 247, 0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nav-toggle__bar {
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  position: absolute;
  left: 0;
}

.nav-toggle__bar::before {
  top: -7px;
}

.nav-toggle__bar::after {
  top: 7px;
}

.button,
.soft-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 18px 28px;
  border: 0;
  border-radius: 14px;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.soft-button:hover,
.text-link:hover,
.button:focus-visible,
.soft-button:focus-visible,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #fffdf7;
  background: linear-gradient(145deg, #58764f, #47643f);
  box-shadow: 0 14px 28px rgba(65, 91, 57, 0.26);
}

.header-cta {
  position: relative;
  z-index: 1;
  min-width: 190px;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: clamp(0.82rem, 0.82vw, 1rem);
  white-space: nowrap;
}

.header-cta .button__icon {
  order: 0;
  margin-left: 0;
  width: 22px;
  height: 22px;
}

.button--light {
  color: var(--text);
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 12px 30px rgba(45, 56, 48, 0.09);
}

.button--ghost {
  color: var(--green-dark);
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid var(--line);
}

.button__icon,
.chip__icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--green);
  background: rgba(88, 118, 79, 0.12);
  border-radius: 50%;
  flex: 0 0 auto;
}

.button--primary .button__icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  min-height: 940px;
  margin-top: -164px;
  padding: 220px 0 54px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.99) 0%, rgba(247, 242, 232, 0.94) 31%, rgba(247, 242, 232, 0.65) 49%, rgba(247, 242, 232, 0.16) 74%),
    url("assets/img/05-lavochka-dvor.png") center right / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -22px;
  width: 48vw;
  height: 38vw;
  min-height: 340px;
  background:
    radial-gradient(ellipse at 70% 54%, rgba(255, 253, 247, 0.24), transparent 36%),
    linear-gradient(130deg, rgba(255, 253, 247, 0.15), rgba(239, 229, 212, 0.48));
  border-radius: 80% 0 0 0;
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 1fr);
  align-items: end;
  min-height: 735px;
  gap: 42px;
}

.hero__copy {
  padding-top: 116px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--green);
  font-size: 0.96rem;
  font-weight: 800;
}

.eyebrow::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

h1,
h2,
h3 {
  color: var(--green-dark);
  letter-spacing: 0;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.06;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.45rem, 5.15vw, 6.15rem);
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--green);
  font-size: clamp(1.24rem, 1.65vw, 1.62rem);
  line-height: 1.45;
}

.hero__note {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--text);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.hero__wide-action {
  width: min(100%, 430px);
}

.hero__chips,
.direction-grid,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__chips {
  margin-top: 26px;
}

.direction-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  margin-top: -78px;
  gap: 22px;
}

.soft-button,
.direction-card,
.feature-pill,
.info-card,
.faq-card,
.contact-card {
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.direction-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 20px 26px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 720;
  font-size: 1.12rem;
}

.hero__spacer {
  min-height: 1px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.72), transparent 22rem),
    #f1e7d8;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  align-items: center;
  gap: 72px;
}

.split--reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.85fr);
}

.split--reverse .section-copy {
  order: 2;
}

.section-title {
  max-width: 820px;
  font-size: clamp(2.35rem, 4.4vw, 5rem);
}

.section-copy p,
.page-copy p,
.faq-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy p {
  max-width: 680px;
}

.photo-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--cream);
  border-radius: 34% 10% 34% 10% / 16% 28% 16% 28%;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-frame--left {
  border-radius: 10% 34% 10% 34% / 28% 16% 28% 16%;
}

.photo-frame--soft {
  border-radius: 78px 180px 78px 180px;
}

.photo-pair {
  display: grid;
  gap: 22px;
}

.photo-pair .photo-frame {
  min-height: 330px;
}

.subpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 12px 18px;
  border-radius: 18px;
  color: var(--text);
  font-weight: 700;
}

.text-link {
  margin-top: 28px;
  padding-right: 0;
  padding-left: 0;
  color: var(--green-dark);
  background: transparent;
  border-radius: 0;
  box-shadow: inset 0 -2px 0 rgba(88, 118, 79, 0.32);
}

.text-link::after {
  font-size: 1.4rem;
  content: "→";
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.info-card {
  padding: 28px;
  border-radius: 28px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

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

.map-placeholder,
.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 28px;
  color: var(--green);
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), transparent 18rem),
    linear-gradient(145deg, rgba(88, 118, 79, 0.1), rgba(239, 229, 212, 0.58));
  border: 1px dashed rgba(88, 118, 79, 0.34);
  border-radius: 38px;
  font-weight: 760;
}

.contact-map-section {
  padding: clamp(54px, 7vw, 96px) 0;
  background: rgba(255, 253, 247, 0.72);
  border-top: 1px solid var(--line);
}

.contact-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.contact-map-heading h2 {
  margin: 8px 0 10px;
  color: var(--green-dark);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
}

.contact-map-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.contact-map {
  overflow: hidden;
  width: 100%;
  min-height: 440px;
  background: #eef0e8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.footer-contacts a,
.contact-info-list a {
  color: inherit;
  text-decoration: none;
}

.footer-contacts a:hover,
.contact-info-list a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .contact-map-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-map iframe {
    height: 400px;
  }
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  padding: 10px 16px;
  color: var(--green-dark);
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 720;
}

.story-panel,
.cta-panel {
  padding: 64px;
  color: var(--paper);
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 255, 255, 0.16), transparent 18rem),
    linear-gradient(145deg, #58764f, #2f4839);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.story-panel h2,
.cta-panel h2 {
  color: var(--paper);
}

.story-panel p,
.cta-panel p {
  color: rgba(255, 253, 247, 0.86);
}

.faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-card {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding: 22px 26px;
  color: var(--text);
  background: transparent;
  border: 0;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  width: 28px;
  height: 28px;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
  text-align: center;
  content: "+";
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 26px 24px;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
  gap: 54px;
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: 24px;
  text-decoration: none;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card strong {
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--text);
  background: #fffdf7;
  border: 1px solid var(--sand-line);
  border-radius: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 4px solid rgba(88, 118, 79, 0.16);
  border-color: var(--green);
}

.form-note,
.demo-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-message {
  display: none;
  padding: 12px 14px;
  color: var(--green-dark);
  background: rgba(88, 118, 79, 0.12);
  border-radius: 14px;
  font-weight: 700;
}

.demo-message.is-visible {
  display: block;
}

.page-hero {
  padding: 88px 0 42px;
}

.breadcrumbs {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: var(--green);
  text-decoration: none;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: 60px;
  align-items: center;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
}

.page-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.page-content {
  padding: 58px 0 96px;
}

.content-list {
  display: grid;
  gap: 26px;
}

.content-block {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  padding: 30px;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(45, 56, 48, 0.06);
}

.content-block__num {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--green);
  background: rgba(88, 118, 79, 0.11);
  border-radius: 22px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
}

.content-block h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.16;
}

.content-block p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 82px;
  background: #24342d;
  color: rgba(255, 253, 247, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fffdf7;
  text-decoration: none;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.footer-brand span {
  display: block;
  color: rgba(255, 253, 247, 0.68);
}

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

.footer-nav a,
.footer-contacts a {
  color: rgba(255, 253, 247, 0.82);
  text-decoration: none;
}

.footer-note {
  margin-top: 26px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.92rem;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1240px) {
  .header-panel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    min-height: 112px;
    padding: 18px 18px 18px 24px;
  }

  .brand {
    gap: 14px;
  }

  .brand__logo {
    width: 72px;
    height: 72px;
  }

  .brand__name {
    font-size: 1.06rem;
  }

  .brand__tagline {
    font-size: 0.86rem;
  }

  .main-nav {
    grid-column: auto;
    justify-self: center;
  }

  .main-nav ul {
    gap: 12px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .header-cta {
    grid-column: auto;
    grid-row: auto;
    min-width: 196px;
    min-height: 58px;
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .hero {
    margin-top: -128px;
    padding-top: 184px;
  }

  .hero__inner {
    min-height: 650px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

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

  .brand__logo {
    width: 66px;
    height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 14px;
    background: rgba(255, 253, 247, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
  }

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

  .main-nav ul {
    display: grid;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 12px;
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero__inner,
  .split,
  .split--reverse,
  .page-hero__grid,
  .contacts-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .section-copy {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(247, 242, 232, 0.98), rgba(247, 242, 232, 0.76)),
      url("assets/img/05-lavochka-dvor.png") center / cover no-repeat;
  }

  .hero__inner {
    min-height: 570px;
  }

  .hero__spacer {
    display: none;
  }

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

  .photo-frame {
    min-height: 430px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .site-header {
    padding-top: 10px;
  }

  .header-panel {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 76px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .brand__logo {
    width: 54px;
    height: 54px;
  }

  .brand__name {
    font-size: 1.02rem;
  }

  .brand__tagline {
    font-size: 0.82rem;
  }

  .hero {
    margin-top: -100px;
    padding-top: 145px;
    padding-bottom: 46px;
  }

  .hero__inner {
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero__actions,
  .hero__chips {
    display: grid;
  }

  .button,
  .soft-button {
    width: 100%;
  }

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

  .section {
    padding: 72px 0;
  }

  .split {
    gap: 34px;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .photo-frame {
    min-height: 300px;
    border-radius: 44px 110px 44px 110px;
  }

  .story-panel,
  .cta-panel {
    padding: 34px 24px;
    border-radius: 30px;
  }

  .page-hero {
    padding-top: 54px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .content-block {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .content-block h2 {
    font-size: 1.55rem;
  }

  .contact-form {
    padding: 24px;
    border-radius: 26px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 253, 247, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 32px rgba(45, 56, 48, 0.12);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    min-height: 64px;
    padding: 10px 6px;
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border-right: 1px solid var(--line);
  }

  .mobile-action-bar a:last-child {
    border-right: 0;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand__tagline {
    display: none;
  }

  .hero__inner {
    min-height: 500px;
  }

  .lead {
    font-size: 1.08rem;
  }
}

/* Program page */
.program-page {
  color: #1f322b;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 255, 255, 0.86), transparent 25rem),
    #f8f3e9;
}

.program-page h1,
.program-page h2,
.program-page h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.program-page h1 {
  max-width: 820px;
  font-size: clamp(3rem, 4.8vw, 5.7rem);
  line-height: 1.02;
}

.program-page h2 {
  font-size: clamp(2.15rem, 3.3vw, 4rem);
  line-height: 1.08;
}

.program-page h3 {
  font-size: clamp(1.45rem, 1.75vw, 2.1rem);
  line-height: 1.18;
}

.program-page p {
  margin: 0;
}

.program-hero,
.program-band {
  padding: clamp(48px, 6vw, 96px) 0;
}

.program-hero {
  padding-top: clamp(58px, 7vw, 112px);
}

.program-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(460px, 1.02fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
}

.program-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px !important;
  color: var(--green);
  font-size: 0.96rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-kicker svg {
  width: 23px;
  height: 23px;
}

.program-hero__lead {
  max-width: 820px;
  margin-top: 30px !important;
  color: #3c594c;
  font-size: clamp(1.2rem, 1.45vw, 1.62rem);
  line-height: 1.6;
}

.program-hero__copy > p:not(.program-kicker):not(.program-hero__lead) {
  max-width: 780px;
  margin-top: 20px;
  color: #3d4d46;
  font-size: clamp(1rem, 1.08vw, 1.2rem);
  line-height: 1.75;
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.program-actions .button {
  min-height: 60px;
  padding: 15px 25px;
  border: 1px solid rgba(88, 118, 79, 0.16);
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(47, 62, 52, 0.12);
}

.program-actions svg {
  width: 23px;
  height: 23px;
}

.program-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e9e0d0;
  border-radius: 9px;
  box-shadow: 0 20px 54px rgba(49, 61, 52, 0.13);
}

.program-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 16px;
  color: #24372f;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
}

.program-photo--hero {
  height: clamp(440px, 43vw, 670px);
  border-radius: 88px 12px 88px 12px;
}

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

.program-band--soft {
  background: rgba(255, 253, 247, 0.62);
  border-top: 1px solid rgba(158, 132, 91, 0.12);
  border-bottom: 1px solid rgba(158, 132, 91, 0.12);
}

.program-opening {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.program-opening__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--green);
  background: rgba(220, 231, 216, 0.8);
  border-radius: 50%;
}

.program-opening__icon svg {
  width: 36px;
  height: 36px;
}

.program-opening h2 {
  max-width: 900px;
}

.program-opening p,
.program-heading > p:not(.program-kicker),
.program-methods__list li,
.program-stage p,
.program-twelve__copy p,
.program-work-card p,
.program-social__copy p,
.program-checks,
.program-support-grid p,
.program-aftercare > div > p,
.program-result p,
.program-cta p {
  color: #3b4c44;
  font-size: clamp(1rem, 1.08vw, 1.2rem);
  line-height: 1.75;
}

.program-opening p {
  margin-top: 18px;
}

.program-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.program-principles article {
  min-height: 240px;
  padding: 30px 26px;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(158, 132, 91, 0.15);
  border-radius: 9px;
  box-shadow: 0 12px 32px rgba(49, 61, 52, 0.07);
}

.program-principles article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--green);
  background: rgba(220, 231, 216, 0.68);
  border-radius: 50%;
}

.program-principles svg {
  width: 27px;
  height: 27px;
}

.program-principles h3 {
  font-size: clamp(1.35rem, 1.5vw, 1.8rem);
}

.program-principles p {
  margin-top: 13px;
  color: #526158;
  font-size: 0.98rem;
  line-height: 1.65;
}

.program-heading {
  max-width: 980px;
  margin-bottom: 48px;
}

.program-heading > p:not(.program-kicker) {
  max-width: 900px;
  margin-top: 20px;
}

.program-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.program-heading--center .program-kicker {
  justify-content: center;
}

.program-methods {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: clamp(34px, 5vw, 76px);
}

.program-photo--conversation {
  min-height: 610px;
  border-radius: 12px 78px 12px 78px;
}

.program-methods__list {
  padding: clamp(30px, 4vw, 58px);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(158, 132, 91, 0.14);
  border-radius: 9px;
}

.program-methods__list ul,
.program-checks {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.program-methods__list li,
.program-checks li {
  position: relative;
  padding-left: 32px;
}

.program-methods__list li::before,
.program-checks li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50% 0 50% 50%;
  transform: rotate(-35deg);
  content: "";
}

.program-stages {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.program-stages::before {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 31px;
  width: 1px;
  background: rgba(88, 118, 79, 0.28);
  content: "";
}

.program-stage {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 34px 30px 0;
  background: rgba(255, 253, 247, 0.75);
  border: 1px solid rgba(158, 132, 91, 0.13);
  border-radius: 9px;
}

.program-stage__mark {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: linear-gradient(145deg, #6f8b62, #496741);
  border: 7px solid #f8f3e9;
  border-radius: 50%;
  transform: translateX(-1px);
}

.program-stage__mark svg {
  width: 25px;
  height: 25px;
}

.program-stage p {
  margin-top: 12px;
}

.program-twelve {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1.58fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
  padding: clamp(38px, 5vw, 72px);
  background:
    radial-gradient(circle at 10% 10%, rgba(220, 231, 216, 0.72), transparent 22rem),
    rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(158, 132, 91, 0.15);
  border-radius: 12px 88px 12px 88px;
  box-shadow: 0 18px 54px rgba(49, 61, 52, 0.08);
}

.program-twelve__symbol {
  display: grid;
  place-items: center;
  align-content: center;
  width: min(100%, 310px);
  aspect-ratio: 1;
  color: #fff;
  background: linear-gradient(145deg, #718e66, #3e5d38);
  border: 16px solid rgba(220, 231, 216, 0.72);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(49, 82, 50, 0.2);
}

.program-twelve__symbol span {
  font-family: var(--font-serif);
  font-size: clamp(5.5rem, 8vw, 9rem);
  line-height: 0.8;
}

.program-twelve__symbol small {
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.program-twelve__copy p {
  margin-top: 18px;
}

.program-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px);
}

.program-work-card {
  overflow: hidden;
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(158, 132, 91, 0.14);
  border-radius: 10px;
  box-shadow: 0 16px 44px rgba(49, 61, 52, 0.08);
}

.program-work-card .program-photo {
  height: clamp(300px, 29vw, 470px);
  border-radius: 0;
  box-shadow: none;
}

.program-work-card > div {
  padding: clamp(28px, 4vw, 52px);
}

.program-work-card h2 {
  font-size: clamp(2rem, 2.7vw, 3.2rem);
}

.program-work-card p:not(.program-kicker) {
  margin-top: 16px;
}

.program-social {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(38px, 6vw, 94px);
}

.program-social__copy > p:not(.program-kicker) {
  margin-top: 18px;
}

.program-life-gallery {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 12px;
}

.program-life-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0 16px 40px rgba(49, 61, 52, 0.1);
}

.program-life-gallery figure:first-child {
  grid-row: 1 / 3;
}

.program-life-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-band--green {
  color: #fffdf7;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.09), transparent 25rem),
    linear-gradient(135deg, #31463b, #54704c);
}

.program-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 7vw, 110px);
}

.program-support-grid article {
  position: relative;
  padding-left: 82px;
}

.program-support-grid__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.program-support-grid__icon svg {
  width: 31px;
  height: 31px;
}

.program-support-grid p {
  margin-top: 18px;
  color: rgba(255, 253, 247, 0.88);
}

.program-aftercare {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
}

.program-aftercare > div > p:not(.program-kicker) {
  margin-top: 18px;
}

.program-result {
  padding: clamp(30px, 4vw, 50px);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(158, 132, 91, 0.14);
  border-radius: 9px;
  box-shadow: 0 16px 44px rgba(49, 61, 52, 0.08);
}

.program-result > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: var(--green);
  background: rgba(220, 231, 216, 0.72);
  border-radius: 50%;
}

.program-result svg {
  width: 32px;
  height: 32px;
}

.program-result p {
  margin-top: 15px;
}

.program-band--cta {
  padding-bottom: clamp(68px, 9vw, 130px);
}

.program-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: clamp(32px, 5vw, 66px);
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 231, 216, 0.68), transparent 24rem),
    rgba(255, 253, 247, 0.8);
  border: 1px solid rgba(158, 132, 91, 0.15);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(49, 61, 52, 0.08);
}

.program-cta p:not(.program-kicker) {
  max-width: 850px;
  margin-top: 18px;
}

.program-cta .program-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 1050px) {
  .program-hero__grid,
  .program-methods,
  .program-social {
    grid-template-columns: 1fr;
  }

  .program-hero__copy {
    max-width: 900px;
  }

  .program-photo--hero {
    height: 560px;
  }

  .program-photo--conversation {
    min-height: 560px;
  }

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

  .program-social__copy {
    max-width: 900px;
  }

  .program-life-gallery {
    min-height: 620px;
  }

  .program-cta {
    grid-template-columns: 1fr;
  }

  .program-cta .program-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .program-page h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .program-page h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .program-hero,
  .program-band {
    padding: 48px 0;
  }

  .program-photo--hero,
  .program-photo--conversation {
    min-height: 0;
    height: 390px;
    border-radius: 38px 8px 38px 8px;
  }

  .program-opening {
    grid-template-columns: 1fr;
  }

  .program-principles,
  .program-work-grid,
  .program-support-grid,
  .program-aftercare {
    grid-template-columns: 1fr;
  }

  .program-principles article {
    min-height: 0;
  }

  .program-stage {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 20px 24px 0;
  }

  .program-stages::before {
    left: 25px;
  }

  .program-stage__mark {
    width: 52px;
    height: 52px;
  }

  .program-twelve {
    grid-template-columns: 1fr;
    border-radius: 8px 48px 8px 48px;
  }

  .program-twelve__symbol {
    width: 230px;
    margin: 0 auto;
  }

  .program-work-card .program-photo {
    height: 320px;
  }

  .program-life-gallery {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .program-life-gallery figure,
  .program-life-gallery figure:first-child {
    grid-row: auto;
    height: 310px;
  }

  .program-support-grid article {
    padding-left: 0;
  }

  .program-support-grid__icon {
    position: static;
    margin-bottom: 22px;
  }

  .program-cta .program-actions,
  .program-actions {
    display: grid;
    width: 100%;
  }

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

@media (max-width: 440px) {
  .program-photo--hero,
  .program-photo--conversation,
  .program-work-card .program-photo,
  .program-life-gallery figure,
  .program-life-gallery figure:first-child {
    height: 280px;
  }

  .program-opening__icon {
    width: 54px;
    height: 54px;
  }

  .program-methods__list,
  .program-work-card > div,
  .program-twelve,
  .program-result,
  .program-cta {
    padding: 25px 20px;
  }
}

/* Shared editorial pages */
.editorial-page,
.program-page,
.about-page,
.generic-inner-page,
.reference-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.editorial-page::before,
.program-page::before,
.about-page::before,
.generic-inner-page::before,
.reference-page::before,
.editorial-page::after,
.program-page::after,
.about-page::after,
.generic-inner-page::after,
.reference-page::after {
  position: absolute;
  z-index: -1;
  width: 310px;
  height: 520px;
  content: "";
  pointer-events: none;
  opacity: 0.48;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='310' height='520' viewBox='0 0 310 520'%3E%3Cg fill='none' stroke='%23788a68' stroke-width='2.1' opacity='.3'%3E%3Cpath d='M31 500C58 403 92 313 150 226c38-57 76-105 129-168'/%3E%3Cpath d='M80 390c-25-7-43-23-57-45M102 337c30-4 53-16 73-38M136 260c-25-4-46-17-63-38M170 209c30-2 54-14 75-36M212 144c-22-5-39-17-54-34'/%3E%3C/g%3E%3Cg fill='%239eaa88' opacity='.22'%3E%3Cellipse cx='28' cy='343' rx='11' ry='27' transform='rotate(-52 28 343)'/%3E%3Cellipse cx='68' cy='382' rx='12' ry='30' transform='rotate(-58 68 382)'/%3E%3Cellipse cx='176' cy='293' rx='12' ry='29' transform='rotate(51 176 293)'/%3E%3Cellipse cx='76' cy='219' rx='11' ry='27' transform='rotate(-49 76 219)'/%3E%3Cellipse cx='246' cy='170' rx='12' ry='29' transform='rotate(51 246 170)'/%3E%3Cellipse cx='160' cy='108' rx='10' ry='25' transform='rotate(-43 160 108)'/%3E%3Cellipse cx='279' cy='58' rx='12' ry='30' transform='rotate(37 279 58)'/%3E%3C/g%3E%3C/svg%3E");
}

.editorial-page::before,
.program-page::before,
.about-page::before,
.generic-inner-page::before,
.reference-page::before {
  top: 7%;
  left: -128px;
  transform: rotate(-10deg);
}

.editorial-page::after,
.program-page::after,
.about-page::after,
.generic-inner-page::after,
.reference-page::after {
  right: -125px;
  bottom: 5%;
  transform: scaleX(-1) rotate(-8deg);
}

.editorial-page > *,
.program-page > *,
.about-page > *,
.generic-inner-page > *,
.reference-page > * {
  position: relative;
  z-index: 1;
}

.soft-edge-photo,
.program-photo,
.about-photo,
.program-life-gallery figure,
.about-gallery figure,
.generic-inner-page .photo-frame {
  position: relative;
  overflow: hidden;
}

.program-photo figcaption {
  z-index: 3;
}

.generic-inner-page {
  position: relative;
  background: linear-gradient(180deg, #fbf8f1, #f6f1e7);
}

.content-block__leaf svg {
  width: 28px;
  height: 28px;
}

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

.editorial-page {
  color: #263b32;
  background:
    radial-gradient(circle at 91% 18%, rgba(190, 202, 171, 0.17), transparent 24rem),
    linear-gradient(180deg, #fbf8f1 0%, #f6f1e7 100%);
}

.editorial-page h1,
.editorial-page h2,
.editorial-page h3 {
  margin: 0;
  color: #1d4638;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.editorial-page h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.1vw, 5.7rem);
  line-height: 1.02;
}

.editorial-page h2 {
  font-size: clamp(2.15rem, 3.25vw, 3.65rem);
  line-height: 1.08;
}

.editorial-page h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.17;
}

.editorial-page p {
  margin: 0;
}

.editorial-hero,
.reviews-hero,
.contact-hero,
.editorial-band {
  padding: clamp(52px, 6vw, 96px) 0;
}

.editorial-hero {
  padding-top: clamp(64px, 7vw, 116px);
}

.editorial-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.editorial-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px !important;
  color: #58754d;
  font-size: 0.91rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-kicker svg,
.editorial-actions svg {
  width: 23px;
  height: 23px;
}

.editorial-lead {
  max-width: 820px;
  margin-top: 28px !important;
  color: #3b5147;
  font-size: clamp(1.14rem, 1.42vw, 1.55rem);
  line-height: 1.62;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.editorial-actions .button {
  min-height: 58px;
  padding: 14px 23px;
  border: 1px solid rgba(88, 118, 79, 0.16);
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(47, 62, 52, 0.11);
}

.editorial-photo {
  margin: 0;
  background: #e6dccb;
  border-radius: 10px 42px 10px 42px;
  box-shadow: 0 22px 56px rgba(42, 60, 49, 0.14);
}

.editorial-photo img,
.editorial-gallery img,
.review-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-photo--hero {
  height: clamp(450px, 43vw, 670px);
}

.editorial-photo figcaption {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 11px 15px;
  color: #fff;
  background: rgba(27, 54, 43, 0.78);
  border-radius: 7px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.editorial-band--soft {
  background: rgba(255, 253, 247, 0.68);
  border-top: 1px solid rgba(137, 122, 88, 0.11);
  border-bottom: 1px solid rgba(137, 122, 88, 0.11);
}

.editorial-band--green {
  color: #f6f1e6;
  background:
    radial-gradient(circle at 86% 22%, rgba(202, 217, 176, 0.13), transparent 24rem),
    linear-gradient(135deg, #244c3b, #426442);
}

.editorial-band--green h2,
.editorial-band--green .editorial-kicker {
  color: #fff9ec;
}

.editorial-band--cta {
  padding-bottom: clamp(70px, 8vw, 124px);
}

.editorial-heading {
  max-width: 930px;
  margin-bottom: clamp(30px, 4vw, 54px);
}

.editorial-heading > p:last-child {
  max-width: 820px;
  margin-top: 20px;
  color: #42564d;
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.feature-card {
  min-height: 265px;
  padding: 28px 25px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 115, 86, 0.14);
  border-radius: 9px 32px 9px 32px;
  box-shadow: 0 14px 36px rgba(47, 62, 52, 0.07);
}

.feature-card > span,
.journey-grid article > span,
.review-note > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #5f7d53;
  place-items: center;
  background: #eef1df;
  border-radius: 50%;
}

.feature-card svg,
.journey-grid svg,
.review-note svg {
  width: 25px;
  height: 25px;
}

.feature-card p,
.journey-grid p {
  margin-top: 14px;
  color: #48584f;
  line-height: 1.68;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.story-split--reverse > :first-child {
  order: 2;
}

.story-split--reverse > :last-child {
  order: 1;
}

.story-split .editorial-photo {
  min-height: 500px;
}

.story-split h2 + p,
.story-split p + p,
.long-read h2 + p,
.long-read p + p,
.long-read p + h2 {
  margin-top: 20px;
}

.story-split p:not(.editorial-kicker),
.long-read p,
.article-quote p,
.aside-card p,
.editorial-callout p {
  color: #40544b;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.78;
}

.editorial-checks {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.editorial-checks li {
  position: relative;
  padding-left: 28px;
  color: #40544b;
  line-height: 1.55;
}

.editorial-checks li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 7px;
  content: "";
  border-bottom: 2px solid #718d62;
  border-left: 2px solid #718d62;
  transform: rotate(-45deg);
}

.editorial-gallery {
  display: grid;
  gap: 18px;
}

.editorial-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 300px;
  background: #e7ddcc;
  border-radius: 9px 34px 9px 34px;
  box-shadow: 0 14px 36px rgba(42, 60, 49, 0.11);
}

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

.editorial-gallery--three figure {
  height: clamp(300px, 28vw, 430px);
}

.editorial-gallery--stack {
  grid-template-columns: 1fr 1fr;
}

.editorial-gallery--stack figure {
  min-height: 470px;
}

.editorial-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: clamp(28px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(98, 120, 88, 0.13);
  border-radius: 9px 42px 9px 42px;
  box-shadow: 0 18px 45px rgba(46, 62, 52, 0.09);
}

.editorial-band--green .editorial-callout {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.editorial-callout p {
  max-width: 870px;
  margin-top: 16px;
}

.editorial-band--green .editorial-callout p {
  color: rgba(255, 255, 255, 0.84);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  align-items: start;
  gap: clamp(40px, 6vw, 88px);
}

.long-read {
  max-width: 900px;
}

.long-read h2 {
  margin-top: 44px;
}

.long-read .editorial-kicker + h2 {
  margin-top: 0;
}

.article-quote {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  margin: 36px 0;
  padding: 28px;
  background: #f0efde;
  border-left: 3px solid #759063;
  border-radius: 0 28px 28px 0;
}

.article-quote span {
  color: #69845d;
}

.article-quote svg {
  width: 38px;
  height: 38px;
}

.article-aside {
  display: grid;
  gap: 26px;
  position: sticky;
  top: 112px;
}

.article-aside .editorial-photo {
  height: 390px;
}

.aside-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(95, 115, 86, 0.14);
  border-radius: 9px 32px 9px 32px;
  box-shadow: 0 14px 36px rgba(47, 62, 52, 0.07);
}

.aside-card p {
  margin-top: 16px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.city-tags span {
  padding: 8px 12px;
  color: #466044;
  background: rgba(236, 239, 218, 0.86);
  border: 1px solid rgba(93, 119, 81, 0.17);
  border-radius: 999px;
  font-size: 0.92rem;
}

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

.journey-grid article {
  min-height: 290px;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(95, 115, 86, 0.13);
  border-radius: 9px 32px 9px 32px;
}

.fine-note {
  margin-top: 24px !important;
  padding: 16px 18px;
  background: rgba(235, 237, 218, 0.74);
  border-left: 3px solid #789064;
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem !important;
}

.reviews-hero {
  padding-top: clamp(72px, 8vw, 130px);
  text-align: center;
}

.reviews-hero__copy {
  max-width: 1120px;
}

.reviews-hero .editorial-kicker {
  justify-content: center;
}

.reviews-hero h1 {
  margin-inline: auto;
}

.reviews-hero .editorial-lead {
  margin-inline: auto;
}

.review-list {
  display: grid;
  gap: 30px;
}

.review-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(24px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(95, 115, 86, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(42, 60, 49, 0.08);
}

.review-story:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
}

.review-story:nth-child(even) .review-portrait {
  order: 2;
}

.review-portrait {
  height: 390px;
  margin: 0;
  background: #e6dccb;
  border-radius: 6px;
  overflow: hidden;
}

.review-portrait img {
  width: 100%;
  max-width: 100%;
  margin: 0;
  object-position: center;
}

.review-story blockquote {
  margin: 18px 0 20px;
  color: #2e4f42;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.85rem);
  line-height: 1.48;
}

.review-story > div > p:last-child {
  color: #4b5c54;
  line-height: 1.7;
}

.contact-hero {
  padding-top: clamp(72px, 8vw, 128px);
  text-align: center;
}

.contact-hero__copy {
  max-width: 920px;
}

.contact-hero h1 {
  margin-inline: auto;
}

.contact-hero .editorial-kicker {
  justify-content: center;
}

.contact-hero .editorial-lead {
  margin-inline: auto;
}

.contact-section {
  padding: 20px 0 clamp(76px, 9vw, 138px);
}

.contact-layout-clean {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}

.contact-info-panel,
.contact-form-clean {
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(93, 115, 84, 0.14);
  border-radius: 10px 44px 10px 44px;
  box-shadow: 0 18px 48px rgba(44, 60, 50, 0.09);
}

.contact-info-panel > p {
  margin-top: 16px;
  color: #46594f;
  line-height: 1.7;
}

.contact-info-list {
  display: grid;
  gap: 26px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.contact-info-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: #688257;
  place-items: center;
  background: #eef0df;
  border-radius: 50%;
}

.contact-info-list svg {
  width: 22px;
  height: 22px;
}

.contact-info-list p {
  margin-top: 6px;
  color: #526259;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-form-clean {
  display: grid;
  gap: 22px;
}

.form-heading {
  margin-bottom: 4px;
}

.contact-form-clean label {
  display: grid;
  gap: 8px;
}

.contact-form-clean label > span:first-child {
  color: #2e493d;
  font-weight: 700;
}

.contact-form-clean input,
.contact-form-clean select,
.contact-form-clean textarea {
  width: 100%;
  padding: 15px 16px;
  color: #253a31;
  background: #fffdf8;
  border: 1px solid rgba(92, 113, 83, 0.26);
  border-radius: 8px;
  font: inherit;
  outline: none;
}

.contact-form-clean textarea {
  resize: vertical;
}

.contact-form-clean input:focus,
.contact-form-clean select:focus,
.contact-form-clean textarea:focus {
  border-color: #638153;
  box-shadow: 0 0 0 3px rgba(99, 129, 83, 0.13);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.consent-line {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px !important;
  color: #56645d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.contact-form-clean .button {
  justify-self: start;
  min-width: 240px;
  min-height: 58px;
  border: 0;
  cursor: pointer;
}

.contact-form-clean .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 1.4em;
  color: #58734d;
  font-size: 0.95rem;
}

.form-status.is-success,
.form-status.is-error {
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.is-success {
  color: #274f33;
  background: #e8f2e5;
  border: 1px solid rgba(66, 112, 73, 0.22);
}

.form-status.is-error {
  color: #7c302c;
  background: #fff0ed;
  border: 1px solid rgba(139, 58, 52, 0.2);
}

@media (max-width: 1080px) {
  .editorial-hero__grid,
  .story-split,
  .contact-layout-clean {
    grid-template-columns: 1fr;
  }

  .editorial-hero__grid > div,
  .story-split > div,
  .story-split > article {
    max-width: 900px;
  }

  .story-split--reverse > :first-child,
  .story-split--reverse > :last-child {
    order: initial;
  }

  .editorial-photo--hero {
    height: 560px;
  }

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

@media (max-width: 820px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .editorial-gallery--three,
  .editorial-gallery--stack {
    grid-template-columns: 1fr;
  }

  .editorial-gallery--stack figure {
    min-height: 330px;
  }

  .review-story,
  .review-story:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .review-story:nth-child(even) .review-portrait {
    order: initial;
  }

  .editorial-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .editorial-page h1 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .editorial-page h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .editorial-hero,
  .reviews-hero,
  .contact-hero,
  .editorial-band {
    padding: 46px 0;
  }

  .editorial-photo--hero,
  .story-split .editorial-photo {
    min-height: 0;
    height: 360px;
  }

  .editorial-actions,
  .program-actions {
    display: grid;
  }

  .editorial-actions .button,
  .contact-form-clean .button {
    width: 100%;
  }

  .feature-card-grid,
  .journey-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .journey-grid article {
    min-height: 0;
  }

  .editorial-gallery--three figure {
    height: 310px;
  }

  .article-quote {
    grid-template-columns: 1fr;
  }

  .review-portrait {
    height: 310px;
  }

  .contact-info-panel,
  .contact-form-clean {
    padding: 26px 20px;
  }

}

/* Final cascade: keep the shared header identical on every route. */
.site-header.site-header--unified {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0 0;
  pointer-events: none;
}

.site-header--unified .header-panel.header-panel--unified {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(540px, 1.5fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  min-height: 104px;
  padding: 13px 18px 13px 28px;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(122, 117, 99, 0.13);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(38, 54, 45, 0.12);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.site-header--unified .header-panel--unified::before,
.site-header--unified .header-panel--unified::after {
  display: none;
}

.site-header--unified .brand--unified .brand__logo {
  width: 76px;
  height: 76px;
}

.site-header--unified .brand--unified .brand__name {
  color: #19342b;
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 1.28vw, 1.42rem);
  font-weight: 400;
}

.site-header--unified .brand--unified .brand__tagline {
  color: #456657;
  font-size: clamp(0.86rem, 0.95vw, 1.02rem);
  font-weight: 560;
}

.site-header--unified .main-nav--unified a {
  color: #25372f;
  font-size: clamp(0.79rem, 0.82vw, 0.94rem);
  font-weight: 620;
}

.site-header--unified .header-cta--unified {
  min-height: 52px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, #6f8a63, #4d6946);
  border-radius: 8px;
}

@media (max-width: 1180px) {
  .site-header--unified .header-cta--unified {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
  }

  .site-header--unified .header-cta--unified svg {
    width: 21px;
    height: 21px;
  }
}

.generic-inner-page > .reference-hero {
  aspect-ratio: 1672 / 811;
}

.generic-inner-page > .reference-hero > img {
  position: absolute;
  top: -15.97%;
  left: 0;
  width: 100%;
  max-width: none;
}

.team-page .team-hero .editorial-hero__grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
}

.team-page .team-hero h1 {
  font-size: clamp(3rem, 4.35vw, 4.6rem);
}

@media (max-width: 1180px) {
  .site-header--unified .header-panel.header-panel--unified {
    grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.1fr) auto;
  }
}

@media (max-width: 900px) {
  .site-header.site-header--unified {
    position: relative;
  }

  .site-header--unified .header-panel.header-panel--unified {
    grid-template-columns: 1fr auto;
    padding: 12px 14px;
  }

  .team-page .team-hero .editorial-hero__grid {
    grid-template-columns: 1fr;
  }
}
