/* ============ TOKENS ============ */
:root {
  --cream:      #FDF4F7;
  --blush:      #F9DCE6;
  --blush-deep: #F3C2D3;
  --rose:       #E6407C;
  --rose-deep:  #B92A5C;
  --plum:       #4A2733;
  --plum-soft:  #7A5560;
  --gold:       #D9A857;
  --white:      #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Manrope', sans-serif;

  /* ===== TYPE SCALE (единый масштаб, оптимизировано под мобильные) ===== */
  --fs-xs:     0.76rem;   /* бейджи, мета, футер */
  --fs-sm:     0.86rem;   /* мелкий текст, подписи полей */
  --fs-base:   0.92rem;   /* базовый текст абзацев */
  --fs-md:     0.98rem;   /* кнопки, акцентный текст */
  --fs-lg:     1.1rem;    /* заголовки карточек, h3 */
  --fs-script: clamp(1.3rem, 4vw, 1.55rem); /* рукописный акцентный шрифт (eyebrow, цитаты) */
  --fs-title:  clamp(1.5rem, 5.5vw, 2.1rem); /* заголовки секций h2 */
  --fs-hero:   clamp(2rem, 8.5vw, 2.9rem);   /* заголовок hero */

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-pop: cubic-bezier(.34,1.56,.64,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--plum);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ============ FLOW DIVIDER (визуальные вехи между блоками) ============ */
.flow-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--rose);
  position: relative;
  z-index: 1;
}
.flow-divider span {
  width: 1.5px;
  height: 26px;
  background: linear-gradient(var(--blush-deep), transparent);
}
.flow-divider span:last-child { background: linear-gradient(transparent, var(--blush-deep)); }
.flow-divider .icon { opacity: .8; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--plum);
}

p { margin: 0; line-height: 1.6; color: var(--plum-soft); }

button { font-family: inherit; cursor: pointer; }

.eyebrow {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: var(--fs-script);
  color: var(--rose);
  margin: 0 0 4px;
  letter-spacing: .01em;
}

/* ============ BACKGROUND DECOR ============ */
.bg-decor {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%; /* высота подгоняется из JS под реальную высоту страницы */
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.petal-wrap {
  position: absolute;
  top: var(--top);
  left: var(--left);
  will-change: transform;
}

.petal {
  width: var(--size);
  height: var(--size);
  color: var(--rose);
  opacity: .4;
  animation: floaty var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
  will-change: transform;
}
.petal.gold { color: var(--gold); opacity: .48; }
.petal.deep { color: var(--rose-deep); opacity: .3; }
.petal.spin { animation: floaty-spin var(--dur) ease-in-out infinite; animation-delay: var(--delay); }
.flower-center { fill-opacity: .55; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-6deg) scale(1); }
  50%      { transform: translateY(-22px) rotate(10deg) scale(1.08); }
}
@keyframes floaty-spin {
  0%   { transform: translateY(0) rotate(0deg) scale(1); }
  50%  { transform: translateY(-26px) rotate(180deg) scale(1.1); }
  100% { transform: translateY(0) rotate(360deg) scale(1); }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  z-index: 200;
  transition: width .08s linear;
}

/* ============ TOPBAR (телефон, инста, телеграм) ============ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 16px;
  padding: 7px 16px;
  background: var(--plum);
  font-size: var(--fs-xs);
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blush);
  text-decoration: none;
  opacity: .92;
  white-space: nowrap;
}
.topbar__item:hover { opacity: 1; text-decoration: underline; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 30px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(253, 244, 247, .8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74,39,51,.06);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--plum);
  text-decoration: none;
  font-weight: 500;
}
.nav__logo span { color: var(--rose); }

.nav__cta {
  background: var(--rose);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: var(--fs-base);
  font-weight: 600;
  transition: transform .2s var(--ease), background .2s;
}
.nav__cta:hover { background: var(--rose-deep); transform: translateY(-1px); }

/* ============ LAYOUT ============ */
main { position: relative; z-index: 1; }

.section {
  position: relative;
  padding: 44px 24px;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: hidden;
}

.section__title {
  position: relative;
  font-size: var(--fs-title);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  transition: width .9s var(--ease-pop) .25s;
  transform: translateX(-50%);
}
.section__title.in-view::after { width: 46%; }

.section__lead {
  max-width: 480px;
  margin: 0 auto 22px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 168px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero__glow--a {
  width: 300px; height: 300px;
  top: -60px; left: -80px;
  background: radial-gradient(circle, var(--blush-deep), transparent 70%);
  opacity: .8;
}
.hero__glow--b {
  width: 340px; height: 340px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, var(--blush-deep), transparent 70%);
  opacity: .5;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  will-change: transform, opacity;
}

