:root {
  --color-violet: #8c58d0;
  --color-plum: #42185f;
  --color-lilac: #cdb0fa;
  --color-coral: #ed6c52;
  --color-salmon: #f2a295;
  --color-cream: #faefdc;
  --color-lemon: #fdf0af;
  --color-lime: #d4e84b;
  --color-forest: #183428;
  --color-mustard: #4a4216;
  --color-carbon: #000000;
  --color-paper: #ffffff;
  --color-ash: #1c1c1c;
  --color-concrete: #939393;
  --color-fog: #eff2f5;

  --font-display: Impact, "Haettenschweiler", "Franklin Gothic Bold", "Arial Narrow", "Oswald", "Roboto Condensed", ui-sans-serif, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --text-caption: 12px;
  --text-body-sm: 14px;
  --text-body: 16px;
  --text-subheading: 20px;
  --text-heading-sm: 28px;

  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;

  --radius: 4px;
  --border: 1px solid var(--color-carbon);
  --page-max: 1200px;
  --header-h: 68px;
  --focus: var(--color-violet);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-carbon);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.4;
  font-weight: 450;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; }

h1, h2, h3 { margin: 0; }

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  background: var(--color-lemon);
  border: var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.01em;
}

.kicker {
  font-size: var(--text-body-sm);
  font-weight: 500;
  letter-spacing: 0.036em;
  text-transform: uppercase;
  margin-bottom: var(--space-16);
}

.hl {
  border: var(--border);
  border-radius: var(--radius);
  padding: 0 0.12em;
  display: inline-block;
}
.hl--lime { background: var(--color-lime); }
.hl--lemon { background: var(--color-lemon); }
.hl--salmon { background: var(--color-salmon); }
.hl--lilac { background: var(--color-lilac); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.2;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: var(--border);
  background: transparent;
  color: var(--color-carbon);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}
.btn:hover { opacity: 0.82; }
.btn--primary {
  background: var(--color-violet);
  border-color: var(--color-violet);
  color: var(--color-paper);
}
.btn--ghost { background: transparent; }
.btn--light { background: var(--color-paper); }
.btn--sm { padding: 9px 18px; font-size: var(--text-body-sm); }
.btn__icon { width: 16px; height: 16px; flex: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-body-sm);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 4px 0;
}
.link-arrow svg { width: 14px; height: 14px; flex: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-paper);
  border-bottom: var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  min-height: var(--header-h);
}
.logo {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.logo__accent { color: var(--color-violet); }

.site-header__nav {
  display: none;
  flex: 1;
}
.site-header__list {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.site-header__link {
  font-size: var(--text-body-sm);
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.site-header__link:hover { border-bottom-color: var(--color-carbon); }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.site-header__cta { display: none; }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-paper);
  cursor: pointer;
}
.burger__bars { width: 20px; height: 14px; position: relative; display: block; }
.burger__bars::before,
.burger__bars::after,
.burger__bars span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-carbon);
}
.burger__bars::before { top: 0; }
.burger__bars span { top: 6px; }
.burger__bars::after { bottom: 0; }

.mobile-nav {
  border-top: var(--border);
  background: var(--color-cream);
  display: none;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__list { padding: var(--space-16) 0 var(--space-24); }
.mobile-nav__item { border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: var(--text-subheading);
  font-weight: 500;
  text-decoration: none;
}

/* ---------- hero ---------- */
.hero {
  padding-block: var(--space-40) var(--space-48);
  border-bottom: var(--border);
}
.hero__grid { display: grid; gap: var(--space-32); }
.hero__title {
  font-size: clamp(44px, 12.5vw, 96px);
  margin-bottom: var(--space-24);
}
.hero__lead {
  font-size: var(--text-subheading);
  line-height: 1.32;
  max-width: 46ch;
  margin-bottom: var(--space-24);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--space-32); }
