:root {
  --color-brand-dark: #1d0505;
  --color-brand-red: #c11d1c;
  --color-brand-red-hover: #c11d1c;
  --color-text: #5f6673;
  --color-text-muted: #8b94a3;
  --color-border: #e6e9ef;
  --color-surface: #ffffff;
  --color-surface-muted: #f3f5f8;
  --shadow-card: 0 18px 40px rgba(29, 5, 5, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-surface);
  font-family: "Archivo", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

body.nav-open,
body.contact-panel-open,
body.filters-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

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

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

.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;
}

.section {
  padding: 104px 0;
}

.section--dark {
  color: #fff;
  background: var(--color-brand-dark);
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
  padding-top: 28px;
}

.section-heading::before {
  content: attr(data-ghost);
  position: absolute;
  left: -18px;
  top: -12px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(29, 5, 5, 0.09);
  text-stroke: 1px rgba(29, 5, 5, 0.09);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 8.8rem;
  font-weight: 800;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading--dark::before {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.08);
  text-stroke-color: rgba(255, 255, 255, 0.08);
}

.section-heading h2,
.intro-block h2,
.image-cta h2 {
  margin: 0;
  color: var(--color-brand-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading--dark h2,
.section--dark .section-heading h2 {
  color: #fff;
}

.section-heading a {
  position: absolute;
  right: 0;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.section-heading a svg,
.button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-brand-red);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: 0;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--color-brand-red);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-brand-red-hover);
}

.button--dark {
  color: #fff;
  background: var(--color-brand-dark);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--color-brand-red);
}

.button--light {
  color: var(--color-brand-red);
  background: #fff;
}

.button--light:hover,
.button--light:focus-visible {
  color: #fff;
  background: var(--color-brand-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(29, 5, 5, 0.08);
}

.topbar {
  height: 32px;
  color: var(--color-brand-dark);
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.76rem;
  font-weight: 600;
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-brand-dark);
  stroke-width: 2;
  fill: none;
}

.topbar__social {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-brand-dark);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: inherit;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-link img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  transition: filter 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  opacity: 0.72;
  transform: translateY(-1px);
}

.mainnav {
  height: 70px;
  background: #fff;
}

.mainnav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 188px 1fr auto;
  align-items: center;
}

.logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: #fff;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.logo img,
.footer-logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  height: 100%;
  color: var(--color-brand-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-brand-red);
  transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after,
.site-nav__item:hover > .site-nav__link::after,
.site-nav__item:focus-within > .site-nav__link::after {
  transform: scaleX(1);
}

.site-nav__link.is-active {
  color: var(--color-brand-red);
}

.site-nav__link--parent {
  padding-right: 18px;
}

.site-nav__link--parent::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
}

.site-nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  width: max-content;
  min-width: 250px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  color: var(--color-brand-dark);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 22px 54px rgba(32, 24, 23, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__item:hover .site-nav__submenu,
.site-nav__item:focus-within .site-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav__submenu li + li {
  border-top: 1px solid var(--color-border);
}

.site-nav__submenu a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: var(--color-brand-dark);
  font-size: 0.82rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
  color: var(--color-brand-red);
  background: #f7f3f1;
}

.mobile-contact {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  height: 100%;
}

.icon-button,
.menu-button {
  width: 62px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-left: 1px solid var(--color-border);
  color: var(--color-brand-dark);
  background: #fff;
  position: relative;
}

.icon-button svg,
.menu-button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.icon-button--cart span {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-brand-red);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
}

.menu-button {
  color: #fff;
  background: var(--color-brand-red);
}

.menu-button__close {
  display: none;
}

.mainnav.is-open .menu-button__open {
  display: none;
}

.mainnav.is-open .menu-button__close,
.mainnav.is-contact-open .menu-button__close {
  display: block;
}

.mainnav.is-contact-open .menu-button__open {
  display: none;
}

