/* =========================================================================
   Ретриты с Натальей Ким — v0.1
   Природная палитра: тёплый терракот (CTA) + глубокий зелёный (атмосфера).
   Постоянная структура + изменяемая активная программа в content/program.json.
   ========================================================================= */

:root {
  /* Палитра — кремовый + терракот + лесной зелёный */
  --bg:           oklch(98% 0.008 70);
  --bg-soft:      oklch(95% 0.018 70);
  --bg-strong:   oklch(91% 0.025 70);
  --text:         oklch(22% 0.01 60);
  --text-muted:   oklch(45% 0.015 60);

  /* Единственный акцент для CTA — тёплый терракот */
  --accent:       oklch(58% 0.13 45);
  --accent-hover: oklch(50% 0.14 45);
  --accent-soft:  oklch(94% 0.04 45);
  --accent-deep:  oklch(38% 0.12 45);

  /* Сателлит — глубокий зелёный, атмосферный (hero, декор), НЕ для CTA */
  --forest:       oklch(40% 0.045 160);
  --forest-deep:  oklch(28% 0.04 160);
  --forest-soft:  oklch(85% 0.02 160);

  --border:       oklch(88% 0.012 60);
  --border-strong: oklch(78% 0.015 60);
  --white:        oklch(99% 0 0);

  /* Шрифты */
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', var(--font-sans);
  --font-serif:   'Source Serif 4', 'Cormorant Garamond', Georgia, serif;

  /* Шкалы */
  --text-eyebrow: 0.8125rem;
  --text-body:    1.0625rem;
  --text-lead:    1.25rem;
  --text-h3:      clamp(1.125rem, 0.95rem + 0.55vw, 1.45rem);
  --text-h2:      clamp(2rem, 1.4rem + 2vw, 3rem);
  --text-hero:    clamp(2.5rem, 1.5rem + 4vw, 4.75rem);

  /* Радиусы и тени */
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --radius-pill:  999px;
  --shadow-sm:    0 1px 2px rgb(0 0 0 / .05);
  --shadow:       0 8px 28px -10px rgb(0 0 0 / .14);
  --shadow-lg:    0 20px 48px -16px rgb(0 0 0 / .20);

  /* Ритмы */
  --section-pad:  clamp(5rem, 3.5rem + 5vw, 9rem);
  --container:    1180px;
  --container-narrow: 760px;
  --header-h:     76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- Утилиты ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 0.5rem + 2vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow--on-dark { color: oklch(72% 0.10 45); }

.text-muted { color: var(--text-muted); }
.lead { font-size: var(--text-lead); color: var(--text); margin-bottom: 1rem; }

/* ---------- Шапка ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: var(--header-h);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
}
.brand__role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.nav {
  display: flex;
  gap: clamp(0.75rem, 0.4rem + 0.7vw, 1.5rem);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
}
.nav a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--text);
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease-out;
}
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.header__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}
.phone-link:hover { color: var(--accent); }
.phone-link span { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform .15s, background-color .15s, color .15s, border-color .15s, box-shadow .15s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgb(255 255 255 / .35);
}
.btn--ghost-light:hover {
  background: rgb(255 255 255 / .08);
  border-color: var(--white);
}
.btn--lg {
  padding: 0.95rem 1.6rem;
  font-size: 1.0625rem;
}

/* =====================================================================
   HERO — крупная атмосферная плашка с глубоким зелёным фоном
   ===================================================================== */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4rem, 2.5rem + 4vw, 7rem) 0 clamp(5rem, 3rem + 5vw, 9rem);
  background:
    linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 55%, oklch(45% 0.05 165) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 28%, oklch(68% 0.13 45 / .22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 82% 72%, oklch(99% 0 0 / .06) 0%, transparent 70%);
  z-index: -1;
}
.hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(1.25rem, 0.5rem + 2vw, 2.5rem);
}
.hero__eyebrow {
  display: inline-block;
  border: 1px solid rgb(255 255 255 / .35);
  color: rgb(255 255 255 / .85);
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-hero);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero__title em {
  font-style: normal;
  color: oklch(78% 0.12 45);
}
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.6rem);
  line-height: 1.4;
  color: rgb(255 255 255 / .82);
  max-width: 38ch;
  margin: 0 auto 2.25rem;
}