.hero__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hero__icon {
  width: 44px;
  height: 44px;
  border: var(--border);
  border-radius: var(--radius);
}
.hero__iconnote {
  font-size: var(--text-caption);
  letter-spacing: 0.024em;
  text-transform: uppercase;
  color: var(--color-mustard);
  margin-top: 10px;
}
.hero__figure { margin: 0; }
.hero__img {
  width: 100%;
  border: var(--border);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero__caption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  font-size: var(--text-caption);
  letter-spacing: 0.024em;
  text-transform: uppercase;
}
.tag {
  border: var(--border);
  border-radius: var(--radius);
  padding: 4px 10px;
  background: var(--color-lemon);
  font-weight: 500;
}
.tag--lilac { background: var(--color-lilac); }
.tag--paper { background: var(--color-paper); }

/* ---------- spotlight ---------- */
.spotlight {
  background: var(--color-cream);
  border-bottom: var(--border);
  padding-block: var(--space-64);
}
.spotlight__head { max-width: 62ch; margin-bottom: var(--space-32); }
.spotlight__title { font-size: clamp(40px, 10vw, 76px); margin-bottom: var(--space-16); }
.spotlight__lead { font-size: 17px; line-height: 1.5; }
.spotlight__mosaic {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--space-32);
}
.spotlight__frame { margin: 0; }
.spotlight__frame img {
  width: 100%;
  border: var(--border);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.spotlight__frame--wide { grid-column: 1 / -1; }
.spotlight__framecap {
  font-size: var(--text-caption);
  margin-top: 6px;
  color: var(--color-mustard);
}
.spotlight__panel {
  background: var(--color-paper);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-24);
}
.spotlight__specs { display: grid; gap: 0; margin: 0 0 var(--space-24); }
.spotlight__spec {
  display: flex;
  justify-content: space-between;
  gap: var(--space-16);
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  font-size: var(--text-body-sm);
}
.spotlight__spec dt { font-weight: 500; text-transform: uppercase; letter-spacing: 0.036em; }
.spotlight__spec dd { margin: 0; text-align: right; }
.spotlight__note {
  background: var(--color-lemon);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-16);
  font-size: var(--text-body-sm);
  line-height: 1.5;
  margin-bottom: var(--space-24);
}

/* ---------- catalog ---------- */
.catalog { padding-block: var(--space-80); border-bottom: var(--border); }
.catalog__head { margin-bottom: var(--space-32); }
.catalog__title { font-size: clamp(40px, 10vw, 76px); margin-bottom: var(--space-16); }
.catalog__intro { max-width: 56ch; }
.catalog__hint {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.036em;
  color: var(--color-mustard);
  margin-top: var(--space-16);
}
.catalog__rail {
  display: flex;
  gap: var(--space-16);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-24);
  margin-bottom: var(--space-48);
  scrollbar-color: var(--color-carbon) var(--color-fog);
}
.catalog__railitem {
  flex: 0 0 82%;
  scroll-snap-align: start;
  display: flex;
}

.gcard {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-paper);
  overflow: hidden;
}
.gcard--cream { background: var(--color-cream); }
.gcard--lemon { background: var(--color-lemon); }
.gcard--lilac { background: var(--color-lilac); }
.gcard__media {
  position: relative;
  border-bottom: var(--border);
}
.gcard__shot {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.gcard__icon {
  position: absolute;
  left: 12px;
  bottom: -22px;
  width: 56px;
  height: 56px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-paper);
}
.gcard__body {
  padding: var(--space-32) var(--space-24) var(--space-24);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.gcard__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  font-size: 30px;
}
.gcard__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.036em;
}
.gcard__dev { font-weight: 500; }
.gcard__genre { color: var(--color-mustard); }
.gcard__text { font-size: var(--text-body-sm); line-height: 1.55; flex: 1; }
.gcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.gcard__time {
  font-size: var(--text-caption);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.036em;
  border: var(--border);
  border-radius: var(--radius);
  padding: 4px 10px;
  background: var(--color-paper);
}

