:root {
  --gw-orange: #f26422;
  --gw-orange-dark: #d84d0d;
  --gw-text: #171717;
  --gw-muted: #5c5c5c;
  --gw-line: rgba(23, 23, 23, 0.11);
  --gw-soft: #fff7f0;
  --gw-bg: #ffffff;
  --gw-header-surface: #e5e6e8;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gw-text);
  background: var(--gw-bg);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

.gw-wordmark__gruz {
  color: #111;
}

.gw-wordmark__waresy {
  color: var(--gw-orange);
}

body {
  padding-top: 90px;
}

.page-section,
.site-footer__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── Header — mirrors the floating .gw-header used on index.html ── */

.gw-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 48px));
  z-index: 1200;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  pointer-events: none;
}

.gw-header a {
  pointer-events: auto;
  text-decoration: none;
}

.gw-header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  overflow: hidden;
  color: var(--gw-text);
  background: var(--gw-header-surface);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(23, 23, 23, 0.1);
  backdrop-filter: blur(14px);
  font-size: 23px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.gw-header__brand .gw-wordmark__gruz {
  color: #111;
}

.gw-header__brand .gw-wordmark__waresy {
  color: var(--gw-orange);
}

.gw-header__navwrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px 0 34px;
  background: var(--gw-header-surface);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(23, 23, 23, 0.1);
  backdrop-filter: blur(14px);
}

.gw-header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1 1 auto;
}

.gw-header__nav a,
.gw-header__phone {
  color: #333;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.gw-header__nav a:hover,
.gw-header__phone:hover {
  color: var(--gw-orange-dark);
}

.gw-header__nav a.is-active {
  color: var(--gw-orange);
}

.gw-header__phone {
  margin-left: auto;
  white-space: nowrap;
}

.gw-header__icon {
  display: grid !important;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #111;
  background: transparent;
  border-radius: 999px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.gw-header__icon:hover {
  opacity: 0.72;
  transform: translateY(-1px);
}

.gw-header__icon svg,
.gw-header__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Offset anchor targets so the fixed header doesn't cover them on scroll */
#delivery,
#contacts {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 1199px) and (min-width: 1100px) {
  .gw-header__brand {
    font-size: 20px;
    padding: 0 22px;
  }

  .gw-header__nav {
    gap: 22px;
  }
}

@media screen and (max-width: 1099px) {
  body {
    padding-top: 76px;
  }

  .gw-header {
    width: calc(100% - 24px);
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
  }

  .gw-header__brand {
    width: max-content;
    min-height: 46px;
    padding: 0 16px;
    font-size: 16px;
  }

  .gw-header__navwrap {
    min-height: 46px;
    padding: 0 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gw-header__navwrap::-webkit-scrollbar {
    display: none;
  }

  .gw-header__nav {
    gap: 16px;
    flex: 0 0 auto;
  }

  .gw-header__nav a,
  .gw-header__phone {
    font-size: 12px;
    white-space: nowrap;
  }

  .gw-header__phone {
    margin-left: 10px;
  }

  .gw-header__icon {
    display: grid !important;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
  }
}

@media screen and (max-width: 520px) {
  .gw-header__phone {
    display: none;
  }
}

.hero {
  padding: 120px 0 110px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  border-bottom: 1px solid var(--gw-line);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gw-orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 28px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 850;
}

.lead {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--gw-muted);
  font-size: 19px;
  line-height: 1.6;
}

.hero__media,
.contact-panel {
  border: 1px solid var(--gw-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(23, 23, 23, 0.1);
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Delivery needs a credible logistics scene rather than product/icon artwork. */
.delivery-page .hero {
  padding: 90px 0 100px;
}

.delivery-page .hero__grid {
  align-items: center;
}

.delivery-page .hero__media {
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 24px;
}

.delivery-page .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(231, 130, 53, 0.22);
}

.btn--orange {
  background: var(--gw-orange);
}

.btn--orange:hover {
  background: var(--gw-orange-dark);
}

.btn--ghost {
  color: var(--gw-text);
  background: #fff;
  border-color: var(--gw-line);
}

.page-section {
  padding: 76px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--gw-muted);
  font-size: 17px;
  line-height: 1.55;
}

.product-grid,
.feature-grid,
.info-grid {
  display: grid;
  gap: 28px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--gw-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 130, 53, 0.28);
  box-shadow: 0 18px 38px rgba(23, 23, 23, 0.12);
}


