/* АКСИТ — static site. Tokens from design-system.md. No VolPrint. */
:root {
  --navy: #102a38;
  --navy-ink: #0e2430;
  --coral: #e85a4f;
  --coral-hover: #d24c42;
  --coral-fg: #fff;
  --paper: #fff;
  --wash: #f2f3f5;
  --ink: #1a1a1a;
  --muted: #858585;
  --rule: #ddd;
  --link: #2a9ad4;
  --score: #1baf5d;
  --radius: 2px;
  --content: 1280px;
  --topbar: 50px;
  --header: 90px;
  --t: 200ms;
  --mega-t: 450ms; /* ref mega opacity fade ~0.8s; keep snappier */
  --font: "PT Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--coral);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
}
.skip:focus { left: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
}

/* Topbar */
.topbar {
  height: var(--topbar);
  background: var(--wash);
  display: flex;
  align-items: center;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
  font-size: 14px;
}
.topbar a { color: var(--navy-ink); }
.topbar__icons { display: flex; gap: 12px; margin-left: auto; align-items: center; }
.topbar__icons a {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--navy-ink);
}
.topbar__mail-text { display: inline; }
@media (max-width: 40em) {
  .topbar__mail-text { display: none; }
}

/* Header */
.header {
  height: var(--header);
  position: relative;
  z-index: 40;
  background: transparent;
}
.header--white {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.header__inner {
  height: 100%;
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #fff;
}
.header--white .logo { color: var(--navy-ink); }
.logo__mark { width: 40px; height: 40px; object-fit: contain; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo__tag {
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
  color: var(--coral);
}

.nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 4px;
}
.nav__item { position: relative; }
.nav__link,
.nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.header--white .nav__link,
.header--white .nav__btn { color: var(--navy-ink); }
.nav__link[aria-current="page"],
.nav__btn[aria-current="page"] { color: var(--coral); }

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--mega-t), visibility var(--mega-t);
  z-index: 50;
}
.mega--wide {
  min-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nav__item:hover .mega,
.nav__item:focus-within .mega {
  opacity: 1;
  visibility: visible;
}
.mega__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.mega a {
  display: block;
  padding: 6px 0;
  color: var(--navy-ink);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  transition: color var(--t);
}
.mega a:hover { color: var(--coral); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.city {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.header--white .city { color: var(--navy-ink); }
.city__pin { color: var(--coral); }

#menu-btn {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.header--white #menu-btn { color: var(--navy-ink); }
.header__brand-mobile { margin-left: auto; }
.header__brand-desktop { display: none; }
@media (min-width: 80em) {
  .header__brand-desktop { display: flex !important; }
}
@media (min-width: 80em) {
  .nav { display: flex; }
  .city { display: inline-flex; }
  #menu-btn, .header__brand-mobile { display: none; }
  .header__actions { margin-left: 0; }
}

/* Mobile drawer */
#menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: #fff;
  z-index: 90;
  padding: 24px;
  overflow: auto;
  transform: translateX(-100%);
  transition: transform var(--t);
}
#menu.is-open { transform: translateX(0); }
#menu[hidden] { display: none; }
.menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.menu__close {
  width: 40px; height: 40px;
  border: 0; background: transparent; color: #fff; cursor: pointer; font-size: 24px;
}
.menu__list a, .menu__list summary {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  cursor: pointer;
}
.menu__list details a {
  text-transform: none;
  padding-left: 12px;
  font-size: 14px;
  border-bottom-color: rgba(255,255,255,.06);
}
body.menu-lock { overflow: hidden; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
  text-align: center;
}
.btn--coral {
  background: var(--coral);
  color: var(--coral-fg);
  border-color: var(--coral);
}
.btn--coral:hover { background: var(--coral-hover); border-color: var(--coral-hover); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.header--white .btn--ghost,
.hero--light .btn--ghost {
  color: var(--navy-ink);
  border-color: var(--navy-ink);
}
.btn--sm { padding: 6px 14px; font-size: 13px; }
.btn--block { width: 100%; }
.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coral);
  font-size: 14px;
  margin-top: 12px;
}
.more::after {
  content: "→";
  transition: margin-left .45s ease;
}
.more:hover::after { margin-left: 6px; }

/* Heroes */
.hero {
  position: relative;
  color: #fff;
  background: var(--navy);
}
.hero--home {
  padding: 80px 0 40px;
  margin-top: calc(-1 * var(--header));
  padding-top: calc(var(--header) + 80px);
}
.page-dark { background: var(--navy); }
.page-dark .topbar { background: rgba(0,0,0,.35); }
.page-dark .topbar a,
.page-dark .topbar__icons a { color: #fff; }
.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 64em) {
  .hero__grid { grid-template-columns: 1fr 1.1fr; }
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__rule {
  border-left: 3px solid var(--coral);
  padding-left: 16px;
  max-width: 36em;
  margin-bottom: 28px;
  font-size: 16px;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__media {
  position: relative;
  border: 1px solid var(--coral);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a1a24;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  max-width: 12em;
}
.hero__play {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid; place-items: center;
  background: rgba(0,0,0,.35);
  color: #fff;
  transition: background var(--t), transform var(--t);
}
.hero__media:hover .hero__play {
  background: rgba(232,90,79,.9);
  transform: scale(1.05);
}
.hero__extra {
  display: inline-block;
  margin-top: 12px;
  color: var(--link);
  text-decoration: underline;
  font-size: 14px;
}
.hero--cat {
  padding: 100px 0 80px;
  margin-top: calc(-1 * var(--header));
  padding-top: calc(var(--header) + 60px);
  background:
    linear-gradient(90deg, var(--navy) 45%, rgba(16,42,56,.85) 70%, rgba(16,42,56,.4)),
    var(--navy) url("../assets/images/hero-catalog-parts.png") right center / cover no-repeat;
}
.hero--cat .wrap { max-width: 640px; }
.hero--light {
  background: var(--paper);
  color: var(--navy-ink);
  padding: 48px 0 32px;
}
.hero--light .hero__rule { color: var(--ink); }

.strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
}
@media (min-width: 40em) { .strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 64em) { .strip { grid-template-columns: repeat(6, 1fr); gap: 16px; } }
.strip__item {
  aspect-ratio: 1;
  overflow: hidden;
  background: transparent;
  display: grid;
  place-items: center;
}
.strip__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Sections */
.section { padding: 72px 0; }
.section--wash { background: var(--wash); }
.section--navy {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}
.section--black { background: #0a0a0a; color: #fff; }
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.block-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--navy-ink);
  line-height: 1.2;
}
.section--navy .block-title,
.section--black .block-title { color: #fff; }
.section--black .block-title { color: #9aa4ad; }

/* Why */
.why {
  display: grid;
  gap: 40px;
  padding: 24px 0 8px;
}
@media (min-width: 50em) { .why { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.why__item { padding-bottom: 28px; border-bottom: 1px solid var(--rule); }
.why__icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  color: var(--coral);
}
.why__item h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-ink);
  margin-bottom: 12px;
}
.why__item p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* Numbers */
.nums {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 50em) { .nums { grid-template-columns: repeat(5, 1fr); } }
.nums__item {
  position: relative;
  padding-right: 16px;
}
@media (min-width: 50em) {
  .nums__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0; top: 10%;
    width: 1px; height: 80%;
    background: var(--coral);
    transform: skewX(-15deg);
  }
}
.nums__val {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
}
.nums__label { font-size: 14px; opacity: .85; margin-top: 6px; }

/* Cards grids */
.grid-3 {
  display: grid;
  gap: 24px;
}
@media (min-width: 40em) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-mats {
  display: grid;
  gap: 24px;
}
@media (min-width: 40em) { .grid-mats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .grid-mats { grid-template-columns: repeat(3, 1fr); } }

.card { display: flex; flex-direction: column; }
.card--svc,
.card--mat,
.teaser.card {
  border-bottom: 2px solid var(--rule);
  transition: border-color .45s ease;
}
.card--svc:hover,
.card--mat:hover,
.teaser.card:hover { border-bottom-color: var(--coral); }
.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wash);
  margin-bottom: 16px;
}
.card--mat .card__media { aspect-ratio: 1; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-ink);
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 15px; flex: 1; }
.card .more { border-top: 1px solid var(--rule); padding-top: 12px; margin-top: 16px; }

