/* Кира — landing. Стиль по кейсу «Design Taplink» (Forum + Montserrat + Marck Script,
   палитра #623937 / #FFA3A4 / #FFC8C5 / #E2DEDD). Шрифты локальные, без внешних запросов. */
@import url("/static/fonts/fonts.css");

:root {
  --bg: #F4F2F1;
  --surface: #FFFFFF;
  --tint: #E8E5E4;
  --tint-2: #E2DEDD;
  --blush: #FDF0F0;
  --ink: #4A2825;
  --ink-soft: #54332F;
  --muted: #6B5350;
  --line: #E2DEDD;
  --accent: #FFA3A4;
  --accent-2: #FFC8C5;
  --accent-deep: #C25E60;
  --on-accent: #3F2220;
  --shadow: 0 22px 48px -30px rgba(98, 57, 55, .45);
  --shadow-soft: 0 14px 34px -22px rgba(98, 57, 55, .35);
  --shadow-pink: 0 14px 26px -12px rgba(255, 140, 142, .62);
  --serif: "Playfair Display", "Forum", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --script: "Marck Script", "Snell Roundhand", cursive;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.005em;
  overflow-wrap: break-word;
}
h3 { font-weight: 600; }
h2, h3 { text-wrap: balance; }
em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--accent-deep);
  letter-spacing: -.015em;
  word-spacing: -.08em;
}
a { color: var(--ink); }

.skip-link {
  position: absolute; left: 0; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
  transform: translateY(-120%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: 3px; border-radius: 6px; }

/* ---------- buttons: «пухлая» розовая пилюля из кейса ---------- */
.btn {
  --pad-y: 16px; --pad-x: 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: .01em;
  text-decoration: none; text-align: center;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .14s ease, box-shadow .2s ease, background .2s ease;
  min-height: 52px; line-height: 1.25;
}
.btn--primary {
  background: linear-gradient(180deg, #FFB0B1 0%, var(--accent) 55%, #F58F91 100%);
  color: var(--on-accent);
  border-color: #E07E80;
  box-shadow: var(--shadow-pink), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(255, 140, 142, .7), inset 0 1px 0 rgba(255,255,255,.55); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { background: var(--tint); }
.btn--lg { --pad-y: 19px; --pad-x: 34px; font-size: 16.5px; min-height: 58px; }
.btn--sm { --pad-y: 10px; --pad-x: 18px; min-height: 42px; font-size: 13.5px; }
.btn--block { width: 100%; }
@media (max-width: 520px) {
  .btn--block-sm { width: 100%; }
  .btn { --pad-x: 22px; }
  .btn--lg { --pad-x: 24px; font-size: 16px; }
}

/* ---------- header ---------- */
.site-head {
  position: -webkit-sticky; position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 5vw, 36px);
  background: rgba(244, 242, 241, .88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand__ava { border-radius: 50%; width: 36px; height: 36px; box-shadow: 0 4px 12px -6px rgba(98,57,55,.5); }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 480px) { .brand__name { font-size: 19px; } .site-head { padding: 10px 14px; } }

/* ---------- layout ---------- */
section { padding-left: clamp(18px, 5vw, 40px); padding-right: clamp(18px, 5vw, 40px); }
.band { max-width: var(--maxw); margin: 0 auto; padding-top: clamp(58px, 10vw, 104px); padding-bottom: clamp(58px, 10vw, 104px); }
.band--tint { max-width: none; background: var(--tint); }
.band--tint > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.prose { max-width: 640px; margin: 0 auto; }

/* ---------- hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: clamp(22px, 4vw, 70px); padding-bottom: clamp(38px, 8vw, 92px);
  display: grid; gap: clamp(22px, 4vw, 48px);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 500;
  color: var(--muted); margin: 0 0 18px;
}
.hero__title {
  font-size: clamp(34px, 9.2vw, 58px); margin: 0 0 18px;
  text-wrap: balance; hyphens: none; letter-spacing: -.01em; line-height: 1.08;
}
/* рукописный акцент — небольшая строка НАД заголовком, как «для шеф-кондитера» в кейсе */
.hero__title em {
  display: block; font-size: .46em; line-height: 1.1; margin: 0 0 .12em;
  color: var(--accent-deep);
}
.hero__title span { display: block; color: var(--ink); }
.lede {
  font-size: clamp(15.5px, 2.2vw, 18px); color: var(--muted);
  margin: 0 0 28px; max-width: 32em; text-wrap: pretty;
}
.cta-note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; letter-spacing: .04em; }
.hero__photo { margin: 0; }
.hero__photo img {
  width: 100%; height: clamp(210px, 30vh, 340px);
  border-radius: 26px; box-shadow: var(--shadow);
  object-fit: cover; object-position: 50% 18%;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1fr 450px; align-items: center; }
  .hero__text { order: 1; }
  .hero__photo { order: 2; }
  .hero__photo img { height: auto; aspect-ratio: 4 / 5; object-position: 50% 22%; }
}

/* ---------- bands ---------- */
.band h2 { font-size: clamp(25px, 6vw, 40px); margin: 0 0 20px; text-transform: none; letter-spacing: -.005em; }
.prose p { font-size: clamp(16px, 2.1vw, 18px); }
blockquote {
  margin: 28px 0 0; padding: 24px 28px; border-left: 2px solid var(--accent);
  background: var(--blush); border-radius: 0 18px 18px 0;
  font-family: var(--serif); font-size: clamp(19px, 2.6vw, 24px); color: var(--ink);
}

/* ---------- icons ---------- */
.ico {
  width: 22px; height: 22px; stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.ico-round {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--accent-2), #FFE2E1);
  color: var(--ink); box-shadow: 0 8px 18px -12px rgba(255, 140, 142, .9);
}

/* ---------- cards ---------- */
.cards { list-style: none; padding: 0; margin: 38px auto 0; display: grid; gap: 20px; max-width: 940px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 28px 24px; box-shadow: var(--shadow-soft); }
.card__mark { font-size: 30px; display: block; margin-bottom: 10px; }
.card h3 { font-size: 21px; margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }
@media (min-width: 760px) { .cards { grid-template-columns: repeat(3, 1fr); } }

/* ---------- steps ---------- */
.split { display: grid; gap: clamp(30px, 5vw, 52px); align-items: center; }
.steps { list-style: none; counter-reset: s; padding: 0; margin: 10px 0 0; }
.steps li { position: relative; padding-left: 60px; margin-bottom: 30px; }
.steps li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: -2px;
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(160deg, var(--accent-2), #FFE4E3); color: var(--ink);
  font-family: var(--serif); font-weight: 700; font-size: 19px;
  display: grid; place-items: center;
  box-shadow: 0 8px 16px -12px rgba(255, 140, 142, .9);
}
.steps h3 { font-size: 20px; margin: 4px 0 6px; }
.steps p { margin: 0; color: var(--muted); font-size: 16px; }
.split__photo img { width: 100%; border-radius: 24px; box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 420px; }
  .split__photo { order: 2; }
}