.contact-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(29, 5, 5, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.quick-contact {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(100%, 520px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 32%),
    var(--color-brand-dark);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.34);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

body.contact-panel-open .contact-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.contact-panel-open .quick-contact {
  transform: translateX(0);
}

.quick-contact__header {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr 116px;
  align-items: stretch;
}

.quick-contact h2 {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 44px;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
}

.quick-contact__close {
  border: 0;
  color: #fff;
  background: var(--color-brand-red);
  display: grid;
  place-items: center;
  transition: background-color 180ms ease;
}

.quick-contact__close:hover,
.quick-contact__close:focus-visible {
  background: var(--color-brand-dark);
}

.quick-contact__close svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.quick-contact__body {
  height: calc(100% - 92px);
  padding: 38px 44px 52px;
  overflow-y: auto;
}

.quick-contact__section {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.quick-contact__section svg {
  width: 30px;
  height: 30px;
  margin-top: 4px;
  stroke: #fff;
  stroke-width: 1.9;
  fill: none;
}

.quick-contact__section div,
.mobile-contact__company {
  display: grid;
}

.quick-contact__section strong,
.quick-contact__section span,
.quick-contact__section a {
  display: block;
}

.quick-contact__section strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
}

.quick-contact__section span,
.quick-contact__section a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.22rem;
  line-height: 1.55;
}

.quick-contact__section a {
  transition: color 180ms ease;
}

.quick-contact__section a:hover,
.quick-contact__section a:focus-visible {
  color: #fff;
}

.quick-contact__social {
  margin-top: 2px;
}

.quick-contact__social .social-link {
  width: 44px;
  height: 44px;
  background: #fff;
}

.quick-contact__social .social-link:hover,
.quick-contact__social .social-link:focus-visible {
  background: var(--color-brand-red);
  opacity: 1;
}

.quick-contact__social .social-link:hover img,
.quick-contact__social .social-link:focus-visible img {
  filter: brightness(0) invert(1);
}

.quick-contact__divider {
  height: 1px;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.13);
}

.quick-contact__company {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.quick-contact__company h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.quick-contact__company p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.03rem;
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: min(640px, calc(100vh - 128px));
  display: flex;
  align-items: center;
  --hero-image: url("assets/site-images/hero-gradnja.png");
  --hero-position: center center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(29, 5, 5, 0.96) 0%, rgba(29, 5, 5, 0.88) 38%, rgba(29, 5, 5, 0.42) 72%, rgba(29, 5, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(29, 5, 5, 0.34), rgba(29, 5, 5, 0.04)),
    var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--hero-position);
  overflow: hidden;
}

