:root {
  --bg: #f6f0e2;
  --paper: rgba(255, 249, 237, 0.86);
  --paper-strong: #fff9ee;
  --ink: #17356c;
  --ink-soft: #34558d;
  --accent: #d82a1e;
  --accent-dark: #b11d14;
  --green: #3f7b2b;
  --gold: #f1b43f;
  --line: rgba(23, 53, 108, 0.12);
  --shadow: 0 24px 60px rgba(19, 35, 68, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Onest', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(241, 180, 63, 0.25), transparent 22%),
    radial-gradient(circle at left 10%, rgba(61, 123, 43, 0.16), transparent 18%),
    linear-gradient(180deg, #dff0ff 0%, #edf5ff 18%, #f6f0e2 52%, #f7f1e6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

.page-shell {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.22), transparent 38%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 22%),
    radial-gradient(circle at 80% 16%, rgba(255, 232, 184, 0.48), transparent 18%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 40;
}

.topbar::before {
  content: '';
  position: absolute;
  inset: 10px -14px auto;
  height: calc(100% - 6px);
  background: rgba(255, 249, 237, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(23, 53, 108, 0.08);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand__mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--ink));
  box-shadow: 0 12px 24px rgba(216, 42, 30, 0.28);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-weight: 800;
  font-size: 1rem;
}

.brand__text span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.topbar__nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.topbar__nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  background: rgba(23, 53, 108, 0.08);
  color: var(--ink);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu-toggle {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(23, 53, 108, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  place-items: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  width: 100%;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 249, 237, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 44px rgba(23, 53, 108, 0.14);
}

.mobile-menu__nav,
.mobile-menu__actions {
  display: grid;
  gap: 12px;
}

.mobile-menu__nav {
  margin-bottom: 16px;
}

.mobile-menu__nav a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(23, 53, 108, 0.06);
  font-weight: 700;
}

.phone-inline {
  font-weight: 700;
  white-space: nowrap;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 42px 0;
}

.hero {
  padding-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: 24px;
  align-items: stretch;
}

.hero__content,
.hero__visual,
.mini-quiz,
.info-card,
.feature-panel,
.feature-tile,
.program-card,
.gallery-card,
.price-card,
.trust-card,
.contact-card,
.popup-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__content {
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 251, 244, 0.76)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent);
}

.hero__content::after,
.hero__visual::after,
.price-card::after,
.contact-card::after,
.popup-card::after {
  content: '';
  position: absolute;
  inset: auto -10% -22% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 180, 63, 0.34), transparent 66%);
  pointer-events: none;
}

.eyebrow,
.section-tag,
.feature-panel__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(23, 53, 108, 0.08);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

.eyebrow {
  background: rgba(216, 42, 30, 0.12);
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
  max-width: 9ch;
}

.hero__lead {
  margin: 18px 0 0;
  max-width: 28rem;
  font-size: 1.28rem;
  line-height: 1.34;
  color: var(--ink-soft);
}

.hero__chips {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  padding: 16px 18px;
  min-width: 220px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 53, 108, 0.08);
  display: grid;
  gap: 4px;
}

.chip span {
  font-weight: 700;
}

.chip small {
  color: var(--ink-soft);
}

.hero__bullets,
.price-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero__bullets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero__bullets li,
.price-list li {
  padding: 14px 16px 14px 44px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  position: relative;
  font-weight: 600;
}

.hero__bullets li::before,
.price-list li::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(63, 123, 43, 0.15);
  color: var(--green);
  font-size: 0.9rem;
}

.hero__cta,
.price-card__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  padding: 0 24px;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ee5b2b);
  box-shadow: 0 18px 28px rgba(216, 42, 30, 0.28);
}

.btn--secondary {
  background: rgba(23, 53, 108, 0.08);
  color: var(--ink);
}

.btn--ghost {
  background: linear-gradient(135deg, rgba(216, 42, 30, 0.12), rgba(241, 180, 63, 0.18));
  color: var(--accent-dark);
  border: 1px solid rgba(216, 42, 30, 0.16);
}

.btn--light {
  background: #fff;
  color: var(--ink);
}

.btn--outline-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--wide {
  width: 100%;
}

.mini-quiz {
  margin-top: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 222, 0.96));
  border: 1px solid rgba(216, 42, 30, 0.12);
}