.catalog__tablewrap {
  border: var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
}
.gtable { width: 100%; border-collapse: collapse; min-width: 520px; }
.gtable caption {
  text-align: left;
  padding: var(--space-16) var(--space-16) 0;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.036em;
  color: var(--color-mustard);
}
.gtable th, .gtable td {
  text-align: left;
  padding: 12px var(--space-16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  font-size: var(--text-body-sm);
  vertical-align: middle;
}
.gtable thead th {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.036em;
  background: var(--color-fog);
  border-bottom: var(--border);
}
.gtable tbody tr:last-child td { border-bottom: 0; }
.gtable th:nth-child(1) { width: 34%; }
.gtable th:nth-child(2) { width: 22%; }
.gtable th:nth-child(3) { width: 26%; }
.gtable th:nth-child(4) { width: 18%; }
.gtable__name { font-weight: 500; }
.gtable__flag {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.036em;
  border: var(--border);
  border-radius: var(--radius);
  padding: 2px 6px;
  background: var(--color-lime);
}

/* ---------- steps ---------- */
.steps {
  background: var(--color-lime);
  border-bottom: var(--border);
  padding-block: var(--space-64);
}
.steps__grid { display: grid; gap: var(--space-32); }
.steps__title { font-size: clamp(38px, 9vw, 72px); margin-bottom: var(--space-16); }
.steps__intro { max-width: 44ch; margin-bottom: var(--space-24); }
.steps__figure { margin: 0; }
.steps__figure img {
  width: 100%;
  border: var(--border);
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.steps__figcap { font-size: var(--text-caption); margin-top: 8px; color: var(--color-mustard); }
.steps__list { display: grid; gap: 0; }
.steps__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-16);
  padding: var(--space-24) 0;
  border-top: var(--border);
}
.steps__item:last-child { border-bottom: var(--border); }
.steps__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 0.8;
  letter-spacing: -0.01em;
}
.steps__itemtitle {
  font-size: var(--text-subheading);
  font-weight: 500;
  margin-bottom: 6px;
}
.steps__text { font-size: var(--text-body-sm); line-height: 1.55; }

/* ---------- stats ---------- */
.stats {
  background-color: var(--color-plum);
  background-image: url("assets/img/bg/band-night.webp");
  background-size: cover;
  background-position: center;
  border-bottom: var(--border);
  color: var(--color-paper);
  padding-block: var(--space-80);
  --focus: var(--color-lemon);
}
.stats__head { max-width: 52ch; margin-bottom: var(--space-48); }
.stats__title { font-size: clamp(38px, 9vw, 72px); margin-bottom: var(--space-16); color: var(--color-lemon); }
.stats__grid { display: grid; gap: var(--space-32); }
.stats__item { border-top: 1px solid rgba(255, 255, 255, 0.5); padding-top: var(--space-16); }
.stats__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 16vw, 115px);
  line-height: 0.8;
  letter-spacing: -0.01em;
  color: var(--color-lemon);
  display: block;
}
.stats__label { font-size: var(--text-body-sm); line-height: 1.45; margin-top: 12px; max-width: 26ch; }
.stats__foot { margin-top: var(--space-40); font-size: var(--text-body-sm); max-width: 60ch; }

/* ---------- reviews ---------- */
.reviews {
  background: var(--color-salmon);
  border-bottom: var(--border);
  padding-block: var(--space-64);
}
.reviews__title { font-size: clamp(38px, 9vw, 72px); margin-bottom: var(--space-32); }
.reviews__grid { display: grid; gap: var(--space-24); }
.reviews__card {
  background: var(--color-paper);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}
.reviews__quote { font-size: 17px; line-height: 1.5; }
.reviews__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviews__avatar {
  width: 44px;
  height: 44px;
  flex: none;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-lemon);
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: var(--text-body-sm);
  letter-spacing: 0.036em;
}
.reviews__name { font-weight: 500; font-size: var(--text-body-sm); }
.reviews__role { font-size: var(--text-caption); color: var(--color-mustard); }