.hero::before {
  content: attr(data-hero-word);
  position: absolute;
  top: 86px;
  left: 32px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  text-stroke: 1px rgba(255, 255, 255, 0.22);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 11rem;
  font-weight: 800;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 78px 0 108px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero.is-changing .hero__inner {
  opacity: 0;
  transform: translateY(10px);
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 5.9rem;
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.hero__meta {
  max-width: 690px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__meta span {
  position: relative;
  padding-left: 20px;
}

.hero__meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-brand-red);
  transform: translateY(-50%) rotate(45deg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions .button--dark {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(29, 5, 5, 0.64);
}

.hero__actions .button--dark:hover,
.hero__actions .button--dark:focus-visible {
  border-color: var(--color-brand-red);
  background: var(--color-brand-red);
}

.hero__slider {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero__slider-button {
  width: 62px;
  height: 62px;
  border: 0;
  color: var(--color-brand-dark);
  background: #fff;
  font-size: 1.8rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.hero__slider-button--next {
  color: #fff;
  background: var(--color-brand-red);
}

.hero__slider-button:hover,
.hero__slider-button:focus-visible,
.hero__dot:hover,
.hero__dot:focus-visible {
  color: #fff;
  background: var(--color-brand-dark);
}

.hero__slider-button:focus-visible,
.hero__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.hero__dots {
  display: flex;
  align-items: center;
}

.hero__dot {
  width: 10px;
  height: 10px;
  margin-left: 12px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hero__dot.is-active {
  background: var(--color-brand-red);
  opacity: 1;
  transform: scale(1.18);
}

.hero__dot.is-active:hover,
.hero__dot.is-active:focus-visible {
  background: var(--color-brand-dark);
}

.services {
  background:
    linear-gradient(135deg, rgba(29, 5, 5, 0.035) 25%, transparent 25%) 0 0 / 12px 12px,
    #fff;
}

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

.service-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: 34px 30px 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-bottom: 5px solid var(--color-brand-red);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(193, 29, 28, 0.38);
}

.service-card__eyebrow,
.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card__intro {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.service-card h3,
.feature-card h3,
.project-card h3,
.product-card h3 {
  margin: 0;
  color: var(--color-brand-dark);
  font-weight: 800;
  line-height: 1.18;
}

.intro-block {
  position: relative;
  margin-top: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.intro-block::after,
.service-detail__grid::after {
  content: "";
  position: absolute;
  inset: 44px 0 44px 32%;
  z-index: -1;
  background: repeating-linear-gradient(
    135deg,
    rgba(29, 5, 5, 0.035) 0,
    rgba(29, 5, 5, 0.035) 2px,
    transparent 2px,
    transparent 12px
  );
}

.intro-block img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
}

.intro-block__content {
  max-width: 540px;
  padding: 36px 0;
}

.intro-block h2 {
  margin-bottom: 20px;
  text-transform: none;
}

.intro-block p:not(.eyebrow),
.image-cta p {
  margin: 0 0 28px;
}

.projects {
  position: relative;
  overflow: hidden;
}

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

.project-card {
  position: relative;
  display: block;
  min-height: 260px;
  aspect-ratio: 1.08;
  overflow: hidden;
  background: #120303;
  isolation: isolate;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(29, 5, 5, 0.04) 0%, rgba(29, 5, 5, 0.1) 36%, rgba(29, 5, 5, 0.88) 100%),
    linear-gradient(90deg, rgba(29, 5, 5, 0.52) 0%, transparent 58%);
  transition: opacity 180ms ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.project-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.project-card__content {
  position: absolute;
  left: 22px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
}

.project-card h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.18rem, 1.5vw, 1.55rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.36);
}

.project-card p {
  max-width: 20ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.brand-strip {
  position: relative;
  --brand-strip-speed: 34s;
  --brand-strip-edge: clamp(58px, 11vw, 190px);
  padding: 78px 0 86px;
  color: #fff;
  background:
    radial-gradient(circle at 38% 120%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px) 0 0 / 26px 26px,
    radial-gradient(ellipse at 50% 120%, transparent 0 44%, rgba(29, 5, 5, 0.12) 44% 45%, transparent 45%),
    var(--color-brand-red);
  overflow: hidden;
}

.brand-strip__header {
  margin-bottom: 44px;
}

.brand-strip__header::before {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.18);
  text-stroke-color: rgba(255, 255, 255, 0.18);
}

.brand-strip__header h2 {
  max-width: 760px;
  color: #fff;
}

.brand-strip__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.brand-strip__viewport::before,
.brand-strip__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--brand-strip-edge);
  pointer-events: none;
}

.brand-strip__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-brand-red) 0%, rgba(193, 29, 28, 0.94) 18%, rgba(193, 29, 28, 0) 100%);
}

.brand-strip__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-brand-red) 0%, rgba(193, 29, 28, 0.94) 18%, rgba(193, 29, 28, 0) 100%);
}

.brand-strip__track {
  display: flex;
  width: max-content;
  animation: brand-strip-scroll var(--brand-strip-speed) linear infinite;
  will-change: transform;
}

.brand-strip:hover .brand-strip__track,
.brand-strip.is-paused .brand-strip__track {
  animation-play-state: paused;
}

.brand-strip__group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(3.1rem, 6vw, 7rem);
  min-width: max-content;
  padding-right: clamp(3.1rem, 6vw, 7rem);
}

.brand-strip span {
  min-height: 52px;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  overflow-wrap: anywhere;
  opacity: 0.94;
  white-space: nowrap;
}

@keyframes brand-strip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.feature-image img,
.feature-card {
  width: 100%;
  aspect-ratio: 1;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-bottom: 5px solid var(--color-brand-red);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.feature-card svg {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  stroke: var(--color-brand-red);
  stroke-width: 1.8;
  fill: none;
}

.feature-card h3 {
  margin: 8px 0 14px;
  font-size: 1.6rem;
}

.feature-card span {
  color: var(--color-text);
  font-size: 0.92rem;
}

.image-cta {
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)),
    url("assets/site-images/cta-site.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
}

.image-cta__inner {
  display: flex;
  justify-content: flex-end;
}

.image-cta__panel {
  width: min(100%, 510px);
  padding: 70px 72px;
  color: #fff;
  background: var(--color-brand-red);
}

.image-cta h2,
.image-cta .eyebrow {
  color: #fff;
}

