/* ============================================================
   Алевтина — психолог · Premium wellness landing
   Type: Playfair Display (display) + Manrope (text)
   Palette: powder rose, milk, warm beige, soft taupe
   ============================================================ */

:root {
  /* surfaces */
  --milk:        #FBF6F2;
  --milk-2:      #F6EEE8;
  --powder:      #F3DEDB;
  --powder-soft: #F8E8E5;
  --beige:       #EFE5D9;
  --white:       #FFFFFF;

  /* ink */
  --ink:         #463C38;
  --ink-soft:    #6C615B;
  --ink-faint:   #9B8E87;

  /* accent — dusty rose */
  --rose:        #C58A84;
  --rose-deep:   #B0716B;
  --rose-tint:   #E7C7C2;

  /* lines + glass */
  --line:        rgba(112, 86, 80, 0.14);
  --glass:       rgba(255, 255, 255, 0.55);
  --glass-line:  rgba(255, 255, 255, 0.7);

  /* shadows — soft, warm */
  --sh-sm: 0 2px 10px rgba(120, 86, 80, 0.06);
  --sh-md: 0 12px 34px rgba(120, 86, 80, 0.10);
  --sh-lg: 0 28px 70px rgba(120, 86, 80, 0.16);
  --sh-rose: 0 14px 30px rgba(176, 113, 107, 0.30);

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 26px;
  --r-xl: 34px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--milk);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  width: min(100% - 44px, var(--maxw));
  margin-inline: auto;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--rose);
  display: inline-block;
}

.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::after {
  content: ""; width: 26px; height: 1px; background: var(--rose); display: inline-block;
}
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  margin-top: 18px;
}
.section-head p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-soft);
}

/* ---------- buttons ---------- */
.btn {
  --pad: 15px 28px;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  padding: var(--pad);
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  box-shadow: var(--sh-rose);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(176,113,107,.4); }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); background: #fff; box-shadow: var(--sh-md); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 20px 0;
}
.header.scrolled {
  background: rgba(251, 246, 242, 0.78);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(140deg, var(--rose-tint), var(--rose));
  display: grid; place-items: center;
  color: #fff; font-family: "Playfair Display", serif; font-size: 20px;
  box-shadow: var(--sh-sm);
}
.brand__name { font-family: "Playfair Display", serif; font-size: 20px; line-height: 1; }
.brand__name small { display: block; font-family: "Manrope", sans-serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 15px; color: var(--ink-soft); font-weight: 500; transition: color .25s; white-space: nowrap; }
.nav a:hover { color: var(--rose-deep); }
.header__cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger svg { width: 26px; height: 26px; color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(130px, 17vh, 200px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(60% 50% at 75% 18%, var(--powder-soft) 0%, transparent 60%),
  radial-gradient(55% 60% at 12% 80%, #F3EAE0 0%, transparent 60%),
  linear-gradient(180deg, var(--milk) 0%, var(--milk-2) 100%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  opacity: .7;
  will-change: transform;
}
.blob.b1 { width: 460px; height: 460px; top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(233,199,194,.9), transparent 70%); }
.blob.b2 { width: 380px; height: 380px; bottom: -120px; left: -100px;
  background: radial-gradient(circle, rgba(239,229,217,.95), transparent 70%); }
.blob.b3 { width: 240px; height: 240px; top: 38%; left: 46%;
  background: radial-gradient(circle, rgba(248,232,229,.8), transparent 70%); }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px);
  font-size: 13.5px; color: var(--ink-soft); font-weight: 500;
  box-shadow: var(--sh-sm);
  margin-bottom: 26px;
}
.hero__badge .dots { display: flex; }
.hero__badge .dots span { width: 24px; height: 24px; border-radius: 50%; margin-left: -8px; border: 2px solid #fff;
  background: var(--rose-tint); }