.hero__title {
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -.01em;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--rose-deep);
  font-size: clamp(0.95rem, 3.4vw, 1.2rem);
  letter-spacing: .01em;
  margin: 6px 0 14px;
}

.hero__script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--rose);
  font-size: var(--fs-script);
  margin: 4px 0 16px;
}

.hero__sub {
  max-width: 380px;
  margin: 20px auto 14px;
  font-size: var(--fs-base);
}

.hero__bio {
  max-width: 360px;
  margin: 0 auto 6px;
  font-size: var(--fs-base);
  color: var(--plum-soft);
  opacity: .9;
}

.hero__frame {
  margin-top: 34px;
  width: 100%;
  max-width: 340px;
}

.scroll-cue {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--plum-soft);
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-cue__line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--rose), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(.5); opacity: 1; }
}

/* ============ BUTTONS ============ */
.btn {
  border: none;
  border-radius: 100px;
  padding: 16px 30px;
  font-weight: 700;
  font-size: var(--fs-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn--primary {
  position: relative;
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(230,64,124,.55);
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 3.4s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0%   { left: -60%; }
  35%  { left: 130%; }
  100% { left: 130%; }
}
.btn--primary:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}
.btn--outline:hover { background: var(--rose); color: var(--white); }
.btn--ghost {
  background: var(--blush);
  color: var(--plum);
}
.btn--full { width: 100%; margin-top: 10px; }
.btn--big { padding: 18px 40px; font-size: var(--fs-lg); }
.btn:disabled { opacity: .4; pointer-events: none; }

/* ============ SERVICES ============ */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(74,39,51,.05);
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  box-shadow: 0 16px 40px -24px rgba(74,39,51,.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { box-shadow: 0 20px 46px -22px rgba(74,39,51,.4); }
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}
.card:active { transform: scale(.98); }
.card h3 { font-size: var(--fs-lg); margin-bottom: 8px; }
.card > p { flex: 1; }
.card p { font-size: var(--fs-base); margin-bottom: 14px; }

.card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
  animation: badge-pulse 2.6s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,163,79,.55); }
  50%      { box-shadow: 0 0 0 7px rgba(212,163,79,0); }
}
.card__badge--gold {
  background: var(--rose-deep);
  max-width: 46%;
  text-align: center;
  line-height: 1.2;
}

.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--blush-deep);
}
.card__gift {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--rose-deep);
  background: var(--blush);
  padding: 4px 10px;
  border-radius: 100px;
}

.card__link {
  background: var(--blush);
  border: none;
  color: var(--rose-deep);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 100px;
  width: 100%;
  transition: background .2s;
}
.card__link:hover { background: var(--blush-deep); }

/* ============ PROMO BANNER (пилинг) ============ */
.promo {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--white), var(--blush));
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}
.promo__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.promo__flag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.promo__text h3 { font-size: var(--fs-lg); margin-bottom: 8px; }
.promo__text p { font-size: var(--fs-base); margin-bottom: 14px; }
.promo__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promo__list li {
  font-size: var(--fs-base);
  color: var(--plum-soft);
}
.promo__list strong {
  font-family: var(--font-display);
  color: var(--rose-deep);
  font-size: var(--fs-md);
}

/* ============ PROBLEM (Узнаёте себя?) ============ */
.problem--tint {
  background: var(--blush);
  border-radius: 40px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.problem__list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 12px 30px -22px rgba(74,39,51,.3);
}
.problem__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-md);
}
.problem__item p { font-size: var(--fs-base); color: var(--plum); }

.problem__quote {
  position: relative;
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--rose-deep);
  font-size: var(--fs-script);
  text-align: center;
  max-width: 480px;
  margin: 20px auto 0;
  line-height: 1.4;
  padding-bottom: 16px;
}
.problem__quote::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  transition: width 1s var(--ease-pop) .3s;
  transform: translateX(-50%);
}
.problem__quote.in-view::after {
  width: 62%;
}

/* ============ GALLERY / PROOF ============ */
.proof--tint {
  background: var(--blush);
  border-radius: 40px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.gallery__scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.gallery__scroll::-webkit-scrollbar { display: none; }

.img-placeholder--gallery {
  flex: 0 0 78%;
  aspect-ratio: 3/2; /* формат фото 1800×1200 */
  scroll-snap-align: center;
}

.proof__note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--plum-soft);
  margin-top: 14px;
}

/* ============ WHY ME ============ */
.whyme__quote {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--rose);
  font-size: var(--fs-script);
  text-align: center;
  margin: -4px 0 20px;
}