/* Calc band */
.band {
  background: var(--coral);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.band h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 10px;
}
.band p { opacity: .95; margin-bottom: 20px; }
.band .btn--ghost { border-color: #fff; color: #fff; }
.band .btn--navy {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.band .btn--navy:hover { filter: brightness(1.1); }

/* Portfolio cases */
.well { background: #000; padding: 56px 0; color: #fff; }
.well .block-title { margin-bottom: 24px; color: #fff; }
.well .chips { margin-top: 8px; }
.case {
  background: #fff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid transparent;
  transition: border-color .45s ease;
}
.case:hover { border-bottom-color: var(--coral); }
.case__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.case__media img { width: 100%; height: 100%; object-fit: cover; }
.case__body { padding: 20px; }
.case h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-ink);
}
.case ul { margin-bottom: 12px; }
.case li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  margin-bottom: 4px;
}
.case li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* Reviews */
.revs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.rail-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.rail-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--rule);
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.rail-dots button.is-on {
  background: var(--coral);
  transform: scale(1.15);
}
.rev {
  flex: 0 0 min(420px, 85vw);
  scroll-snap-align: start;
  background: #fff;
  padding: 28px 24px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  min-height: 280px;
}
.rev__from {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rev__lead { font-weight: 700; margin-bottom: 8px; }
.rev__text { font-size: 15px; color: #333; margin-bottom: 16px; }
.rev__meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted); }
.rev__score {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--score);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
/* /reviews/: full stacked list, not the home rail */
.revs--stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  overflow: visible;
  scroll-snap-type: none;
  max-width: 720px;
}
.revs--stack .rev {
  flex: none;
  width: 100%;
}
.hero--light .hero__media {
  border-color: var(--coral);
  background: var(--wash);
}

