@font-face{font-family:Manrope;font-style:normal;font-weight:400 700;font-display:swap;src:url("../fonts/manrope-cyrillic-ext.woff2") format("woff2");unicode-range:U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}
@font-face{font-family:Manrope;font-style:normal;font-weight:400 700;font-display:swap;src:url("../fonts/manrope-cyrillic.woff2") format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:Manrope;font-style:normal;font-weight:400 700;font-display:swap;src:url("../fonts/manrope-latin-ext.woff2") format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:Manrope;font-style:normal;font-weight:400 700;font-display:swap;src:url("../fonts/manrope-latin.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

:root {
  --bg: #f6f3ee;
  --paper: #fffcf8;
  --ink: #161311;
  --muted: #5e5852;
  --line: #e4ddd4;
  --red: #a02423;
  --red-dark: #861c1b;
  --dark: #100e0c;
  --soft: #f3ece4;
  --note: #f8efe8;
  --header: 76px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: 0.01em;
}
.btn:hover { background: var(--red-dark); }
.btn--line, .btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px #c8bfb6;
}
.btn--ghost { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45); }
.btn--line:hover, .btn--ghost:hover { background: transparent; color: var(--red); box-shadow: inset 0 0 0 1.5px var(--red); }
.btn--ghost:hover { color: #fff; box-shadow: inset 0 0 0 1.5px #fff; }

.kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3e4e1;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kicker--light { background: rgba(255,255,255,.12); color: #f0d2cf; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,252,248,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header__bar {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
@media (min-width: 981px) {
  .header__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  .header__bar .logo { margin-right: 0; justify-self: start; }
  .btn--header { justify-self: end; }
}
.logo__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.logo b, .logo small { display: block; }
.logo b { font-size: 15px; line-height: 1.15; }
.logo small { color: var(--muted); font-size: 12px; }
.site-nav { display: flex; gap: 22px; }
.site-nav a { text-decoration: none; color: #3c3834; font-size: 15px; }
.site-nav a:hover { color: var(--red); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  background: var(--dark);
  color: #f7f4ef;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0 0 0 34%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #100e0c 0%, rgba(16,14,12,.88) 16%, rgba(16,14,12,.35) 48%, rgba(16,14,12,.05) 100%);
}
.hero__copy {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
}
.hero h1,
.hero__lead,
.hero__text,
.hero__when,
.hero__actions {
  max-width: 620px;
}
.badge {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(240,210,160,.45);
  color: #f0d2a0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 750;
  text-transform: uppercase;
}
.hero__lead { margin-top: 18px; font-size: 22px; font-weight: 650; }
.hero__text { margin-top: 14px; max-width: 540px; color: #d9d3cc; }
.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
  list-style: none;
  max-width: 560px;
}
.hero__facts b, .hero__facts span { display: block; }
.hero__facts b { font-size: 16px; }
.hero__facts span { color: #b7b0a8; font-size: 13px; }
.hero__when { margin-top: 22px; font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.band { padding: 28px 0 36px; }
.section { padding: 64px 0; }
.cards { display: grid; gap: 14px; }
.cards--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px 20px;
}
.cards--center .card, .cards--study .card { text-align: center; }
.cards--center .card img { margin-inline: auto; }
.card img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 12px; }
.card h2, .card h3 { font-size: 16px; line-height: 1.3; margin-bottom: 8px; }
.card p, .system__text p, .idea p, .stage li, .price li, .kit__note p, .price-note p, .school p, .faq p, .muted {
  color: var(--muted);
}
.card p { font-size: 14px; }

.system {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}
.system h2, .idea h2, .faq h2, .school h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.system__text p + p { margin-top: 12px; }
.path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  position: relative;
  margin-top: 8px;
}
.path::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 7px;
  height: 2px;
  background: var(--red);
}
.path li {
  position: relative;
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.path li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--bg);
}

.idea__grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 48px;
  align-items: center;
}
.idea img { width: 100%; height: 340px; object-fit: cover; border-radius: 18px; }
.idea p { margin-top: 14px; }
.idea blockquote {
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--red);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 650;
}

.program, .prices, .kit {
  display: grid;
  gap: 14px;
}
.program { grid-template-columns: 1.15fr 0.7fr 1.15fr 0.85fr; }
.stage, .pause, .when, .price, .price-note, .kit__note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
}
.pause, .when, .price-note, .kit__note { background: var(--soft); }
.stage h2, .pause h2, .when h2, .price h2, .kit__note h2, .price-note h2 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.stage__n { color: var(--red); font-size: 13px; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; }
.stage__count, .when p, .pause p { color: var(--muted); margin-top: 6px; }
.stage ul, .price ul { margin-top: 16px; display: grid; gap: 8px; list-style: none; }
.stage li, .price li { position: relative; padding-left: 16px; font-size: 14px; }
.stage li::before, .price li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.when__time { margin-top: 16px; color: var(--ink); font-size: 28px; font-weight: 750; letter-spacing: -0.03em; }

