:root {
  --canvas: #3b3b3b;
  --band: #333333;
  --card: #4a4a4a;
  --hairline: #606060;
  --hairline-soft: #545454;
  --text: #ffffff;
  --text-body: #c2c2c2;
  --text-muted: #b5b5b5;
  --accent: #e0a86a;
  --accent-soft: #edc79b;
  --dusk-a: #5a7694;
  --dusk-b: #759da5;
  --dusk-c: #abb7b5;

  --font-ui: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-logo: Georgia, "Times New Roman", "Palatino Linotype", serif;

  --t-caption: 13px;
  --t-body: 16px;
  --t-sub: 20px;
  --t-display: 40px;
  --track: -0.007em;

  --s4: 4px;
  --s8: 8px;
  --s12: 12px;
  --s16: 16px;
  --s20: 20px;
  --s24: 24px;
  --s32: 32px;
  --s48: 48px;
  --s60: 60px;

  --page: 1200px;
  --gutter: 24px;
  --section-y: 96px;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --header-h: 64px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text-body);
  font-family: var(--font-ui);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: var(--track);
  overflow-x: hidden;
}

h1, h2, h3, p, ul, ol, blockquote, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
.feature__col, .steps__intro, .steps__list, .model__text, .model__media,
.subscribe__intro, .form__row, .stats__item, .voice, .footer__col,
.footer__brand, .footer__contact, .step__body { min-width: 0; }
a { color: inherit; }

button,
input {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--canvas);
  color: var(--text);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

.container {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- logo ---------- */
.logo {
  font-family: var(--font-logo);
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.logo__first { color: var(--text); }
.logo__second { color: var(--accent); }
.logo--footer { font-size: 21px; display: inline-block; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  transition: background-color .25s ease, border-color .25s ease;
}
.has-hero .header {
  background: transparent;
  border-bottom-color: transparent;
}
.has-hero .header.is-scrolled {
  background: var(--canvas);
  border-bottom-color: var(--hairline);
}

.header__inner {
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s16);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--s20);
}
.nav__link {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s ease;
}
.nav__link:hover,
.nav__link:focus-visible { color: var(--text); }