.card__body {
  padding: 24px;
}

.card__body p {
  margin-bottom: 18px;
  color: var(--gw-muted);
  font-size: 15px;
  line-height: 1.55;
}

.price {
  color: var(--gw-orange);
  font-size: 24px;
  font-weight: 900;
}

.muted-band {
  background: #f8f8f8;
  border-top: 1px solid var(--gw-line);
  border-bottom: 1px solid var(--gw-line);
}

.steps {
  display: grid;
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 22px 22px 22px 72px;
  border: 1px solid var(--gw-line);
  border-radius: 8px;
  background: #fff;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gw-orange);
  color: #fff;
  font-weight: 900;
}

.contact-panel {
  padding: 32px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list span {
  display: block;
  color: var(--gw-muted);
  font-size: 14px;
  font-weight: 750;
}

.contact-list a,
.contact-list strong {
  display: inline-block;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #141414;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  padding: 56px 0 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 36px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100%;
  padding: 0;
  margin-bottom: 14px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 27px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.site-footer__brand .gw-wordmark__gruz {
  color: #fff;
}

.site-footer__text {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__col-title {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__col a,
.site-footer__col span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer__col a {
  transition: color 180ms ease;
}

.site-footer__col a:hover {
  color: var(--gw-orange);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 650;
  transition: color 180ms ease;
}

.site-footer__legal a:hover {
  color: #fff;
}

.site-footer__cta {
  color: var(--gw-orange);
  font-weight: 800;
  transition: color 180ms ease;
}

.site-footer__cta:hover {
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(231, 130, 53, 0.34);
  outline-offset: 3px;
}

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

@media (max-width: 960px) {
  .delivery-page .hero {
    padding: 48px 0 56px;
  }

  .hero__grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    display: block;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .page-section,
  .site-footer__inner {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding: 54px 0 46px;
  }

  .page-section {
    padding: 52px 0;
  }

  .catalog-section > .page-section {
    padding-top: 24px;
  }

  h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 17px;
  }

  .product-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    padding: 40px 0 24px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer__legal {
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
  }
}

/* ── Product cards ── */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gw-line);
  border-radius: 16px;
  overflow: hidden;
}

.product-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-bottom: 1px solid var(--gw-line);
  overflow: hidden;
}

.product-card__photo-link {
  position: absolute;
  inset: 0;
  display: block;
}

.product-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(8px, 1.1vw, 14px);
  object-fit: contain;
  object-position: center;
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 13px;
  background: var(--gw-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  pointer-events: none;
}

.product-card__tag--dark { background: #1a1a1a; }

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
}

.product-card__cat {
  margin-bottom: 5px;
  color: var(--gw-orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.product-card__name {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--gw-text);
  margin-bottom: 12px;
}

.product-card__attrs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0;
}

.product-card__attrs li {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 6px 10px;
  background: #f5f4f2;
  border-radius: 7px;
}

.product-card__attrs span {
  color: #939393;
  font-size: 11px;
  font-weight: 650;
}

.product-card__attrs strong {
  color: var(--gw-text);
  font-size: 12.5px;
  font-weight: 800;
}

.product-card__lengths {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.length-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  background: #f5f4f2;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  color: #444;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.length-chip:hover {
  border-color: rgba(231, 130, 53, 0.35);
  color: var(--gw-orange);
}

.length-chip.is-active {
  background: var(--gw-orange);
  border-color: var(--gw-orange);
  color: #fff;
}

.product-card__article {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 650;
  color: #939393;
}

.product-card__article-code {
  color: var(--gw-muted);
  font-weight: 800;
}

.product-card__buy {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.product-card__price span {
  color: #999;
  font-size: 12px;
  font-weight: 700;
}

.product-card__price strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--gw-text);
  white-space: nowrap;
}

.product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  padding: 0 20px;
  background: var(--gw-orange);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 180ms ease;
}

.product-card__btn:hover {
  background: var(--gw-orange-dark);
}

/* ═══════════════════════════════════════
   Contacts page – full redesign
═══════════════════════════════════════ */

/* Hero */
.contacts-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  background: #0d0d0d;
}

.contacts-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contacts-hero__glow--1 {
  top: -160px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(231,130,53,0.14) 0%, transparent 68%);
}