/* SEO */
.seo { max-width: 900px; }
.seo h2 { margin-bottom: 20px; }
.seo p { margin-bottom: 16px; color: #333; }
.seo h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-ink);
  margin: 28px 0 12px;
}
.seo ol, .seo ul { padding-left: 1.2em; list-style: disc; margin-bottom: 16px; }
.seo li { margin-bottom: 8px; }

/* Partners — discrete autoplay track (ref Swiper 5s), not continuous marquee */
.partners { overflow: hidden; }
.partners__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: center;
  opacity: .55;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.partners__row::-webkit-scrollbar { display: none; }
.partners__mark {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 8rem;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 12px 20px;
  background: #fff;
}

/* Teasers */
.teaser h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-ink);
  margin: 12px 0 8px;
}
.teaser__tags { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.teaser__date { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.teaser .card__media { aspect-ratio: 16 / 10; }

/* Footer */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 30px;
}
.footer__top {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #38444a;
}
@media (min-width: 50em) {
  .footer__top { grid-template-columns: 1.1fr 1.4fr; }
}
.footer__contact a { color: #fff; }
.footer__phone { font-size: 28px; font-weight: 500; display: block; margin-bottom: 8px; }
.footer__meta { font-size: 14px; opacity: .9; margin: 4px 0; }
.footer__menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.footer__menus a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: #fff;
}
.footer__menus a:hover { color: var(--coral); }
.footer__social { margin-top: 16px; }
.footer__bottom {
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 12px;
}
.footer__legal a { color: rgba(255,255,255,.7); }
.footer__legal a:hover { color: #fff; text-decoration: underline; }

/* Quote dialog — opacity role ≈ Fancybox 0.25s */
#quote {
  border: 0;
  padding: 0;
  max-width: 560px;
  width: calc(100% - 32px);
  background: #fff;
}
#quote[open] {
  animation: pacf-dialog-in .22s ease;
}
#quote::backdrop {
  background: rgba(0,0,0,.55);
  animation: pacf-backdrop-in .22s ease;
}
@keyframes pacf-dialog-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes pacf-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.quote__box { padding: 32px; }
.quote__box h2 {
  font-size: 24px;
  color: var(--navy-ink);
  margin-bottom: 20px;
  text-align: center;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: #fff;
}
.form-field textarea { min-height: 90px; resize: vertical; }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  margin: 16px 0;
}
.form-check a { color: var(--link); }
.quote__close {
  position: absolute;
  top: 12px; right: 12px;
  border: 0; background: transparent;
  font-size: 24px; cursor: pointer; color: var(--muted);
}
.quote__fallback { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: center; }
.quote__fallback a { color: var(--link); }

