:root {
  --navy: #101d39;
  --navy-soft: #1b2b4c;
  --ink: #17213a;
  --ivory: #f6f0e5;
  --paper: #fffaf1;
  --yellow: #ffc94a;
  --orange: #eb7a42;
  --muted: #6f746f;
  --line: rgba(23, 33, 58, 0.18);
  --shell: min(1280px, calc(100vw - 64px));
  --header-height: 86px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --text-body: 1rem;
  --text-lead: 1.125rem;
  --text-label: 0.8125rem;
  --text-note: 0.75rem;
  --leading-body: 1.5;
  --leading-lead: 1.45;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--ivory);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--text-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

img {
  height: auto;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

::selection {
  color: var(--navy);
  background: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 24px);
  width: 100%;
  height: var(--header-height);
  padding: 0 max(32px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid transparent;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition:
    transform 240ms var(--ease),
    opacity 180ms var(--ease),
    background-color 240ms var(--ease),
    border-color 240ms var(--ease),
    backdrop-filter 240ms var(--ease),
    visibility 0s linear 240ms;
}

.site-header.is-scrolled {
  border-color: rgba(16, 29, 57, 0.1);
  background: rgba(246, 240, 229, 0.82);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  backdrop-filter: blur(18px);
  transition-delay: 0s;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__wordmark {
  width: 220px;
  height: auto;
}

.brand__mark {
  display: none;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  position: relative;
  margin-left: auto;
}

.site-nav-desktop {
  display: none;
}

.site-nav summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(23, 33, 58, 0.2);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.7);
  list-style: none;
  cursor: pointer;
}

.site-nav summary::-webkit-details-marker {
  display: none;
}

.site-nav__icon {
  position: relative;
  width: 20px;
  height: 14px;
}

.site-nav__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 180ms var(--ease), opacity 140ms ease;
}

.site-nav__icon span:nth-child(1) {
  top: 0;
}

.site-nav__icon span:nth-child(2) {
  top: 6px;
}

.site-nav__icon span:nth-child(3) {
  top: 12px;
}

.site-nav[open] .site-nav__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav[open] .site-nav__icon span:nth-child(2) {
  opacity: 0;
}

.site-nav[open] .site-nav__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav > nav {
  position: fixed;
  z-index: 60;
  top: calc(var(--header-height) - 1px);
  right: 14px;
  left: 14px;
  display: none;
  flex-direction: column;
  padding: 8px;
  border: 1px solid rgba(23, 33, 58, 0.16);
  border-radius: 12px;
  background: var(--paper);
}

.site-nav[open] > nav {
  display: flex;
}

.site-nav a,
.site-nav-desktop a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav-desktop a:hover {
  color: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border: 0;
  border-radius: 4px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(16, 29, 57, 0.12);
  transition:
    transform 180ms var(--ease),
    background-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.button:hover {
  background: #ffd466;
  box-shadow: 0 16px 38px rgba(16, 29, 57, 0.18);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  padding-inline: 24px;
  font-size: 18px;
}

.button--primary span:last-child {
  font-size: 24px;
  font-weight: 400;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section--dark {
  color: var(--ivory);
  background: var(--navy);
}

.section--paper {
  background:
    linear-gradient(rgba(23, 33, 58, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 72px;
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-title--wide {
  max-width: 1080px;
}

.hero {
  position: relative;
  min-height: 980px;
  padding: calc(var(--header-height) + 58px) 0 82px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 38%, rgba(255, 201, 74, 0.17), transparent 27%),
    var(--ivory);
}

.hero__grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: 24px;
  align-items: center;
  width: var(--shell);
  margin-inline: auto;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding-bottom: 7px;
  border-bottom: 3px solid var(--yellow);
  color: var(--navy);
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(50px, 5.3vw, 82px);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.title-line {
  display: block;
}

.title-line--accent {
  position: relative;
  margin-top: 10px;
  color: var(--orange);
}

.hero__lead {
  max-width: 760px;
  margin: 28px 0 20px;
  color: #475064;
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
}

.schedule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 19px;
}

.schedule__dot {
  width: 12px;
  height: 12px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(16, 29, 57, 0.18);
}

.registration-form {
  width: min(760px, 100%);
  padding: 22px;
  border: 1px solid rgba(16, 29, 57, 0.14);
  border-radius: 22px 4px 22px 4px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 28px 70px rgba(16, 29, 57, 0.12);
  backdrop-filter: blur(12px);
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: #5b6270;
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(16, 29, 57, 0.2);
  border-radius: 4px;
  color: var(--navy);
  background: white;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(235, 122, 66, 0.15);
}

.field input[aria-invalid="true"] {
  border-color: #b83232;
}

.agreements {
  display: grid;
  gap: 7px;
  margin: 13px 0 14px;
}

.agreement {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: #676e7c;
  font-size: var(--text-note);
  line-height: 1.35;
}

.agreement input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--orange);
}

.agreement a {
  text-underline-offset: 2px;
}

.form-note,
.form-status {
  margin: 10px 0 0;
  color: #717683;
  font-size: var(--text-note);
  text-align: center;
}

.form-status:not(:empty) {
  padding: 10px;
  color: var(--navy);
  background: rgba(255, 201, 74, 0.25);
}

.hero__visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 760px;
}