.contacts-hero__glow--2 {
  bottom: -200px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(231,130,53,0.07) 0%, transparent 65%);
}

.contacts-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
}

.contacts-eyebrow {
  color: var(--gw-orange);
  margin-bottom: 20px;
}

.contacts-hero__h1 {
  color: #fff;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1;
  margin-bottom: 22px;
  max-width: none;
}

.ch-orange {
  color: var(--gw-orange);
}

.contacts-hero__lead {
  color: rgba(255,255,255,0.48);
  font-size: 17px;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 0;
}

.contacts-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.contacts-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  justify-content: center;
}

.btn--ghost-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.btn--ghost-dark:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}

/* Contacts main section layout */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Info aside */
.contacts-aside__label {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gw-muted);
}

.cinfo-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gw-line);
}

.cinfo-item:first-child {
  border-top: 1px solid var(--gw-line);
}

.cinfo-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gw-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gw-orange);
  font-size: 11px;
  font-weight: 900;
}

.cinfo-icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.cinfo-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.cinfo-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gw-muted);
}

.cinfo-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--gw-text);
  line-height: 1.3;
}

a.cinfo-val:hover {
  color: var(--gw-orange);
}

.contacts-hint {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--gw-soft);
  border-left: 3px solid var(--gw-orange);
  border-radius: 0 10px 10px 0;
}

.contacts-hint__icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gw-orange);
}

.contacts-hint p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gw-muted);
}

/* Form wrap */
.contacts-form-wrap {
  background: #fff;
  border: 1px solid var(--gw-line);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 8px 48px rgba(23,23,23,0.07);
}

.contacts-form__tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px;
  background: var(--gw-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gw-orange);
}

.contacts-form__title {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 30px;
}

.contacts-form {
  display: grid;
  gap: 18px;
}

.contacts-form__status {
  margin: 0;
  font-size: 13px;
  color: var(--gw-muted);
  min-height: 18px;
}

.contacts-form__status.is-error {
  color: #c53030;
}

.contacts-form-wrap.is-success {
  display: grid;
  align-content: center;
}

.contacts-form-wrap.is-success > :not(.contacts-form) {
  display: none;
}

.contacts-form.is-success > :not(.contacts-form__success) {
  display: none;
}

.contacts-form__success {
  display: grid;
  justify-items: start;
  width: 100%;
  padding: 6px 0;
  outline: none;
  animation: contacts-success-enter 420ms cubic-bezier(.2, .8, .2, 1) both;
}