.hero__facts {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  background: rgb(255 255 255 / .08);
  border: 1px solid rgb(255 255 255 / .18);
  border-radius: var(--radius-lg);
  padding: 1rem 1.6rem;
  margin-bottom: 2rem;
  gap: 1.75rem;
}
.hero__fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 7rem;
}
.hero__fact + .hero__fact {
  border-left: 1px solid rgb(255 255 255 / .2);
  padding-left: 1.75rem;
}
.hero__fact-label {
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / .55);
}
.hero__fact-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  white-space: nowrap;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero__hint {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgb(255 255 255 / .55);
  letter-spacing: 0.04em;
}

/* ---------- Секции ---------- */
.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.section--white { background: var(--bg); }
.section--soft  { background: var(--bg-soft); }
.section--dark  {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: var(--white);
}
.section--dark .section__title,
.section--dark h3 { color: var(--white); }
.section--dark .section__lead,
.section--dark p { color: rgb(255 255 255 / .78); }

.section__head {
  max-width: 56rem;
  margin: 0 auto clamp(2rem, 1rem + 3vw, 4rem);
  text-align: center;
}
.section__head .eyebrow { margin-left: auto; margin-right: auto; }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section__lead {
  font-size: var(--text-lead);
  color: var(--text-muted);
  max-width: 55ch;
  margin: 0 auto;
}
.section__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 1rem + 2vw, 3rem);
}

/* =====================================================================
   ЧТО ЭТО — постоянный блок-позиционирование
   ===================================================================== */
.about-retreat {
  display: grid;
  gap: 1.25rem;
  font-size: var(--text-lead);
  line-height: 1.55;
  color: var(--text);
  max-width: 50rem;
  margin: 0 auto;
}
.about-retreat p:first-child {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
}

/* =====================================================================
   КАРТОЧКИ-СИТУАЦИИ (Для кого)
   ===================================================================== */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.situation-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.situation-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.situation-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.situation-card__icon svg { width: 26px; height: 26px; }
.situation-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h3);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.situation-card__feeling {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

/* =====================================================================
   АКТИВНАЯ ПРОГРАММА — карточка с метаданными
   ===================================================================== */
.program-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--forest-deep), var(--forest));
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.program-card__head {
  padding: clamp(2rem, 1.25rem + 2vw, 3rem) clamp(1.75rem, 1rem + 2vw, 3rem);
  border-bottom: 1px solid rgb(255 255 255 / .12);
}
.program-card__head .eyebrow {
  color: oklch(78% 0.12 45);
}
.program-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.program-card__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgb(255 255 255 / .8);
}

.program-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: rgb(255 255 255 / .12);
}
.program-meta__cell {
  padding: 1.5rem clamp(1.75rem, 1rem + 2vw, 3rem);
  background: linear-gradient(160deg, var(--forest-deep), var(--forest));
}
.program-meta__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / .55);
  margin-bottom: 0.4rem;
}
.program-meta__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--white);
  line-height: 1.4;
}
.program-meta__hint {
  font-size: 0.85rem;
  color: rgb(255 255 255 / .6);
  margin-top: 0.15rem;
}

.program-themes {
  padding: clamp(2rem, 1rem + 2vw, 3rem) clamp(1.75rem, 1rem + 2vw, 3rem);
}
.program-themes__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(255 255 255 / .55);
  margin-bottom: 1.25rem;
}
.program-themes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}
.theme-card {
  background: rgb(255 255 255 / .06);
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.4rem;
  transition: background .2s, border-color .2s;
}
.theme-card:hover {
  background: rgb(255 255 255 / .10);
  border-color: oklch(72% 0.10 45);
}
.theme-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgb(255 255 255 / .1);
  color: oklch(78% 0.13 45);
  display: grid; place-items: center;
  margin-bottom: 0.85rem;
}
.theme-card__icon svg { width: 22px; height: 22px; }
.theme-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.theme-card__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgb(255 255 255 / .78);
}