.hero__badge .dots span:nth-child(2){ background: var(--beige); }
.hero__badge .dots span:nth-child(3){ background: var(--powder); }
.hero h1 {
  font-size: clamp(34px, 5.2vw, 62px);
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--rose-deep); }
.hero__sub {
  font-size: clamp(16.5px, 1.5vw, 19px);
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 510px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__trust { display: flex; align-items: center; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero__stat strong { font-family: "Playfair Display", serif; font-size: 30px; display: block; line-height: 1; color: var(--rose-deep); }
.hero__stat span { font-size: 13.5px; color: var(--ink-faint); }
.hero__divider { width: 1px; height: 38px; background: var(--line); }

/* hero portrait */
.hero__media { position: relative; }
.portrait {
  position: relative;
  border-radius: 200px 200px var(--r-xl) var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-lg);
  border: 8px solid #fff;
  background: linear-gradient(160deg, var(--powder-soft), var(--beige));
}
.portrait.placeholder { display: grid; place-items: center; }
.ph {
  width: 100%; height: 100%;
  background-image: repeating-linear-gradient(135deg, rgba(176,113,107,.10) 0 2px, transparent 2px 13px);
  display: grid; place-items: center;
}
.ph span {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 12.5px; color: var(--rose-deep);
  background: rgba(255,255,255,.75); padding: 8px 14px; border-radius: 8px;
  letter-spacing: .03em; text-align: center;
}
.hero__float {
  position: absolute; z-index: 3;
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero__float.f1 { left: -34px; top: 22%; }
.hero__float.f2 { right: -26px; bottom: 16%; }
.hero__float .ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--powder-soft); color: var(--rose-deep); }
.hero__float .ic svg { width: 20px; height: 20px; }
.hero__float b { font-size: 14px; display: block; }
.hero__float small { font-size: 12px; color: var(--ink-faint); }

/* ============================================================
   MARQUEE / values strip
   ============================================================ */
.strip { background: var(--ink); color: #fff; padding: 22px 0; overflow: hidden; }
.strip__track { display: flex; gap: 56px; white-space: nowrap; animation: marquee 34s linear infinite; width: max-content; }
.strip__track span { font-family: "Playfair Display", serif; font-size: 22px; font-style: italic; opacity: .92; display: inline-flex; align-items: center; gap: 56px; }
.strip__track span::after { content: "·"; color: var(--rose); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: linear-gradient(180deg, var(--milk) 0%, var(--milk-2) 100%); }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__photo {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5/6;
  box-shadow: var(--sh-lg); border: 7px solid #fff;
  background: linear-gradient(160deg, var(--beige), var(--powder-soft));
}
.about__exp {
  position: absolute; bottom: -26px; right: -22px;
  background: #fff; border-radius: var(--r-md); padding: 20px 24px;
  box-shadow: var(--sh-md); text-align: center;
}
.about__exp strong { font-family: "Playfair Display", serif; font-size: 40px; color: var(--rose-deep); line-height: 1; }
.about__exp span { font-size: 13px; color: var(--ink-soft); display: block; margin-top: 6px; }
.about__lead { font-size: 19px; color: var(--ink); margin: 24px 0 22px; font-weight: 500; }
.about__text { color: var(--ink-soft); margin-bottom: 16px; }
.about__creds { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 30px; }
.cred { display: flex; gap: 14px; align-items: flex-start; }
.cred .ic { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--powder-soft); color: var(--rose-deep); display: grid; place-items: center; }
.cred .ic svg { width: 18px; height: 18px; }
.cred b { font-weight: 600; }
.cred p { font-size: 14.5px; color: var(--ink-soft); }