.image-cta h2 {
  margin-bottom: 24px;
  text-transform: none;
}

.stats {
  padding-top: 76px;
  padding-bottom: 72px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.stat {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat__ghost {
  position: absolute;
  left: -10px;
  top: -22px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(29, 5, 5, 0.08);
  text-stroke: 1px rgba(29, 5, 5, 0.08);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 7.2rem;
  font-weight: 800;
  line-height: 1;
}

.stat strong {
  position: relative;
  color: var(--color-brand-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 3.6rem;
  line-height: 1;
}

.stat p {
  position: relative;
  margin: 0;
  color: var(--color-brand-dark);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.05;
}

.stat p span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.webshop {
  background: var(--color-surface-muted);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-bottom: 5px solid var(--color-brand-red);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(193, 29, 28, 0.38);
}

.product-card__media {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 245, 248, 0.84)),
    #fff;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-card__body {
  padding: 24px 24px 18px;
}

.product-card__brand {
  margin: 0 0 10px;
  color: var(--color-brand-red);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 3.5em;
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}

.product-card__price {
  margin: 18px 0 0;
  color: var(--color-brand-dark);
  font-size: 1.46rem;
  font-weight: 900;
  line-height: 1;
}

.product-card__purchase {
  display: grid;
  gap: 12px;
  padding: 0 24px 24px;
}

.quantity-control {
  min-height: 44px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.quantity-control button,
.quantity-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--color-brand-dark);
  background: #fff;
  text-align: center;
}

.quantity-control button {
  font-size: 1.1rem;
  font-weight: 900;
  transition: color 180ms ease, background-color 180ms ease;
}

.quantity-control button:hover,
.quantity-control button:focus-visible {
  color: #fff;
  background: var(--color-brand-red);
}

.quantity-control input {
  border-inline: 1px solid var(--color-border);
  font-weight: 800;
  appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.product-card__add {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: #fff;
  background: var(--color-brand-red);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.product-card__add:hover,
.product-card__add:focus-visible {
  transform: translateY(-2px);
  background: var(--color-brand-dark);
}

.product-card__add svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.product-card.is-added .product-card__add {
  background: var(--color-brand-dark);
}

.product-card:hover .product-card__media img,
.product-card:focus-within .product-card__media img {
  transform: scale(1.04);
}

.product-page {
  background: #fff;
}

.single-product-section {
  padding: 42px 0 84px;
  background:
    linear-gradient(180deg, rgba(243, 245, 248, 0.78), rgba(255, 255, 255, 0) 310px),
    #fff;
}

.product-breadcrumbs {
  margin: 0 0 30px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(95, 102, 115, 0.48);
}

.product-breadcrumbs a {
  color: var(--color-brand-dark);
  transition: color 180ms ease;
}

.product-breadcrumbs a:hover,
.product-breadcrumbs a:focus-visible {
  color: var(--color-brand-red);
}

.single-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: start;
  gap: 64px;
}

.single-product__left {
  display: grid;
  gap: 28px;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery__main {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 46px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 245, 248, 0.88)),
    #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: var(--gallery-position, center center);
  transform: scale(var(--gallery-scale, 1));
  transition: opacity 180ms ease, transform 260ms ease;
}