.contacts-form__success-kicker {
  margin: 0 0 8px;
  color: var(--gw-orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contacts-form__success h3 {
  max-width: 420px;
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.contacts-form__success > p:not(.contacts-form__success-kicker) {
  max-width: 480px;
  margin: 0 0 25px;
  color: var(--gw-muted);
  font-size: 14px;
  line-height: 1.65;
}

.contacts-form__success-reset {
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  color: #fff;
  background: var(--gw-orange);
  border: 1px solid var(--gw-orange);
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contacts-form__success-reset:hover {
  color: #fff;
  background: var(--gw-orange-dark);
  border-color: var(--gw-orange-dark);
}

.contacts-form__success-reset:active {
  transform: translateY(1px);
}

.contacts-form__success-reset:focus-visible {
  outline: 3px solid rgba(242, 100, 34, .3);
  outline-offset: 3px;
}

@keyframes contacts-success-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 13px;
  font-weight: 750;
  color: var(--gw-text);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(23,23,23,0.13);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gw-text);
  background: #fafafa;
  outline: none;
  transition: border-color 180ms, background 180ms, box-shadow 180ms;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: #b0b0b0;
}

.form-input:focus {
  border-color: var(--gw-orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(231,130,53,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 24px;
  cursor: pointer;
}

.form-consent input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--gw-orange);
}

.form-consent span {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--gw-muted);
}

.form-consent a {
  color: var(--gw-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  color: var(--gw-orange-dark);
}

.btn--submit {
  width: 100%;
  min-height: 54px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 4px;
}

/* Tips section */
.contacts-tips-section {
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-top: 1px solid var(--gw-line);
}

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

.tip-card {
  padding: 32px 28px;
  border: 1px solid var(--gw-line);
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 220ms, transform 220ms, border-color 220ms;
}

.tip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(231,130,53,0.25);
  box-shadow: 0 16px 40px rgba(23,23,23,0.09);
}

.tip-card__num {
  font-size: 40px;
  font-weight: 900;
  color: var(--gw-orange);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tip-card h3 {
  font-size: 18px;
  font-weight: 850;
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gw-muted);
  margin: 0;
}

/* Responsive contacts */
@media (max-width: 900px) {
  .contacts-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .contacts-hero__ctas {
    flex-direction: row;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contacts-hero {
    padding: 64px 0 58px;
  }

  .contacts-hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .contacts-cta-btn {
    min-width: 0;
    width: 100%;
  }

  .contacts-form-wrap {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── How to order section ── */
.how-order {
  border-top: 1px solid var(--gw-line);
}

.how-order__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 52px;
}

.how-order__left h2 {
  margin-bottom: 28px;
}

.how-order__kicker {
  display: none;
}

.how-order__desc {
  margin: 0;
  color: var(--gw-muted);
  font-size: 17px;
  line-height: 1.6;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 32px;
  background: #f2f3f5;
  border-radius: 16px;
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.order-step__num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--gw-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.order-step__icon {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gw-text);
}

.order-step__icon svg,
.order-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-step__title {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 850;
  color: var(--gw-text);
}

.order-step p {
  margin: 0;
  color: var(--gw-muted);
  font-size: 14px;
  line-height: 1.55;
}

.order-step__phone {
  color: var(--gw-orange);
  font-weight: 750;
}

@media (max-width: 960px) {
  .how-order__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .order-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .order-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .order-step {
    padding: 28px 20px 24px;
  }

  .order-step__icon {
    width: 88px;
    height: 88px;
  }
}

/* ══════════════════════════════════════════
   Catalog page — filter sidebar layout
══════════════════════════════════════════ */
.catalog-section {
  background: #fff;
}

.catalog-section > .page-section {
  padding-top: 32px;
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gw-muted);
}

.breadcrumbs a {
  color: var(--gw-muted);
  transition: color 160ms ease;
}

.breadcrumbs a:hover {
  color: var(--gw-orange);
}

.breadcrumbs__sep {
  color: rgba(23, 23, 23, 0.22);
}

.breadcrumbs__current {
  color: var(--gw-text);
}

.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.catalog-head h1 {
  margin-bottom: 0;
  max-width: 560px;
  font-size: clamp(28px, 3.2vw, 40px);
}

/* Match the lighter heading hierarchy used on the home page. */
.catalog-page .catalog-head h1,
.catalog-page .product-card__name {
  font-weight: 700;
}

.catalog-head p {
  margin: 0;
  max-width: 380px;
  color: var(--gw-muted);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .catalog-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .catalog-head h1,
  .catalog-head p {
    max-width: none;
  }
}

.catalog-layout {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 36px;
  align-items: start;
}

/* ── Sidebar ── */
.catalog-sidebar {
  position: sticky;
  top: 108px;
}

.filter-toggle {
  display: none;
}

.catalog-filter-panel {
  background: transparent;
}

.filter-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--gw-line);
}

.filter-group:first-child {
  padding-top: 0;
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group__title {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gw-muted);
}

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 11px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #444;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  text-align: left;
}

.filter-btn:hover {
  background: var(--gw-soft);
  color: var(--gw-orange);
}

.filter-btn.is-active {
  background: var(--gw-orange);
  color: #fff;
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.08);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  margin-left: auto;
}

.filter-btn.is-active .filter-count {
  background: rgba(255, 255, 255, 0.3);
}

.filter-reset-wrap {
  padding: 16px 0 0;
}

.filter-reset-btn {
  width: 100%;
  padding: 9px;
  background: transparent;
  border: 1.5px dashed rgba(23, 23, 23, 0.16);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--gw-muted);
  cursor: pointer;
  transition: border-color 180ms, color 180ms, background 180ms;
}

.filter-reset-btn:hover {
  border-color: var(--gw-orange);
  color: var(--gw-orange);
  background: var(--gw-soft);
}

/* ── Search ── */
.catalog-search {
  position: relative;
  margin-bottom: 14px;
}

.catalog-search__icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #b0b0b0;
  pointer-events: none;
}

.catalog-search__input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid var(--gw-line);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gw-text);
  outline: none;
  transition: border-color 180ms, box-shadow 180ms;
  -webkit-appearance: none;
  appearance: none;
}