.burger {
  display: none;
  padding: 8px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  color: var(--text);
  cursor: pointer;
}
.burger__box { display: block; line-height: 0; }
.burger__icon--close { display: none; }
.burger[aria-expanded="true"] .burger__icon--open { display: none; }
.burger[aria-expanded="true"] .burger__icon--close { display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  padding: 11px 24px;
  border-radius: var(--r-sm);
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  font-size: var(--t-body);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover,
.btn:focus-visible {
  background: var(--text);
  color: #2c2c2c;
}
.btn--quiet {
  border-color: var(--hairline);
  color: var(--text-body);
}
.btn--quiet:hover,
.btn--quiet:focus-visible {
  background: transparent;
  border-color: var(--text-muted);
  color: var(--text);
}
.btn--sm { padding: 8px 18px; font-size: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.link-arrow:hover,
.link-arrow:focus-visible { border-bottom-color: var(--accent); }

/* ---------- typography blocks ---------- */
.eyebrow {
  margin-bottom: var(--s16);
  font-size: var(--t-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.head { max-width: 640px; }
.head__title {
  font-size: clamp(27px, 5.2vw, var(--t-display));
  line-height: 1.2;
  letter-spacing: -0.28px;
  color: var(--text);
  font-weight: 400;
}
.head__text {
  margin-top: var(--s20);
  color: var(--text-muted);
}

.section {
  padding-block: 56px;
  scroll-margin-top: var(--header-h);
}
.section--rail,
.section--stats,
.section--form { background: var(--band); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 48px;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}
.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(59,59,59,.94) 0%, rgba(59,59,59,.72) 42%, rgba(59,59,59,.98) 100%),
    linear-gradient(180deg, rgba(90,118,148,.72) 0%, rgba(117,157,165,.34) 55%, rgba(171,183,181,.12) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__title {
  max-width: 15ch;
  font-size: clamp(32px, 8.4vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.4px;
  color: var(--text);
  font-weight: 400;
}
.hero__lead {
  margin-top: var(--s24);
  max-width: 58ch;
  color: var(--text-muted);
}
.hero__actions {
  margin-top: var(--s32);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s24);
}
.hero__strip {
  margin-top: var(--s48);
  padding-top: var(--s20);
  border-top: 1px solid rgba(255,255,255,.28);
}
.hero__strip-label {
  font-size: var(--t-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.iconrow {
  margin-top: var(--s16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s12);
}
.iconrow__item img {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.2);
}

/* ---------- cinematic features ---------- */
.section--features { padding-bottom: 24px; }
.feature { margin-top: 56px; }
.feature__frame {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.feature__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.feature__overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding-block: var(--s32) var(--s20);
  background: linear-gradient(180deg, rgba(59,59,59,0) 0%, rgba(59,59,59,.82) 58%, rgba(59,59,59,.97) 100%);
}
.feature__kicker {
  display: flex;
  align-items: baseline;
  gap: var(--s12);
  font-size: var(--t-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.feature__num {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.feature__title {
  margin-top: var(--s8);
  font-size: clamp(24px, 5.6vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.28px;
  color: var(--text);
  font-weight: 400;
}
.feature__body {
  display: grid;
  gap: var(--s32);
  padding-top: var(--s32);
}
.feature__dev {
  font-size: var(--t-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.chips {
  margin-top: var(--s16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s8);
}
.chips__item {
  padding: 5px 12px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  font-size: var(--t-caption);
  color: var(--text-muted);
}
.feature__text {
  margin-top: var(--s20);
  color: var(--text-muted);
}
.feature__col .btn { margin-top: var(--s24); }

.gallery { display: grid; gap: var(--s12); }
.gallery__item { min-width: 0; }
.gallery--wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery--pano { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery--tall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery__item img {
  width: 100%;
  border-radius: var(--r-sm);
  object-fit: cover;
  border: 1px solid var(--hairline-soft);
}
.gallery--wide .gallery__item img { aspect-ratio: 16 / 9; }
.gallery--pano .gallery__item img { aspect-ratio: 2 / 1; }
.gallery--tall .gallery__item img { aspect-ratio: 3 / 4; }

/* ---------- rail ---------- */
.head--rail { max-width: none; display: grid; gap: var(--s24); }
.rail__controls { display: flex; gap: var(--s8); }
.rail__btn {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.rail__btn:hover,
.rail__btn:focus-visible { color: var(--text); border-color: var(--text-muted); }
.rail__btn[disabled] { opacity: .4; cursor: default; }

.rail {
  margin-top: var(--s32);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}
.rail__track {
  display: flex;
  gap: var(--s16);
  padding-inline: max(var(--gutter), calc(50vw - var(--page) / 2 + var(--gutter)));
  padding-bottom: var(--s16);
}
.tile {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--r-md);
  overflow: hidden;
}
.tile__shot {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.tile__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile__body {
  padding: var(--s20);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.tile__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
}
.tile__title {
  margin-top: var(--s12);
  font-size: var(--t-sub);
  line-height: 1.3;
  color: var(--text);
  font-weight: 400;
}
.tile__dev {
  margin-top: var(--s4);
  font-size: var(--t-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tile__text {
  margin-top: var(--s12);
  font-size: 15px;
  color: var(--text-body);
}
.tile__link {
  margin-top: auto;
  padding-top: var(--s20);
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  color: var(--accent-soft);
  text-decoration: none;
}
.tile__link:hover,
.tile__link:focus-visible { text-decoration: underline; }

/* ---------- steps ---------- */
.steps { display: grid; gap: var(--s32); }
.steps__img {
  margin-top: var(--s24);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline-soft);
}
.step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--s16);
  padding-block: var(--s24);
  border-top: 1px solid var(--hairline);
}
.step:last-child { border-bottom: 1px solid var(--hairline); }
.step__num {
  font-size: var(--t-caption);
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 4px;
}
.step__title {
  font-size: var(--t-sub);
  line-height: 1.35;
  color: var(--text);
  font-weight: 400;
}
.step__text {
  margin-top: var(--s8);
  color: var(--text-muted);
}

/* ---------- stats ---------- */
.stats {
  margin-top: var(--s32);
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border-block: 1px solid var(--hairline);
}
.stats__item {
  background: var(--band);
  padding: var(--s24) var(--s20);
  display: flex;
  flex-direction: column;
  gap: var(--s8);
}
.stats__value {
  font-size: var(--t-display);
  line-height: 1.1;
  color: var(--text);
}
.stats__label {
  font-size: 15px;
  color: var(--text-muted);
}
.stats__note {
  margin-top: var(--s20);
  font-size: var(--t-caption);
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ---------- voices ---------- */
.voices {
  margin-top: var(--s32);
  display: grid;
  gap: var(--s16);
}
.voice {
  padding: var(--s24);
  background: var(--card);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s20);
}
.voice__quote {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.55;
}
.voice__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--s12);
  padding-top: var(--s16);
  border-top: 1px solid var(--hairline);
}
.voice__avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--accent-soft);
}
.voice__meta { display: flex; flex-direction: column; }
.voice__name { color: var(--text); font-size: 15px; }
.voice__role { color: var(--text-muted); font-size: var(--t-caption); }

/* ---------- subscribe ---------- */
.subscribe { display: grid; gap: var(--s32); }
.form {
  display: grid;
  gap: var(--s16);
  padding: var(--s24);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
}
.form__row { display: flex; flex-direction: column; gap: var(--s8); }
.form__label {
  font-size: var(--t-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form__hint {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  opacity: .85;
}
.form__input {
  padding: 11px 14px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  color: var(--text);
}
.form__input::placeholder { color: #9c9c9c; }
.form__input:focus-visible { border-color: var(--accent); }
.form__input.is-invalid { border-color: var(--accent); }
.form__consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--s12);
  align-items: start;
}
.form__check {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}
.form__consent-label { font-size: 15px; color: var(--text-muted); }
.form__consent-label a { color: var(--accent-soft); }
.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s16);
}
.form__note { font-size: var(--t-caption); color: var(--text-muted); }
.form__success {
  padding: var(--s16);
  border: 1px solid var(--accent);
  border-radius: var(--r-sm);
  color: var(--accent-soft);
  font-size: 15px;
}

/* ---------- model ---------- */
.model { display: grid; gap: var(--s32); }
.model__p { margin-top: var(--s20); color: var(--text-muted); }
.model__text .link-arrow { margin-top: var(--s24); }
.model__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline-soft);
}

/* ---------- faq ---------- */
.faq { margin-top: var(--s32); border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q { margin: 0; font-size: inherit; font-weight: 400; }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s16);
  padding: var(--s20) 0;
  background: none;
  border: 0;
  text-align: start;
  color: var(--text);
  font-size: 17px;
  cursor: pointer;
}
.faq__icon { flex: 0 0 auto; color: var(--text-muted); transition: transform .25s ease; }
.faq__btn[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }
.faq__a { padding-bottom: var(--s20); max-width: 72ch; color: var(--text-muted); }
.faq__a a { color: var(--accent-soft); }

/* ---------- legal pages ---------- */
.pagehead {
  padding-top: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.pagehead__title {
  font-size: clamp(28px, 6vw, var(--t-display));
  line-height: 1.2;
  letter-spacing: -0.28px;
  color: var(--text);
  font-weight: 400;
}
.pagehead__meta {
  margin-top: var(--s12);
  font-size: var(--t-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pagehead .link-arrow { margin-top: var(--s24); }
.legal { padding-block: 48px 72px; max-width: 78ch; }
.legal h2 {
  margin-top: var(--s48);
  font-size: 23px;
  line-height: 1.3;
  color: var(--text);
  font-weight: 400;
}
.legal h3 {
  margin-top: var(--s24);
  font-size: var(--t-sub);
  line-height: 1.4;
  color: var(--text);
  font-weight: 400;
}
.legal p { margin-top: var(--s16); color: var(--text-muted); }
.legal ul { margin-top: var(--s16); display: grid; gap: var(--s8); }
.legal li {
  position: relative;
  padding-left: var(--s20);
  color: var(--text-muted);
}
.legal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.legal a { color: var(--accent-soft); }
.legal__table {
  margin-top: var(--s20);
  border-top: 1px solid var(--hairline);
}
.legal__row {
  display: grid;
  gap: var(--s4);
  padding-block: var(--s16);
  border-bottom: 1px solid var(--hairline);
}
.legal__key { color: var(--text); font-size: 15px; }
.legal__val { color: var(--text-muted); font-size: 15px; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding-block: 48px 32px;
  background: var(--band);
}
.footer__grid { display: grid; gap: var(--s32); }
.footer__tagline {
  margin-top: var(--s16);
  max-width: 42ch;
  font-size: 15px;
  color: var(--text-muted);
}
.footer__title {
  font-size: var(--t-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
}
.footer__list { margin-top: var(--s16); display: grid; gap: var(--s12); }
.footer__list a {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
}
.footer__list a:hover,
.footer__list a:focus-visible { color: var(--text); text-decoration: underline; }
.footer__mail { margin-top: var(--s16); }
.footer__mail a { color: var(--accent-soft); font-size: 15px; }
.footer__small {
  margin-top: var(--s12);
  font-size: var(--t-caption);
  color: var(--text-muted);
}
.footer__bottom {
  margin-top: var(--s48);
  padding-top: var(--s20);
  border-top: 1px solid var(--hairline);
  display: grid;
  gap: var(--s8);
  font-size: var(--t-caption);
  color: var(--text-muted);
}

/* ---------- floating ---------- */
.totop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: var(--card);
  border-top: 1px solid var(--hairline);
}
.cookie__inner {
  max-width: var(--page);
  margin-inline: auto;
  padding: var(--s20) var(--gutter);
  display: grid;
  gap: var(--s16);
}
.cookie__text { font-size: 15px; color: var(--text-body); }
.cookie__text a { color: var(--accent-soft); }
.cookie__actions { display: flex; gap: var(--s12); }

/* ---------- responsive ---------- */
@media (max-width: 1079px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s8) var(--gutter) var(--s24);
  }
  .nav__item { border-bottom: 1px solid var(--hairline); }
  .nav__link { display: block; padding: 14px 0; font-size: 17px; }
}

@media (min-width: 600px) {
  .cookie__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--s24);
  }
  .footer__bottom { grid-template-columns: auto minmax(0, 1fr); gap: var(--s24); }
  .voices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile { width: 300px; }
  .iconrow__item img { width: 56px; height: 56px; }
}

@media (min-width: 768px) {
  .section { padding-block: 72px; }
  .hero { padding-top: calc(var(--header-h) + 88px); padding-bottom: 72px; }
  .feature { margin-top: 72px; }
  .feature__img { aspect-ratio: 21 / 9; }
  .steps { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s48); align-items: start; }
  .model { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: var(--s48); align-items: center; }
  .subscribe { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s48); align-items: start; }
  .form { padding: var(--s32); grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .form__row--wide,
  .form__consent,
  .form__actions,
  .form__success { grid-column: 1 / -1; }
  .head--rail { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
  .footer__grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: var(--s32); }
}

@media (min-width: 1024px) {
  .section { padding-block: var(--section-y); }
  .section--features { padding-bottom: var(--s32); }
  .feature { margin-top: var(--section-y); }
  .feature__body {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: var(--s48);
    padding-top: var(--s48);
  }
  .feature--reverse .feature__col { order: 2; }
  .feature--reverse .feature__col--gallery { order: 1; }
  .voices { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero__title { font-size: clamp(40px, 4.4vw, 56px); }
  .feature__overlay { padding-block: var(--s60) var(--s32); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