.reasons {
  display: grid;
  gap: 14px;
}
.reason {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: 0 14px 34px -24px rgba(74,39,51,.32);
}
.reason__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  color: var(--rose-deep);
  margin-bottom: 14px;
}
.reason h3 { font-size: var(--fs-lg); margin-bottom: 8px; }
.reason p { font-size: var(--fs-base); }

/* ============ REVIEWS ============ */
.reviews-sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.reviews-sec__head .eyebrow,
.reviews-sec__head .section__title { margin-bottom: 0; }
.reviews-sec__head .section__title { margin-top: 4px; }

.reviews-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 22px 22px;
  box-shadow: 0 14px 34px -24px rgba(74,39,51,.32);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.review-card p { flex: 1; }
.review-card__quote {
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--blush);
  opacity: .7;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--blush-deep);
  margin-bottom: 12px;
}
.review-card__stars .icon.filled { color: var(--gold); }
.review-card p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--plum);
  font-size: var(--fs-base);
  margin-bottom: 16px;
  padding-right: 20px;
}
.review-card__who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  flex-shrink: 0;
}
.review-card__who span { font-size: var(--fs-sm); color: var(--rose-deep); font-weight: 600; }

/* ============ FAQ ============ */
.accordion__item {
  border-bottom: 1px solid var(--blush-deep);
}
.accordion__head {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--plum);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose);
  transition: transform .3s var(--ease), background .3s;
  flex-shrink: 0;
}
.accordion__item.open .accordion__icon {
  transform: rotate(135deg);
  background: var(--rose);
  color: var(--white);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.accordion__body p { padding-bottom: 18px; font-size: var(--fs-base); }

/* ============ FINAL CTA ============ */
.final-cta {
  text-align: center;
  padding: 48px 24px 56px;
  background: linear-gradient(180deg, transparent, var(--blush) 30%);
  border-radius: 40px 40px 0 0;
}
.final-cta h2 {
  font-size: var(--fs-title);
  margin-bottom: 10px;
}
.final-cta p {
  max-width: 340px;
  margin: 0 auto 22px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--plum);
  color: var(--blush);
  padding: 34px 24px 22px;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--white);
  margin-bottom: 14px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--fs-base);
  opacity: .8;
  margin-bottom: 18px;
}
.footer__contacts a {
  color: inherit;
  text-decoration: none;
}
.footer__contacts a:hover { text-decoration: underline; }
.footer__copy {
  font-size: var(--fs-xs);
  opacity: .5;
}

/* ============ IMG PLACEHOLDER ============ */
.img-placeholder {
  position: relative;
  background: repeating-linear-gradient(135deg, var(--blush), var(--blush) 10px, var(--blush-deep) 10px, var(--blush-deep) 11px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: center;
  overflow: hidden;
}
.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.img-placeholder--portrait {
  aspect-ratio: 3/4;
  border-radius: 50% 50% 46% 46% / 60% 60% 40% 40%;
}
.img-placeholder--card {
  aspect-ratio: 3/4;
  margin-bottom: 14px;
}

/* ============ SCROLL REVEAL — presentation style ============ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease-pop), transform .8s var(--ease-pop);
}

/* стартовые положения по типу анимации — должны идти РАНЬШЕ .in-view в каскаде */
.reveal[data-anim="pop"]   { transform: translateY(26px) scale(.8) rotate(-3deg); }
.reveal[data-anim="left"]  { transform: translateX(-46px) rotate(-2deg); }
.reveal[data-anim="right"] { transform: translateX(46px) rotate(2deg); }
.reveal[data-anim="zoom"]  { transform: scale(.75); }
.reveal[data-anim="rise"]  { transform: translateY(50px) scale(.95); }

/* финальное состояние — выше специфичность (.reveal.in-view[data-anim]),
   поэтому всегда побеждает над стартовыми data-anim правилами выше */
.reveal.in-view,
.reveal[data-anim].in-view {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

.cards .card.reveal { transition-delay: calc(var(--i, 0) * 110ms); }
.steps .step.reveal { transition-delay: calc(var(--i, 0) * 140ms); }
.gallery__scroll .reveal { transition-delay: calc(var(--i, 0) * 90ms); }
.reviews-grid .reveal { transition-delay: calc(var(--i, 0) * 110ms); }

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: var(--rose);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: var(--fs-md);
  box-shadow: 0 16px 32px -12px rgba(230,64,124,.55);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s var(--ease), visibility .3s;
}
.modal.open {
  visibility: visible;
  opacity: 1;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(74,39,51,.45);
  backdrop-filter: blur(2px);
}
.modal__sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--cream);
  border-radius: 28px 28px 0 0;
  padding: 26px 22px 30px;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .38s var(--ease);
}
.modal.open .modal__sheet { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--blush);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.modal__progress {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 22px;
}
.dot {
  width: 24px;
  height: 4px;
  border-radius: 100px;
  background: var(--blush-deep);
  transition: background .25s;
}
.dot.active { background: var(--rose); }