.hero__mobile-visual {
  display: none;
}

.hero__visual img {
  position: absolute;
  right: -7vw;
  bottom: -34px;
  width: min(610px, 48vw);
  max-width: none;
  filter: drop-shadow(0 30px 38px rgba(16, 29, 57, 0.18));
}

.hero__sun {
  position: absolute;
  top: 9%;
  right: -5%;
  width: 330px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.55;
}

.hero__caption {
  position: absolute;
  right: 0;
  bottom: 10%;
  padding: 5px 10px;
  color: var(--ivory);
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: bottom right;
}

.attention-line {
  position: absolute;
  right: 18%;
  bottom: -1px;
  width: 42%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--yellow) 30%, var(--orange));
  transform: rotate(-5deg);
  transform-origin: right;
}

.evening {
  position: relative;
  padding: 150px 0 120px;
  overflow: hidden;
}

.evening::after {
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 40vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 201, 74, 0.34);
  border-radius: 50%;
  content: "";
}

.evening__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.evening__intro {
  position: sticky;
  top: 130px;
}

.evening__loop {
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.2));
}

.situation-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.situation-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.situation-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.situation-list__icon,
.results-list__icon {
  display: grid;
  place-items: center;
  width: 28px;
  aspect-ratio: 1;
  color: var(--yellow);
}

