@font-face {
  font-family: "Inter Local";
  src: local("Inter"), local("Arial");
  font-display: swap;
}

:root {
  --ink: #15201e;
  --muted: #66716e;
  --paper: #ffffff;
  --surface: #ffffff;
  --line: #cad1cc;
  --line-strong: #8f9d97;
  --petrol: #0f6070;
  --petrol-dark: #0b4854;
  --blue-soft: #dfeaf4;
  --olive: #657548;
  --olive-soft: #e5e9da;
  --rust: #a75134;
  --rust-soft: #f3dfd7;
  --yellow: #f0bd4e;
  --danger: #9e352d;
  --shadow: 0 18px 46px rgba(21, 32, 30, 0.10);
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 30px;
  --wrap: min(100% - 64px, 1280px);
  --header: 76px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter Local", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
::selection { background: var(--yellow); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.container { width: var(--wrap); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 144px) 0; }
.section--compact { padding: clamp(48px, 6vw, 92px) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--surface { background: var(--surface); }
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--petrol);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section--dark .eyebrow { color: #89bac3; }
.display, h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, h4 { font-weight: 760; letter-spacing: -.045em; line-height: .98; }
h1 { margin-bottom: 26px; font-size: clamp(52px, 7.5vw, 118px); }
h2 { margin-bottom: 22px; font-size: clamp(42px, 5.4vw, 78px); }
h3 { margin-bottom: 14px; font-size: clamp(25px, 3vw, 42px); }
h4 { font-size: 20px; line-height: 1.15; }
.lead { max-width: 780px; color: var(--muted); font-size: clamp(19px, 2vw, 28px); line-height: 1.35; }
.section--dark .lead { color: #b8c2be; }
.copy { max-width: 680px; color: var(--muted); font-size: 18px; }
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82em;
  letter-spacing: .04em;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--petrol);
  border-radius: 12px;
  background: var(--petrol);
  color: white;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { background: var(--petrol-dark); border-color: var(--petrol-dark); transform: translateY(-1px); }
.button:focus-visible, .icon-button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.button--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button--ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }
.button--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button--light:hover { background: white; color: var(--ink); border-color: white; }
.button--text { min-height: 0; padding: 0; background: transparent; color: var(--petrol); border: 0; }
.button--text:hover { background: transparent; color: var(--petrol-dark); transform: none; }
.button--wide { width: 100%; }
.button[disabled] { opacity: .5; pointer-events: none; }
.arrow { font-size: 1.2em; line-height: 1; transition: transform .2s ease; }
a:hover .arrow, button:hover .arrow { transform: translateX(4px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { width: var(--wrap); height: 100%; margin: auto; display: flex; align-items: center; gap: 28px; }
.logo { width: clamp(178px, 17vw, 250px); flex: 0 0 auto; }
.logo img, .logo svg { width: 100%; height: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); margin-left: auto; }
.main-nav a { position: relative; font-size: 14px; font-weight: 720; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--petrol); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.header-phone { white-space: nowrap; font-size: 14px; font-weight: 800; text-decoration: none; }
.cart-trigger { position: relative; display: inline-flex; gap: 8px; align-items: center; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; padding: 9px 13px; cursor: pointer; font-weight: 750; }
.cart-count { min-width: 20px; height: 20px; display: grid; place-items: center; padding: 0 5px; background: var(--ink); color: white; border-radius: 999px; font-size: 11px; }
.menu-button { display: none; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line-strong); border-radius: 10px; background: transparent; cursor: pointer; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; width: 20px; height: 2px; display: block; background: var(--ink); transition: transform .2s ease; }
.menu-button span { margin: 5px 0; }

.mini-cart {
  position: fixed;
  z-index: 110;
  top: calc(var(--header) + 12px);
  right: max(20px, calc((100vw - 1440px) / 2));
  width: min(410px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - var(--header) - 32px));
  overflow: auto;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  transform-origin: top right;
  animation: cart-in .18s ease both;
}
@keyframes cart-in { from { opacity: 0; transform: translateY(-6px) scale(.98); } }
.mini-cart__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.mini-cart__head h2 { margin: 0; font-size: 24px; }
.icon-button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.mini-cart__list { display: grid; gap: 12px; }
.mini-cart__item { display: grid; grid-template-columns: 66px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); }
.mini-cart__item img { width: 66px; aspect-ratio: 1; object-fit: contain; border-radius: 9px; background: #fff; }
.mini-cart__item strong { display: block; font-size: 14px; line-height: 1.2; }
.mini-cart__item small { color: var(--muted); }
.mini-cart__total { display: flex; justify-content: space-between; margin: 18px 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: 18px; font-weight: 800; }
.mini-cart__empty { padding: 26px 4px; color: var(--muted); }

.hero { min-height: calc(100svh - var(--header)); display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); border-bottom: 1px solid var(--line); }
.hero__content { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(42px, 6vw, 100px) clamp(28px, 5vw, 84px); }
.hero__title { max-width: 8.5ch; font-size: clamp(56px, 7.7vw, 120px); }
.hero__bottom { max-width: 680px; }
.hero__media { position: relative; min-height: 540px; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,32,30,.08), transparent 36%); pointer-events: none; }
.hero__stamp { position: absolute; right: 28px; bottom: 28px; width: 124px; aspect-ratio: 1; display: grid; place-items: center; padding: 16px; background: var(--yellow); color: var(--ink); border-radius: 50%; font-size: 12px; font-weight: 850; line-height: 1.15; text-align: center; text-transform: uppercase; transform: rotate(7deg); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta span::before { content: ""; width: 7px; height: 7px; background: var(--olive); border-radius: 50%; }

.route-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.route-card { position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 4vw, 56px); overflow: hidden; background: var(--surface); text-decoration: none; }
.route-card:first-child { grid-row: span 2; min-height: 680px; }
.route-card__index { color: var(--petrol); font: 700 13px ui-monospace, monospace; letter-spacing: .08em; }
.route-card h3 { max-width: 12ch; margin-bottom: 16px; font-size: clamp(32px, 4.5vw, 62px); }
.route-card p { max-width: 520px; margin: 0; color: var(--muted); font-size: 18px; }
.route-card__link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--petrol); font-weight: 800; }
.route-card__mark { position: absolute; top: -50px; right: -40px; width: 230px; aspect-ratio: 1; border: 42px solid var(--olive-soft); border-radius: 50%; opacity: .75; transition: transform .35s ease; }
.route-card:hover .route-card__mark { transform: rotate(24deg) scale(1.05); }
.route-card--sport .route-card__mark { border-color: var(--blue-soft); border-radius: 40% 60% 55% 45%; }
.route-card--business .route-card__mark { border-color: var(--rust-soft); border-radius: 16px; transform: rotate(13deg); }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: clamp(34px, 5vw, 72px); }
.section-head > div:first-child { max-width: 960px; }
.section-head__aside { max-width: 290px; color: var(--muted); text-align: right; }
.section-head h2 { margin-bottom: 0; }