.product-gallery__main img.is-changing {
  opacity: 0;
  transform: scale(calc(var(--gallery-scale, 1) * 0.97));
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-gallery__thumbs button {
  aspect-ratio: 1;
  min-width: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-gallery__thumbs button:hover,
.product-gallery__thumbs button:focus-visible,
.product-gallery__thumbs button.is-active {
  border-color: var(--color-brand-red);
  box-shadow: 0 12px 26px rgba(29, 5, 5, 0.1);
  transform: translateY(-2px);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-tech-spec {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 28px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-brand-red);
}

.product-tech-spec h2 {
  margin: 0;
  color: var(--color-brand-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.product-tech-spec dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.product-tech-spec dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.product-tech-spec dl div:first-child {
  padding-top: 0;
}

.product-tech-spec dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-tech-spec dt {
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-tech-spec dd {
  margin: 0;
  color: var(--color-brand-dark);
  font-weight: 900;
  text-align: right;
}

.product-summary {
  position: sticky;
  top: 128px;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.product-summary .product-card__brand {
  margin-bottom: 12px;
}

.product-summary h1 {
  margin: 0;
  color: var(--color-brand-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-summary__price {
  margin: 22px 0 20px;
  color: var(--color-brand-dark);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.product-summary__cart {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 12px;
  margin: 0 0 24px;
}

.product-summary__cart .quantity-control,
.product-summary__buy {
  min-height: 54px;
}

.product-summary__cart.is-added .product-summary__buy {
  background: var(--color-brand-dark);
}

.product-summary__description {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.product-summary__description p {
  margin: 0;
}

.product-summary__alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 14px;
  color: var(--color-brand-dark);
  background: #fff7f2;
  border: 1px solid rgba(193, 29, 28, 0.22);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-summary__alert::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--color-brand-red);
  transform: rotate(45deg);
}

.product-summary__meta {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-details-band {
  padding: 88px 0;
  background: var(--color-brand-dark);
}

.product-details-band .section-heading {
  margin-bottom: 38px;
}

.product-details-band .section-heading::before {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.08);
  text-stroke-color: rgba(255, 255, 255, 0.08);
}

.product-details-band h2 {
  color: #fff;
}

.product-details__grid {
  max-width: 920px;
}

.product-details__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.product-details__copy p + p {
  margin-top: 18px;
}

.related-products {
  background: var(--color-surface-muted);
}

.product-archive-page {
  background: #fff;
}

.product-archive-section {
  padding: 42px 0 92px;
  background:
    linear-gradient(180deg, rgba(243, 245, 248, 0.82), rgba(255, 255, 255, 0) 330px),
    #fff;
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(0, 3fr);
  align-items: start;
  gap: 32px;
}

.archive-filters {
  position: sticky;
  top: 128px;
  align-self: start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-brand-red);
}

.archive-filters__mobile-header {
  display: none;
}

.archive-filter-form {
  display: grid;
  gap: 26px;
  padding: 28px;
}

.archive-filter-form__header h2,
.archive-header h1 {
  margin: 0;
  color: var(--color-brand-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.archive-filter-form__header h2 {
  font-size: 2.55rem;
}

.archive-filter-group {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
}

.archive-filter-group legend {
  margin: 0 0 12px;
  padding: 0;
  color: var(--color-brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.archive-filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.archive-filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--color-brand-red);
}

.archive-filter-group input[type="search"],
.archive-filter-group input[type="number"],
.archive-sort select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--color-border);
  color: var(--color-brand-dark);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.archive-filter-group input[type="search"],
.archive-filter-group input[type="number"] {
  padding: 0 13px;
}

.archive-filter-group input:focus-visible,
.archive-sort select:focus-visible {
  outline: 2px solid rgba(193, 29, 28, 0.28);
  outline-offset: 2px;
  border-color: var(--color-brand-red);
}

.archive-filter-group--search {
  padding-bottom: 0;
  border-bottom: 0;
}

.archive-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.archive-price-row label {
  display: grid;
  align-items: stretch;
  gap: 6px;
}

.archive-price-row span {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-filter-actions {
  display: grid;
  gap: 10px;
}

.archive-filter-actions .button {
  width: 100%;
}

.archive-filter-reset {
  min-height: 44px;
  border: 1px solid var(--color-border);
  color: var(--color-brand-dark);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.archive-filter-reset:hover,
.archive-filter-reset:focus-visible {
  color: #fff;
  border-color: var(--color-brand-dark);
  background: var(--color-brand-dark);
}

.archive-content {
  min-width: 0;
}

.archive-header {
  margin-bottom: 26px;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-brand-red);
}

.archive-header h1 {
  font-size: 4rem;
}

.archive-header p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 1rem;
}

.archive-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.archive-toolbar p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-filters-toggle {
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: var(--color-brand-red);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.archive-filters-toggle svg,
.archive-filters__close svg,
.archive-pagination svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.archive-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.archive-sort span {
  color: var(--color-brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-sort select {
  min-width: 178px;
  padding: 0 36px 0 12px;
}

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

.archive-product-grid .product-card__media {
  color: inherit;
}

.archive-product-grid .product-card h3 a {
  transition: color 180ms ease;
}

.archive-product-grid .product-card h3 a:hover,
.archive-product-grid .product-card h3 a:focus-visible {
  color: var(--color-brand-red);
}

.archive-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.archive-pagination p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-pagination__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.archive-pagination__links a,
.archive-pagination__links span {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  color: var(--color-brand-dark);
  background: #fff;
  font-weight: 900;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.archive-pagination__links span,
.archive-pagination__links a:hover,
.archive-pagination__links a:focus-visible {
  color: #fff;
  border-color: var(--color-brand-red);
  background: var(--color-brand-red);
}

.service-detail {
  padding-top: 54px;
  scroll-margin-top: 118px;
}

.service-detail__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: start;
  gap: 62px;
}

.service-detail__grid > img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.accordion {
  background: #fff;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__item button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  color: var(--color-brand-dark);
  background: transparent;
  font-weight: 800;
  text-align: left;
}

.accordion__item span {
  width: 24px;
  text-align: center;
  color: var(--color-brand-dark);
  font-size: 1.1rem;
}

.accordion__item.is-open > button span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-brand-red);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.accordion__item.is-open .accordion__panel {
  max-height: 260px;
}

.accordion__panel p {
  margin: 0 70px 24px 0;
  color: var(--color-text);
  font-size: 0.92rem;
}

.contact-section {
  padding-bottom: 118px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: 34px;
}

.contact-map-column {
  display: grid;
  gap: 24px;
}

.contact-map {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: #fff;
  border-bottom: 5px solid var(--color-brand-red);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 410px;
  display: block;
  border: 0;
  filter: saturate(0.86) contrast(1.04);
}

.contact-map__link {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #fff;
  background: var(--color-brand-red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-map__link:hover,
.contact-map__link:focus-visible {
  transform: translateY(-2px);
  background: var(--color-brand-dark);
}

.contact-map__link svg,
.contact-form__submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-location {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  color: var(--color-text);
  background: #fff;
  border-bottom: 5px solid var(--color-brand-red);
}

.contact-location__label {
  margin: 0 0 12px;
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-location h3 {
  margin: 0;
  color: var(--color-brand-dark);
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.1;
}

.contact-location p {
  margin: 16px 0 18px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-location a {
  color: var(--color-brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
  transition: color 180ms ease;
}

.contact-location a:hover,
.contact-location a:focus-visible {
  color: var(--color-brand-red);
}

.contact-form {
  padding: 34px;
  color: var(--color-brand-dark);
  background: #fff;
  border-bottom: 5px solid var(--color-brand-red);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.contact-form__header {
  margin-bottom: 26px;
}

.contact-form__header h3 {
  margin: 0;
  color: var(--color-brand-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field--wide {
  grid-column: 1 / -1;
}

.contact-field span {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--color-border);
  color: var(--color-brand-dark);
  background: var(--color-surface-muted);
  font-weight: 700;
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 152px;
  padding: 14px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(193, 29, 28, 0.64);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(193, 29, 28, 0.12);
}

.contact-form__submit {
  margin-top: 24px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--color-brand-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.1fr;
  gap: 56px;
  padding: 78px 0;
}

.site-footer h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 1.12rem;
}

.site-footer p,
.site-footer address,
.site-footer li {
  margin: 0;
  font-size: 0.92rem;
  font-style: normal;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-meta {
  margin-top: 22px !important;
}

.map-dots {
  width: 220px;
  max-width: 100%;
  height: 120px;
  background:
    radial-gradient(circle, rgba(193, 29, 28, 0.9) 0 3px, transparent 4px) 74px 38px / 110px 60px no-repeat,
    radial-gradient(circle, rgba(193, 29, 28, 0.9) 0 3px, transparent 4px) 142px 64px / 110px 60px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 0 1px, transparent 2px) 0 0 / 10px 10px;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  height: 72px;
  display: grid;
  place-items: center;
  padding: 0 24px;
  background: #fff;
}

.footer-logo img {
  max-width: 168px;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.78rem;
}

.footer-bottom__inner .footer-social {
  display: flex;
  align-items: center;
}

.footer-bottom__inner .social-link {
  width: 54px;
  height: 72px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
}

.footer-bottom__inner .social-link:hover,
.footer-bottom__inner .social-link:focus-visible {
  background: var(--color-brand-red);
  opacity: 1;
  transform: none;
}

.footer-bottom__inner .social-link:hover img,
.footer-bottom__inner .social-link:focus-visible img {
  filter: brightness(0) invert(1);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border: 0;
  color: #fff;
  background: var(--color-brand-red);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--color-brand-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 26px;
  }

  .hero h1 {
    font-size: 5rem;
  }

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

  .single-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 42px;
  }

  .archive-layout {
    gap: 26px;
  }

  .archive-filter-form {
    padding: 24px;
  }

  .archive-header {
    padding: 34px;
  }

  .archive-header h1 {
    font-size: 3.55rem;
  }

  .product-summary {
    padding: 34px;
  }

  .product-summary h1 {
    font-size: 3.05rem;
  }
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .mainnav {
    height: 68px;
  }

  .mainnav__inner {
    grid-template-columns: 176px 1fr auto;
  }

  .logo,
  .icon-button,
  .menu-button {
    height: 68px;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    width: min(86vw, 390px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px;
    color: #fff;
    background: var(--color-brand-dark);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 240ms ease;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.26);
  }

  .mainnav.is-open .site-nav {
    transform: translateX(0);
  }

  .site-nav__item {
    display: block;
    height: auto;
  }

  .site-nav__link {
    height: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__link--parent::before {
    right: 2px;
  }

  .site-nav__submenu {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 8px 0 12px 14px;
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .site-nav__submenu li + li {
    border-top: 0;
  }

  .site-nav__submenu a {
    padding: 9px 0 9px 16px;
    color: rgba(255, 255, 255, 0.78);
    border-left: 2px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    line-height: 1.28;
    white-space: normal;
  }

  .site-nav__submenu a:hover,
  .site-nav__submenu a:focus-visible {
    color: #fff;
    background: transparent;
    border-left-color: var(--color-brand-red);
  }

  .mobile-contact {
    display: grid;
    gap: 2px;
    margin-top: 16px;
    padding-top: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.34;
  }

  .mobile-contact strong {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-contact a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 180ms ease;
  }

  .mobile-contact__social {
    gap: 8px;
    margin-top: 10px;
  }

  .mobile-contact__social .social-link {
    width: 34px;
    height: 34px;
    background: #fff;
  }

  .mobile-contact__social .social-link:hover,
  .mobile-contact__social .social-link:focus-visible {
    background: var(--color-brand-red);
    opacity: 1;
  }

  .mobile-contact__social .social-link:hover img,
  .mobile-contact__social .social-link:focus-visible img {
    filter: brightness(0) invert(1);
  }

  .mobile-contact a:hover,
  .mobile-contact a:focus-visible {
    color: #fff;
  }

  .mobile-contact__divider {
    height: 1px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-contact__company {
    gap: 1px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .quick-contact,
  .contact-backdrop {
    display: none;
  }

  .archive-layout {
    grid-template-columns: 1fr;
  }

  .archive-filters-backdrop {
    position: fixed;
    inset: 0;
    z-index: 65;
    background: rgba(29, 5, 5, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  body.filters-open .archive-filters-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .archive-filters {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    width: min(88vw, 390px);
    border: 0;
    border-right: 5px solid var(--color-brand-red);
    box-shadow: 28px 0 70px rgba(0, 0, 0, 0.26);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 240ms ease;
  }

  body.filters-open .archive-filters {
    transform: translateX(0);
  }

  .archive-filters__mobile-header {
    position: sticky;
    top: 0;
    z-index: 1;
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr 68px;
    align-items: stretch;
    color: #fff;
    background: var(--color-brand-dark);
  }

  .archive-filters__mobile-header span {
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .archive-filters__close {
    border: 0;
    color: #fff;
    background: var(--color-brand-red);
    display: grid;
    place-items: center;
  }

  .archive-filters-toggle {
    display: inline-flex;
  }

  .archive-toolbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .hero {
    min-height: min(580px, calc(100vh - 96px));
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .hero::before {
    font-size: 8rem;
  }

  .service-grid,
  .product-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-block,
  .single-product-layout,
  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .single-product-section {
    padding: 36px 0 72px;
  }

  .product-summary {
    position: static;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 360px;
  }

  .image-cta__panel {
    width: min(100%, 460px);
    padding: 56px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading::before {
    left: -8px;
    font-size: 5.25rem;
  }

  .section-heading h2,
  .intro-block h2,
  .image-cta h2 {
    font-size: 2.85rem;
  }

  .nav-actions .icon-button {
    display: none;
  }

  .mainnav__inner {
    grid-template-columns: 164px 1fr auto;
  }

  .site-nav {
    padding: 22px;
  }

  .site-nav__link {
    height: 46px;
  }

  .mobile-contact {
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .mobile-contact strong {
    font-size: 0.74rem;
  }

  .mobile-contact__divider {
    margin: 6px 0;
  }

  .mobile-contact__company {
    margin-top: 8px;
    padding-top: 8px;
  }

  .hero {
    min-height: min(660px, calc(100vh - 96px));
    background-position: var(--hero-position);
  }

  .hero::before {
    top: 110px;
    left: 16px;
    font-size: 5.2rem;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero__copy {
    max-width: 390px;
    font-size: 0.95rem;
  }

  .hero__meta {
    max-width: 360px;
    gap: 8px 14px;
    margin: 22px 0 28px;
    font-size: 0.7rem;
  }

  .hero__meta span {
    padding-left: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .button {
    width: min(100%, 260px);
  }

  .hero__dots {
    display: none;
  }

  .service-grid,
  .project-grid,
  .featured-grid,
  .product-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-bottom: 82px;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 320px;
  }

  .contact-locations,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 24px;
  }

  .contact-form__header h3 {
    font-size: 2.35rem;
  }

  .intro-block {
    margin-top: 64px;
    gap: 28px;
  }

  .brand-strip {
    --brand-strip-edge: clamp(34px, 15vw, 92px);
    padding: 58px 0;
  }

  .brand-strip__header {
    margin-bottom: 34px;
  }

  .brand-strip__header h2 {
    max-width: 10ch;
  }

  .brand-strip__group {
    gap: 3.4rem;
    padding-right: 3.4rem;
  }

  .brand-strip span {
    font-size: 1.62rem;
  }

  .feature-card {
    aspect-ratio: auto;
    min-height: 260px;
  }

  .product-card h3 {
    min-height: 0;
  }

  .single-product-section {
    padding: 28px 0 58px;
  }

  .product-breadcrumbs {
    margin-bottom: 22px;
    font-size: 0.72rem;
  }

  .product-gallery__main {
    aspect-ratio: 1.05;
    padding: 28px;
  }

  .product-tech-spec {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .product-tech-spec dl div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .product-summary {
    padding: 30px;
  }

  .product-summary h1 {
    font-size: 2.7rem;
  }

  .product-summary__price {
    font-size: 1.65rem;
  }

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

  .product-summary__alert {
    display: flex;
  }

  .archive-header {
    padding: 30px;
  }

  .archive-header h1 {
    font-size: 3rem;
  }

  .archive-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .archive-toolbar p {
    order: -1;
  }

  .archive-filters-toggle,
  .archive-sort,
  .archive-sort select {
    width: 100%;
  }

  .archive-sort {
    justify-content: space-between;
  }

  .archive-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  .archive-pagination__links {
    flex-wrap: wrap;
  }

  .product-details-band {
    padding: 72px 0;
  }

  .image-cta {
    min-height: 0;
    padding: 280px 0 32px;
    align-items: flex-end;
    background-position: 30% center;
  }

  .image-cta__inner {
    justify-content: center;
  }

  .image-cta__panel {
    padding: 42px 32px;
  }

  .accordion__panel p {
    margin-right: 0;
  }

  .section-heading a {
    position: static;
    margin-top: 18px;
  }

  .footer-bottom__inner {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .footer-logo {
    width: 220px;
    margin-inline: auto;
  }

  .footer-bottom__inner .footer-social {
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 2.85rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-card {
    min-height: 166px;
    padding: 28px 24px;
  }

  .stat {
    justify-content: center;
  }

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

  .product-summary {
    padding: 24px;
  }

  .product-summary h1 {
    font-size: 2.35rem;
  }

  .product-tech-spec h2 {
    font-size: 2rem;
  }

  .product-summary__alert {
    width: 100%;
  }

  .archive-filter-form {
    padding: 22px;
  }

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

  .archive-header {
    padding: 26px;
  }

  .archive-header h1 {
    font-size: 2.55rem;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .brand-strip__track {
    animation: none !important;
    transform: none;
  }
}