.situation-list__icon svg,
.results-list__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.situation-list p {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.evening__closing {
  position: relative;
  z-index: 2;
  width: min(1020px, 100%);
  margin: 58px auto 0;
}

.evening__closing-image {
  width: 100%;
}

.evening__closing p {
  width: var(--shell);
  margin: 0 auto 28px;
  color: var(--ivory);
  font-size: clamp(28px, 7.6vw, 36px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.evening__closing p strong {
  color: var(--yellow);
  font-weight: 700;
}

.program {
  padding: 150px 0;
}

.program > .section-shell > .section-title {
  margin-bottom: 100px;
}

.topic {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  min-height: 610px;
  padding: 76px 6vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.topic:last-child {
  border-bottom: 1px solid var(--line);
}

.topic__descriptor {
  position: absolute;
  top: 42px;
  left: 0;
  margin: 0;
  color: var(--orange);
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topic__copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.topic__copy h3 {
  margin: 0 0 22px;
  font-size: clamp(38px, 4.1vw, 65px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.topic__copy p {
  max-width: 560px;
  margin: 0;
  color: #5d6471;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.topic img {
  position: absolute;
  top: 50%;
  right: -4%;
  width: 54%;
  max-height: 90%;
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 28px 40px rgba(16, 29, 57, 0.13));
}

.topic--phone {
  grid-template-columns: 1.15fr 0.85fr;
}

.topic--phone .topic__copy {
  grid-column: 2;
}

.topic--phone img {
  right: auto;
  left: 3%;
  width: 42%;
}

.results {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}

.results__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
}

.results__heading {
  position: relative;
}

.results-title__accent {
  display: block;
  color: var(--yellow);
}

.results__illustration {
  display: block;
  width: min(260px, 70%);
  margin: 38px 0 0 auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.2));
}

.results__lead {
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.results-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.expert {
  padding: 150px 0 130px;
  background:
    radial-gradient(circle at 15% 42%, rgba(255, 201, 74, 0.28), transparent 26%),
    var(--ivory);
}

.expert__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: center;
}

.expert__portrait {
  position: relative;
  min-height: 780px;
}

.expert__photo-frame {
  position: absolute;
  inset: 0 30px 0 0;
  overflow: hidden;
  clip-path: polygon(0 0, 96% 5%, 100% 92%, 8% 100%);
  background: var(--navy);
}

.expert__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.expert__name {
  position: absolute;
  right: -12px;
  bottom: 58px;
  padding: 15px 18px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 25px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  transform: rotate(-3deg);
}

.fact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-top: 1px solid var(--line);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.fact-list li::before {
  position: absolute;
  top: 26px;
  left: 1px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  content: "";
  transform: rotate(45deg);
}

.daughters {
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  margin-top: 40px;
  padding-left: 10%;
}

.daughter {
  width: 190px;
  height: 230px;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: 0 18px 38px rgba(16, 29, 57, 0.16);
  clip-path: polygon(3% 0, 100% 5%, 96% 100%, 0 94%);
}

.daughter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daughter--one {
  transform: rotate(-5deg);
}

.daughter--two {
  width: 205px;
  height: 250px;
  margin-left: -18px;
  transform: rotate(5deg) translateY(12px);
}

.reviews {
  padding: 140px 0 150px;
  overflow: hidden;
}

.reviews__quote {
  max-width: 1050px;
  margin: 0 0 70px;
  color: var(--navy);
  font-size: clamp(44px, 5.8vw, 84px);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.review {
  margin: 0;
}

.review__media {
  position: relative;
  isolation: isolate;
  aspect-ratio: 9 / 14;
}

.review__media::before {
  position: absolute;
  z-index: -1;
  inset: -7px;
  background: var(--ivory);
  clip-path: polygon(3% 0, 98% 2%, 100% 96%, 6% 100%, 0 7%);
  content: "";
  transform: rotate(-1deg);
}

.review:nth-child(even) .review__media::before {
  transform: rotate(1deg);
}

.review video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(3% 0, 97% 0, 100% 3%, 100% 100%, 0 100%, 0 3%);
  background: var(--navy);
  box-shadow: 0 24px 50px rgba(16, 29, 57, 0.18);
}

.review figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonuses {
  padding: 150px 0;
}

.bonus-flow {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  gap: 25px;
  align-items: center;
  margin-top: clamp(48px, 7vw, 95px);
}

.bonus {
  display: grid;
  align-content: start;
}

.bonus__image {
  width: clamp(250px, 68vw, 420px);
  margin-bottom: clamp(24px, 4vw, 38px);
  justify-self: center;
}

.bonus__image img {
  display: block;
  width: 100%;
  height: auto;
}

.bonus__when {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bonus h3 {
  max-width: 500px;
  margin: 0 0 15px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.bonus > p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(246, 240, 229, 0.72);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.bonus-flow__line {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.24);
}

.bonus-flow__line::before,
.bonus-flow__line::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  transform: translateY(-50%);
}

.bonus-flow__line::before {
  left: 0;
}

.bonus-flow__line::after {
  right: 0;
}

.bonus-flow__line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 5px solid var(--navy);
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
}

.faq {
  padding: 140px 0;
  background: var(--ivory);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 28px 62px 28px 0;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 650;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  color: var(--orange);
  font-size: 30px;
  font-weight: 400;
  content: "+";
  transform: translateY(-50%);
  transition: transform 180ms var(--ease);
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  max-width: 680px;
  margin: -4px 0 28px;
  color: #5a6270;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.final {
  position: relative;
  padding: 150px 0 130px;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 40%, rgba(255, 201, 74, 0.22), transparent 29%),
    var(--navy);
}

.final__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.final__copy {
  position: relative;
  z-index: 3;
}

.final__lead {
  max-width: 700px;
  margin: 30px 0 22px;
  color: rgba(246, 240, 229, 0.75);
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
}

.final-title__accent {
  color: var(--yellow);
}

.schedule--dark {
  color: var(--ivory);
}

.registration-form--light {
  color: var(--ink);
  background: var(--paper);
}

.final__visual {
  position: relative;
  min-height: 720px;
}

.final__visual::before {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.final__visual img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(680px, 50vw);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  clip-path: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.22));
}

.final__visual > span {
  position: absolute;
  z-index: 4;
  right: 2%;
  bottom: 15%;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px max(32px, calc((100vw - 1280px) / 2));
  color: rgba(246, 240, 229, 0.8);
  background: #0a1328;
}

.brand--footer img {
  width: 190px;
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.site-footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  margin-left: auto;
  font-size: var(--text-note);
}

.site-footer__info p {
  margin: 0;
}

