:root {
  --red: #e31e24;
  --red-dark: #bd1218;
  --ink: #131313;
  --muted: #686868;
  --line: #e4e2de;
  --paper: #f4f2ee;
  --white: #fff;
  --warm: #eeeae3;
  --shadow: 0 24px 70px rgba(16, 16, 16, .10);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

button, input { font: inherit; }

button { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow--light { color: #ff6b70; }

.display,
.section-title,
.page-title {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .97;
}

.display { max-width: 790px; font-size: clamp(3.3rem, 7.4vw, 7rem); }
.section-title { max-width: 760px; font-size: clamp(2.4rem, 5vw, 4.6rem); }
.page-title { max-width: 880px; font-size: clamp(3.2rem, 6vw, 5.8rem); }

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.lead--light { color: rgba(255,255,255,.72); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, .nav-link:focus-visible, .category-tab:focus-visible, .variant-link:focus-visible { outline: 3px solid rgba(227,30,36,.30); outline-offset: 3px; }
.button--primary { color: #fff; background: var(--red); }
.button--primary:hover { background: var(--red-dark); }
.button--light { color: var(--ink); background: #fff; }
.button--outline { border-color: #c9c6c0; background: transparent; }
.button--outline:hover { border-color: var(--ink); }
.button svg { width: 17px; height: 17px; }

.topbar {
  color: rgba(255,255,255,.72);
  background: #0f0f0f;
  font-size: .78rem;
}

.topbar__inner {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar p { margin: 0; }
.topbar a { color: #fff; font-weight: 700; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(244,242,238,.94);
  backdrop-filter: blur(15px);
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: inline-flex; flex: 0 0 auto; align-items: center; }
.logo img { width: 195px; height: auto; }

.nav__links { display: flex; align-items: center; gap: 5px; }

.nav-link {
  padding: 11px 15px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 750;
}

.nav-link:hover, .nav-link[aria-current="page"] { background: #fff; }
.nav-link--shop { margin-left: 10px; color: #fff; background: var(--ink); }
.nav-link--shop:hover { background: var(--red); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 740px;
  color: #fff;
  background: #131313;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.hero::after {
  position: absolute;
  top: -20%;
  right: -17%;
  width: 58vw;
  height: 58vw;
  border: 130px solid var(--red);
  border-radius: 50%;
  content: "";
  opacity: .88;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 740px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 70px;
  padding-block: 86px;
}

.hero__copy { position: relative; z-index: 2; }
.hero__copy .display span { color: #ff4c51; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero__visual { position: relative; height: 520px; }

.hero-product {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

.hero-product img { width: 100%; height: 100%; object-fit: cover; }
.hero-product--one { top: 15px; right: 5px; width: 80%; height: 275px; transform: rotate(3deg); }
.hero-product--two { bottom: 10px; left: -5px; width: 69%; height: 240px; transform: rotate(-4deg); }

.hero__stamp {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 72px;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.trust-strip { position: relative; z-index: 4; margin-top: -42px; }

.trust-strip__inner {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-item { padding: 28px 32px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; font-size: 1.1rem; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.section { padding-block: 120px; }
.section--tight { padding-block: 90px; }
.section--white { background: #fff; }
.section--dark { color: #fff; background: #151515; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.section-heading__action { flex: 0 0 auto; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 310px;
  grid-template-columns: 1fr 180px;
  align-items: end;
  gap: 15px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.category-card:hover { border-color: rgba(227,30,36,.4); box-shadow: var(--shadow); transform: translateY(-5px); }
.category-card::after { position: absolute; top: -110px; right: -90px; width: 260px; height: 260px; border: 60px solid rgba(227,30,36,.07); border-radius: 50%; content: ""; }
.category-card__copy { position: relative; z-index: 2; }
.category-card__index { color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.category-card h3 { margin: 34px 0 8px; font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.05; }
.category-card p { margin: 0; color: var(--muted); }
.category-card__arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; font-size: .84rem; font-weight: 850; }
.category-card__visual { position: relative; z-index: 2; align-self: center; color: var(--red); }
.category-card__visual svg { width: 100%; height: auto; }
.category-card--dark { color: #fff; border-color: #262626; background: #1b1b1b; }
.category-card--dark p { color: rgba(255,255,255,.62); }
.category-card--dark::after { border-color: rgba(227,30,36,.18); }

.feature-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }

.feature-art {
  position: relative;
  min-height: 570px;
  border-radius: 34px;
  background: var(--red);
}

.feature-art::before {
  position: absolute;
  inset: 42px -34px -34px 42px;
  border: 1px solid #c9c4bc;
  border-radius: inherit;
  content: "";
}

.feature-art__card {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  top: 38px;
  right: -46px;
  bottom: 38px;
  left: 38px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-art__card img { width: 100%; height: 100%; object-fit: cover; }

.feature-list { display: grid; gap: 0; margin-top: 42px; }
.feature-item { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 23px 0; border-top: 1px solid var(--line); }
.feature-item:last-child { border-bottom: 1px solid var(--line); }
.feature-item__number { color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.feature-item h3 { margin: 0 0 5px; font-size: 1.1rem; }
.feature-item p { margin: 0; color: var(--muted); font-size: .94rem; }

.product-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.showcase-card {
  display: flex;
  min-height: 485px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.showcase-card__image { position: relative; height: 270px; overflow: hidden; background: #f2f2f0; }
.showcase-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.showcase-card:hover .showcase-card__image img { transform: scale(1.035); }
.showcase-card__tag { position: absolute; top: 16px; left: 16px; padding: 7px 10px; border-radius: 999px; color: #fff; background: var(--ink); font-size: .7rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.showcase-card__body { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.showcase-card h3 { margin: 0; font-size: 1.22rem; line-height: 1.25; }
.showcase-card p { margin: 10px 0 22px; color: var(--muted); font-size: .9rem; }
.showcase-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--red); font-size: .84rem; font-weight: 900; }

.cta {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 55px 60px;
  border-radius: 32px;
  color: #fff;
  background: var(--red);
}

.cta::after { position: absolute; right: -100px; bottom: -180px; width: 390px; height: 390px; border: 80px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; }
.cta__copy, .cta__action { position: relative; z-index: 2; }
.cta h2 { max-width: 700px; margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.04em; line-height: 1; }
.cta p { max-width: 620px; margin: 15px 0 0; color: rgba(255,255,255,.80); }

.page-hero { position: relative; overflow: hidden; padding-block: 105px 95px; color: #fff; background: #151515; }
.page-hero::after { position: absolute; top: -220px; right: -140px; width: 520px; height: 520px; border: 100px solid var(--red); border-radius: 50%; content: ""; }
.page-hero__inner { position: relative; z-index: 2; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; color: rgba(255,255,255,.55); font-size: .78rem; font-weight: 700; }
.breadcrumbs a:hover { color: #fff; }

.catalog-tools { position: relative; z-index: 4; margin-top: -32px; }
.catalog-tools__inner { padding: 22px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.category-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.category-tab { min-height: 56px; padding: 12px 14px; border: 0; border-radius: 15px; background: #f2f0ec; cursor: pointer; font-size: .85rem; font-weight: 850; }
.category-tab:hover, .category-tab.is-active { color: #fff; background: var(--red); }

.catalog-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.catalog-header h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.04em; line-height: 1; }
.catalog-header p { max-width: 660px; margin: 12px 0 0; color: var(--muted); }
.product-count { flex: 0 0 auto; padding: 9px 13px; border-radius: 999px; color: var(--red); background: rgba(227,30,36,.08); font-size: .76rem; font-weight: 900; }

.search-field { position: relative; margin-bottom: 26px; }
.search-field svg { position: absolute; top: 50%; left: 18px; width: 19px; height: 19px; color: var(--muted); transform: translateY(-50%); }
.search-field input { width: 100%; min-height: 56px; padding: 13px 18px 13px 52px; border: 1px solid var(--line); border-radius: 15px; color: var(--ink); background: #fff; outline: 0; }
.search-field input:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(227,30,36,.09); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.product-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.product-card__media { position: relative; height: 260px; overflow: hidden; background: #f1f1ef; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-card__media img { transform: scale(1.03); }
.product-card__badge { position: absolute; top: 15px; left: 15px; padding: 7px 10px; border-radius: 999px; color: #fff; background: rgba(18,18,18,.9); font-size: .68rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.product-card h3 { margin: 0; font-size: 1.12rem; line-height: 1.28; }
.product-card__code { margin: 8px 0 0; color: var(--muted); font-size: .78rem; }
.product-card__specs { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0; }
.product-card__specs span { padding: 7px 9px; border-radius: 8px; color: #555; background: #f2f0ec; font-size: .71rem; font-weight: 800; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.product-price { font-size: 1.05rem; font-weight: 900; }
.product-price small { display: block; color: var(--muted); font-size: .64rem; font-weight: 600; }
.product-link { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: .78rem; font-weight: 900; }

.variant-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 20px; }
.variant-link { display: flex; min-width: 0; flex-direction: column; padding: 10px 8px; border: 1px solid var(--line); border-radius: 11px; text-align: center; transition: border-color .2s ease, background .2s ease; }
.variant-link:hover { border-color: var(--red); background: rgba(227,30,36,.04); }
.variant-link strong { font-size: .76rem; }
.variant-link span { color: var(--muted); font-size: .68rem; }

.empty-state { grid-column: 1 / -1; padding: 65px 30px; border: 1px dashed #c7c3bb; border-radius: 22px; text-align: center; }
.empty-state__icon { display: grid; width: 74px; height: 74px; place-items: center; margin: 0 auto 20px; border-radius: 50%; color: var(--red); background: rgba(227,30,36,.08); }
.empty-state__icon svg { width: 34px; }
.empty-state h3 { margin: 0; font-size: 1.45rem; }
.empty-state p { max-width: 540px; margin: 10px auto 24px; color: var(--muted); }

.contact-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.contact-intro__aside { padding: 34px; border-radius: var(--radius); color: #fff; background: var(--red); }
.contact-intro__aside h2 { margin: 0 0 22px; font-size: 1.55rem; line-height: 1.1; }
.contact-detail { display: grid; grid-template-columns: 33px 1fr; gap: 12px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.25); }
.contact-detail svg { width: 20px; margin-top: 2px; }
.contact-detail strong, .contact-detail span { display: block; }
.contact-detail span, .contact-detail a { color: rgba(255,255,255,.78); font-size: .9rem; }

.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.contact-card__icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 26px; border-radius: 14px; color: var(--red); background: rgba(227,30,36,.08); }
.contact-card__icon svg { width: 22px; }
.contact-card h3 { margin: 0 0 7px; font-size: 1.22rem; }
.contact-card__name { margin: 0 0 20px; color: var(--muted); }
.contact-card a { display: block; width: fit-content; margin-top: 7px; font-size: .88rem; font-weight: 750; }
.contact-card a:hover { color: var(--red); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-card { padding: 27px; border: 1px solid #2b2b2b; border-radius: 20px; background: #1c1c1c; }
.team-card__initials { display: grid; width: 49px; height: 49px; place-items: center; margin-bottom: 22px; border-radius: 50%; color: #fff; background: var(--red); font-size: .77rem; font-weight: 900; }
.team-card h3 { margin: 0; font-size: 1.08rem; }
.team-card__role { min-height: 46px; margin: 5px 0 16px; color: rgba(255,255,255,.54); font-size: .82rem; }
.team-card__phone { font-weight: 800; }
.team-card__region { margin: 14px 0 0; color: rgba(255,255,255,.48); font-size: .75rem; }

.route-card { display: grid; overflow: hidden; grid-template-columns: 1fr 1fr; border-radius: 30px; background: #e8e5df; }
.route-card__copy { padding: 55px; }
.route-card__copy h2 { margin: 0 0 15px; font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.04em; line-height: 1; }
.route-card__copy p { margin: 0 0 27px; color: var(--muted); }
.route-card__map { position: relative; min-height: 370px; background: #d7d3cc; }
.route-card__map::before, .route-card__map::after { position: absolute; border-radius: 999px; background: rgba(255,255,255,.6); content: ""; transform: rotate(-18deg); }
.route-card__map::before { top: -30px; left: 37%; width: 28px; height: 460px; }
.route-card__map::after { top: 42%; left: -20px; width: 110%; height: 24px; transform: rotate(9deg); }
.map-pin { position: absolute; z-index: 3; top: 47%; left: 55%; display: grid; width: 60px; height: 60px; place-items: center; border: 7px solid #fff; border-radius: 50% 50% 50% 0; color: #fff; background: var(--red); box-shadow: 0 18px 30px rgba(0,0,0,.18); transform: translate(-50%, -50%) rotate(-45deg); }
.map-pin svg { width: 21px; transform: rotate(45deg); }

.site-footer { padding-top: 75px; color: rgba(255,255,255,.68); background: #111; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 70px; padding-bottom: 55px; }
.footer-brand .logo img { width: 205px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 420px; margin: 24px 0 0; font-size: .9rem; }
.footer-column h3 { margin: 0 0 18px; color: #fff; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: 9px 0; font-size: .88rem; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.10); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .menu-button { display: block; }
  .nav__links { position: fixed; top: 117px; right: 20px; left: 20px; display: none; align-items: stretch; padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
  .nav__links.is-open { display: flex; flex-direction: column; }
  .nav-link { padding: 14px 16px; }
  .nav-link--shop { margin: 6px 0 0; text-align: center; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 80px; }
  .hero__visual { width: min(600px, 100%); margin: -20px auto 0; }
  .hero::after { top: 38%; right: -30%; width: 80vw; height: 80vw; }
  .feature-layout { grid-template-columns: 1fr; gap: 85px; }
  .feature-art { width: min(650px, calc(100% - 40px)); }
  .product-grid, .product-showcase { grid-template-columns: repeat(2, 1fr); }
  .product-showcase .showcase-card:last-child { grid-column: 1 / -1; }
  .contact-intro { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .route-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); --radius: 19px; }
  .topbar__inner { justify-content: center; }
  .topbar p:first-child { display: none; }
  .nav { min-height: 72px; }
  .logo img { width: 162px; }
  .nav__links { top: 107px; }
  .hero, .hero__inner { min-height: auto; }
  .hero__inner { gap: 28px; padding-block: 66px 90px; }
  .display { font-size: clamp(3.05rem, 15vw, 4.75rem); }
  .hero__visual { height: 390px; }
  .hero-product--one { width: 86%; height: 220px; }
  .hero-product--two { width: 75%; height: 190px; }
  .hero__stamp { right: 0; bottom: 38px; width: 105px; height: 105px; font-size: .58rem; }
  .trust-strip { margin-top: -30px; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-item { padding: 20px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding-block: 82px; }
  .section--tight { padding-block: 65px; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading__action { margin-top: 25px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 275px; grid-template-columns: 1fr 125px; padding: 26px; }
  .feature-art { min-height: 420px; }
  .feature-art__card { top: 25px; right: -24px; bottom: 25px; left: 25px; }
  .feature-art::before { inset: 26px -22px -22px 26px; }
  .product-grid, .product-showcase { grid-template-columns: 1fr; }
  .product-showcase .showcase-card:last-child { grid-column: auto; }
  .cta { grid-template-columns: 1fr; padding: 38px 28px; }
  .cta__action { justify-self: start; }
  .page-hero { padding-block: 70px 76px; }
  .category-tabs { grid-template-columns: repeat(2, 1fr); }
  .catalog-header { display: block; }
  .product-count { display: inline-block; margin-top: 18px; }
  .contact-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card__role { min-height: 0; }
  .route-card__copy { padding: 37px 28px; }
  .route-card__map { min-height: 290px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
}
