:root {
  --font-sans: Arial, Helvetica, sans-serif;
  --forest: #063f37;
  --forest-deep: #022f2a;
  --orange: #ef6a18;
  --sun: #f8c844;
  --cream: #fff7df;
  --paper: #fffbef;
  --ink: #113c35;
  --muted: #60756e;
  --line: rgba(6, 63, 55, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
}
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
main { overflow: hidden; }

.site-header {
  width: min(1240px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}
.header-cta {
  border-bottom: 2px solid var(--orange); padding: 8px 0 5px;
  font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .82fr;
  align-items: center;
  gap: 84px;
  padding: 42px 0 92px;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; left: -28%; top: -30%; width: 620px; height: 620px;
  border: 1px solid rgba(239,106,24,.12); border-radius: 50%; pointer-events: none;
}
.eyebrow {
  margin: 0 0 22px; display: flex; align-items: center; gap: 10px;
  color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow > span { width: 30px; height: 2px; background: currentColor; }
.hero h1 {
  max-width: 680px; margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 7vw, 102px); line-height: .91; letter-spacing: -.055em; font-weight: 500;
}
.hero h1 em, h2 em { color: var(--forest); font-weight: 500; }
.hero h1 em { display: inline-block; color: var(--forest); position: relative; }
.hero h1 em::after {
  content: ""; position: absolute; left: 2%; right: -2%; height: 9px; bottom: -10px;
  background: var(--orange); border-radius: 100% 0 100% 0; transform: rotate(-1.5deg) skewX(-16deg);
}
.hero-lead {
  max-width: 570px; margin: 42px 0 30px; color: #48635d;
  font-size: 19px; line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button {
  border: 0; border-radius: 999px; min-height: 58px; padding: 0 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 24px;
  font-size: 14px; font-weight: 800; letter-spacing: .035em; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: white; box-shadow: 0 14px 30px rgba(198,76,7,.18); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(198,76,7,.26); }
.text-link { font-size: 14px; font-weight: 800; }
.text-link span { color: var(--orange); margin-left: 6px; }
.hero-photo {
  width: min(100%, 520px); aspect-ratio: .795; justify-self: end; position: relative; overflow: hidden;
  border-radius: 240px 240px 34px 34px; background: #fff2d6;
  box-shadow: 0 35px 90px rgba(28,72,60,.19);
}
.hero-photo::before {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.56); border-radius: inherit; z-index: 7; pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.photo-card { position: absolute; z-index: 8; display: flex; align-items: center; background: var(--paper); color: var(--forest); box-shadow: 0 14px 34px rgba(7,58,50,.18); }
.photo-card-top { left: 16px; top: 24%; width: 112px; height: 112px; border-radius: 50%; flex-direction: column; justify-content: center; transform: rotate(-7deg); }
.photo-card-top strong { font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.photo-card-top span { margin-top: 3px; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.photo-card-bottom { right: 14px; bottom: 13%; gap: 8px; border-radius: 999px; padding: 14px 16px; font-size: 10px; letter-spacing: .04em; }
.photo-card-bottom strong { font-size: 11px; text-transform: uppercase; }
.photo-card-bottom span:last-child { color: var(--muted); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(239,106,24,.13); }

.facts {
  background: var(--forest); color: white; min-height: 150px; padding: 30px max(24px, calc((100vw - 1240px) / 2));
  display: grid; grid-template-columns: repeat(3, 1fr); align-items: center;
}
.facts div { min-height: 74px; display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid rgba(255,255,255,.16); }
.facts div:last-child { border: 0; }
.facts strong { color: var(--sun); font-family: Georgia, serif; font-size: 46px; font-weight: 500; letter-spacing: -.04em; }
.facts span { max-width: 90px; font-size: 11px; line-height: 1.35; letter-spacing: .09em; text-transform: uppercase; }

.schedule-section {
  width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 96px 0 34px;
  display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 80px;
}
.schedule-copy h2 {
  margin: 0; font-family: Georgia, serif; font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1; font-weight: 500; letter-spacing: -.045em;
}
.schedule-copy > p:last-child { max-width: 490px; margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.schedule-times { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.schedule-times time {
  min-height: 92px; display: grid; place-items: center; border-right: 1px solid var(--line);
  color: var(--forest); font-family: Georgia, serif; font-size: 32px; font-weight: 500; letter-spacing: -.025em;
}
.schedule-times time:nth-child(3n) { border-right: 0; }
.schedule-times time:nth-child(-n + 6) { border-bottom: 1px solid var(--line); }

.section { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 130px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 58px; }
.section-heading .eyebrow { align-self: flex-start; padding-top: 15px; }
.section h2, .registration-section h2 {
  margin: 0; font-family: Georgia, serif; font-size: clamp(44px, 5vw, 70px); line-height: 1.02; font-weight: 500; letter-spacing: -.045em;
}
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-card { min-height: 0; padding: 30px 34px; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 22px; border-right: 1px solid var(--line); }
.benefit-card:last-child { border-right: 0; }
.card-number {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: var(--sun); color: var(--forest); font-size: 10px; font-weight: 850; letter-spacing: .08em;
}
.benefit-card h3 { margin: 3px 0 10px; font-family: Georgia, serif; font-size: 25px; line-height: 1.08; font-weight: 500; }
.benefit-card p { margin: 0; max-width: 320px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.how {
  width: 100%; padding: 0; display: grid; grid-template-columns: .95fr 1.05fr; background: var(--forest-deep); color: white;
}
.how-visual { min-height: 720px; position: relative; background: #f7e8ca; overflow: hidden; display: grid; place-items: center; }
.how-visual img { width: 100%; height: 100%; min-height: 720px; display: block; object-fit: cover; object-position: center; }
.how-visual > p { position: absolute; left: 8%; bottom: 7%; margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: 84px; line-height: .68; text-shadow: 0 2px 20px rgba(255,248,226,.9); }
.how-visual > p small { font-family: var(--font-sans); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.how-copy { padding: 110px max(48px, calc((100vw - 1240px) / 2)) 100px 9%; }
.eyebrow.light { color: var(--sun); }
.how-copy h2 { max-width: 560px; }
.steps { margin: 58px 0 0; padding: 0; list-style: none; max-width: 580px; }
.steps li { padding: 22px 0; display: flex; gap: 20px; border-top: 1px solid rgba(255,255,255,.16); }
.steps b { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; color: var(--sun); font-family: Georgia, serif; font-weight: 500; }
.steps li div { display: flex; flex-direction: column; gap: 7px; }
.steps strong { font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.steps span { color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.55; }

.inspiration { text-align: center; max-width: 980px; position: relative; }
.quote-mark { color: var(--orange); font-family: Georgia, serif; font-size: 92px; line-height: .6; }
.inspiration blockquote { margin: 22px auto; font-family: Georgia, serif; font-size: clamp(32px, 4vw, 55px); line-height: 1.2; letter-spacing: -.035em; }
.inspiration p { max-width: 590px; margin: 28px auto 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.brush-stroke { width: 155px; height: 8px; margin: 38px auto 0; border-radius: 100% 0; background: var(--orange); transform: rotate(-2deg) skewX(-25deg); }

.registration-section { background: var(--forest); color: white; padding: 110px max(24px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.registration-intro { padding-top: 28px; position: sticky; top: 30px; }
.registration-intro h2 { font-size: clamp(58px, 6vw, 86px); }
.registration-intro h2 em { color: var(--sun); }
.registration-intro > p:not(.eyebrow) { max-width: 420px; margin: 28px 0 42px; color: rgba(255,255,255,.68); line-height: 1.7; font-size: 15px; }
.registration-promise { padding-top: 25px; border-top: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; gap: 12px; font-size: 13px; }
.registration-promise strong { margin-bottom: 4px; font-family: Georgia, serif; font-size: 19px; font-weight: 500; }
.registration-promise span { color: rgba(255,255,255,.72); }
.registration-promise span::first-letter { color: var(--sun); }
.form-shell { min-height: 700px; background: var(--paper); color: var(--ink); border-radius: 32px; padding: 42px; box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.form-shell form { display: flex; flex-direction: column; gap: 22px; }
.form-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.form-heading span { font-family: Georgia, serif; font-size: 28px; }
.form-heading small { color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form label { display: flex; flex-direction: column; gap: 8px; }
form label > span { font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
input[type="text"], select {
  width: 100%; min-height: 54px; border: 1px solid var(--line); border-radius: 12px; background: white;
  padding: 0 15px; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s;
}
input[type="text"]:focus, select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(239,106,24,.11); }
input::placeholder { color: #9aa9a5; }
.conditional-field { padding: 16px; border-radius: 14px; background: #f9f2df; border: 1px solid rgba(239,106,24,.2); }
.checkbox-label { min-height: 68px; flex-direction: row; align-items: center; gap: 13px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #f9f2df; cursor: pointer; }
.checkbox-label input, .consent-label input { width: 18px; height: 18px; accent-color: var(--orange); flex: 0 0 auto; }
.checkbox-label span { display: flex; flex-direction: column; gap: 3px; letter-spacing: 0; text-transform: none; }
.checkbox-label small { color: var(--muted); font-weight: 500; }
.consent-label { flex-direction: row; align-items: flex-start; gap: 10px; color: var(--muted); cursor: pointer; }
.consent-label span { font-size: 11px; line-height: 1.5; letter-spacing: 0; text-transform: none; font-weight: 500; }
.submit-button { width: 100%; min-height: 62px; justify-content: space-between; background: var(--orange); color: white; padding: 0 24px; box-shadow: 0 13px 25px rgba(198,76,7,.16); }
.submit-button span { font-size: 22px; }
.submit-button:disabled { opacity: .65; cursor: wait; transform: none; }
.form-footnote { margin: -9px 0 0; text-align: center; color: var(--muted); font-size: 10px; }
.form-error { margin: 0; padding: 12px 14px; border-radius: 10px; background: #fde6dd; color: #a63a18; font-size: 12px; line-height: 1.5; }
.success-card { min-height: 610px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 30px; }
.success-icon { width: 94px; height: 94px; margin-bottom: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--sun); color: var(--forest); font-size: 42px; box-shadow: 0 0 0 16px rgba(248,200,68,.2); }
.success-card h3 { margin: 4px 0 15px; font-family: Georgia, serif; font-size: 42px; font-weight: 500; }
.success-card > p:not(.eyebrow) { max-width: 450px; color: var(--muted); line-height: 1.6; }
.text-button { margin-top: 28px; padding: 7px 0; border: 0; border-bottom: 1px solid var(--orange); background: transparent; color: var(--ink); font-size: 12px; font-weight: 800; cursor: pointer; }

footer { min-height: 160px; padding: 40px max(24px, calc((100vw - 1240px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--forest-deep); color: white; }
.footer-title { display: flex; flex-direction: column; gap: 5px; }
.footer-title strong { font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.footer-title small { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
footer p { color: rgba(255,255,255,.54); font-size: 12px; }
footer > a { color: var(--sun); font-size: 12px; font-weight: 800; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr 400px; gap: 40px; min-height: auto; }
  .hero h1 { font-size: 64px; }
  .hero-photo { width: 400px; }
  .schedule-section { grid-template-columns: 1fr; align-items: start; gap: 42px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-card:last-child { border-bottom: 0; }
  .how { grid-template-columns: .8fr 1.2fr; }
  .registration-section { grid-template-columns: 1fr; gap: 50px; }
  .registration-intro { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 50px; }
  .registration-intro .eyebrow { grid-column: 1 / -1; }
  .registration-intro > p:not(.eyebrow) { margin-top: 10px; }
}

@media (max-width: 760px) {
  .site-header, .hero, .section { width: min(100% - 34px, 620px); }
  .site-header { min-height: 76px; }
  .header-cta { font-size: 11px; }
  .hero { grid-template-columns: 1fr; gap: 64px; padding: 48px 0 80px; }
  .hero h1 { font-size: clamp(55px, 16vw, 78px); }
  .hero-lead { font-size: 17px; }
  .hero-photo { width: min(94%, 450px); justify-self: center; }
  .photo-card-top {
    left: 10px;
    top: 16%;
    width: 92px;
    height: 92px;
  }
  .photo-card-top strong { font-size: 18px; }
  .photo-card-top span { font-size: 8px; }
  .photo-card-bottom {
    right: 10px;
    bottom: 10%;
    padding: 12px 14px;
    gap: 6px;
  }
  .facts { grid-template-columns: repeat(3, 1fr); padding: 22px 10px; }
  .facts div { min-height: 90px; gap: 7px; padding: 0 8px; }
  .facts strong { font-size: 36px; }
  .facts span { font-size: 9px; }
  .schedule-section { width: min(100% - 34px, 620px); padding: 76px 0 16px; }
  .schedule-times { grid-template-columns: repeat(2, 1fr); }
  .schedule-times time { min-height: 76px; font-size: 28px; }
  .schedule-times time:nth-child(3n) { border-right: 1px solid var(--line); }
  .schedule-times time:nth-child(2n) { border-right: 0; }
  .schedule-times time:nth-child(-n + 8) { border-bottom: 1px solid var(--line); }
  .section { padding: 90px 0; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 25px; }
  .how { width: 100%; grid-template-columns: 1fr; }
  .how-copy {
    order: 1;
    padding: 72px 24px 56px;
  }
  .how-visual {
    order: 2;
    min-height: 360px;
    max-height: 420px;
  }
  .how-visual img {
    min-height: 360px;
    max-height: 420px;
    object-position: center 28%;
  }
  .how-visual > p {
    left: 24px;
    bottom: 24px;
    font-size: 62px;
  }
  .how-visual > p small { font-size: 11px; }
  .registration-section { padding: 85px 17px; }
  .registration-intro { display: block; }
  .registration-intro > p:not(.eyebrow) { margin: 26px 0 36px; }
  .form-shell { padding: 24px 17px; border-radius: 24px; }
  .field-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

.hidden { display: none !important; }

/* Уточнение к длительности практики */
.facts span small{
  display:block;
  margin-top:4px;
  font-size:11px;
  line-height:1.15;
  font-weight:600;
  opacity:.68;
}
.how-visual p em{
  display:block;
  margin-top:7px;
  font-family:inherit;
  font-size:12px;
  line-height:1.15;
  font-style:normal;
  font-weight:600;
  letter-spacing:.01em;
  opacity:.72;
}