.mobile-cta {
  position: fixed;
  z-index: 45;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(16, 29, 57, 0.28);
  transform: translateY(140%);
  transition: transform 220ms var(--ease);
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

/* Mobile-first responsive cascade. Base styles target narrow phones. */
:root {
  --shell: calc(100% - 28px);
  --header-height: 70px;
}

body {
  font-size: var(--text-body);
}

.site-header {
  padding-inline: 18px;
}

.brand__wordmark {
  display: block;
  width: 150px;
}

.brand__mark {
  display: none;
}

.section-title {
  font-size: clamp(38px, 10.5vw, 62px);
}

.hero {
  min-height: auto;
  padding: 32px 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: var(--text-label);
}

.hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(118px, 0.75fr);
  align-items: center;
  min-height: 280px;
  margin-right: 0;
}

.hero__title {
  position: relative;
  z-index: 2;
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 0.94;
}

.title-line--accent {
  margin-top: 8px;
}

.hero__lead {
  max-width: 350px;
  margin: 18px 0 20px;
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
}

.hero__lead-desktop {
  display: none;
}

.hero__cta {
  max-width: 360px;
}

.hero__visual {
  display: none;
  min-height: 410px;
}

.hero__mobile-visual {
  position: relative;
  display: block;
  height: 280px;
  margin: 0 0 -8px -18px;
}

.hero__mobile-visual img {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 170px;
  max-width: none;
  filter: drop-shadow(0 18px 30px rgba(16, 29, 57, 0.18));
}

.hero__sun {
  top: 8%;
  right: -2%;
  width: 240px;
}

.schedule,
.registration-form {
  position: relative;
  z-index: 4;
}

.registration-form {
  padding: 16px;
}

.form-fields {
  grid-template-columns: 1fr;
}

.agreement {
  font-size: var(--text-note);
}

.evening,
.program,
.results,
.expert,
.reviews,
.bonuses,
.faq,
.final {
  padding-block: 100px;
}

.evening {
  padding: 48px 0 0;
}

.evening__grid,
.results__layout,
.expert__layout,
.faq__layout,
.final__layout {
  grid-template-columns: 1fr;
}

.evening__grid {
  gap: 48px;
}

.results__layout,
.expert__layout {
  gap: 54px;
}

.faq__layout {
  gap: 58px;
}

.evening__intro {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(126px, 35vw, 142px);
  gap: 4px;
  align-items: center;
}

.evening .section-title {
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 0.94;
}

.situation-list li {
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 22px 0 24px;
}

.situation-list p {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: -0.01em;
}

.evening__closing {
  width: 100%;
}

.program > .section-shell > .section-title {
  margin-bottom: 32px;
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 0.94;
}

.program-title__accent {
  display: block;
  color: var(--orange);
}

.program {
  padding: 48px 0 32px;
}

.topic,
.topic--phone {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: auto;
  padding: 52px 0 44px;
}

.topic--phone .topic__copy {
  grid-column: auto;
}

.topic img,
.topic--phone img {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  order: -1;
  width: 100%;
  height: 390px;
  margin-bottom: 32px;
  transform: none;
}

.topic--learning img {
  width: calc(100% + 28px);
  height: auto;
  margin-right: -14px;
  margin-bottom: 24px;
  margin-left: -14px;
}

.topic__descriptor {
  top: 18px;
}

.topic--phone img {
  width: 100%;
  height: 170px;
  margin-bottom: 24px;
}

.topic__copy h3 {
  font-size: clamp(28px, 7.7vw, 32px);
  line-height: 1.02;
}

.results {
  padding: 48px 0 36px;
}

.results__layout {
  gap: 40px;
}

.results .section-title {
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 0.94;
}

.results__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(116px, 32vw, 132px);
  gap: 8px;
  align-items: center;
}

.results__illustration {
  width: 100%;
  max-height: 175px;
  margin: 0;
  object-fit: contain;
}

.results-list li {
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 22px 0 24px;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: -0.01em;
}

.expert__portrait {
  width: 88%;
  min-height: 500px;
  margin-inline: auto;
}

.expert {
  padding: 48px 0 36px;
}

.expert__layout {
  gap: 28px;
}

.expert__name {
  z-index: 2;
  top: 28px;
  right: 0;
  bottom: auto;
  transform: rotate(2deg);
}

.expert__copy {
  padding-top: 0;
}

.expert .section-title {
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 0.94;
}

.expert-title__accent {
  color: var(--orange);
}

.fact-list {
  grid-template-columns: 1fr;
}

.daughters {
  justify-content: center;
  min-height: 210px;
  padding-left: 0;
}