/* ---------- subscribe ---------- */
.subscribe {
  background-color: var(--color-forest);
  background-image: url("assets/img/bg/band-form.webp");
  background-size: cover;
  background-position: center;
  border-bottom: var(--border);
  color: var(--color-paper);
  padding-block: var(--space-64);
  --focus: var(--color-lemon);
}
.subscribe__grid { display: grid; gap: var(--space-32); }
.subscribe__title { font-size: clamp(38px, 9vw, 72px); margin-bottom: var(--space-16); color: var(--color-lemon); }
.subscribe__lead { font-size: 17px; line-height: 1.5; max-width: 42ch; }
.subscribe__small { font-size: var(--text-caption); line-height: 1.5; margin-top: var(--space-16); }
.subscribe__small a { color: var(--color-lemon); }
.subscribe__form {
  background: var(--color-paper);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-24);
  color: var(--color-carbon);
  --focus: var(--color-violet);
}
.subscribe__field { margin-bottom: var(--space-16); }
.subscribe__label {
  display: block;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.036em;
  font-weight: 500;
  margin-bottom: 6px;
}
.subscribe__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-body);
  padding: 12px var(--space-16);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-paper);
  color: var(--color-carbon);
}
.subscribe__input:focus { border-color: var(--color-violet); border-width: 2px; padding: 11px 15px; }
.subscribe__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--text-body-sm);
  line-height: 1.45;
  margin-bottom: var(--space-24);
}
.subscribe__checkbox { width: 20px; height: 20px; flex: none; margin: 2px 0 0; accent-color: var(--color-violet); }
.subscribe__policy { color: var(--color-plum); text-underline-offset: 2px; }
.subscribe__success {
  display: none;
  margin-top: var(--space-16);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-lime);
  padding: 12px var(--space-16);
  font-size: var(--text-body-sm);
}
.subscribe__success.is-visible { display: block; }

/* ---------- faq ---------- */
.faq { padding-block: var(--space-80); border-bottom: var(--border); }
.faq__grid { display: grid; gap: var(--space-32); }
.faq__title { font-size: clamp(38px, 9vw, 72px); margin-bottom: var(--space-16); }
.faq__aside p { font-size: var(--text-body-sm); max-width: 34ch; }
.faq__list { border-top: var(--border); }
.faq__item { border-bottom: var(--border); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  background: transparent;
  border: 0;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: var(--text-subheading);
  font-weight: 500;
  line-height: 1.28;
  text-align: left;
  color: var(--color-carbon);
  cursor: pointer;
}
.faq__sign { width: 18px; height: 18px; flex: none; transition: transform 0.2s ease; }
.faq__item--open .faq__sign { transform: rotate(45deg); }
.faq__answer { display: none; padding-bottom: 20px; font-size: var(--text-body-sm); line-height: 1.6; max-width: 68ch; }
.faq__item--open .faq__answer { display: block; }

/* ---------- model ---------- */
.model { background: var(--color-fog); border-bottom: var(--border); padding-block: var(--space-64); }
.model__title { font-size: clamp(38px, 9vw, 72px); margin-bottom: var(--space-16); }
.model__lead { max-width: 58ch; font-size: 17px; line-height: 1.5; margin-bottom: var(--space-32); }
.model__cards { display: grid; gap: var(--space-16); margin-bottom: var(--space-32); }
.model__card {
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.model__card--lemon { background: var(--color-lemon); }
.model__card--lilac { background: var(--color-lilac); }
.model__card--salmon { background: var(--color-salmon); }
.model__icon { width: 28px; height: 28px; }
.model__cardtitle {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  font-size: 34px;
}
.model__cardtext { font-size: var(--text-body-sm); line-height: 1.55; }
.model__figure { margin: 0; }
.model__figure img {
  width: 100%;
  border: var(--border);
  border-radius: var(--radius);
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
.model__figcap {
  font-size: var(--text-caption);
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--color-mustard);
}

/* ---------- legal pages ---------- */
.legal { padding-block: var(--space-48) var(--space-80); }
.legal__title { font-size: clamp(40px, 10vw, 76px); margin-bottom: var(--space-16); }
.legal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: var(--space-32);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.036em;
}
.legal__body { max-width: 74ch; }
.legal__body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  font-size: 34px;
  margin-top: var(--space-40);
  margin-bottom: var(--space-16);
}
.legal__body h3 { font-size: var(--text-subheading); font-weight: 500; margin-top: var(--space-24); margin-bottom: 8px; }
.legal__body p { margin-bottom: var(--space-16); line-height: 1.6; }
.legal__body ul { margin-bottom: var(--space-16); display: grid; gap: 8px; }
.legal__body li { position: relative; padding-left: 20px; line-height: 1.55; }
.legal__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-lime);
}
.legal__box {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-cream);
  padding: var(--space-24);
  margin-bottom: var(--space-24);
}