.mini-quiz__copy {
  margin-bottom: 18px;
}

.mini-quiz__copy h2,
.contact-card h2,
.price-card h2,
.popup-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.mini-quiz__copy p,
.contact-card p,
.price-card p,
.popup-card p,
.feature-panel p,
.trust-card p,
.benefit-item p,
.feature-tile p,
.program-card p,
.gallery-card p,
.info-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(23, 53, 108, 0.14);
  background: rgba(255, 255, 255, 0.88);
  padding: 0 16px;
  color: var(--ink);
}

textarea {
  min-height: 128px;
  padding: 14px 16px;
  resize: vertical;
}

.mini-quiz,
.contact-form,
.contact-form--popup,
.quiz-fields {
  display: grid;
  gap: 14px;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.form-status.is-success {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(63, 123, 43, 0.12);
  color: var(--green);
  font-weight: 700;
}

.form-status.is-error {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(216, 42, 30, 0.1);
  color: var(--accent-dark);
  font-weight: 700;
}

.hero__visual {
  padding: 0;
  min-height: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(430px, 1fr) minmax(220px, auto);
  color: var(--ink);
}

.hero-media,
.gallery-card,
.feature-panel--media {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.hero-media img,
.gallery-card__image,
.feature-panel__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media::after,
.gallery-card::after,
.feature-panel--media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(8, 20, 41, 0.04), rgba(8, 20, 41, 0.1) 36%, rgba(8, 20, 41, 0.76) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 245, 208, 0.18), transparent 16%);
}

.hero-media__caption,
.gallery-card__copy,
.feature-panel__content {
  position: absolute;
  inset: auto 20px 20px 20px;
  z-index: 1;
}

.hero-media__caption,
.hero-media__caption strong,
.hero-media__caption p,
.hero-media__tag,
.gallery-card span,
.gallery-card p,
.feature-panel__content,
.feature-panel__content h3,
.feature-panel__content p,
.feature-panel__content .feature-panel__tag {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 12px rgba(7, 17, 34, 0.3);
}

.hero-media--main {
  grid-column: span 2;
  min-height: 460px;
}

.hero-media__caption {
  display: grid;
  gap: 8px;
}

.hero-media__caption strong {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  line-height: 1.08;
}

.hero-media__caption p {
  margin: 0;
  line-height: 1.42;
}

.hero-media__caption--main {
  inset: auto 24px 24px 24px;
  max-width: 28rem;
}

.hero-media__tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
}

.section--cards,
.section--grid,
.section--trust {
  padding-top: 18px;
}

.cards-grid,
.feature-grid,
.program-grid,
.trust-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.cards-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.info-card,
.feature-tile,
.program-card,
.trust-card {
  padding: 24px;
}

.info-card strong,
.feature-tile strong,
.program-card strong,
.trust-card strong,
.benefit-item strong,
.gallery-card span {
  font-size: 1.12rem;
}

.section--split {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}

.benefits-list {
  display: grid;
  gap: 16px;
}

.benefit-item {
  padding: 24px 24px 24px 78px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 237, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 34px rgba(23, 53, 108, 0.08);
  position: relative;
}

.benefit-item::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 24px;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(216, 42, 30, 0.92), rgba(241, 180, 63, 0.92));
}

.feature-panel {
  padding: 32px;
}

.feature-panel--accent {
  background: linear-gradient(180deg, rgba(23, 53, 108, 0.96), rgba(17, 84, 144, 0.88));
  color: #fff;
}

.feature-panel--accent p,
.feature-panel--soft p {
  color: rgba(255, 255, 255, 0.92);
}

.feature-panel--soft {
  background: linear-gradient(160deg, rgba(63, 123, 43, 0.94), rgba(78, 146, 54, 0.92));
  color: #fff;
}

.feature-panel--media {
  min-height: 360px;
  padding: 0;
  background: #3b7330;
}

.feature-panel--media .feature-panel__tag {
  background: rgba(255, 255, 255, 0.14);
}

.age-pills {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.age-pills span {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

.feature-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.feature-tile--wide {
  min-height: 210px;
  background: linear-gradient(150deg, rgba(255, 250, 242, 0.95), rgba(255, 241, 210, 0.72));
}

.program-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.program-card {
  min-height: 210px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 242, 222, 0.92));
}