/* Cookie — ref fadeOut ~200ms */
.cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: min(500px, calc(100% - 48px));
  background: #fff;
  padding: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  z-index: 80;
  font-size: 15px;
  transition: opacity .2s ease, visibility .2s ease;
}
.cookie.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie a { color: var(--link); }
.cookie .btn { margin-top: 12px; }

/* FAB */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.fab:hover { background: var(--coral); }

/* Form block (inline) */
.form.block { padding: 64px 0; }
.form .block-title { margin-bottom: 24px; }
.form-grid {
  display: grid;
  gap: 14px;
  max-width: 720px;
}
@media (min-width: 40em) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .form-field--full { grid-column: 1 / -1; }
}

/* Prices */
.prices {
  display: grid;
  gap: 16px;
}
@media (min-width: 50em) { .prices { grid-template-columns: repeat(3, 1fr); } }
.price {
  border: 1px solid var(--rule);
  padding: 20px;
  background: #fff;
}
.price.is-lead { border-color: var(--coral); box-shadow: inset 3px 0 0 var(--coral); }
.price h3 { font-size: 18px; margin-bottom: 12px; color: var(--navy-ink); }
.price li { font-size: 14px; margin-bottom: 6px; padding-left: 12px; position: relative; }
.price li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
}

/* FAQ */
.faq { padding: 8px 0 24px; }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__btn {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq__btn::after { content: "+"; color: var(--coral); font-size: 20px; }
.faq__btn[aria-expanded="true"]::after { content: "−"; }
.faq__panel { padding: 0 0 16px; color: #444; font-size: 15px; }
.faq__panel[hidden] { display: none; }

/* Chips / tabs */
.chips, .tabs, .reach__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.chips a, .tabs button, .reach__tabs button {
  padding: 8px 14px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--navy-ink);
  font-size: 13px;
  cursor: pointer;
  border-radius: var(--radius);
}
.chips a.is-on, .tabs button.is-on, .tabs button[aria-selected="true"],
.reach__tabs button.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Calc widget */
.calc { padding: 32px 0 48px; }
.calc h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-ink);
  margin: 20px 0 12px;
}
.calc__panel[hidden] { display: none; }
.shapes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}
@media (min-width: 40em) { .shapes { grid-template-columns: repeat(4, 1fr); } }
.shapes label {
  border: 1px solid var(--rule);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--navy-ink);
}
.shapes label:has(input:checked) {
  border-color: var(--coral);
  box-shadow: inset 0 0 0 1px var(--coral);
}
.shapes input { margin-bottom: 4px; }
.calc__dims {
  display: grid;
  gap: 12px;
}
@media (min-width: 40em) { .calc__dims { grid-template-columns: repeat(4, 1fr); } }
.calc__out {
  margin-top: 20px;
  padding: 16px;
  background: var(--wash);
  display: none;
}
.calc__out.is-on { display: block; }
.calc__hint { font-size: 14px; color: var(--muted); margin: 8px 0 16px; }
.calc__note { font-size: 14px; color: var(--muted); margin-top: 20px; max-width: 70ch; }

/* Contacts */
.reach { padding: 48px 0; }
.reach h1 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy-ink);
  margin-bottom: 24px;
  font-weight: 500;
}
.reach__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 50em) {
  .reach__grid { grid-template-columns: 1.6fr 1fr; }
}
.map {
  min-height: 360px;
  background: var(--wash);
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 24px;
  text-align: center;
}
.reach__card {
  padding: 24px;
  border: 1px solid var(--rule);
  background: #fff;
}
.reach__card h2 { font-size: 22px; margin-bottom: 12px; color: var(--navy-ink); }
.reach__card p { margin-bottom: 8px; }
.reach__card a { color: var(--navy-ink); }
.reach__card a:hover { color: var(--coral); }

