/* ────────────────────────────────────────────
   FONTS
───────────────────────────────────────────── */

@font-face {
  font-family: 'GothicNo60';
  src: url('../fonts/Gothic60-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('../fonts/Geologica_Auto-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* ────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}
html.popup-open {
  overflow: hidden;
}
body {
  background: #fff8f0;
  color: #2d1800;
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

/* desktop centering: при экране уже 1440px контент остаётся по центру */
@media (min-width: 901px) {
  html {
    background: #fff8f0;
    display: flex;
    justify-content: center;
  }
  body {
    width: 1440px;
    min-width: 1440px;
    overflow-x: hidden;
  }
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
video { display: block; }

/* ────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */

:root {
  --bg:    #fff8f0;
  --text:  #2d1800;
  --acc:   #c47229;
  --btn:   #ffdfab;
  --muted: rgba(46,24,0,.64);
  --faint: rgba(46,24,0,.24);
}

/* ────────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────────── */

.dfont {
  font-family: 'GothicNo60', sans-serif;
  font-weight: 400;
}

.body-text {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 1.45;
  color: var(--text);
}

.sz120 {
  font-size: 120px;
  line-height: 144px;
  color: var(--text);
}

.accent { color: var(--acc); }

.accent-pill {
  position: relative;
  display: inline-block;
}
.accent-pill::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 100%;
  background: var(--btn);
  border-radius: 100px;
  opacity: 0;
  transition: opacity .2s;
  z-index: -1;
}
.accent-pill:hover::after {
  opacity: 1;
}

.link-accent {
  color: var(--acc);
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  transition: opacity .15s;
}
.link-accent:hover { opacity: .7; }

/* ────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn);
  color: var(--text);
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  border-radius: 900px;
  cursor: pointer;
  transition: opacity .15s;
  text-align: center;
}
.btn:hover { opacity: .85; }

.btn--hero {
  width: 600px;
  height: 204px;
  font-size: 36px;
  letter-spacing: -.72px;
  margin-top: 62px;
}

.btn--secondary {
  flex-direction: column;
  gap: 4px;
  width: 248px;
  height: 88px;
  font-size: 22px;
  letter-spacing: -.44px;
  padding: 0 20px;
}
.btn--secondary img {
  width: 28px;
  height: auto;
  opacity: .8;
}

.btn--cta-card {
  display: flex;
  width: 100%;
  height: 204px;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  letter-spacing: -.72px;
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  color: var(--text);
  background: transparent;
  transition: opacity .15s;
}
.btn--cta-card:hover { opacity: .85; }

/* ────────────────────────────────────────────
   SIDE DECORATION
───────────────────────────────────────────── */

.side-deco {
  position: fixed;
  left: 9px;
  top: 36px;
  width: 78px;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.side-deco--visible {
  opacity: 1;
}
.side-deco img {
  width: 68px;
  height: 404px;
  object-fit: contain;
}

/* ────────────────────────────────────────────
   SIDE NAV
───────────────────────────────────────────── */

.side-nav {
  position: fixed;
  left: 46px;
  top: 225px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.side-nav--visible {
  opacity: 1;
}

.side-nav__link {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.8px;
  color: var(--faint);
  pointer-events: all;
  transition: color .2s;
}
.side-nav__link--active { color: var(--text); }
.side-nav__link:hover   { color: var(--text); }

.side-nav__sep {
  font-size: 40px;
  line-height: 1;
  color: var(--faint);
  margin: 0 6px;
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
}

/* ────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */

.hero {
  height: 900px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero__content {
  margin-left: 185px;
  width: 1110px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-top: 110px;
  padding-bottom: 160px;
}

.hero__left {
  width: 444px;
  flex-shrink: 0;
  padding-left: 39px;
}

.hero__photo-wrap {
  width: 405px;
  height: 541px;
  border-radius: 50px;
  overflow: hidden;
}

.hero__photo {
  width: 405px;
  height: 541px;
  object-fit: cover;
}

.hero__pills {
  display: flex;
  gap: 2px;
  justify-content: center;
}

.hero__pills--mobile { display: none; }
.hero__pills--desktop { display: flex; }


.pill {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 1;
  color: var(--text);
  background: var(--btn);
  border-radius: 0 0 20px 20px;
  padding: 7px 28px 10px 30px;
  transition: opacity .15s;
}
.pill:hover { opacity: .8; }

.hero__right {
  width: 600px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  align-self: stretch;
  padding-top: 53px;
}

.hero__titles { align-self: flex-start; margin-left: 60px; }

.hero__name {
  font-family: 'GothicNo60', sans-serif;
  font-size: 70px;
  line-height: 90px;
  color: var(--text);
}

.hero__sub {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 44px;
  line-height: 0.8;
  letter-spacing: -.88px;
  color: var(--text);
}
.hero__sub .accent-pill {
  position: relative;
  display: inline-block;
  padding: 0 .12em;
  border-radius: 999px;
  background: transparent;
  transition: background-color .16s ease;
}
.hero__sub .accent-pill:hover,
.hero__sub .accent-pill:focus-visible {
  background: var(--btn);
}

.hero__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}
.hero__links .link-accent {
  font-size: 16px;
  line-height: 1.1;
}

/* ────────────────────────────────────────────
   APPROACH
───────────────────────────────────────────── */

.approach {
  overflow: visible;
}

/* 1. Heading: "мой" top-left + video center + "подход:" right */
.approach__heading {
  position: relative;
  width: 1440px;
  height: 300px;
  padding-top: 50px;
  overflow: visible;
}

.approach__moy {
  position: absolute;
  left: 233px;
  top: 26px;
  z-index: 1;
  font-family: 'GothicNo60', sans-serif;
  font-size: 120px;
  line-height: 144px;
  color: var(--text);
}

.approach__heading-left {
  position: absolute;
  left: 433px;
  top: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.approach__video-box {
  position: relative;
  width: 262px;
  height: 180px;
  border-radius: 40px;
  overflow: hidden;
  background: var(--btn);
}
.approach__video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.approach__video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 56px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity .15s, transform .15s;
}
.approach__video-play img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(45, 24, 0, .28));
}
.approach__video-play:hover {
  opacity: .86;
  transform: translate(-50%, -50%) scale(1.03);
}
.approach__video-box.is-playing .approach__video-play {
  display: none;
}

.approach__video-label {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 0.95;
  color: var(--muted);
  text-align: center;
  width: 278px;
}


.approach__podhod {
  position: absolute;
  left: 685px;
  top: 152px;
  font-family: 'GothicNo60', sans-serif;
  font-size: 120px;
  line-height: 144px;
  color: var(--text);
}

/* 2. Row 1: hands (x=197,y=1200) + text (x=787,y=1379) */
.approach__row--1 {
  position: relative;
  width: 1440px;
  height: 475px;
  margin-top: 0;
}

.approach__hands {
  position: absolute;
  left: 165px;
  top: 0;
  width: 500px;
  height: 553px;
  object-fit: contain;
}

.approach__text-r {
  position: absolute;
  left: 694px;
  top: 179px;
  width: 590px;
  line-height: 1.3;
}

/* 3. Row 2: text (x=235,y=1731) + bird (x=770,y=1582) */
.approach__row--2 {
  position: relative;
  width: 1440px;
  height: 468px;
  margin-top: -93px;
}

.approach__text-l {
  position: absolute;
  left: 235px;
  top: 149px;
  width: 460px;
  line-height: 1.3;
}

.approach__bird {
  position: absolute;
  left: 770px;
  top: 0;
  width: 444px;
  height: 468px;
  object-fit: contain;
}

/* 4. Method: starts at y=1930 */
.approach__method {
  position: relative;
  width: 1440px;
  margin-top: -120px;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach__method-pre {
  margin-left: 236px;
  font-size: 24px;
  line-height: 28.8px;
}

.approach__psychodrama {
  margin-left: 311px;
}

.approach__method-p1 {
  margin-left: 240px;
  width: 670px;
  margin-top: 14px;
}
.approach__method-p2 {
  margin-left: 399px;
  width: 743px;
  margin-top: 25px;
}
.approach__method-p1,
.approach__method-p2 {
  font-size: 24px;
  line-height: 28.8px;
}

/* 5. Quote: y=2641, h=660 */
.approach__quote {
  position: relative;
  width: 1440px;
  height: 660px;
  overflow: hidden;
}

.approach__blob {
  position: absolute;
  left: 68px;
  top: 27px;
  width: 1333px;
  height: 619px;
  object-fit: contain;
}

.approach__quote-text {
  position: absolute;
  left: 176px;
  top: 150px;
  width: 1088px;
  font-family: 'GothicNo60', sans-serif;
  font-size: 60px;
  line-height: 72px;
  color: var(--text);
  text-align: center;
}

/* 6. CTAs: y=3301, two buttons w=482 h=191 */
.approach__ctas {
  position: relative;
  width: 1440px;
  padding: 45px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
}

.btn--secondary {
  width: 482px;
  height: auto;
  min-height: 191px;
  border-radius: 40px;
  font-size: 36px;
  line-height: 25.2px;
  letter-spacing: 0;
  padding: 60px 0 49px;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
}
.btn--secondary span { display: block; }
.btn--secondary img {
  width: 59px;
  height: 28px;
  object-fit: contain;
  opacity: 1;
}

/* ────────────────────────────────────────────
   CHILDREN
───────────────────────────────────────────── */

.white-block {
  background: #fff;
  border-radius: 380px;
}

.children {
}

.children__wrap {
  padding: 130px 230px 0;
}

.children__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 12px;
  gap: 0;
}

.children__header-text {
  flex: 1;
  padding-right: 0;
}

.ch-pretitle {
  font-size: 40px;
  line-height: 0px;
  color: var(--text);
  padding-left: 0px;
}

.ch-title {
  font-size: 120px;
  line-height: 144px;
  color: var(--text);
}

.ch-subtitle {
  font-size: 40px;
  line-height: 40px;
  color: var(--text);
}

.ch-intro {
  font-size: 22px;
  line-height: 26.4px;
  margin-top: 25px;
  width: 601px;
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  color: var(--text);
}

.children__header-photo {
  flex-shrink: 0;
  /* photo at x=981, content left=230, so from header left = 981-230=751. header-text width≈600+17gap=617. photo left = header total 980-348=632 from content. Let's align to right edge */
}

.ch-photo {
  width: 348px;
  height: 380px;
  object-fit: cover;
  border-radius: 100px;
  display: block;
}

.children__faq {
  padding-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.children__q {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 61px;
}
.children__q:first-child { padding-top: 0; }

.ch-q-title {
  font-size: 40px;
  line-height: 40px;
  color: var(--text);
}

.children__q .body-text {
  font-size: 22px;
  line-height: 26.4px;
  width: 900px;
}

.children__q--illus {
  position: relative;
}

.children__q--illus .ch-q-title {
  width: 571px;
}

.ch-illus-big {
  position: absolute;
  top: -100px;
  left: 734px;
  width: 348px;
  height: 621px;
  object-fit: contain;
  pointer-events: none;
}
.ch-deco-mobile { display: none; }
.mobile-br { display: none; }
.consult-mobile-break { display: none; }

.children__q--two-col {
  flex-direction: row;
  align-items: flex-start;
  gap: 42px;
}
.ch-two-left {
  flex-shrink: 0;
  width: 386px;
}
.ch-two-right { flex: 1; }

.children__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.children__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bullet-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}
.children__list li span {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 22px;
  line-height: 26.4px;
  color: var(--text);
}

.children__parents {
  padding-top: 61px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.children__parents .ch-q-title { width: 610px; }
.children__parents .body-text {
  font-size: 22px;
  line-height: 26.4px;
  width: 900px;
}

.children__consult {
  position: relative;
  padding-top: 61px;
  min-height: 350px;
  margin-bottom: 0;
}

.ch-blob {
  position: absolute;
  left: 310px;
  top: 55px;
  width: 660px;
  height: auto;
  object-fit: contain;
}

.ch-deco {
  position: absolute;
  left: -39px;
  top: 10px;
  width: 1027px;
  height: 324px;
  object-fit: contain;
}

.ch-consult-text {
  position: absolute;
  left: 365px;
  top: 88px;
  width: 560px;
  font-size: 22px;
  line-height: 26.4px;
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  color: var(--text);
}

/* ────────────────────────────────────────────
   PRICING
───────────────────────────────────────────── */

.pricing {
}

.pricing__wrap {
  margin: 0 224px;
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing__deco {
  position: absolute;
  left: -33px;
  top: 0;
  width: 1027px;
  height: 324px;
  pointer-events: none;
  z-index: -1;
}
.pricing__deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing__title {
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -.8px;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 30px;
}

.pricing__card {
  background: var(--btn);
  border-radius: 37px;
  min-height: 195px;
  display: flex;
  align-items: center;
}

.pricing__card-l {
  padding-left: 68px;
  width: 300px;
  flex-shrink: 0;
}

.pricing__card-r { flex: 1; }

.pricing__price {
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 36px;
  color: var(--text);
}

.pricing__type {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 24px;
  color: var(--text);
  margin-top: 2px;
}

.pricing__desc, .pricing__loc {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 29px;
  color: var(--text);
}

.pricing__card--group {
  border-radius: 40px;
  min-height: 237px;
  align-items: center;
}

.pricing__group-label {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 36px;
  line-height: 0.9;
  color: var(--text);
}

.pricing__card--cta {
  border-radius: 900px;
  min-height: 204px;
  padding: 0;
  background: var(--btn);
  transition: opacity .15s;
}
.pricing__card--cta:hover { opacity: .85; }

/* ────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */

.footer {
  text-align: center;
  padding: 40px 20px 40px;
}
.footer p {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 18px;
  color: rgba(46, 24, 0, 0.38);
}

/* ────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */

@media (max-width: 900px) {
  .mobile-br { display: inline; }
  .side-deco, .side-nav { display: none; }

  /* убираем scrollbar-gutter на мобильном */
  html { scrollbar-gutter: auto; }

  /* ── HERO ── */
  .hero {
    height: auto;
    padding: 12px 12px 0;
    align-items: flex-start;
    overflow: visible;
  }
  .hero__content {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    padding-bottom: 40px;
    align-items: flex-start;
  }
  .hero__left {
    width: 100%;
    padding-left: 0;
  }
  .hero__photo-wrap {
    width: 100%;
    height: 319px;
    border-radius: 68px;
  }
  .hero__photo {
    width: 100%;
    height: 319px;
    object-fit: cover;
    object-position: 99% 33%;
  }
  .hero__pills--desktop { display: none; }
  .hero__pills--mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    align-self: stretch;
    margin-top: 32px;
  }
  .pill {
    flex: 1;
    height: 55px;
    border-radius: 900px;
    padding: 0;
    font-size: 20px;
    justify-content: center;
  }
  .hero__right {
    width: 100%;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }
  .hero__titles { align-self: stretch; margin-left: 20px; }
  .hero__name { font-size: 49px; line-height: 1.05; }
  /* междустрочное уменьшено */
  .hero__sub  { font-size: 30px; line-height: 0.85; letter-spacing: -.3px; margin-top: 0px; margin-bottom: 0px; }
  /* гэп между пилюлями и кнопкой такой же как между пилюлями (8px) */
  .btn--hero  { width: 100%; height: 159px; font-size: 36px; border-radius: 900px; padding: 13px 33px 16px; margin-top: 0; }
  .hero__links { gap: 4px; align-items: center; margin-top: 0; }
  .hero__links .link-accent { font-size: 16px; }

  /* ── APPROACH ── */
  .body-text { font-size: 16px; line-height: 1.5; }
  .approach { overflow: clip; padding: 0 12px; }

  .approach__heading {
    position: static;
    width: 100%;
    height: auto;
    padding-top: 40px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .approach__moy {
    position: static;
    font-size: 63px;
    line-height: 0.6;
    order: 1;
  }
  .approach__podhod {
    position: static;
    font-size: 63px;
    line-height: 0.6;
    order: 2;
    align-self: flex-end;
    text-align: right;
    margin-top: 12px;
    margin-bottom: 6px;
  }
  /* видео под словом "подход:" — слева видео, справа подпись по верхнему краю */
  .approach__heading-left {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    align-self: flex-start;
    margin-top: 16px;
    order: 3;
  }
  .approach__video-box {
    width: 150px;
    height: 94px;
    border-radius: 16px;
    flex-shrink: 0;
  }
  .approach__video-play {
    width: 34px;
    height: 34px;
  }
  .approach__video-label {
    font-size: 14px;
    width: auto;
    line-height: 1.3;
    text-align: left;
    padding-top: 4px;
  }

  /* карточки approach — текст ~3/4 ширины, иллюстрация в правом нижнем углу */
  .approach__row--1 {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--btn);
    border-radius: 31px;
    padding: 21px;
    min-height: 200px;
  }
  .approach__hands {
    position: absolute;
    left: auto;
    right: 21px;
    top: auto;
    bottom: 21px;
    width: 104px;
    height: 110px;
    transform: none;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
    z-index: 2;
  }
  .approach__text-r {
    position: relative;
    z-index: 1;
    left: auto; top: auto;
    width: 64%;
    font-size: 16px;
    line-height: 1.2;
  }

  .approach__row--2 {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--btn);
    border-radius: 31px;
    padding: 21px;
    min-height: 190px;
  }
  .approach__text-l {
    position: relative;
    z-index: 1;
    left: auto; top: auto;
    width: 64%;
    font-size: 16px;
    line-height: 1.2;
  }
  .approach__bird {
    position: absolute;
    left: auto;
    right: 21px;
    top: auto;
    bottom: 21px;
    width: 104px;
    height: 110px;
    transform: none;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
    z-index: 2;
  }

  /* психодрама на белой карточке */
  .approach__method {
    position: static;
    width: 100%;
    margin-top: 10px;
    padding: 24px 21px;
    background: #fff;
    border-radius: 31px;
  }
  .approach__method-pre {
    margin-left: 0;
    font-size: 16px;
  }
  .approach__psychodrama {
    margin-left: 0;
    font-size: 42px;
    line-height: 1.2;
  }
  .approach__method-p1 {
    margin-left: 0;
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.5;
  }
  .approach__method-p2 {
    margin-left: 0;
    width: 100%;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
  }

  /* quote */
  .approach__quote {
    position: relative;
    width: calc(100% + 24px);
    margin-left: -12px;
    height: auto;
    min-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .approach__blob {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .approach__quote-text {
    position: relative;
    z-index: 1;
    width: 100%;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    padding: 60px 16px;
    left: auto; top: auto;
  }

  /* CTA аккордеоны */
  .approach__ctas {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 0 40px;
  }
  .btn--secondary {
    width: 100%;
    height: auto;
    min-height: 185px;
    font-size: 28px;
    border-radius: 40px;
    padding: 60px 0 49px;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }
  .btn--secondary .cta-label {
    display: block;
  }
  .btn--secondary .cta-icon {
    display: block;
    width: 59px;
    height: 28px;
    margin-top: 10px;
  }
  /* раскрытое состояние аккордеона — убираем max-height ограничение */
  .btn--secondary[aria-expanded="true"] {
    height: auto;
    min-height: auto;
    overflow: visible;
  }
  .btn--secondary[aria-expanded="true"] .cta-body {
    max-height: none;
  }

  /* ── CHILDREN ── */
  .white-block { border-radius: 115px 115px 70px 70px; position: relative; z-index: 1; }
  .children__wrap { padding: 0 12px 20px; }
  .children__header { flex-direction: column; gap: 0; }
  .children__header-text { width: 100%; order: 2; padding-top: 20px; }
  .children__header-photo { order: 1; width: 100%; }
  .ch-photo    { width: 100%; height: 319px; border-radius: 100px; object-fit: cover; object-position: center top; }
  .ch-pretitle { font-size: 32px; line-height: 1.1; padding-left: 20px; }
  .ch-title    { font-size: 84px; line-height: 1; }
  .ch-subtitle { font-size: 24px; line-height: 1.2; padding-left: 80px; }
  .ch-intro    { width: 100%; font-size: 16px; line-height: 1.5; margin-top: 12px; }

  /* медведи — прижаты к правому краю */
  .ch-q-title-wrap { align-items: flex-start; gap: 0; flex-wrap: nowrap; }
  .ch-q-title-wrap .ch-q-title { flex: 1; min-width: 0; }
  /* буллет-поинты в 2 раза меньше (было 36, стало 18 — как на десктопе) */
  .bullet-icon { width: 18px; height: 18px; }
  .children__list { gap: 4px; }
  .children__list li { gap: 6px; }

  .children__faq { padding-top: 32px; }
  .children__q { padding-top: 28px; gap: 12px; }
  .ch-q-title  { font-size: 24px; line-height: 1.2; width: 100%; }
  .children__q .body-text { width: 100%; font-size: 16px; line-height: 1.5; }
  .children__q--two-col { flex-direction: column; gap: 12px; }
  .ch-two-left { width: 100%; }
  .ch-two-right { width: 100%; }
  .children__list li span { font-size: 16px; line-height: 1.5; }

  .children__parents { padding-top: 28px; gap: 12px; }
  .children__parents .ch-q-title { width: 100%; font-size: 24px; }
  .children__parents .body-text { width: 100%; font-size: 16px; line-height: 1.5; }

  /* consult: text above, then blob+flower below */
  .children__consult {
    position: relative;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 8px;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .ch-deco { display: none; }
  .ch-consult-text {
    position: relative;
    z-index: 1;
    left: auto; top: auto;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    order: 1;
    padding: 18px 8px 20px;
  }
  .ch-consult-text br {
    display: none;
  }
  .ch-consult-text .consult-mobile-break {
    display: block;
  }
  /* flower in flow, large — shows left portion with actual flower */
  .ch-deco-mobile {
    display: block;
    position: relative;
    width: 135%;
    max-width: none;
    height: auto;
    z-index: 1;
    object-fit: contain;
    order: 2;
    margin-top: -4px;
    margin-left: 4%;
  }
  /* blob behind the consultation paragraph */
  .ch-blob {
    display: block;
    position: absolute;
    left: -16%;
    top: 30px;
    right: auto;
    bottom: auto;
    width: 128%;
    max-width: none;
    height: auto;
    object-fit: contain;
    z-index: 0;
    order: 3;
  }
  .ch-illus-big--desktop { display: none; }

  /* ── PRICING ── */
  .pricing__wrap  { margin: 0 12px; padding-top: 0; padding-bottom: 12px; }
  .pricing__deco  { display: none; }
  .pricing__title { font-size: 24px; margin-top: 0; margin-bottom: 8px; letter-spacing: 0; text-align: center; }
  .pricing__card  { flex-direction: column; align-items: flex-start; padding: 32px 33px; min-height: auto; border-radius: 40px; }
  .pricing__card-l { padding-left: 0; width: 100%; }
  .pricing__card-r { margin-top: 8px; width: 100%; }
  .pricing__price { font-size: 36px; line-height: 1.1; }
  .pricing__type  { font-size: 24px; line-height: 1.3; margin-top: 4px; }
  .pricing__desc, .pricing__loc { font-size: 24px; line-height: 1.3; }
  .pricing__card--group { padding: 32px 33px; flex-direction: column; align-items: flex-start; }
  .pricing__group-label { font-size: 36px; line-height: 1.2; font-family: 'Geologica', sans-serif; font-weight: 200; }
  .pricing__card--group .pricing__card-r { margin-top: 16px; }
  /* кнопка записаться — сильнее скругление */
  .btn--cta-card { height: 122px; font-size: 36px; border-radius: 900px; }
  .pricing__card--cta { min-height: 122px; border-radius: 900px; padding: 0; }
}

@media (max-width: 340px) {
  .hero__titles {
    margin-left: 0;
    width: 100%;
  }
}

/* ────────────────────────────────────────────
   CHILDREN BEAR ILLUSTRATIONS (mobile only)
───────────────────────────────────────────── */

.ch-q-title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.ch-q-title-wrap .ch-q-title {
  flex: 1;
}
.ch-bear {
  display: none;
  flex-shrink: 0;
  object-fit: contain;
}
.ch-bear--1 {
  width: 100px;
  height: 70px;
  margin-top: 4px;
}
.ch-bear--2 {
  width: 90px;
  height: 96px;
  margin-top: 4px;
}

/* desktop: скрываем медведей (они только для mobile) */
@media (min-width: 901px) {
  .ch-q-title-wrap {
    display: block;
  }
  .ch-bear { display: none !important; }
}

@media (max-width: 900px) {
  .ch-q-title-wrap {
    position: relative;
    min-height: 0;
    padding-right: 140px;
  }
  .ch-q-title-wrap .ch-q-title {
    flex: none;
    width: 100%;
  }
  .ch-bear {
    display: block;
    position: absolute;
    right: 8px;
    top: 0;
    flex-shrink: 0;
  }
  .ch-bear--1 { width: 140px; height: auto; margin: 0; }
  .ch-bear--2 { width: 130px; height: auto; margin: 0; mix-blend-mode: multiply; }
}

@media (max-width: 370px) {
  .hero__name { font-size: 44px; }
  .hero__sub  { font-size: 26px; }
  .btn--hero  { font-size: 30px; height: 130px; }
  .approach__moy, .approach__podhod { font-size: 54px; }
  .approach__psychodrama { font-size: 38px; }
  .approach__quote-text { font-size: 26px; }
  .ch-title { font-size: 70px; }
}

/* ────────────────────────────────────────────
   PILL BUTTONS (hero)
───────────────────────────────────────────── */

button.pill {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ────────────────────────────────────────────
   CTA ACCORDION BUTTONS
───────────────────────────────────────────── */

.btn--secondary {
  /* already defined above, extends here */
  position: relative;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: none;
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  color: var(--text);
  text-align: center;
  transition: opacity .15s;
}
.btn--secondary:hover { opacity: .85; }

.cta-label {
  display: block;
  font-size: 36px;
  line-height: 25.2px;
  letter-spacing: 0;
}

.cta-icon {
  width: 59px;
  height: 28px;
  object-fit: contain;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}

.cta-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px;
  width: 100%;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s cubic-bezier(.4,0,.2,1);
}
.cta-body p {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
}

/* expanded state */
.btn--secondary[aria-expanded="true"] .cta-icon {
  transform: rotate(180deg);
}
.btn--secondary[aria-expanded="true"] .cta-body {
  max-height: 600px;
  padding: 20px 24px 0;
}
.btn--secondary[aria-expanded="true"] {
  padding-bottom: 40px;
}

/* ────────────────────────────────────────────
   POPUPS
───────────────────────────────────────────── */

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(222, 111, 0, 0.3);
  z-index: 200;
  overflow-y: auto;
}

.popup-overlay.is-open {
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}

/* education popup: x=398, w=665 */
.popup-panel--edu {
  position: relative;
  flex-shrink: 0;
  margin-top: 39px;
  margin-left: 398px;
  width: 665px;
  min-height: 600px;
  background: #fff;
  border-radius: 60px;
  padding: 50px 50px 60px;
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
}

/* about popup: x=414, w=613 */
.popup-panel--about {
  position: relative;
  flex-shrink: 0;
  margin-top: 88px;
  margin-left: 414px;
  width: 613px;
  background: #fff;
  border-radius: 60px;
  padding: 40px 46px 50px;
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
}

.popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  opacity: .7;
  transition: opacity .15s;
}
.popup-close:hover { opacity: 1; }

.popup-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-section-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 1.4;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 20px;
}
.popup-section-title:first-child { margin-top: 0; }

.popup-section-title--dfont {
  font-family: 'GothicNo60', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
}

.popup-text {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 1.45;
  color: var(--text);
}
.popup-text--bold {
  font-weight: 300;
}

.popup-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}
.popup-list li {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 22px;
  line-height: 1.45;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.popup-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--acc);
}