/* ---------- mid cta ---------- */
.cta-strip {
  max-width: var(--maxw); margin: 10px auto;
  display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center;
  padding: clamp(34px, 6vw, 56px); background: var(--blush);
  border-radius: 28px;
}
.cta-strip p { margin: 0; font-family: var(--serif); font-size: clamp(21px, 3.2vw, 28px); color: var(--ink); line-height: 1.3; }

/* ---------- inside ---------- */
.inside { display: grid; gap: 34px; max-width: 940px; margin: 34px auto 0; }
.inside__list { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 18px; }
.inside__list li { padding-left: 34px; position: relative; color: var(--ink-soft); font-size: 16px; }
.inside__list li strong { color: var(--ink); font-weight: 500; }
.inside__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 14px; height: 2px; border-radius: 2px; background: var(--accent);
}
.inside__blocks-title { font-weight: 500; margin: 0 0 14px; color: var(--ink); letter-spacing: .04em; text-transform: uppercase; font-size: 12.5px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.chips li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-size: 13.5px; color: var(--ink); letter-spacing: .02em;
}
@media (min-width: 780px) { .inside { grid-template-columns: 1.1fr .9fr; align-items: start; } }

/* ---------- price ---------- */
.price {
  max-width: 640px; margin: 44px auto 0; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(30px, 5vw, 46px); box-shadow: var(--shadow-soft);
}
.price__main { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.price__label { text-transform: uppercase; letter-spacing: .2em; font-size: 11px; color: var(--muted); font-weight: 500; }
.price__value { font-family: var(--serif); font-weight: 700; font-size: clamp(48px, 10vw, 68px); color: var(--ink); line-height: 1.05; }
.price__note { color: var(--muted); font-size: 14px; }
.price__soon { color: var(--muted); font-size: 15px; margin: 0 auto 24px; max-width: 42ch; }
.price__footnote { color: var(--muted); font-size: 13px; margin: 20px 0 0; }

/* ---------- about ---------- */
.about { text-align: center; max-width: 700px; }
.about__ava { width: 82px; height: 82px; border-radius: 50%; margin: 0 auto 22px; box-shadow: var(--shadow); }
.about__quote {
  border: 0; background: none; padding: 0; margin: 0 auto;
  font-family: var(--serif); font-size: clamp(21px, 3.4vw, 30px); line-height: 1.35; color: var(--ink);
}
.about__sign { color: var(--muted); margin: 18px 0 0; font-size: 15px; font-family: var(--script); font-size: 22px; }

/* ---------- disclaimer ---------- */
.disclaimer { max-width: 700px; margin: 0 auto; padding-bottom: 24px; }
.disclaimer p {
  color: var(--muted); font-size: 14.5px; text-align: center; margin: 0;
  padding: 22px 26px; background: var(--tint); border-radius: 20px;
}

/* ---------- pains ---------- */
.pains { list-style: none; padding: 0; margin: 34px auto 0; max-width: 720px; display: grid; gap: 18px; }
.pain {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
  padding: 24px 22px; box-shadow: var(--shadow-soft);
}
.pain__text h3 { font-size: 18px; margin: 6px 0 6px; font-family: var(--serif); font-weight: 600; }
.pain__text p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.55; }