.modal__step h3 {
  font-size: var(--fs-lg);
  margin-bottom: 18px;
  text-align: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.chip {
  background: var(--white);
  border: 1.5px solid var(--blush-deep);
  color: var(--plum);
  padding: 12px 16px;
  border-radius: 100px;
  font-size: var(--fs-base);
  font-weight: 600;
  transition: all .2s;
}
.chip.selected {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}
.chip--ghost {
  border-style: dashed;
  color: var(--plum-soft);
}
.chip--ghost.selected {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  border-style: solid;
  color: var(--white);
}

.addon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--blush);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 22px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.addon[hidden] { display: none; }
.addon:has(input:checked),
.addon.is-checked {
  background: var(--white);
  border-color: var(--rose);
}
.addon input { position: absolute; opacity: 0; pointer-events: none; }
.addon__box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.5px solid var(--blush-deep);
  background: var(--white);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all .2s;
}
.addon input:checked ~ .addon__box {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}
.addon__info { display: flex; flex-direction: column; gap: 3px; }
.addon__info strong { font-size: var(--fs-base); color: var(--plum); }
.addon__info span { font-size: var(--fs-xs); color: var(--plum-soft); }

.date-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 22px;
  scrollbar-width: none;
}
.date-scroll::-webkit-scrollbar { display: none; }
.date-pill {
  flex: 0 0 auto;
  width: 58px;
  padding: 12px 0;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1.5px solid var(--blush-deep);
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--plum);
}
.date-pill span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--plum-soft);
  margin-top: 2px;
}
.date-pill.selected { background: var(--rose); border-color: var(--rose); color: var(--white); }
.date-pill.selected span { color: var(--white); opacity: .85; }
.date-pill:disabled { opacity: .35; pointer-events: none; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.time-slot {
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1.5px solid var(--blush-deep);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--plum);
  white-space: nowrap;
}
.time-slot.selected { background: var(--rose); border-color: var(--rose); color: var(--white); }
.time-slot:disabled { opacity: .3; text-decoration: line-through; pointer-events: none; }

#booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--plum-soft);
}
#booking-form input,
#review-form input,
#review-form textarea {
  border: 1.5px solid var(--blush-deep);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: var(--fs-md);
  background: var(--white);
  color: var(--plum);
  font-family: inherit;
  resize: vertical;
}
#booking-form input:focus,
#review-form input:focus,
#review-form textarea:focus {
  outline: none;
  border-color: var(--rose);
}

#review-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#review-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--plum-soft);
}

.star-picker {
  display: flex;
  gap: 6px;
}
.star-picker__btn {
  background: none;
  border: none;
  padding: 2px;
  color: var(--blush-deep);
  transition: color .15s, transform .15s;
}
.star-picker__btn:active { transform: scale(.9); }
.star-picker__btn.active { color: var(--gold); }

.modal__summary {
  background: var(--blush);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: var(--fs-sm);
  color: var(--plum);
  line-height: 1.7;
}
.modal__summary strong { color: var(--rose-deep); }

.modal__step--success {
  text-align: center;
  padding: 20px 0 6px;
}
.success-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.modal__step--success h3 { margin-bottom: 10px; }
.modal__step--success p { margin-bottom: 24px; }

/* ============ FOCUS ============ */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .petal, .petal-wrap, .scroll-cue__line { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============ DESKTOP (secondary pass) ============ */
@media (min-width: 860px) {
  .section { padding: 64px 40px; }

  .hero { padding-top: 190px; }
  .hero__frame { max-width: 380px; }

  .cards { grid-template-columns: repeat(2, 1fr); }
  .problem__list { grid-template-columns: repeat(2, 1fr); }
  .reasons { grid-template-columns: repeat(3, 1fr); }

  .promo { display: flex; align-items: center; gap: 26px; }
  .promo__icon { margin-bottom: 0; }
  .promo__text { flex: 1; }
  .promo .btn--full { width: auto; margin-top: 0; flex-shrink: 0; }

  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .sticky-cta { max-width: 300px; left: auto; right: 40px; }

  .modal__sheet {
    left: 50%;
    right: auto;
    bottom: 50%;
    transform: translate(-50%, 50%) scale(.92);
    width: 420px;
    border-radius: 28px;
    max-height: 82vh;
  }
  .modal.open .modal__sheet { transform: translate(-50%, 50%) scale(1); }
}