.program-cta {
  padding: 0 clamp(1.75rem, 1rem + 2vw, 3rem) clamp(2rem, 1rem + 2vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* =====================================================================
   РАСПИСАНИЕ ПО ДНЯМ
   ===================================================================== */
.schedule {
  display: grid;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}
.schedule__day {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
}
.schedule__day > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
}
.schedule__day > summary::-webkit-details-marker { display: none; }
.schedule__day > summary::after {
  content: '+';
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  transition: transform .2s;
  justify-self: end;
}
.schedule__day[open] > summary::after { content: '−'; }
.schedule__day[open] { border-color: var(--accent); }
.schedule__day-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.schedule__day-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h3);
  line-height: 1.25;
  color: var(--text);
}
.schedule__day-body {
  padding: 0 1.5rem 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.schedule__day-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.schedule__day-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.schedule__day-blocks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.schedule__day-blocks li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 0.55rem; height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

/* =====================================================================
   ЧТО ВЫ ПОЛУЧИТЕ — value list
   ===================================================================== */
.value-list {
  display: grid;
  gap: 1rem;
  counter-reset: value-list;
  max-width: 48rem;
  margin: 0 auto;
}
.value-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s, transform .2s;
}
.value-list__item:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.value-list__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1.1;
  min-width: 2.4rem;
}
.value-list__item p {
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0;
}

/* =====================================================================
   ПРАКТИКИ — карточки 3×N
   ===================================================================== */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.practice-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.practice-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.practice-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--forest-soft);
  color: var(--forest-deep);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.practice-card__icon svg { width: 22px; height: 22px; }
.practice-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h3);
  margin-bottom: 0.5rem;
}
.practice-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.55; }

/* =====================================================================
   О НАТАЛЬЕ — двухколоночный блок с фото
   ===================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 1.5rem + 3vw, 5rem);
  align-items: start;
}
.two-col__photo {
  margin: 0;
  position: relative;
  align-self: start;
}
.two-col__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.two-col__photo::after {
  content: '';
  position: absolute;
  inset: 8% -3% -3% 8%;
  border: 1px solid var(--accent);
  opacity: 0.35;
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about-stats__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  margin-right: 0.5rem;
}
.about-stats li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

/* =====================================================================
   СТОИМОСТЬ — fallback-карточка
   ===================================================================== */