/* ---------- subtitle ---------- */
.subtitle { text-align: center; color: var(--muted); font-size: 16.5px; max-width: 520px; margin: 0 auto 34px; }

/* ---------- final ---------- */
.final {
  text-align: center; background: var(--ink); color: var(--bg);
  padding-top: clamp(62px, 10vw, 104px); padding-bottom: clamp(62px, 10vw, 104px);
  margin-top: clamp(44px, 7vw, 72px);
}
.final h2 { font-size: clamp(28px, 7vw, 46px); margin: 0 0 16px; color: #FDF8F7; letter-spacing: -.005em; }
.final p { color: #E4CFCD; margin: 0 0 32px; font-size: 16.5px; }

/* ---------- footer ---------- */
.site-foot {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center;
  max-width: var(--maxw); margin: 0 auto;
  padding: 28px clamp(18px, 5vw, 40px); color: var(--muted); font-size: 13.5px; letter-spacing: .03em;
}
.site-foot a { color: var(--ink); text-decoration: none; font-weight: 500; }

/* ---------- sticky dock ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(244, 242, 241, .93);
  backdrop-filter: saturate(150%) blur(12px);
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) { .dock { display: none !important; } }
/* высота дока + safe-area, чтобы он не накрывал последний экран */
@media (max-width: 899px) { body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); } }

/* ---------- примеры вопросов ---------- */
.qcards { list-style: none; counter-reset: q; padding: 0; margin: 30px auto 0; max-width: 720px; display: grid; gap: 16px; }
.qcard {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  padding: 24px 22px; box-shadow: var(--shadow-soft);
}
.qcard__num {
  font-family: var(--serif); font-weight: 700; font-size: 22px;
  color: var(--accent-deep); line-height: 1.1; flex-shrink: 0; min-width: 34px;
}
.qcard p { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 19px; line-height: 1.35; color: var(--ink); }
.qcards__note { text-align: center; color: var(--muted); font-size: 15.5px; margin: 22px 0 0; }

/* ---------- возражения ---------- */
.faq { list-style: none; padding: 0; margin: 30px auto 0; max-width: 720px; display: grid; gap: 18px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 24px 22px; box-shadow: var(--shadow-soft); }
.faq__item h3 { font-size: 18.5px; margin: 0 0 8px; }
.faq__item p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.55; }

/* ---------- лист ожидания ---------- */
.price__wait {
  background: var(--blush); border-radius: 18px; padding: 18px 20px; margin: 0 0 22px;
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; text-align: left;
}
.price__wait strong { color: var(--ink); font-weight: 600; }

/* ---------- реквизиты в подвале ---------- */
.site-foot { flex-direction: column; align-items: stretch; gap: 12px; }
.site-foot__row { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center; }
.site-foot__legal { margin: 0; font-size: 11.5px; color: #9C8886; letter-spacing: .02em; line-height: 1.5; }