/* Prose / legal / about */
.prose {
  max-width: 820px;
  padding: 48px 0;
}
.prose h1 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy-ink);
  margin-bottom: 24px;
  font-weight: 500;
}
.prose h2 {
  font-size: 22px;
  margin: 28px 0 12px;
  color: var(--navy-ink);
  font-weight: 500;
}
.prose h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  color: var(--navy-ink);
  font-weight: 500;
}
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { padding-left: 1.2em; margin-bottom: 14px; list-style: disc; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--link); }

/* Info split */
.info {
  display: grid;
  gap: 32px;
  padding: 48px 0;
  align-items: center;
}
@media (min-width: 50em) { .info { grid-template-columns: 1fr 1fr; } }
.info h2 { font-size: 28px; color: var(--navy-ink); margin-bottom: 16px; font-weight: 500; }
.info__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--wash); }
.info__media img { width: 100%; height: 100%; object-fit: cover; }

.studio { padding: 72px 0; min-height: 360px; }
.studio p { max-width: 80ch; color: #333; line-height: 1.6; font-size: 17px; }

/* Catalog dark promo */
.promo {
  position: relative;
  color: #fff;
  background: var(--navy);
  padding: 72px 0 64px;
  margin-top: calc(-1 * var(--header));
  padding-top: calc(var(--header) + 56px);
  overflow: hidden;
}
.promo h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 18ch;
}
.promo__rule {
  border-left: 3px solid var(--coral);
  padding-left: 16px;
  max-width: 40em;
  margin-bottom: 28px;
  font-size: 16px;
}
.promo__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.promo__aside {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 520px);
  opacity: .35;
  pointer-events: none;
}
.promo__aside img { width: 100%; height: auto; }
@media (max-width: 50em) {
  .promo__aside { display: none; }
}

.general {
  padding: 56px 0;
  background: #fff;
}
.general h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy-ink);
  font-weight: 500;
  margin-bottom: 20px;
}
.general p { margin-bottom: 14px; max-width: 80ch; color: #333; }
.general ol, .general ul {
  padding-left: 1.2em;
  margin-bottom: 14px;
  list-style: decimal;
  max-width: 80ch;
}
.general li { margin-bottom: 8px; color: #333; }

.hero--light {
  background: var(--wash);
  color: var(--navy-ink);
  padding: 48px 0 40px;
}
.hero--light .hero__rule { border-left-color: var(--coral); }

.slides {
  display: grid;
  gap: 24px;
}
@media (min-width: 50em) {
  .slides { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64em) {
  .slides { grid-template-columns: repeat(3, 1fr); }
}
.slide {
  background: #fff;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.slide__media { aspect-ratio: 16 / 9; background: var(--wash); min-height: 220px; }
.slide__media img { width: 100%; height: 100%; object-fit: cover; }
.slide__body { padding: 20px; }
.slide h3 { font-size: 20px; margin-bottom: 10px; color: var(--navy-ink); font-weight: 500; }
.slide p { font-size: 15px; color: #444; }

.prices-intro {
  padding: 48px 0 24px;
  max-width: 70ch;
}
.prices-intro p { margin-bottom: 12px; color: #333; }
.prices-block { padding: 24px 0 40px; }
.prices-block h2 {
  font-size: 24px;
  color: var(--navy-ink);
  margin-bottom: 20px;
  font-weight: 500;
}
.prices-block .dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.prices-block .dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rule);
}
.prices-block .dots span.is-on { background: var(--coral); }

.qa { overflow-x: auto; }
.qa table { width: 100%; border-collapse: collapse; min-width: 480px; }
.qa th, .qa td {
  border: 1px solid var(--rule);
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}
.qa th { background: var(--wash); }

.toc { margin: 0 0 24px; padding: 16px; background: var(--wash); }
.toc a { color: var(--link); display: block; padding: 4px 0; }

.specs { margin: 16px 0 24px; }
.specs li { padding-left: 14px; position: relative; margin-bottom: 6px; }
.specs li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
}

.gallery {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 40em) { .gallery { grid-template-columns: 2fr 1fr; } }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; background: var(--wash); }

.rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; }
.rail .price { flex: 0 0 min(280px, 80vw); scroll-snap-align: start; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .revs,
  .rail,
  .partners__row {
    scroll-snap-type: none;
  }
  .more:hover::after { margin-left: 0; }
  .hero__media:hover .hero__play { transform: none; }
}