.pricing-fallback {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  background: var(--bg-soft);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.pricing-fallback p {
  font-size: var(--text-lead);
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.pricing-card {
  max-width: 44rem;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1rem + 2vw, 2.5rem);
  display: grid;
  gap: 1rem;
  text-align: center;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem);
  color: var(--accent);
  line-height: 1.05;
}
.pricing-card__includes {
  display: grid;
  gap: 0.4rem;
  font-size: 1rem;
  color: var(--text-muted);
  list-style: none;
  padding: 0;
  margin: 0.5rem auto 0;
  text-align: left;
  max-width: 30rem;
}
.pricing-card__includes li {
  position: relative;
  padding-left: 1.5rem;
}
.pricing-card__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* =====================================================================
   ОТЗЫВЫ — заглушка плашкой
   ===================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.review {
  background: var(--bg);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.review__avatar {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--bg-strong);
  color: var(--text-muted);
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  font-weight: 700;
}
.review__text {
  color: var(--text);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.review__meta {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.reviews-note {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.55;
  background: var(--bg-soft);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
}
.faq__item[open] > summary::after { content: '−'; }
.faq__body {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================================================================
   ФИНАЛЬНЫЙ CTA
   ===================================================================== */
.final-cta {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: var(--white);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.final-cta__inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.final-cta__lead {
  font-size: var(--text-lead);
  color: rgb(255 255 255 / .8);
  margin-bottom: 2rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-prompt {
  max-width: 36rem;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: rgb(255 255 255 / .08);
  border: 1px solid rgb(255 255 255 / .18);
  border-radius: var(--radius-lg);
  text-align: left;
}
.contact-prompt h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: var(--white);
}
.contact-prompt ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  counter-reset: anketa;
}
.contact-prompt ol li {
  counter-increment: anketa;
  padding-left: 2rem;
  position: relative;
  font-size: 0.9375rem;
  color: rgb(255 255 255 / .9);
}
.contact-prompt ol li::before {
  content: counter(anketa);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem; height: 1.5rem;
  border-radius: 999px;
  background: oklch(78% 0.13 45);
  color: var(--forest-deep);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
}
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* =====================================================================
   ФУТЕР
   ===================================================================== */
.footer {
  background: oklch(20% 0.02 160);
  color: rgb(255 255 255 / .55);
  padding: clamp(2.5rem, 1.5rem + 2vw, 4rem) 0;
}
.footer__inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}
.footer__brand .footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}
.footer__brand .footer__role {
  font-size: 0.875rem;
  color: rgb(255 255 255 / .55);
}
.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.footer__contacts a:hover { color: oklch(78% 0.13 45); }
.footer__copy {
  font-size: 0.875rem;
  color: rgb(255 255 255 / .4);
}

/* =====================================================================
   STICKY BOTTOM CTA + ПЛАВАЮЩАЯ WHATSAPP
   ===================================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 25;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform .25s ease-out;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
}
.sticky-cta__btn--primary { background: var(--accent); color: var(--white); }
.sticky-cta__btn--ghost {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.wa-float-wrap {
  position: fixed;
  right: clamp(1rem, 0.5rem + 1vw, 1.5rem);
  bottom: clamp(1rem, 0.5rem + 1vw, 1.5rem);
  z-index: 26;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-float-tooltip {
  background: var(--forest-deep);
  color: var(--white);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  max-width: 14rem;
  line-height: 1.35;
  box-shadow: var(--shadow);
  position: relative;
  animation: tooltip-pulse 6s ease-in-out 2s 1 both;
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--forest-deep);
  border-right: 0;
}
@keyframes tooltip-pulse {
  0%   { opacity: 0; transform: translateX(8px); }
  10%  { opacity: 1; transform: translateX(0); }
  85%  { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(8px); }
}
.wa-float {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: oklch(70% 0.16 145);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.05); }
.wa-float svg { width: 28px; height: 28px; }

/* =====================================================================
   АДАПТИВ
   ===================================================================== */
@media (max-width: 1280px) {
  .brand__role { display: none; }
  .brand__name { font-size: 1rem; }
  .nav { font-size: 0.875rem; }
}

@media (max-width: 960px) {
  .situations-grid,
  .practices-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col__photo { order: -1; max-width: 28rem; margin: 0 auto; }
  .two-col__photo img { aspect-ratio: 4/5; max-height: 60vh; }
  .two-col__photo::after { display: none; }
  .program-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .nav,
  .header__cta .phone-link { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    left: 0; right: 0;
    top: var(--header-h);
    background: var(--bg);
    padding: 1.25rem clamp(1.25rem, 0.5rem + 2vw, 2.5rem);
    border-bottom: 1px solid var(--border);
  }
  .situations-grid,
  .practices-grid { grid-template-columns: 1fr; }
  .hero__facts { flex-direction: column; gap: 0.85rem; padding: 1rem 1.25rem; }
  .hero__fact + .hero__fact { border-left: 0; border-top: 1px solid rgb(255 255 255 / .2); padding-left: 0; padding-top: 0.85rem; }
  .hero__cta .btn { width: 100%; }
  .program-meta { grid-template-columns: 1fr; }
  .schedule__day > summary { grid-template-columns: 1fr auto; gap: 0.5rem 1rem; }
  .schedule__day-label { grid-column: 1 / -1; }
  body { padding-bottom: 5.5rem; }
}

@media (min-width: 721px) {
  .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  html { scroll-behavior: auto; }
}