.daughter {
  width: 150px;
  height: 190px;
}

.daughter--two {
  width: 160px;
  height: 205px;
}

.reviews__quote {
  color: var(--navy);
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 0.94;
}

.reviews__quote-accent {
  color: var(--orange);
}

.reviews {
  padding: 36px 0;
}

.bonuses {
  padding: 36px 0;
}

.bonuses .section-title {
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 0.94;
}

.bonuses-title__accent {
  color: var(--yellow);
}

.faq {
  padding: 36px 0;
}

.faq .section-title {
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 0.94;
}

.final {
  padding: 36px 0 100px;
}

.final .section-title {
  font-size: clamp(34px, 9.5vw, 40px);
  line-height: 0.94;
}

.final__layout {
  gap: 16px;
}

.review-strip {
  display: flex;
  width: calc(100vw - 18px);
  padding-right: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-strip::-webkit-scrollbar {
  display: none;
}

.review {
  flex: 0 0 78vw;
  scroll-snap-align: start;
}

.bonus-flow {
  grid-template-columns: 1fr;
  gap: 65px;
}

.bonus-flow__line {
  width: 2px;
  height: 90px;
  margin: -28px auto;
}

.bonus-flow__line::before,
.bonus-flow__line::after {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.bonus-flow__line::before {
  top: 0;
}

.bonus-flow__line::after {
  right: auto;
  bottom: 0;
}

.final__visual {
  min-height: 330px;
  order: -1;
}

.final__visual::before {
  width: 180px;
}

.final__visual img {
  width: min(620px, 90vw);
  height: auto;
}

.site-footer {
  align-items: flex-start;
  flex-direction: column;
  padding: 42px 18px 100px;
}

.site-footer__info {
  justify-content: flex-start;
  margin-left: 0;
}

.mobile-cta {
  display: flex;
}

@media (min-width: 521px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .hero__title {
    font-size: clamp(42px, 7.2vw, 56px);
  }

  .hero__stage {
    grid-template-columns: minmax(0, 1.4fr) minmax(190px, 0.6fr);
    min-height: 330px;
  }

  .hero__mobile-visual {
    height: 330px;
  }

  .hero__mobile-visual img {
    width: 220px;
  }

  .registration-form {
    padding: 22px;
  }

  .agreement {
    font-size: var(--text-note);
  }

  .evening__grid {
    gap: 54px;
  }

  .situation-list p {
    font-size: var(--text-body);
  }

  .fact-list {
    grid-template-columns: 1fr 1fr;
  }

  .expert__portrait {
    width: auto;
    min-height: 680px;
    margin-inline: 0;
  }

  .daughters {
    justify-content: flex-start;
    min-height: 250px;
    padding-left: 10%;
  }

  .daughter {
    width: 190px;
    height: 230px;
  }

  .daughter--two {
    width: 205px;
    height: 250px;
  }

  .reviews__quote {
    font-size: clamp(44px, 5.8vw, 84px);
  }

  .review {
    flex-basis: min(74vw, 430px);
  }

  .final__visual {
    min-height: 520px;
  }

  .final__visual img {
    height: auto;
  }
}

@media (min-width: 821px) {
  :root {
    --shell: min(100% - 48px, 960px);
    --header-height: 86px;
    --text-body: 1.125rem;
    --text-lead: 1.3125rem;
  }

  body {
    font-size: var(--text-body);
  }

  .site-header {
    padding: 0 max(32px, calc((100vw - 1280px) / 2));
  }

  .brand__wordmark {
    display: block;
    width: 220px;
  }

  .brand__mark {
    display: none;
  }

  .section-title {
    font-size: clamp(42px, 5vw, 76px);
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .hero {
    min-height: 920px;
    padding: calc(var(--header-height) + 58px) 0 82px;
  }

  .hero__content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: center;
  }

  .hero__stage {
    display: block;
    min-height: 0;
    margin-right: 0;
  }

  .hero__title {
    font-size: clamp(50px, 5.3vw, 82px);
  }

  .hero__lead {
    max-width: 760px;
    margin: 28px 0 20px;
    font-size: var(--text-lead);
    line-height: var(--leading-lead);
  }

  .hero__lead-mobile {
    display: none;
  }

  .hero__lead-desktop {
    display: inline;
  }

  .hero__visual {
    display: block;
    min-height: 760px;
  }

  .hero__mobile-visual {
    display: none;
  }

  .hero__visual img {
    right: -14vw;
    bottom: -34px;
    width: 58vw;
  }

  .hero__sun {
    top: 9%;
    right: -5%;
    width: 330px;
  }

  .schedule,
  .registration-form {
    position: static;
    z-index: auto;
  }

  .form-fields {
    grid-template-columns: 1fr 1fr;
  }

  .evening {
    padding: 150px 0 120px;
  }

  .program,
  .results,
  .bonuses {
    padding: 150px 0;
  }

  .expert {
    padding: 150px 0 130px;
  }

  .reviews {
    padding: 140px 0 150px;
  }

  .faq {
    padding: 140px 0;
  }

  .final {
    padding: 150px 0 130px;
  }

  .evening__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
  }

  .evening__intro {
    position: sticky;
    top: 130px;
    display: block;
  }

  .evening__loop {
    display: none;
  }

  .evening .section-title {
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.98;
  }

  .situation-list li {
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding: 30px 0 34px;
  }

  .situation-list p {
    font-size: clamp(22px, 2.1vw, 31px);
    line-height: 1.25;
    letter-spacing: -0.025em;
  }

  .evening__closing {
    width: min(1020px, calc(100vw - 64px));
    margin-top: 130px;
  }

  .evening__closing p {
    width: 100%;
    margin: 0 auto 44px;
    font-size: clamp(32px, 4.5vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-align: center;
  }

  .program > .section-shell > .section-title {
    margin-bottom: 100px;
  }

  .topic,
  .topic--phone {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    min-height: 610px;
    padding: 76px 3vw;
  }

  .topic--phone {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .topic--phone .topic__copy {
    grid-column: 2;
  }

  .topic img,
  .topic--phone img {
    position: absolute;
    top: 50%;
    right: -4%;
    left: auto;
    order: initial;
    width: 54%;
    height: auto;
    max-height: 90%;
    margin-bottom: 0;
    transform: translateY(-50%);
  }

  .topic--phone img {
    right: auto;
    left: 3%;
    width: 42%;
  }

  .topic__descriptor {
    top: 42px;
  }

  .results__layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
  }

  .results__heading {
    display: block;
  }

  .results__illustration {
    width: min(260px, 70%);
    max-height: none;
    margin: 38px 0 0 auto;
  }

  .expert__layout {
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
    gap: 54px;
  }

  .expert__portrait {
    min-height: 680px;
  }

  .expert__copy {
    padding-top: 0;
  }

  .expert .section-title {
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1;
  }

  .bonuses .section-title {
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1;
  }

  .faq .section-title {
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1;
  }

  .final .section-title {
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1;
  }

  .review-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
    padding-right: 0;
    overflow: visible;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

  .review {
    flex: 0 1 auto;
    scroll-snap-align: none;
  }

  .bonus-flow {
    grid-template-columns: 1fr 110px 1fr;
    gap: 25px;
  }

  .bonus-flow__line {
    width: auto;
    height: 2px;
    margin: 0;
  }

  .bonus-flow__line::before,
  .bonus-flow__line::after {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .bonus-flow__line::before {
    left: 0;
  }

  .bonus-flow__line::after {
    right: 0;
    left: auto;
  }

  .faq__layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 54px;
  }

  .final__layout {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 50px;
  }

  .final__visual {
    min-height: 720px;
    order: initial;
  }

  .final__visual::before {
    width: 260px;
  }

  .final__visual img {
    width: min(680px, 50vw);
  }

  .site-footer {
    align-items: center;
    flex-direction: row;
    padding: 46px max(32px, calc((100vw - 1280px) / 2));
  }

  .site-footer__info {
    justify-content: flex-end;
    margin-left: auto;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1101px) {
  :root {
    --shell: min(1280px, calc(100vw - 96px));
    --header-height: 76px;
  }

  section[id] {
    scroll-margin-top: var(--header-height);
  }

  .site-header {
    height: var(--header-height);
  }

  .brand__wordmark {
    width: 195px;
  }

  .site-nav--mobile {
    display: none;
  }

  .site-nav-desktop {
    display: flex;
    gap: 28px;
    margin-left: auto;
  }

  .site-nav-desktop a {
    min-height: 44px;
    padding: 0;
    font-size: 14px;
  }

  .section-title,
  .evening .section-title,
  .program > .section-shell > .section-title,
  .results .section-title,
  .expert .section-title,
  .bonuses .section-title,
  .faq .section-title,
  .final .section-title {
    font-size: clamp(52px, 4.6vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .hero {
    min-height: 100svh;
    padding: clamp(72px, 8vh, 96px) 0 clamp(36px, 5vh, 56px);
  }

  .hero__content {
    grid-template-columns: minmax(0, 7fr) minmax(390px, 5fr);
    gap: clamp(28px, 3vw, 48px);
    min-height: calc(100svh - clamp(108px, 13vh, 152px));
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__title {
    max-width: 720px;
    font-size: clamp(60px, 5.3vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.04em;
  }

  .hero__lead {
    max-width: 620px;
    margin: 22px 0 18px;
    font-size: 20px;
    line-height: 1.45;
  }

  .schedule {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .hero__cta {
    max-width: 360px;
  }

  .hero__visual {
    min-height: min(720px, calc(100svh - 118px));
  }

  .hero__visual img {
    right: -5vw;
    bottom: -28px;
    width: min(560px, 44vw);
  }

  .hero__sun {
    top: 8%;
    right: -4%;
    width: 300px;
  }

  .evening {
    padding: 110px 0 0;
  }

  .evening__grid {
    display: block;
    padding-bottom: clamp(56px, 5vw, 72px);
    border-bottom: 0;
  }

  .evening__intro {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(320px, 4fr) minmax(0, 8fr);
    gap: clamp(48px, 5vw, 72px);
    align-items: center;
  }

  .evening__intro .section-title {
    grid-column: 2;
    grid-row: 1;
    max-width: 760px;
  }

  .evening__loop {
    display: block;
    grid-column: 1;
    grid-row: 1;
    width: min(280px, 100%);
    margin: 0 auto;
  }

  .situation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    align-content: start;
    margin-top: 64px;
  }

  .situation-list li {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 22px 0 24px;
  }

  .situation-list li:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 34px minmax(0, 640px);
  }

  .situation-list p {
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.01em;
  }

  .evening__closing {
    display: grid;
    grid-template-columns: minmax(390px, 5fr) minmax(0, 7fr);
    gap: clamp(48px, 5vw, 72px);
    align-items: start;
    width: var(--shell);
    min-height: 0;
    margin: 0 auto;
    padding-top: clamp(24px, 2.5vw, 36px);
  }

  .evening__closing p {
    width: auto;
    margin: clamp(24px, 2.5vw, 36px) 0 0;
    font-size: clamp(32px, 2.6vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-align: left;
  }

  .evening__closing-image {
    align-self: start;
  }

  .program {
    padding: 110px 0 120px;
    background: var(--paper);
  }

  .program > .section-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program > .section-shell > .section-title {
    grid-column: 1 / -1;
    max-width: 940px;
    margin-bottom: 72px;
  }

  .topic,
  .topic--phone {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 240px auto;
    align-items: start;
    min-height: 0;
    padding: 26px 0 0;
    overflow: visible;
    border: 0;
  }

  .topic--learning {
    padding-right: 56px;
  }

  .topic--phone {
    padding-left: 56px;
  }

  .topic:last-child {
    border-bottom: 0;
  }

  .topic__descriptor {
    position: static;
    grid-row: 1;
    margin: 0 0 24px;
  }

  .topic img,
  .topic--phone img {
    position: static;
    grid-row: 2;
    order: initial;
    width: 100%;
    height: 240px;
    max-height: none;
    margin: 0;
    object-fit: contain;
    transform: none;
  }

  .topic__copy,
  .topic--phone .topic__copy {
    grid-row: 3;
    grid-column: auto;
    max-width: none;
    margin-top: 28px;
  }

  .topic__copy h3 {
    margin-bottom: 18px;
    font-size: clamp(32px, 2.8vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .topic__copy p {
    max-width: 540px;
    font-size: 18px;
    line-height: 1.5;
  }

  .results {
    padding: 100px 0;
  }

  .results__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 72px;
    align-items: center;
  }

  .results .section-title {
    font-size: clamp(52px, 4.2vw, 64px);
  }

  .results__illustration {
    width: min(270px, 64%);
    margin: 34px 0 0;
    transform: scaleX(-1);
  }

  .results-list li {
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 18px 0 20px;
    font-size: 18px;
    line-height: 1.4;
  }

  .expert {
    padding: 110px 0 96px;
  }

  .expert__layout {
    grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
    gap: 72px;
    align-items: center;
  }

  .expert__portrait {
    width: auto;
    min-height: 680px;
    margin-inline: 0;
  }

  .expert__name {
    top: 28px;
    right: 0;
    bottom: auto;
  }

  .fact-list {
    gap: 0 28px;
    margin-top: 36px;
  }

  .fact-list li {
    padding: 16px 0 16px 26px;
    font-size: 18px;
  }

  .daughters {
    min-height: 220px;
    margin-top: 28px;
    padding-left: 4%;
  }

  .daughter {
    width: 165px;
    height: 205px;
  }

  .daughter--two {
    width: 175px;
    height: 220px;
  }

  .reviews {
    padding: 100px 0 110px;
  }

  .reviews__quote {
    max-width: 1040px;
    margin-bottom: 60px;
    font-size: clamp(56px, 4.8vw, 66px);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .review-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 32px);
    width: min(1050px, 100%);
    margin-inline: auto;
  }

  .bonuses {
    padding: 100px 0 110px;
  }

  .bonus-flow {
    grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 64px;
  }

  .bonus__image {
    display: grid;
    place-items: center;
    width: min(300px, 100%);
    height: 230px;
    margin-bottom: 28px;
  }

  .bonus__image img {
    width: 100%;
    max-height: 230px;
    object-fit: contain;
  }

  .bonus h3 {
    font-size: clamp(30px, 2.7vw, 38px);
    letter-spacing: -0.04em;
  }

  .bonus > p:last-child {
    font-size: 18px;
    line-height: 1.5;
  }

  .bonus-flow__line {
    align-self: start;
    margin-top: 114px;
  }

  .faq {
    padding: 96px 0;
  }

  .faq__layout {
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
    gap: 80px;
  }

  .faq .section-title {
    font-size: clamp(56px, 4.2vw, 64px);
  }

  .faq summary {
    padding-block: 24px;
    font-size: 24px;
  }

  .faq details p {
    font-size: 18px;
    line-height: 1.5;
  }

  .final {
    padding: 104px 0 96px;
  }

  .final__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
    gap: 64px;
    align-items: start;
  }

  .final__lead {
    max-width: 620px;
    margin: 24px 0 18px;
    font-size: 20px;
  }

  .final .registration-form {
    width: min(620px, 100%);
  }

  .final__visual {
    min-height: 600px;
    align-self: center;
  }

  .final__visual::before {
    width: 220px;
  }

  .final__visual img {
    width: min(560px, 42vw);
    height: auto;
  }

  .site-footer {
    padding-block: 38px;
  }

  .brand--footer img {
    width: 175px;
  }
}

@media (min-width: 821px) and (max-width: 1100px) and (max-height: 800px) {
  :root {
    --header-height: 70px;
  }

  .hero {
    min-height: 720px;
    padding: calc(var(--header-height) + 25px) 0 30px;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: start;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero__title {
    font-size: 56px;
  }

  .hero__lead {
    margin: 17px 0 12px;
    font-size: var(--text-lead);
    line-height: var(--leading-lead);
  }

  .schedule {
    margin-bottom: 11px;
    font-size: 17px;
  }

  .registration-form {
    padding: 15px;
  }

  .field input {
    height: 47px;
  }

  .agreements {
    margin: 8px 0 9px;
  }

  .button--primary {
    min-height: 50px;
  }

  .form-note {
    margin-top: 6px;
  }

  .hero__visual {
    min-height: 600px;
  }

  .hero__visual img {
    right: -28px;
    bottom: -25px;
    width: 420px;
  }

  .hero__sun {
    top: 7%;
    right: -2%;
    width: 240px;
  }
}

@media (min-width: 1101px) and (max-height: 800px) {
  :root {
    --header-height: 70px;
  }

  .hero {
    min-height: 100svh;
    padding: 32px 0 28px;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
    min-height: calc(100svh - 60px);
    align-items: center;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero__title {
    font-size: 56px;
  }

  .hero__lead {
    margin: 16px 0 12px;
    font-size: 18px;
    line-height: 1.42;
  }

  .schedule {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .button--primary {
    min-height: 50px;
  }

  .hero__visual {
    min-height: 620px;
  }

  .hero__visual img {
    right: -20px;
    bottom: -28px;
    width: 420px;
  }

  .hero__sun {
    top: 7%;
    right: -2%;
    width: 240px;
  }
}

/* Final desktop guard: program cards must stay completely frameless. */
@media (min-width: 1101px) {
  .program.section--paper {
    background: var(--paper);
  }

  .program .topic,
  .program .topic:last-child,
  .program .topic--phone {
    border: 0;
    box-shadow: none;
    outline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