.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.value {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; box-shadow: var(--sh-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.value:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.value .ic { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(140deg, var(--powder-soft), var(--rose-tint)); color: var(--rose-deep); display: grid; place-items: center; margin-bottom: 14px; }
.value .ic svg { width: 20px; height: 20px; }
.value b { display: block; font-size: 16px; margin-bottom: 5px; }
.value p { font-size: 13.5px; color: var(--ink-soft); }

/* ============================================================
   HELP CARDS
   ============================================================ */
.help__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.help-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 26px; box-shadow: var(--sh-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.help-card::after {
  content: ""; position: absolute; inset: auto -40% -60% auto; width: 160px; height: 160px;
  background: radial-gradient(circle, var(--powder-soft), transparent 70%); opacity: 0; transition: opacity .45s;
}
.help-card:hover { transform: translateY(-8px) scale(1.025); box-shadow: var(--sh-md); border-color: var(--rose-tint); }
.help-card:hover::after { opacity: 1; }
.help-card .ic {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(140deg, var(--powder-soft), var(--rose-tint));
  color: var(--rose-deep); display: grid; place-items: center; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.help-card .ic svg { width: 24px; height: 24px; }
.help-card h3 { font-size: 18px; font-family: "Manrope", sans-serif; font-weight: 700; position: relative; z-index: 1; }
.help-card p { font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; position: relative; z-index: 1; }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process { background: linear-gradient(180deg, var(--milk-2), var(--milk)); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.timeline::before {
  content: ""; position: absolute; top: 31px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--rose-tint) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px;
  background: #fff; border: 2px solid var(--rose-tint);
  display: grid; place-items: center;
  font-family: "Playfair Display", serif; font-size: 24px; color: var(--rose-deep);
  box-shadow: var(--sh-sm); transition: transform .4s var(--ease), background .4s, color .4s;
}
.step:hover .step__num { transform: translateY(-5px) scale(1.06); background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff; border-color: transparent; }
.step h3 { font-size: 19px; font-family: "Manrope", sans-serif; font-weight: 700; }
.step p { font-size: 14px; color: var(--ink-soft); margin-top: 8px; max-width: 230px; margin-inline: auto; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { overflow: hidden; }
.reviews__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.rating { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 12px 22px; box-shadow: var(--sh-sm); }
.rating .stars { display: flex; gap: 3px; color: var(--rose); }
.rating .stars svg { width: 18px; height: 18px; fill: currentColor; }
.rating b { font-family: "Playfair Display", serif; font-size: 24px; }
.rating span { font-size: 13px; color: var(--ink-faint); }

.slider { position: relative; }
.slider__viewport { overflow: hidden; }
.slider__track { display: flex; gap: 24px; transition: transform .7s var(--ease); }
.review-card {
  flex: 0 0 calc((100% - 48px) / 3); 
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.review-card .quote { font-family: "Playfair Display", serif; font-size: 44px; line-height: .6; color: var(--rose-tint); height: 22px; }
.review-card p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.review-card .who { display: flex; align-items: center; gap: 13px; }
.review-card .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg, var(--powder), var(--rose-tint)); display: grid; place-items: center; color: var(--rose-deep); font-weight: 700; font-family: "Playfair Display", serif; }
.review-card .who b { font-size: 15px; display: block; }
.review-card .who small { font-size: 12.5px; color: var(--ink-faint); }
.review-card .mini-stars { color: var(--rose); display: flex; gap: 2px; }
.review-card .mini-stars svg { width: 14px; height: 14px; fill: currentColor; }
.slider__nav { display: flex; gap: 12px; }
.slider__nav button {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: all .3s;
}
.slider__nav button:hover { background: var(--rose); color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: var(--sh-rose); }
.slider__nav button svg { width: 20px; height: 20px; }
.slider__dots { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }
.slider__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--rose-tint); cursor: pointer; transition: all .3s; padding: 0; }
.slider__dots button.active { width: 28px; border-radius: 6px; background: var(--rose-deep); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: linear-gradient(180deg, var(--milk), var(--milk-2)); }
.price__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 32px; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.price-card.featured {
  background: linear-gradient(170deg, #fff 0%, var(--powder-soft) 130%);
  border-color: var(--rose-tint);
  box-shadow: var(--sh-md);
}
.price-card .tag { position: absolute; top: 26px; right: 26px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, var(--rose), var(--rose-deep)); padding: 6px 13px; border-radius: 100px; }
.price-card.featured h3 { padding-right: 116px; }
.price-card h3 { font-size: 22px; font-family: "Manrope", sans-serif; font-weight: 700; }
.price-card .dur { font-size: 13.5px; color: var(--ink-faint); margin-top: 4px; }
.price-card .amount { margin: 22px 0; display: flex; align-items: baseline; gap: 7px; }
.price-card .amount b { font-family: "Playfair Display", serif; font-size: 46px; color: var(--ink); line-height: 1; }
.price-card .amount s { font-size: 18px; color: var(--ink-faint); }
.price-card .feat { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card .feat li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.price-card .feat svg { width: 18px; height: 18px; color: var(--rose-deep); flex: none; margin-top: 2px; }
.price-card .perit { font-size: 13px; color: var(--rose-deep); margin-bottom: 18px; font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 5vw, 70px); align-items: start; }
.faq__aside { position: sticky; top: 120px; }
.faq__aside .help-line { margin-top: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; box-shadow: var(--sh-sm); }
.faq__aside .help-line b { display: block; margin-bottom: 6px; }
.faq__aside .help-line p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--sh-md); border-color: var(--rose-tint); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 600; color: var(--ink); }
.faq-q .chev { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--powder-soft); color: var(--rose-deep); display: grid; place-items: center; transition: transform .4s var(--ease), background .3s; }
.faq-q .chev svg { width: 17px; height: 17px; }
.faq-item.open .chev { transform: rotate(180deg); background: var(--rose); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a__inner { padding: 0 26px 26px; color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking { position: relative; overflow: hidden; }
.booking__card {
  position: relative;
  background: linear-gradient(150deg, var(--powder-soft) 0%, var(--beige) 100%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 84px);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.booking__card .blob { opacity: .9; }
.booking__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.booking__copy h2 { font-size: clamp(30px, 4.2vw, 50px); }
.booking__copy p { margin-top: 20px; color: var(--ink-soft); font-size: 18px; max-width: 440px; }
.booking__contacts { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contact-row { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.contact-row .ic { width: 44px; height: 44px; border-radius: 13px; background: #fff; color: var(--rose-deep); display: grid; place-items: center; box-shadow: var(--sh-sm); }
.contact-row .ic svg { width: 20px; height: 20px; }
.contact-row small { display: block; font-weight: 500; color: var(--ink-faint); font-size: 12.5px; }

.form {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--sh-md);
}
.form h3 { font-size: 24px; margin-bottom: 6px; }
.form .form__sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink);
  padding: 14px 16px; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: #fff; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(197,138,132,.14); }
.field input.invalid, .field select.invalid { border-color: #d98b8b; box-shadow: 0 0 0 4px rgba(217,139,139,.14); }
.field .err { font-size: 12px; color: #c0726f; margin-top: 6px; display: none; }
.field.show-err .err { display: block; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__note { font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 60px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand__mark { box-shadow: none; }
.footer .brand__name { color: #fff; }
.footer p { font-size: 14px; margin-top: 18px; max-width: 320px; line-height: 1.7; }
.footer h4 { color: #fff; font-family: "Manrope", sans-serif; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .25s; }
.footer ul a:hover { color: var(--rose-tint); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s, transform .3s; }
.footer__socials a:hover { background: var(--rose); transform: translateY(-3px); }
.footer__socials svg { width: 18px; height: 18px; color: #fff; }

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.float-cta { display: none; }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 22px;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(70,60,56,.42); backdrop-filter: blur(6px); }
.modal__box {
  position: relative; width: min(520px, 100%);
  background: var(--milk); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: clamp(28px, 4vw, 44px);
  transform: translateY(24px) scale(.97); transition: transform .45s var(--ease);
  max-height: 92vh; overflow-y: auto;
}
.modal.open .modal__box { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: all .25s; }
.modal__close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; }
.modal__head { text-align: center; margin-bottom: 24px; }
.modal__head .eyebrow { margin-bottom: 12px; }
.modal__head h3 { font-size: 28px; }
.modal__head p { font-size: 14.5px; color: var(--ink-soft); margin-top: 8px; }
.modal__channels { display: flex; gap: 10px; margin-bottom: 22px; }
.modal__channels a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 8px; border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); transition: all .3s; }
.modal__channels a:hover { border-color: var(--rose); color: var(--rose-deep); transform: translateY(-3px); box-shadow: var(--sh-sm); }
.modal__channels svg { width: 22px; height: 22px; color: var(--rose-deep); }
.modal__divider { display: flex; align-items: center; gap: 14px; color: var(--ink-faint); font-size: 12px; margin-bottom: 20px; }
.modal__divider::before, .modal__divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* free-chat perks */
.modal__perks { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 11px; }
.modal__perks li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); }
.modal__perks .ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--powder-soft); color: var(--rose-deep); display: grid; place-items: center; }
.modal__perks .ic svg { width: 16px; height: 16px; }
.modal__perks b { color: var(--ink); font-weight: 600; }

/* success */
.success { text-align: center; padding: 14px 0; }
.success__check { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 24px; background: linear-gradient(140deg, var(--rose-tint), var(--rose)); display: grid; place-items: center; animation: pop .5s var(--ease) both; }
.success__check svg { width: 42px; height: 42px; color: #fff; }
@keyframes pop { 0%{transform:scale(0)} 60%{transform:scale(1.12)} 100%{transform:scale(1)} }
.success h3 { font-size: 28px; margin-bottom: 12px; }
.success p { color: var(--ink-soft); margin-bottom: 26px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
.reveal[data-delay="7"] { transition-delay: .56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip__track, .blob { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; order: -1; width: 100%; }
  .hero__float.f1 { left: 0; }
  .hero__float.f2 { right: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin-inline: auto; }
  .help__grid { grid-template-columns: repeat(2, 1fr); }
  .price__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .booking__inner { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .header__cta .btn-ghost { display: none; }
  .burger { display: block; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .timeline::before { display: none; }
  .values { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 100%; }
  .hero__trust { gap: 18px; }
  .float-cta {
    display: flex; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
    gap: 10px;
  }
  .float-cta .btn { flex: 1; box-shadow: var(--sh-lg); }
  .float-cta .icon-btn { width: 54px; flex: none; padding: 0; background: #fff; border: 1px solid var(--line); color: var(--rose-deep); }
  .float-cta .icon-btn svg { width: 22px; height: 22px; }
  .footer { padding-bottom: 90px; }
}

@media (max-width: 480px) {
  .help__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__float { display: none; }
  .modal__channels { flex-direction: column; }
}

/* mobile nav drawer */
.drawer { position: fixed; inset: 0; z-index: 150; visibility: hidden; opacity: 0; transition: .35s; }
.drawer.open { visibility: visible; opacity: 1; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(70,60,56,.4); backdrop-filter: blur(4px); }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 86%); background: var(--milk); padding: 28px; transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; gap: 8px; box-shadow: var(--sh-lg); }
.drawer.open .drawer__panel { transform: none; }
.drawer__panel a { padding: 14px 4px; font-size: 18px; font-weight: 500; border-bottom: 1px solid var(--line); }
.drawer__panel .btn { margin-top: 20px; }
.drawer__close { align-self: flex-end; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; margin-bottom: 10px; }
.drawer__close svg { width: 20px; height: 20px; }

/* ============================================================
   ONLINE PAYMENT (pay.js)
   ============================================================ */
.price-pay {
  margin-top: 12px; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 13px/1.3 "Manrope", sans-serif; color: var(--rose-deep);
  background: none; border: 0; padding: 8px 4px; cursor: pointer;
  text-decoration: underline; text-decoration-color: var(--rose-tint); text-underline-offset: 4px;
  transition: color .25s, text-decoration-color .25s;
}
.price-pay[hidden] { display: none; }
.price-pay:hover { color: var(--ink); text-decoration-color: var(--rose); }
.price-pay:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 8px; }
.price-pay svg { width: 16px; height: 16px; }

.pay-cur { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 18px; border: 0; padding: 0; }
.pay-cur legend { font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; padding: 0; }
.pay-cur label {
  display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 12px 6px;
  border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; cursor: pointer;
  font-weight: 700; color: var(--ink); transition: border-color .25s, box-shadow .25s, transform .25s;
}
.pay-cur label small { font-weight: 500; font-size: 11.5px; color: var(--ink-faint); text-align: center; }
.pay-cur input { position: absolute; opacity: 0; pointer-events: none; }
.pay-cur label:hover { transform: translateY(-2px); }
.pay-cur input:checked + label { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(197,138,132,.14); }
.pay-cur input:focus-visible + label { outline: 2px solid var(--rose); outline-offset: 2px; }
.pay-error { font-size: 13px; color: #c0726f; text-align: center; margin: -4px 0 12px; min-height: 1em; }

/* ============================================================
   FORMS: anti-spam trap + submit error
   ============================================================ */
/* Поле-ловушка для ботов: убрано с экрана, но не display:none —
   иначе часть ботов его пропускает. */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__error { font-size: 13.5px; color: #b25a57; background: rgba(217,139,139,.12); border-radius: var(--r-sm); padding: 10px 14px; margin: 0 0 14px; }
.form__error[hidden] { display: none; }

/* ============================================================
   NARROW PHONES
   ============================================================ */
@media (max-width: 760px) {
  /* Внизу и так висит плавающая «Записаться» — в шапке оставляем меню. */
  .header__cta .btn-primary { display: none; }
  /* Сначала заголовок и кнопки, потом фото: главное — на первом экране. */
  .hero__media { order: 0; max-width: min(340px, 100%); }
  /* minmax(0, …): колонка не раздувается под ширину содержимого — иначе на 320px скролл вбок. */
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
  /* Длинные подписи («Бесплатная ознакомительная беседа») на 320px шире экрана. */
  .hero__actions .btn { width: 100%; white-space: normal; text-align: center; }
}

@media (max-width: 1024px) {
  .price__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .price-card { padding: 30px 22px; }
  .price-card .amount { flex-wrap: wrap; }
  /* Плашка «Популярный» — над заголовком, а не рядом: иначе карточка шире экрана. */
  .price-card.featured h3 { padding-right: 0; margin-top: 30px; }
  .price-card .tag { top: 22px; right: auto; left: 22px; }
}