.catalog-search__input::placeholder {
  color: #b0b0b0;
  font-weight: 600;
}

.catalog-search__input:focus {
  border-color: var(--gw-orange);
  box-shadow: 0 0 0 3px rgba(231, 130, 53, 0.1);
}

/* ── Load-capacity chips ── */
.load-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.load-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  background: #f5f4f2;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 750;
  color: #444;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.load-chip:hover {
  border-color: rgba(231, 130, 53, 0.35);
  color: var(--gw-orange);
}

.load-chip.is-active {
  background: var(--gw-orange);
  border-color: var(--gw-orange);
  color: #fff;
}

/* ── Illustrated tiles (used when no product photo is available) ── */
.product-card__photo--illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__photo--illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(23, 23, 23, 0.035) 0 9px, transparent 9px 18px);
  pointer-events: none;
}

.product-card__photo--illustration svg {
  position: relative;
  width: 60%;
  height: 60%;
  filter: drop-shadow(0 12px 18px rgba(23, 23, 23, 0.14));
}

.tone-amber    { background: radial-gradient(120% 120% at 28% 16%, rgba(240, 169, 78, 0.2), #f5f4f1 62%); }
.tone-orange   { background: radial-gradient(120% 120% at 28% 16%, rgba(231, 130, 53, 0.2), #f5f4f1 62%); }
.tone-charcoal { background: radial-gradient(120% 120% at 28% 16%, rgba(61, 58, 54, 0.17), #f5f4f1 62%); }
.tone-dark     { background: radial-gradient(120% 120% at 28% 16%, rgba(23, 23, 23, 0.18), #f5f4f1 62%); }
.tone-green    { background: radial-gradient(120% 120% at 28% 16%, rgba(42, 122, 78, 0.18), #f5f4f1 62%); }

/* ── Toolbar ── */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gw-line);
}

.catalog-result {
  font-size: 14px;
  color: var(--gw-muted);
  margin: 0;
}

.catalog-result strong {
  color: var(--gw-text);
  font-weight: 800;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gw-muted);
  white-space: nowrap;
}

.sort-select {
  padding: 8px 32px 8px 12px;
  border: 1.5px solid var(--gw-line);
  border-radius: 8px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--gw-text);
  cursor: pointer;
  outline: none;
  transition: border-color 180ms;
}

.sort-select:focus {
  border-color: var(--gw-orange);
  box-shadow: 0 0 0 3px rgba(231, 130, 53, 0.1);
}

/* ── Empty state ── */
.catalog-empty {
  padding: 72px 24px;
  text-align: center;
  color: var(--gw-muted);
}

.catalog-empty__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: rgba(23, 23, 23, 0.18);
}

.catalog-empty p {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
}

/* ── Extra tag colours ── */
.product-card__tag--green { background: #2a7a4e; }

/* ── Hidden filter state ── */
.product-card.is-hidden { display: none; }

/* ── Catalog mobile ── */
@media (max-width: 900px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-sidebar {
    position: static;
  }

  .filter-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 1.5px solid var(--gw-line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    color: var(--gw-text);
    cursor: pointer;
    transition: border-color 180ms;
  }

  .filter-toggle:hover { border-color: var(--gw-orange); }

  .filter-toggle__arrow {
    margin-left: auto;
    display: flex;
    align-items: center;
    transition: transform 260ms ease;
  }

  .filter-toggle.is-open .filter-toggle__arrow {
    transform: rotate(180deg);
  }

  .catalog-filter-panel {
    display: none;
    margin-top: 10px;
    padding: 4px 16px 16px;
    background: #fff;
    border: 1.5px solid var(--gw-line);
    border-radius: 12px;
  }

  .catalog-filter-panel.is-open {
    display: block;
  }

  .filter-group:first-child {
    padding-top: 18px;
  }
}

/* ── Legal / policy pages ── */

.legal {
  max-width: 820px;
  padding-top: 0;
  padding-bottom: 100px;
}

.legal__block {
  padding-top: 40px;
}

.legal__block:first-child {
  padding-top: 0;
}

.legal__block + .legal__block {
  margin-top: 8px;
  border-top: 1px solid var(--gw-line);
}

.legal h2 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.6vw, 28px);
}

.legal p {
  margin-bottom: 16px;
  color: var(--gw-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal p:last-child {
  margin-bottom: 0;
}

.legal a {
  color: var(--gw-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