.section--schedule {
  align-items: stretch;
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 53, 108, 0.08);
}

.schedule-list span {
  font-family: 'Unbounded', sans-serif;
  color: var(--accent-dark);
  font-size: 0.95rem;
}

.gallery-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
}

.gallery-card {
  padding: 0;
  display: block;
  color: #fff;
  background: #18456d;
}

.gallery-card--large {
  grid-row: span 2;
  min-height: 100%;
}

.gallery-card__copy {
  display: grid;
  gap: 6px;
}

.gallery-card__copy p {
  margin: 0;
}

.section--price {
  padding-top: 24px;
}

.price-card {
  padding: 40px;
  background: linear-gradient(135deg, rgba(216, 42, 30, 0.94), rgba(12, 90, 153, 0.92));
  color: #fff;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.price-card p {
  color: rgba(255, 255, 255, 0.92);
}

.price-card .price-list li {
  background: rgba(10, 34, 71, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.price-card .price-list li::before {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.section--trust .trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  padding: 38px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.contacts-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-weight: 700;
}

.contacts-inline span {
  color: var(--ink-soft);
}

.quiz-modal {
  position: fixed;
  inset: 0;
  padding: 16px;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 60;
}

.quiz-modal[hidden] {
  display: none;
}

.quiz-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 34, 0.56);
  backdrop-filter: blur(12px);
}

.quiz-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: min(92vh, calc(100vh - 32px));
  margin: auto;
  overflow: auto;
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 237, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  overscroll-behavior: contain;
}

.quiz-modal--compact .quiz-modal__dialog {
  width: min(520px, 100%);
  max-height: none;
  overflow: visible;
}

.quiz-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(23, 53, 108, 0.08);
  font-size: 1.5rem;
  z-index: 2;
}

.quiz-shell,
.popup-card {
  padding: 34px;
}

.quiz-progress {
  margin-top: 16px;
  width: 100%;
  height: 10px;
  background: rgba(23, 53, 108, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.quiz-progress span {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), #f1b43f);
  transition: width 180ms ease;
}

.quiz-form {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
}

.quiz-step h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.option-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.option-grid label {
  position: relative;
}

.option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-grid span {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 53, 108, 0.1);
  box-shadow: 0 12px 24px rgba(23, 53, 108, 0.06);
  font-size: 1.05rem;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.option-grid input:checked + span {
  background: rgba(216, 42, 30, 0.08);
  border-color: rgba(216, 42, 30, 0.42);
  transform: translateY(-2px);
}

.quiz-finish {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(63, 123, 43, 0.08);
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 1120px) {
  .topbar__nav {
    gap: 6px;
  }

  .topbar__nav a {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .cards-grid--five,
  .program-grid,
  .section--trust .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .gallery-grid,
  .contact-card,
  .price-card,
  .section--split,
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    grid-template-rows: minmax(380px, 1fr) minmax(200px, auto);
  }

  .gallery-grid {
    grid-template-rows: repeat(4, 220px);
  }

  .gallery-card--large {
    grid-row: span 1;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: static;
    flex-wrap: wrap;
    padding-top: 18px;
  }

  .topbar::before {
    inset: 8px -8px auto;
  }

  .topbar__nav {
    display: none;
  }

  .topbar,
  .hero__cta,
  .quiz-actions,
  .contacts-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar__actions {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    order: 3;
  }

  .topbar__actions .btn {
    display: none;
  }

  .mobile-menu {
    order: 4;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .mobile-menu {
    display: block;
  }

  .quiz-modal {
    padding: 12px;
    place-items: start center;
  }

  .hero__content,
  .hero__visual,
  .price-card,
  .contact-card,
  .quiz-shell,
  .popup-card {
    padding: 24px;
  }

  .hero__bullets,
  .cards-grid--five,
  .program-grid,
  .section--trust .trust-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .hero-media--main {
    grid-column: span 1;
  }

  .hero__visual {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(320px, 1fr) repeat(2, 220px);
  }

  .hero-media__caption,
  .hero-media__caption--main,
  .gallery-card__copy,
  .feature-panel__content {
    inset: auto 18px 18px 18px;
  }

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