.product-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 410px); gap: 18px; overflow-x: auto; padding: 0 max(32px, calc((100vw - 1280px) / 2)) 22px; scroll-snap-type: x mandatory; scrollbar-color: var(--line-strong) transparent; }
.product-card { position: relative; min-height: 610px; display: flex; flex-direction: column; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m); scroll-snap-align: start; }
.product-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #fff; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: opacity .2s ease; }
.product-card:hover .product-card__media img { opacity: .94; }
.product-card__badge { position: absolute; top: 14px; left: 14px; padding: 7px 10px; background: var(--surface); border-radius: 999px; font-size: 12px; font-weight: 800; }
.product-card__body { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.product-card__category { margin-bottom: 13px; color: var(--petrol); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.product-card h3 { min-height: 2em; font-size: 30px; }
.product-card p { color: var(--muted); }
.product-card__price { margin-top: auto; padding-top: 20px; font-size: 22px; font-weight: 800; }
.product-card__actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: 16px; }
.product-card__actions .button { padding-inline: 16px; }
.product-card__more { width: 50px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 12px; text-decoration: none; }

.production-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(34px, 6vw, 96px); align-items: start; }
.production-photo { position: sticky; top: calc(var(--header) + 24px); min-height: 680px; overflow: hidden; border-radius: 0 var(--radius-l) var(--radius-l) 0; }
.production-photo img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; }
.process-list { counter-reset: process; border-top: 1px solid #53605c; }
.process-item { counter-increment: process; display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid #53605c; }
.process-item::before { content: "0" counter(process); color: #89bac3; font: 700 13px ui-monospace, monospace; }
.process-item h3 { margin-bottom: 9px; font-size: 26px; }
.process-item p { margin: 0; color: #b8c2be; }

.sport-showcase { position: relative; overflow: hidden; padding: clamp(78px, 9vw, 136px) 0 clamp(44px, 6vw, 84px); background: #dfe8ed; }
.sport-showcase__intro { position: relative; z-index: 2; }
.sport-showcase__intro h2 { max-width: 12ch; margin-bottom: 24px; }
.sport-showcase__intro .lead { max-width: 670px; }
.sport-showcase__stage { display: grid; grid-template-columns: minmax(190px, .7fr) minmax(430px, 1.75fr) minmax(280px, .9fr); gap: clamp(20px, 3vw, 48px); align-items: end; min-height: 650px; margin-top: -74px; }
.sport-showcase__facts { position: relative; z-index: 2; align-self: end; padding-bottom: 52px; }
.sport-showcase__facts > div { padding: 18px 0; border-bottom: 1px solid #9bafb4; }
.sport-showcase__facts span, .sport-showcase__note { display: block; color: #52666b; font-size: 12px; font-weight: 800; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
.sport-showcase__facts strong { display: block; margin-top: 6px; font-size: 18px; line-height: 1.2; }
.sport-showcase__product { position: relative; align-self: stretch; min-height: 650px; isolation: isolate; }
.sport-showcase__shape { position: absolute; z-index: -1; inset: 21% 2% 6% 7%; border-radius: 48% 52% 16% 84% / 58% 26% 74% 42%; background: #a9c8ce; transform: rotate(-4deg); }
.sport-showcase__product::after { content: ""; position: absolute; z-index: -2; width: 42%; aspect-ratio: 1; right: 2%; top: 11%; border-radius: 50%; background: #f0bd4e; opacity: .9; }
.sport-showcase__product img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: 50% 62%; filter: contrast(1.04) drop-shadow(0 24px 22px rgba(37, 66, 68, .14)); }
.sport-showcase__offer { position: relative; z-index: 2; align-self: end; padding: 32px 0 52px; }
.sport-showcase__offer h3 { max-width: 12ch; font-size: clamp(30px, 3.1vw, 46px); }
.sport-showcase__offer p { max-width: 33ch; margin-bottom: 26px; color: #52666b; font-size: 18px; }
.sport-showcase__offer .button { max-width: 310px; }
.sport-showcase__note { margin-top: 18px; }

.sport-feature { min-height: calc(100svh - var(--header)); display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); border-bottom: 1px solid var(--line); background: #fff; }
.sport-feature__copy { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 48px; padding: clamp(56px, 6vw, 92px) clamp(40px, 5vw, 76px) clamp(48px, 6vw, 84px) max(32px, calc((100vw - 1280px) / 2)); }
.sport-feature__copy h1 { max-width: 10.5ch; font-size: clamp(56px, 5.8vw, 88px); text-wrap: balance; }
.sport-feature__copy .lead { max-width: 34ch; }
.sport-feature__copy .actions { margin-top: 34px; }
.sport-feature__media { min-width: 0; display: grid; place-items: center; overflow: hidden; border-left: 1px solid var(--line); background: #fff; }
.sport-feature__media img { width: 100%; height: 100%; max-height: calc(100svh - var(--header)); padding: clamp(24px, 4vw, 64px); object-fit: contain; }
.sports-spec-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(48px, 7vw, 96px); align-items: start; }
body[data-page="sportswear"] .editorial-card--photo { color: var(--ink); background: #fff; border: 1px solid var(--line); }
body[data-page="sportswear"] .editorial-card--photo img { z-index: 0; inset: 16px 16px auto; width: calc(100% - 32px); height: 245px; object-fit: contain; }
body[data-page="sportswear"] .editorial-card--photo::after { display: none; }
body[data-page="sportswear"] .editorial-card--photo > :not(img) { position: relative; z-index: 1; }
body[data-page="sportswear"] .editorial-card--photo .eyebrow { color: var(--petrol); }

.case-band { display: grid; grid-template-columns: .7fr 1.3fr; }
.case-band__quote { padding: clamp(36px, 6vw, 82px); background: var(--olive); color: white; }
.case-band__quote blockquote { margin: 0 0 40px; font-size: clamp(30px, 4vw, 56px); font-weight: 680; line-height: 1.05; letter-spacing: -.035em; }
.case-band__quote p { margin: 0; color: #e5eadc; }
.case-band__photo { min-height: 620px; }
.case-band__photo img { width: 100%; height: 100%; object-fit: cover; }

.home-main { overflow-x: clip; }
.home-hero {
  position: relative;
  isolation: isolate;
  height: clamp(640px, calc(100svh - var(--header)), 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4f7f5;
  background: var(--ink);
}
.home-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(7, 17, 18, .94) 0%, rgba(7, 17, 18, .76) 36%, rgba(7, 17, 18, .2) 70%, rgba(7, 17, 18, .04) 100%); }
.home-hero__image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 56%; }
.home-hero__content { width: var(--wrap); margin-inline: auto; padding-bottom: clamp(46px, 6vw, 82px); }
.home-hero__eyebrow, .home-story__kicker { margin: 0 0 18px; color: #b9d2d6; font-size: 12px; font-weight: 800; letter-spacing: .13em; line-height: 1.25; text-transform: uppercase; }
.home-hero h1 { max-width: 15.5ch; margin-bottom: 22px; color: inherit; font-size: clamp(60px, 4.7vw, 76px); line-height: .93; text-wrap: balance; }
.home-hero__lead { max-width: 720px; margin: 0; color: rgba(244, 247, 245, .82); font-size: clamp(19px, 1.55vw, 24px); line-height: 1.35; }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.home-hero .button--ghost { color: #f4f7f5; border-color: rgba(244, 247, 245, .65); background: rgba(7, 17, 18, .28); }
.home-hero .button--ghost:hover { color: var(--ink); border-color: var(--paper); background: var(--paper); }

.home-routes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: var(--wrap); margin: 0 auto; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); background: var(--surface); }
.home-route { --segment-color: var(--petrol); min-height: 256px; display: grid; align-content: space-between; gap: 40px; padding: 35px; border-top: 6px solid var(--segment-color); background: var(--surface); text-decoration: none; transition: background .2s ease, transform .2s ease; }
.home-route:not(:last-child) { border-right: 1px solid var(--line); }
.home-route--military { --segment-color: var(--olive); }
.home-route--team { --segment-color: #2f6fac; }
.home-route--business { --segment-color: var(--rust); }
.home-route:hover { background: #f1f4ef; transform: translateY(-2px); }
.home-route__heading { display: grid; align-content: start; gap: 12px; }
.home-route__type { color: var(--muted); font: 750 12px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; text-transform: uppercase; }
.home-route h2 { max-width: 18ch; margin: 0; font-size: clamp(27px, 1.9vw, 31px); line-height: 1; text-wrap: balance; }
.home-route strong { align-self: end; color: var(--petrol); font-size: 14px; }

.home-story { padding: clamp(78px, 9vw, 132px) 0; background: var(--paper); }
.home-story__layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: clamp(42px, 5vw, 72px); align-items: center; }
.home-story__copy { display: grid; justify-items: start; align-content: center; }
.home-story__kicker { color: var(--petrol); }
.home-story__copy h2 { max-width: 14.5ch; font-size: clamp(46px, 4.25vw, 62px); text-wrap: balance; }
.home-story__copy p:not(.home-story__kicker) { max-width: 52ch; margin-bottom: 0; color: var(--muted); font-size: 19px; line-height: 1.55; }
.home-story__copy .button { margin-top: 30px; }
.home-story__visual { position: relative; min-height: 560px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-m); background: #fff; }
.home-story__visual > img { width: 100%; height: 100%; min-height: 560px; padding: 18px 0 92px; object-fit: contain; }
.home-story__visual figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: minmax(130px, .42fr) minmax(0, 1fr); gap: 22px; align-items: baseline; padding: 22px 26px; border-top: 1px solid var(--line); background: rgba(255,255,255,.94); }
.home-story__visual figcaption span { color: var(--petrol); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.home-story__visual figcaption strong { font-size: 15px; line-height: 1.35; }

.home-process { background: var(--ink); color: var(--paper); }
.home-process__grid { display: grid; grid-template-columns: minmax(260px, 1.3fr) repeat(4, minmax(150px, 1fr)); }
.home-process__grid > * { min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: clamp(26px, 2.5vw, 38px); border-right: 1px solid rgba(244, 247, 245, .14); }
.home-process__grid > *:first-child { border-left: 1px solid rgba(244, 247, 245, .14); }
.home-process__intro span { color: #8fb9c0; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.home-process__intro h2 { margin: 0; font-size: clamp(27px, 2.2vw, 36px); line-height: 1.04; }
.home-process__index { color: #8fb9c0; font: 750 13px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; }
.home-process__step h3 { margin: auto 0 0; font-size: clamp(21px, 1.7vw, 27px); line-height: 1.05; }
.home-process__step p { margin: 0; color: #aebbb7; font-size: 14px; }

.production-assurance { padding: 0 0 clamp(72px, 8vw, 120px); }
.production-assurance__head { max-width: 860px; margin-bottom: clamp(32px, 4vw, 52px); }
.production-assurance__head h2 { max-width: 13ch; margin-bottom: 20px; font-size: clamp(42px, 5vw, 70px); }
.production-assurance__head p { max-width: 660px; margin: 0; color: var(--muted); font-size: clamp(18px, 1.8vw, 24px); line-height: 1.4; }
.production-assurance__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.production-assurance__item { min-height: 245px; display: flex; flex-direction: column; justify-content: space-between; gap: 36px; padding: 32px 28px; border-right: 1px solid var(--line); }
.production-assurance__item:last-child { border-right: 0; }
.production-assurance__item strong { max-width: 13ch; font-size: clamp(21px, 1.8vw, 28px); letter-spacing: -.035em; line-height: 1.05; }
.production-assurance__item p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }

.home-products { padding: clamp(72px, 8vw, 116px) 0; background: var(--surface); }
.home-products__head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: clamp(32px, 4vw, 54px); }
.home-products__head h2 { max-width: 10ch; margin: 0; font-size: clamp(46px, 5vw, 68px); }
.home-products__head > a { color: var(--petrol); font-weight: 800; text-decoration: none; }
.home-products__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.home-product { min-width: 0; display: grid; grid-template-rows: auto 1fr; overflow: hidden; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-m); text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.home-product:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.home-product__media { aspect-ratio: 4 / 3; overflow: hidden; background: #fff; }
.home-product__media img { width: 100%; height: 100%; padding: 0; object-fit: contain; transition: opacity .2s ease; }
.home-product:hover .home-product__media img { opacity: .94; }
.home-product__body { display: flex; flex-direction: column; min-height: 150px; padding: 20px; }
.home-product__category { margin-bottom: 9px; color: var(--petrol); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-product__name { font-size: clamp(21px, 1.8vw, 28px); letter-spacing: -.035em; line-height: 1.05; }
.home-product__price { margin-top: auto; padding-top: 18px; font-size: 18px; font-weight: 800; }

@keyframes home-hero-in { from { opacity: 0; transform: translateY(12px); } }
@media (prefers-reduced-motion: no-preference) {
  .home-hero__content > * { animation: home-hero-in .5s cubic-bezier(.2, .7, .2, 1) both; }
  .home-hero__content > :nth-child(2) { animation-delay: .05s; }
  .home-hero__content > :nth-child(3) { animation-delay: .1s; }
  .home-hero__content > :nth-child(4) { animation-delay: .15s; }
}

.contact-split { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 8vw, 130px); align-items: start; }
.contact-card { padding: clamp(26px, 4vw, 48px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-m); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 760; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.file-upload { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; align-items: center; min-height: 70px; padding: 12px; border: 1px dashed var(--line-strong); border-radius: 10px; background: #fff; cursor: pointer; }
.file-upload:focus-within { outline: 3px solid color-mix(in srgb, var(--petrol) 28%, transparent); outline-offset: 2px; }
.file-upload input { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.file-upload__action { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 16px; border-radius: 8px; color: #fff; background: var(--petrol); font-size: 13px; font-weight: 800; }
.file-upload__name { min-width: 0; color: var(--muted); font-size: 13px; line-height: 1.35; overflow-wrap: anywhere; }
.check { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: 13px; }
.check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--petrol); }
.check a { color: var(--ink); }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: 14px; }
.form-status[data-state="error"] { color: var(--danger); }
.form-status[data-state="success"] { color: var(--olive); }
.honeypot { position: absolute !important; left: -10000px !important; }

.page-hero { padding: clamp(58px, 8vw, 120px) 0 clamp(46px, 6vw, 90px); border-bottom: 1px solid var(--line); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: clamp(36px, 8vw, 120px); align-items: end; }
.page-hero h1 { max-width: 11ch; margin: 0; }
.page-hero .lead { margin: 0; }
.page-hero__aside { color: var(--muted); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: var(--line-strong); }

.catalog-toolbar { position: sticky; z-index: 20; top: var(--header); background: var(--paper); border-bottom: 1px solid var(--line); }
.catalog-toolbar__inner { width: var(--wrap); min-height: 72px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.quick-filters { display: flex; gap: 8px; overflow-x: auto; padding: 10px 0; }
.chip { white-space: nowrap; padding: 9px 14px; color: var(--ink); background: transparent; border: 1px solid var(--line-strong); border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 720; }
.chip.is-active { color: white; background: var(--petrol); border-color: var(--petrol); }
.sort-select { min-height: 42px; padding: 8px 34px 8px 12px; border: 1px solid var(--line-strong); border-radius: 9px; background: var(--surface); }
.catalog-layout { width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 0; }
.filters { align-self: start; position: sticky; top: calc(var(--header) + 72px); max-height: calc(100vh - var(--header) - 72px); overflow: auto; padding: 32px 30px 60px 0; border-right: 1px solid var(--line); }
.filters h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.filter-group { padding: 20px 0; border-top: 1px solid var(--line); }
.filter-group h3 { margin-bottom: 14px; font-size: 15px; letter-spacing: 0; line-height: 1.3; }
.filter-option { display: grid; grid-template-columns: 18px 1fr auto; gap: 10px; align-items: center; padding: 7px 0; color: var(--muted); font-size: 14px; }
.filter-option input { width: 17px; height: 17px; margin: 0; accent-color: var(--petrol); }
.filter-option small { color: var(--line-strong); }
.catalog-content { min-width: 0; padding: 32px 0 100px 40px; }
.catalog-count { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 24px; color: var(--muted); font-size: 14px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.catalog-grid .product-card { min-height: 560px; }
.filter-toggle { display: none; }
.empty-state { grid-column: 1 / -1; padding: 60px 20px; text-align: center; color: var(--muted); }

.product-detail { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); min-height: calc(100svh - var(--header)); }
.product-detail__media { position: sticky; top: var(--header); align-self: start; min-width: 0; min-height: 680px; height: calc(100svh - var(--header)); display: grid; grid-template-rows: minmax(0, 1fr) auto; background: #fff; }
.product-detail__stage { min-height: 0; display: grid; place-items: center; overflow: hidden; }
.product-detail__stage img { width: 100%; height: 100%; object-fit: contain; }
.product-detail__thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 94px; gap: 10px; overflow-x: auto; padding: 14px; border-top: 1px solid var(--line); scrollbar-width: thin; }
.product-detail__thumb { aspect-ratio: 1.2; overflow: hidden; padding: 4px; background: #fff; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.product-detail__thumb.is-active { border-color: var(--petrol); box-shadow: inset 0 0 0 1px var(--petrol); }
.product-detail__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-detail__info { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 90px); border-left: 1px solid var(--line); }
.product-detail__info h1 { margin-bottom: 20px; font-size: clamp(46px, 6vw, 86px); }
.product-detail__info--long h1 { font-size: clamp(40px, 4.6vw, 64px); }
.product-detail__price { margin: 24px 0; font-size: 32px; font-weight: 800; }
.option-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 30px; }
.option-list span { padding: 8px 12px; background: var(--olive-soft); border-radius: 999px; font-size: 13px; }

.cart-page { width: var(--wrap); margin: auto; display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(34px, 6vw, 80px); padding: clamp(50px, 7vw, 100px) 0; }
.cart-items { border-top: 1px solid var(--line-strong); }
.cart-row { display: grid; grid-template-columns: 140px 1fr auto; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.cart-row img { width: 140px; aspect-ratio: 1; object-fit: contain; border-radius: 12px; background: #fff; }
.cart-row h2 { margin-bottom: 10px; font-size: 26px; }
.cart-row__meta { color: var(--muted); font-size: 14px; }
.qty { display: inline-grid; grid-template-columns: 36px 44px 36px; align-items: center; margin-top: 20px; border: 1px solid var(--line-strong); border-radius: 9px; overflow: hidden; }
.qty button { height: 38px; border: 0; background: transparent; cursor: pointer; }
.qty output { text-align: center; }
.cart-row__price { min-width: 120px; display: flex; flex-direction: column; align-items: end; justify-content: space-between; font-weight: 800; }
.remove-button { border: 0; background: transparent; color: var(--muted); cursor: pointer; text-decoration: underline; }
.order-summary { position: sticky; top: calc(var(--header) + 24px); align-self: start; padding: 28px; background: var(--ink); color: var(--paper); border-radius: var(--radius-m); }
.order-summary h2 { font-size: 30px; }
.summary-line { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid #4e5a57; }
.summary-line--total { margin-bottom: 22px; font-size: 22px; font-weight: 800; }
.order-summary p { color: #b8c2be; font-size: 13px; }

.checkout-layout { width: var(--wrap); margin: auto; display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: clamp(36px, 7vw, 100px); padding: clamp(50px, 7vw, 100px) 0; }
.checkout-layout h1 { max-width: 13ch; margin-bottom: 34px; font-size: clamp(42px, 4.5vw, 64px); }
.checkout-steps { display: flex; gap: 0; margin-bottom: 42px; border-bottom: 1px solid var(--line); }
.checkout-step { flex: 1; padding: 0 0 12px; color: var(--muted); border-bottom: 3px solid transparent; font-size: 13px; }
.checkout-step.is-active { color: var(--ink); border-color: var(--petrol); font-weight: 800; }
.payment-placeholder { padding: 22px; background: var(--olive-soft); border-radius: 12px; }
.payment-placeholder strong { display: block; margin-bottom: 7px; }
.checkout-items { display: grid; gap: 14px; }
.checkout-item { display: grid; grid-template-columns: 58px 1fr auto; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.checkout-item img { width: 58px; aspect-ratio: 1; object-fit: contain; border-radius: 8px; background: #fff; }

.editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.editorial-card { min-height: 430px; display: flex; flex-direction: column; justify-content: end; padding: clamp(28px, 4vw, 52px); overflow: hidden; border-radius: var(--radius-m); }
.editorial-card h3 { max-width: 12ch; }
.editorial-card p { max-width: 520px; }
.editorial-card--photo { grid-column: span 7; position: relative; color: white; }
.editorial-card--photo img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.editorial-card--photo::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(9,16,15,.75), transparent 70%); }
.editorial-card--photo .eyebrow { color: #b9d2d6; }
.editorial-card--photo .lead { color: rgba(255,255,255,.84); }
.editorial-card--uniform { grid-column: span 5; }
.editorial-card--uniform img { object-position: 50% 54%; }
.editorial-card--text { grid-column: span 5; background: var(--olive-soft); }
.editorial-card--wide { grid-column: span 12; min-height: 360px; background: var(--blue-soft); }
.editorial-card--wide.editorial-card--photo { background: transparent; }
.editorial-card--merch img { object-position: 50% 52%; }

.contacts-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: clamp(48px, 6vw, 88px); align-items: stretch; }
.contact-list { min-width: 0; border-top: 1px solid var(--line); }
.contact-list__row { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-list__row span:first-child { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.contact-list__row a { white-space: nowrap; font-size: clamp(27px, 2.7vw, 38px); font-weight: 750; letter-spacing: -.04em; text-decoration: none; }
.contact-map { position: relative; min-height: 470px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-m); background: #f1f3f0; }
.contact-map iframe { width: 100%; height: 100%; min-height: 470px; display: block; border: 0; }
.contact-map__link { position: absolute; right: 16px; bottom: 16px; display: inline-flex; gap: 8px; align-items: center; min-height: 44px; padding: 0 16px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.96); font-size: 13px; font-weight: 800; text-decoration: none; box-shadow: 0 8px 24px rgba(21,32,30,.12); }
.contact-production { padding: clamp(40px, 6vw, 84px) 0 clamp(72px, 9vw, 128px); }
.contact-production__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: 24px 64px; align-items: end; margin-bottom: 38px; }
.contact-production__head .eyebrow { grid-column: 1 / -1; margin-bottom: -4px; }
.contact-production__head h2 { max-width: 13ch; margin: 0; font-size: clamp(42px, 5vw, 68px); }
.contact-production__head > p:last-child { max-width: 50ch; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.contact-production__gallery { display: grid; grid-template-columns: 1.35fr .65fr; gap: 12px; }
.contact-production__gallery figure { margin: 0; }
.contact-production__gallery img { width: 100%; height: 520px; display: block; object-fit: cover; border-radius: var(--radius-m); }
.contact-production__gallery figure:first-child img { object-position: center; }
.contact-production__gallery figure:last-child img { object-position: 48% center; }
.contact-production__gallery figcaption { padding-top: 10px; color: var(--muted); font-size: 13px; }

.cart-page h1, body[data-page="cart"] > .section h2 { max-width: 18ch; font-size: clamp(40px, 4.8vw, 66px); }

.legal-layout { width: min(100% - 40px, 1120px); margin: auto; display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(36px, 7vw, 90px); padding: 60px 0 110px; }
.legal-nav { position: sticky; top: calc(var(--header) + 24px); align-self: start; display: grid; gap: 9px; font-size: 13px; }
.legal-nav a { color: var(--muted); }
.legal-content { max-width: 760px; }
.legal-content h1 { margin-bottom: 20px; font-size: clamp(44px, 6vw, 76px); }
.legal-content h2 { margin: 56px 0 18px; font-size: 30px; line-height: 1.1; letter-spacing: -.03em; }
.legal-content h3 { margin: 34px 0 14px; font-size: 21px; line-height: 1.2; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #46524f; }
.legal-content li + li { margin-top: 8px; }
.legal-note { margin: 24px 0; padding: 18px 20px; background: var(--rust-soft); border-left: 4px solid var(--rust); }

.site-footer { padding: 64px 0 24px; background: var(--ink); color: var(--paper); }
.footer-top { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 50px; padding-bottom: 54px; }
.footer-logo { width: min(100%, 360px); margin-bottom: 28px; }
.footer-phone { display: block; margin: 18px 0 8px; font-size: clamp(28px, 4vw, 48px); font-weight: 750; letter-spacing: -.04em; text-decoration: none; }
.footer-address { max-width: 520px; color: #b8c2be; }
.footer-group { display: grid; align-content: start; gap: 11px; }
.footer-group strong { margin-bottom: 8px; color: #8fa09b; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.footer-group a { color: var(--paper); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid #4a5753; color: #9eaca7; font-size: 12px; }

.toast { position: fixed; z-index: 200; left: 50%; bottom: 24px; max-width: min(460px, calc(100vw - 32px)); padding: 14px 18px; background: var(--ink); color: white; border-radius: 12px; box-shadow: var(--shadow); transform: translateX(-50%); }

@media (max-width: 1180px) {
  .main-nav { gap: 14px; }
  .main-nav a:nth-child(3) { display: none; }
  .header-phone { display: none; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .hero__content { padding-inline: 34px; }
}

@media (max-width: 900px) {
  :root { --wrap: min(100% - 28px, 760px); --header: 68px; }
  .menu-button { display: block; margin-left: auto; }
  .main-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line-strong);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a, .main-nav a:nth-child(3) { display: block; padding: 16px 2px; border-bottom: 1px solid var(--line); font-size: 22px; }
  .main-nav a::after { display: none; }
  .header-phone { display: block; margin-left: auto; font-size: 0; }
  .header-phone::before { content: "Позвонить"; font-size: 13px; }
  .header-inner { gap: 12px; }
  .logo { width: 190px; }
  .cart-trigger { padding: 9px; }
  .cart-trigger__label { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero__content { min-height: 570px; padding: 46px 24px; }
  .hero__title { font-size: clamp(58px, 14vw, 96px); }
  .hero__media { min-height: 620px; }
  .route-grid, .production-layout, .case-band, .contact-split, .contacts-grid, .sports-spec-grid, .page-hero__grid, .product-detail, .cart-page, .checkout-layout { grid-template-columns: 1fr; }
  .cart-page, .checkout-layout { grid-template-columns: minmax(0, 1fr); }
  .cart-page > *, .checkout-layout > * { min-width: 0; }
  .route-card:first-child { grid-row: auto; min-height: 520px; }
  .route-card { min-height: 390px; }
  .section-head { align-items: start; flex-direction: column; }
  .section-head__aside { text-align: left; }
  .production-photo { position: relative; top: 0; min-height: 520px; border-radius: 0; }
  .production-photo img { min-height: 520px; }
  .production-layout > div:last-child { padding-inline: var(--page-pad, 20px); }
  .sport-showcase__stage { grid-template-columns: minmax(170px, .65fr) minmax(420px, 1.35fr); min-height: auto; margin-top: 20px; }
  .sport-showcase__product { min-height: 620px; }
  .sport-showcase__offer { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; gap: 16px 32px; align-items: end; padding-top: 0; }
  .sport-showcase__offer p { margin: 0; }
  .sport-showcase__offer .button { grid-column: 2; grid-row: 1 / span 2; }
  .sport-showcase__note { margin-top: 0; }
  .sport-feature { min-height: auto; grid-template-columns: 1fr; }
  .sport-feature__copy { min-height: 510px; padding: 58px max(20px, calc((100vw - 760px) / 2)) 52px; }
  .sport-feature__copy h1 { max-width: 12ch; font-size: clamp(52px, 9vw, 72px); }
  .sport-feature__media { min-height: 580px; border-top: 1px solid var(--line); border-left: 0; }
  .sport-feature__media img { max-height: none; padding: 36px 20px; }
  .contact-map, .contact-map iframe { min-height: 430px; }
  .contact-production__head { grid-template-columns: 1fr; }
  .contact-production__head .eyebrow { grid-column: auto; }
  .case-band__photo { min-height: 500px; order: -1; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; z-index: 120; inset: 0 auto 0 0; width: min(360px, 92vw); max-height: none; padding: 88px 28px 30px; background: var(--paper); border-right: 1px solid var(--line-strong); transform: translateX(-102%); transition: transform .25s ease; }
  .filters.is-open { transform: none; }
  .catalog-content { padding-left: 0; }
  .filter-toggle { display: inline-flex; }
  .catalog-toolbar__inner { min-height: 66px; }
  .quick-filters { display: none; }
  .product-detail__info { border-left: 0; border-top: 1px solid var(--line); }
  .product-detail__media { position: relative; top: 0; min-height: 620px; height: auto; }
  .product-detail__stage { min-height: 500px; }
  .cart-page, .checkout-layout { padding-top: 42px; }
  .order-summary { position: relative; top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: relative; top: 0; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .editorial-card--photo, .editorial-card--text { grid-column: span 6; }
  .editorial-card--wide { grid-column: 1 / -1; }
  .production-assurance__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .production-assurance__item { min-height: 210px; border-bottom: 1px solid var(--line); }
  .production-assurance__item:nth-child(even) { border-right: 0; }
  .production-assurance__item:nth-last-child(-n + 2) { border-bottom: 0; }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 24px); }
  body { font-size: 15px; }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  h2 { font-size: clamp(40px, 13vw, 62px); }
  .lead { font-size: 20px; }
  .header-phone { display: none; }
  .logo { width: 170px; }
  .hero__content { min-height: 540px; padding: 36px 18px 42px; }
  .hero__title { font-size: clamp(51px, 16vw, 74px); }
  .hero__media { min-height: 520px; }
  .hero__stamp { right: 18px; bottom: 18px; width: 104px; }
  .actions { display: grid; }
  .route-card, .route-card:first-child { min-height: 430px; padding: 28px 22px; }
  .route-card h3 { font-size: 38px; }
  .product-rail { grid-auto-columns: minmax(275px, 86vw); padding-inline: 12px; }
  .product-card { min-height: 570px; }
  .sport-showcase { padding: 68px 0 54px; }
  .sport-showcase__stage { display: flex; flex-direction: column; margin-top: 24px; }
  .sport-showcase__product { order: -1; width: 100%; min-height: 480px; }
  .sport-showcase__shape { inset: 18% 0 7% 2%; }
  .sport-showcase__facts { width: 100%; padding-bottom: 18px; }
  .sport-showcase__offer { display: block; width: 100%; padding: 18px 0 0; }
  .sport-showcase__offer p { margin-bottom: 24px; }
  .sport-showcase__offer .button { width: 100%; max-width: none; }
  .sport-showcase__note { margin-top: 16px; }
  .contact-card { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .page-hero { padding-top: 46px; }
  .page-hero h1 { font-size: 54px; }
  .catalog-toolbar__inner { align-items: center; }
  .sort-select { max-width: 166px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-grid .product-card { min-height: 570px; }
  .catalog-count { align-items: start; flex-direction: column; }
  .product-detail__media { min-height: 470px; }
  .product-detail__stage { min-height: 390px; }
  .product-detail__info { padding: 38px 20px 54px; }
  .product-detail__info h1 { font-size: 50px; }
  .product-detail__info--long h1 { font-size: 42px; }
  .cart-row { grid-template-columns: 92px 1fr; gap: 14px; }
  .cart-row img { width: 92px; }
  .cart-row__price { grid-column: 2; min-width: 0; align-items: start; gap: 12px; }
  .checkout-steps { overflow: visible; }
  .checkout-step { min-width: 0; white-space: nowrap; font-size: 10px; }
  .editorial-card--photo, .editorial-card--text, .editorial-card--wide { grid-column: 1 / -1; }
  .production-assurance { padding-bottom: 68px; }
  .production-assurance__head h2 { font-size: clamp(39px, 12vw, 54px); }
  .production-assurance__grid { grid-template-columns: 1fr; }
  .production-assurance__item { min-height: 0; gap: 22px; padding: 26px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .production-assurance__item:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .production-assurance__item:last-child { border-bottom: 0; }
  .contact-list__row { grid-template-columns: 1fr; }
  .contact-list__row a { white-space: nowrap; overflow-wrap: normal; font-size: clamp(23px, 7vw, 28px); }
  .contact-production__gallery { grid-template-columns: 1fr; }
  .contact-production__gallery img { height: 380px; }
  .sport-feature__copy { min-height: 470px; gap: 34px; padding: 44px 12px 40px; }
  .sport-feature__copy h1 { font-size: clamp(43px, 13vw, 58px); }
  .sport-feature__media { min-height: 420px; }
  .sport-feature__media img { padding: 20px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .legal-layout { width: calc(100% - 28px); }
  .legal-content h1 { font-size: 48px; }
}

@media (max-width: 1439px) {
  .home-hero { height: clamp(560px, calc(100svh - var(--header)), 620px); }
  .home-hero h1 { max-width: 15.5ch; font-size: clamp(54px, 4.7vw, 66px); }
  .home-hero__content { padding-bottom: clamp(40px, 5vw, 64px); }
  .home-route { min-height: 240px; padding: 30px; }
  .home-story__visual, .home-story__visual > img { min-height: 510px; }
}

@media (max-width: 1023px) {
  .home-hero { height: clamp(520px, calc(100svh - var(--header)), 560px); }
  .home-hero::after { background: linear-gradient(90deg, rgba(7, 17, 18, .94) 0%, rgba(7, 17, 18, .76) 48%, rgba(7, 17, 18, .14) 88%); }
  .home-hero__content { width: var(--wrap); }
  .home-hero h1 { max-width: 15ch; font-size: clamp(48px, 6.2vw, 58px); }
  .home-hero__lead { max-width: 560px; }
  .home-route { min-height: 218px; gap: 28px; padding: 24px 22px; }
  .home-route h2 { font-size: clamp(23px, 3vw, 28px); }
  .home-route strong { font-size: 13px; }
  .home-story { padding: 74px 0; }
  .home-story__layout { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 30px; }
  .home-story__copy h2 { font-size: clamp(42px, 5.5vw, 54px); }
  .home-story__copy p:not(.home-story__kicker) { font-size: 17px; }
  .home-story__visual, .home-story__visual > img { min-height: 460px; }
  .home-process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-process__grid > * { min-height: 170px; padding: 28px; border-right: 1px solid rgba(244, 247, 245, .14); border-bottom: 1px solid rgba(244, 247, 245, .14); }
  .home-process__intro { grid-column: 1 / -1; min-height: 150px; }
  .home-process__grid > *:nth-child(odd) { border-right: 0; }
  .home-process__grid > *:nth-last-child(-n + 2) { border-bottom: 0; }
  .home-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .home-main { display: flex; flex-direction: column; }
  .home-hero { order: 1; height: clamp(420px, calc(100svh - var(--header)), 480px); align-items: end; }
  .home-hero::after { background: linear-gradient(0deg, rgba(7, 17, 18, .96) 0%, rgba(7, 17, 18, .84) 52%, rgba(7, 17, 18, .12) 100%); }
  .home-hero__image { object-position: 34% 52%; }
  .home-hero__content { padding-bottom: 24px; }
  .home-hero__eyebrow { margin-bottom: 12px; font-size: 10px; }
  .home-hero h1 { max-width: 13ch; margin-bottom: 14px; font-size: clamp(36px, 10.7vw, 44px); line-height: .94; }
  .home-hero__lead { max-width: 33ch; font-size: 16px; line-height: 1.3; }
  .home-hero__actions { display: grid; gap: 8px; width: 100%; margin-top: 18px; }
  .home-hero__actions .button { width: 100%; min-height: 46px; }
  .home-routes { order: 2; grid-template-columns: 1fr; }
  .home-route { min-height: 0; gap: 16px; padding: 20px; border-top-width: 5px; }
  .home-route:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .home-route__heading { gap: 8px; }
  .home-route h2 { max-width: 22ch; font-size: 25px; }
  .home-route strong { font-size: 13px; }
  .home-products { order: 3; padding: 58px 0; }
  .home-products__head { align-items: start; margin-bottom: 28px; }
  .home-products__head h2 { font-size: 40px; }
  .home-products__head > a { padding-top: 7px; font-size: 13px; text-align: right; }
  .home-products__grid { gap: 10px; }
  .home-product { border-radius: var(--radius-s); }
  .home-product__media { aspect-ratio: 1 / 1; }
  .home-product__body { min-height: 132px; padding: 13px 12px; }
  .home-product__category { margin-bottom: 7px; font-size: 9px; }
  .home-product__name { font-size: 17px; }
  .home-product__price { padding-top: 12px; font-size: 15px; }
  .home-story { order: 4; padding: 66px 0; }
  .home-story__layout { grid-template-columns: 1fr; gap: 34px; }
  .home-story__copy h2 { font-size: 43px; }
  .home-story__copy p:not(.home-story__kicker) { font-size: 17px; }
  .home-story__copy .button { width: 100%; }
  .home-story__visual, .home-story__visual > img { min-height: 430px; }
  .home-story__visual > img { padding: 12px 0 104px; }
  .home-story__visual figcaption { grid-template-columns: 1fr; gap: 7px; padding: 16px 18px; }
  .home-process { order: 5; }
  .home-process__grid { grid-template-columns: 1fr; }
  .home-process__grid > *, .home-process__intro { grid-column: auto; min-height: 0; padding: 24px 20px; border-right: 1px solid rgba(244, 247, 245, .14); border-bottom: 1px solid rgba(244, 247, 245, .14); }
  .home-process__grid > *:nth-child(odd) { border-right: 1px solid rgba(244, 247, 245, .14); }
  .home-process__grid > *:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(244, 247, 245, .14); }
  .home-process__grid > *:last-child { border-bottom: 0; }
  .home-process__intro { gap: 18px; }
  .home-process__intro h2 { font-size: 31px; }
  .home-process__step { display: grid; grid-template-columns: 38px 1fr; align-items: start; gap: 6px 12px; }
  .home-process__index { grid-row: 1 / 3; padding-top: 4px; }
  .home-process__step h3 { grid-column: 2; margin: 0; font-size: 24px; }
  .home-process__step p { grid-column: 2; }
  .file-upload { grid-template-columns: 1fr; }
  .file-upload__action { width: 100%; }
  .home-main > #request { order: 6; }
}

@media (max-width: 360px) {
  .header-inner { gap: 8px; }
  .logo { width: 150px; }
  .cart-trigger { flex: 0 0 auto; padding: 8px; }
  .menu-button { width: 42px; height: 42px; flex: 0 0 42px; }
  .home-hero h1 { font-size: 36px; }
  .home-products__head { display: grid; gap: 10px; }
  .home-products__head > a { padding-top: 0; text-align: left; }
  .home-product__body { min-height: 128px; padding: 11px 10px; }
  .home-product__name { font-size: 15px; }
  .home-product__price { font-size: 14px; }
  .home-story__copy h2 { font-size: 39px; }
  .home-story__collage { min-height: 360px; }
}

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