.prices { grid-template-columns: 1.05fr 1fr 1fr 0.9fr; align-items: stretch; }
.price { display: flex; flex-direction: column; position: relative; }
.price--pick { box-shadow: inset 0 0 0 2px var(--red); }
.price__badge {
  position: absolute;
  top: -12px;
  right: 16px;
  margin: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price__sum { margin-top: 12px; font-size: 36px; font-weight: 750; letter-spacing: -0.04em; line-height: 1; }
.price__sum small { font-size: 16px; font-weight: 650; letter-spacing: 0; }
.price ul { margin-bottom: 20px; }
.price .btn { margin-top: auto; width: 100%; }
.price-note h2, .kit__note h2 { font-size: 22px; }
.kit__note h2,
.price-note h2 { margin-bottom: 16px; }

.kit { grid-template-columns: repeat(3, 1fr) 0.9fr; }
.kit figure { margin: 0; }
.kit img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; background: #efe8df; }
.kit figcaption { padding: 12px 2px 0; }
.kit figcaption b, .kit figcaption span { display: block; }
.kit figcaption span { color: var(--muted); font-size: 14px; }
.kit__note { display: flex; flex-direction: column; justify-content: center; }

.school {
  position: relative;
  min-height: 460px;
  background: var(--dark);
  color: #f7f4ef;
  overflow: hidden;
}
.school__media { position: absolute; inset: 0 0 0 42%; }
.school__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.school__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #100e0c 0%, rgba(16,14,12,.75) 28%, rgba(16,14,12,.15) 70%);
}
.school__copy { position: relative; z-index: 1; padding: 72px 0; }
.school h2,
.school__copy p { max-width: 560px; }
.school__copy p { color: #f4efe8; }
.school h2 { margin-bottom: 14px; }
.school__address { margin-top: 18px; color: #fff; font-weight: 700; }
.school .btn { margin-top: 18px; }

.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list summary {
  padding: 16px 28px 16px 0;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  position: relative;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}
.faq__list details[open] summary::after { content: "–"; }
.faq__list details p { margin: 0 0 16px; }

.site-footer { padding: 28px 0 22px; border-top: 1px solid var(--line); }
.footer__bar {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer__bar nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__bar nav a { font-size: 15px; }
.footer__bar a { text-decoration: none; }
.footer__phone { margin-left: auto; font-weight: 750; white-space: nowrap; }
.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.cookie-bar {
  position: fixed;
  z-index: 30;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: min(720px, calc(100% - 32px));
  margin-inline: auto;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(16,14,12,.12);
}
.cookie-bar p { color: var(--muted); font-size: 14px; }
.cookie-bar[hidden] { display: none; }

.dialog {
  width: min(520px, calc(100% - 24px));
  padding: 28px 24px 24px;
  border: 0;
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
}
.dialog::backdrop { background: rgba(16,14,12,.55); }
.dialog h2 { font-size: 28px; letter-spacing: -0.03em; margin: 8px 0; }
.dialog__phone, .muted { margin-bottom: 16px; }
.dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
}
.dialog form { display: grid; gap: 12px; }
.dialog label span { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 650; }
.dialog input:not([type="checkbox"]), .dialog select, .dialog textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d9d1c8;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
}
.dialog textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; }
.consent input { width: 18px; height: 18px; min-height: 0; margin: 2px 0 0; padding: 0; flex: none; align-self: flex-start; }
.consent span { font-weight: 450; color: var(--muted); }
.honeypot { position: absolute; left: -9999px; }
.form-error { color: var(--red); font-weight: 650; }
.form-error[hidden] { display: none; }
.success-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f3ea;
  color: #1d7a3a;
  font-size: 22px;
}
body.dialog-open { overflow: hidden; }

.clips { padding: 0 0 56px; }
.clips__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.clips video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #1c1917;
  object-fit: cover;
}

.legal { width: min(760px, calc(100% - 40px)); margin: 40px auto 64px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); letter-spacing: -0.03em; line-height: 1.1; margin: 12px 0 16px; }
.legal h2 { margin: 28px 0 8px; font-size: 22px; }
.legal p, .legal li { color: #3f3a36; }
.legal p + p, .legal ul { margin-top: 10px; }
.legal ul { padding-left: 1.25em; }
.legal a { color: var(--red); }
.legal-meta { color: var(--muted); font-size: 14px; }

@media (max-width: 980px) {
  .cards--5, .program, .prices, .kit, .system, .idea__grid, .faq__grid, .clips__grid { grid-template-columns: 1fr 1fr; }
  .program, .prices, .kit { grid-template-columns: 1fr 1fr; }
  .hero__facts { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-wrap: wrap; }
  .footer__phone { margin-left: 0; }
  .site-nav { display: none; }
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    order: 3;
  }
  .nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    position: relative;
  }
  .nav-toggle__bars::before, .nav-toggle__bars::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .nav-toggle__bars::before { top: -6px; }
  .nav-toggle__bars::after { top: 6px; }
  .site-nav.is-open {
    display: grid;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    padding: 12px 20px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    gap: 12px;
  }
  .btn--header { order: 2; padding-inline: 14px; }
  .hero { min-height: 0; }
  .hero__media { position: relative; inset: auto; height: 320px; }
  .hero__media::after { background: linear-gradient(180deg, rgba(16,14,12,.1), #100e0c); }
  .hero__copy { padding-top: 28px; }
}

@media (max-width: 680px) {
  .wrap { width: min(1160px, calc(100% - 28px)); }
  .cards--5, .program, .prices, .kit, .system, .idea__grid, .faq__grid, .path { grid-template-columns: 1fr; }
  .path::before { display: none; }
  .path li { text-align: left; padding: 0 0 0 28px; }
  .path li::before { left: 0; top: 2px; margin: 0; }
  .idea img { height: 280px; }
  .school__media { position: relative; inset: auto; height: 240px; }
  .school__media::after { background: linear-gradient(180deg, transparent, #100e0c); }
  .school__copy { padding-top: 24px; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .footer__legal { flex-direction: column; }
  .hero h1 { font-size: 36px; }
}