.popup-list--bullet li::before {
  content: '•';
}

/* фото в попапе "обо мне" */
.popup-about-photo {
  display: block;
  width: 180px;
  height: auto;
  border-radius: 20px;
  margin: 28px auto 0;
}

/* лента фото в попапе образование */
.edu-ribbon-wrap {
  margin-top: 32px;
  overflow: hidden;
  border-radius: 14px;
}

.edu-ribbon {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ribbon-scroll 20s linear infinite;
}

.edu-ribbon-img {
  height: 140px;
  width: auto;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
  transition: opacity .15s;
}
.edu-ribbon a:hover .edu-ribbon-img {
  opacity: .75;
}

@keyframes ribbon-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* кнопка "часы обучения" */
.edu-hours-btn {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  font-size: 16px;
  color: var(--text);
  border: 1px solid rgba(45,24,0,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.edu-hours-btn:hover { opacity: 0.6; }

/* mobile popup */
@media (max-width: 900px) {
  .popup-overlay { padding: 20px 16px; }
  .popup-panel--edu,
  .popup-panel--about {
    width: 100%;
    margin: 0;
    border-radius: 30px;
    padding: 32px 24px 40px;
  }
  .popup-text { font-size: 18px; }
  .popup-list li { font-size: 18px; }
  .btn--secondary[aria-expanded="true"] { min-height: auto; }
  .cta-label { font-size: 20px; }
}