/* ---------- footer ---------- */
.site-footer { background: var(--color-ash); color: var(--color-paper); padding-block: var(--space-48) var(--space-24); --focus: var(--color-lemon); }
.site-footer__grid { display: grid; gap: var(--space-32); }
.site-footer__logo { font-size: 28px; margin-bottom: 12px; display: inline-block; }
.site-footer__about { font-size: var(--text-body-sm); line-height: 1.55; max-width: 34ch; color: #d9d9d9; }
.site-footer__title {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.036em;
  font-weight: 500;
  margin-bottom: var(--space-16);
  color: var(--color-lemon);
}
.site-footer__list { display: grid; gap: 10px; }
.site-footer__link { font-size: var(--text-body-sm); text-decoration: none; color: var(--color-paper); }
.site-footer__link:hover { text-decoration: underline; text-underline-offset: 4px; }
.site-footer__mail { font-size: var(--text-body-sm); color: var(--color-paper); }
.site-footer__note { font-size: var(--text-caption); color: var(--color-concrete); margin-top: 10px; line-height: 1.5; }
.site-footer__bottom {
  margin-top: var(--space-40);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: var(--text-caption);
  line-height: 1.5;
  color: var(--color-concrete);
  display: grid;
  gap: 8px;
}

/* ---------- cookie + to top ---------- */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--color-lemon);
  border-top: var(--border);
}
.cookie__inner {
  display: grid;
  gap: 12px;
  padding-block: var(--space-16);
}
.cookie__text { font-size: var(--text-body-sm); line-height: 1.45; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-paper);
  cursor: pointer;
}
.to-top.is-visible { display: flex; }
.to-top svg { width: 18px; height: 18px; }

/* ---------- breakpoints ---------- */
@media (min-width: 600px) {
  .cookie__inner { grid-template-columns: 1fr auto; align-items: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-40); }
  .hero__actions { gap: var(--space-16); }
}

@media (min-width: 768px) {
  .container { padding-inline: 24px; }
  .hero { padding-block: var(--space-64) var(--space-80); }
  .spotlight__mosaic { grid-template-columns: repeat(3, 1fr); }
  .spotlight__frame--wide { grid-column: span 3; }
  .catalog__railitem { flex: 0 0 52%; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__card--third { grid-column: span 2; }
  .model__cards { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .steps__item { grid-template-columns: 88px 1fr; }
  .steps__num { font-size: 76px; }
}

@media (min-width: 1024px) {
  .burger { display: none; }
  .mobile-nav { display: none !important; }
  .site-header__nav { display: block; }
  .site-header__cta { display: inline-flex; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; gap: var(--space-48); }
  .hero__title { font-size: clamp(64px, 6.6vw, 96px); }
  .spotlight { padding-block: var(--space-80); }
  .spotlight__layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--space-40); align-items: start; }
  .catalog__railitem { flex: 0 0 31.5%; }
  .steps__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: var(--space-48); }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .reviews__card--third { grid-column: auto; }
  .reviews__card--offset { margin-top: var(--space-32); }
  .subscribe__grid { grid-template-columns: 1fr 1fr; gap: var(--space-48); align-items: center; }
  .faq__grid { grid-template-columns: 0.8fr 1.2fr; gap: var(--space-48); }
  .model { padding-block: var(--space-96); }
  .legal__body { font-size: 17px; }
}

@media (min-width: 1280px) {
  .site-header__list { gap: 26px; }
  .hero { padding-block: var(--space-80) var(--space-96); }
}

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