:root {
  --red: #bd0303;
  --red-dark: #7d0000;
  --red-soft: #f4e7e7;
  --black: #000000;
  --carbon: #141414;
  --graphite: #242424;
  --iron: #2d2d2d;
  --muted: #686868;
  --white: #ffffff;
  --paper: #f8f6f5;
  --line: rgba(0, 0, 0, 0.14);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  --page-pad: clamp(18px, 5vw, 96px);
  --content-max: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--carbon);
  background: var(--white);
  font-family: Inter, Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

main {
  width: 100%;
  max-width: none;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 12px var(--page-pad);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.18));
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  width: clamp(150px, 15vw, 260px);
  padding: 8px 0;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-call,
.header-admin {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 800;
  white-space: nowrap;
}

.header-admin {
  width: 42px;
  padding: 0;
  border-color: transparent;
  color: var(--white);
  background: transparent;
}

.header-admin svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  flex: 0 0 auto;
}

.header-admin:hover,
.header-admin:focus-visible {
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 132px var(--page-pad) 84px;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 24%, rgba(0, 0, 0, 0.32) 42%, rgba(0, 0, 0, 0) 64%),
    radial-gradient(ellipse at 18% 58%, rgba(189, 3, 3, 0.22) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0) 68%);
}

.hero-content {
  position: relative;
  max-width: min(820px, 58vw);
}

.hero h1 {
  animation: heroTitleSlideIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
  will-change: transform, opacity;
}

@keyframes heroTitleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-92px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffdddd;
  font-size: 1.56rem;
  line-height: 1.05;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  color: inherit;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 6.2vw, 7rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2.05rem, 3.9vw, 5rem);
  font-weight: 920;
}

h3 {
  font-size: 1.28rem;
  font-weight: 850;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.social-links {
  margin-top: 24px;
}

.social-links a,
.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.social-links a.social-icon-link,
.footer-links a.social-icon-link {
  width: 46px;
  min-width: 46px;
  padding: 0;
  color: var(--white);
}

.social-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.social-links a {
  background: rgba(255, 255, 255, 0.08);
}

.social-links a:hover,
.footer-links a:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 850;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.btn.dark {
  color: var(--black);
  border-color: var(--line);
  background: var(--white);
}

.facebook-share {
  gap: 8px;
  white-space: nowrap;
}

.facebook-mark {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 4px;
  color: var(--white);
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.quick-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: calc(100% - (var(--page-pad) * 2));
  max-width: none;
  margin: -42px var(--page-pad) 0;
  padding: 0;
  filter: drop-shadow(var(--shadow));
}

.quick-strip div {
  min-height: clamp(126px, 12vw, 176px);
  padding: clamp(24px, 3vw, 44px);
  color: var(--white);
  background: var(--black);
}

.quick-strip div:first-child {
  background: var(--red);
}

.quick-strip div:last-child {
  background: var(--red-dark);
}

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

.quick-strip strong {
  margin-bottom: 12px;
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  line-height: 1.05;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.82);
}

.product-showcase {
  overflow: hidden;
  padding-top: clamp(72px, 7vw, 118px);
  padding-bottom: clamp(72px, 7vw, 118px);
  background:
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

.product-showcase-head {
  margin-left: auto;
  margin-right: auto;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--content-max);
  margin: -28px auto 34px;
}

.product-filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  font-weight: 850;
}

.product-filter.is-active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.product-carousel {
  width: calc(100% + (var(--page-pad) * 2));
  margin-left: calc(var(--page-pad) * -1);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.product-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: product-scroll 46s linear infinite;
}

.product-carousel:hover .product-track {
  animation-play-state: paused;
}

.product-marquee-group {
  display: flex;
  gap: clamp(14px, 1.4vw, 22px);
  padding-right: clamp(14px, 1.4vw, 22px);
}

.product-card {
  width: clamp(260px, 24vw, 360px);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 3px solid var(--black);
  object-fit: cover;
  background: var(--black);
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.product-card-meta {
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.product-logo-box {
  min-width: 170px;
  max-width: 240px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-logo-box img {
  width: 100%;
  max-width: 240px;
  height: 68px;
  border-bottom: 0;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.product-category {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--white);
  background: var(--black);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.18rem;
}

.product-description {
  display: -webkit-box;
  margin: 12px 0 8px;
  color: var(--muted);
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.product-card.is-expanded .product-description {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.product-read-more {
  width: fit-content;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  color: var(--red);
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: left;
}

.product-read-more:hover,
.product-read-more:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: auto;
}

.product-card .btn {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.products-page {
  min-height: 100svh;
  background: var(--paper);
}

.products-hero {
  position: relative;
  width: 100%;
  min-height: 82svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(128px, 12vw, 190px) var(--page-pad) clamp(58px, 7vw, 96px);
  color: var(--white);
}

.products-hero-media,
.products-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.products-hero-media {
  object-fit: cover;
  object-position: center;
}

.products-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 31%, rgba(0, 0, 0, 0.3) 62%, rgba(0, 0, 0, 0) 100%),
    radial-gradient(ellipse at 18% 72%, rgba(189, 3, 3, 0.38) 0%, rgba(189, 3, 3, 0.16) 34%, rgba(0, 0, 0, 0) 72%);
}

.products-hero-content {
  position: relative;
  z-index: 1;
  width: min(1020px, 100%);
}

.products-hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6.2vw, 7.2rem);
}

.products-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.products-listing {
  width: 100%;
  padding: clamp(76px, 8vw, 132px) var(--page-pad);
}

.products-listing > * {
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.products-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 4vw, 76px);
  align-items: end;
  margin-bottom: 30px;
}

.products-toolbar h2 {
  max-width: 980px;
  font-size: clamp(2.2rem, 4.6vw, 5.4rem);
}

.products-toolbar p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.products-search {
  display: grid;
  gap: 9px;
  color: var(--carbon);
  font-weight: 900;
}

.products-search input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--black);
  background: var(--white);
  font: inherit;
  font-weight: 650;
}

.products-search input:focus {
  outline: 3px solid rgba(189, 3, 3, 0.2);
  border-color: var(--red);
}

.products-page-filters {
  margin-top: 0;
  margin-bottom: 34px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 360px));
  gap: clamp(18px, 2vw, 30px);
  justify-content: start;
}

.products-grid .product-card {
  width: 100%;
  max-width: 360px;
  min-height: 100%;
}

.products-grid .product-card > img {
  aspect-ratio: 16 / 10;
}

.products-empty {
  margin-top: 24px;
  padding: 24px 28px;
  border-left: 5px solid var(--red);
  color: var(--graphite);
  background: var(--white);
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

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

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

.section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(84px, 9vw, 156px) var(--page-pad);
}

.section.muted {
  max-width: none;
  background: var(--paper);
}

.section.muted > * {
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  width: 100%;
  max-width: min(920px, 70vw);
  margin-bottom: clamp(36px, 5vw, 68px);
}

.section-head p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.services-head-media {
  width: 100%;
  min-height: 320px;
  max-height: 520px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  background: var(--black);
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  width: 100%;
  max-width: var(--content-max);
}

.service-grid,
.department-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 24px);
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.service-card,
.department {
  min-height: clamp(245px, 20vw, 340px);
  padding: clamp(24px, 2.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card:nth-child(even) {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.service-card:nth-child(even) .service-index {
  color: var(--red);
  background: var(--white);
}

.service-card:nth-child(even) p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-index {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  border-radius: 4px;
  background: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card p,
.department p {
  margin: 14px 0 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.filter.is-active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.department-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  overflow: visible;
  padding-bottom: 0;
}

.department {
  min-height: clamp(240px, 18vw, 330px);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-top: 5px solid var(--red);
  box-shadow: inset 0 0 0 0 var(--red);
  transition: opacity 160ms ease, transform 160ms ease;
}

.department:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.department-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--black);
}

.department-body {
  flex: 1;
  padding: clamp(22px, 2vw, 34px);
}

.department:hover {
  border-color: rgba(189, 3, 3, 0.3);
  box-shadow: inset 0 -4px 0 var(--red);
  transform: translateY(-3px);
}

.department.is-hidden {
  display: none;
}

.brands-section {
  padding-top: clamp(70px, 8vw, 108px);
}

.brand-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.brand-intro-copy {
  max-width: 920px;
}

.brand-intro-media {
  width: 100%;
  min-height: clamp(260px, 26vw, 430px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  gap: clamp(12px, 1.15vw, 20px);
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.brand-card {
  min-height: 122px;
  display: grid;
  grid-template-rows: minmax(58px, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 12px;
  width: 100%;
  padding: 22px 18px 16px;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  border-color: rgba(189, 3, 3, 0.36);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.brand-card:focus-visible {
  outline: 3px solid rgba(189, 3, 3, 0.26);
  outline-offset: 3px;
}

.brand-card img {
  width: 100%;
  max-width: 150px;
  max-height: 62px;
  object-fit: contain;
}

.brand-card.is-wide-logo img {
  max-width: 174px;
}

.brand-card.is-compact-logo img {
  max-width: 92px;
  max-height: 68px;
}

.brand-card.is-mono-logo img {
  filter: brightness(0);
}

.brand-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.workshop {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-areas:
    "copy media"
    "proof media";
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(30px, 5.5vw, 86px);
  min-height: 92svh;
  padding: clamp(84px, 9vw, 150px) var(--page-pad);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.92) 43%, rgba(125, 0, 0, 0.94) 100%),
    var(--black);
  overflow: hidden;
  align-items: center;
}

.workshop-copy {
  grid-area: copy;
  max-width: 960px;
}

.workshop-copy h2 {
  max-width: 980px;
  color: var(--white);
}

.workshop-copy .eyebrow {
  color: #ff3434;
}

.workshop-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.02rem, 1.05vw, 1.15rem);
}

.workshop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.workshop-media {
  grid-area: media;
  position: relative;
  align-self: stretch;
  min-height: clamp(520px, 58vw, 780px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.workshop-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05);
}

.workshop-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(120deg, rgba(189, 3, 3, 0.18) 0%, rgba(0, 0, 0, 0) 54%);
  pointer-events: none;
}

.workshop-media figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.workshop-proof {
  grid-area: proof;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
  max-width: 960px;
}

.workshop-proof div {
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.workshop-proof strong,
.workshop-proof span {
  display: block;
}

.workshop-proof strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.workshop-proof span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 1fr);
  min-height: 82svh;
  background: var(--paper);
}

.contact-panel {
  padding: clamp(60px, 7vw, 118px) var(--page-pad);
  background: var(--black);
  color: var(--white);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
}

.contact-list div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 750;
}

.map-frame {
  min-height: 520px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(0.2) contrast(1.04);
}

.site-footer {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px var(--page-pad);
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(90deg, var(--black), var(--red-dark));
}

.site-footer img {
  width: 170px;
  filter: brightness(1.08);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.site-footer .footer-links {
  justify-content: flex-end;
}

.privacy-page {
  min-height: 100svh;
  background: var(--paper);
}

.privacy-hero {
  width: 100%;
  padding: clamp(132px, 12vw, 190px) var(--page-pad) clamp(60px, 7vw, 96px);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.96) 0%, rgba(42, 0, 0, 0.94) 54%, rgba(125, 0, 0, 0.9) 100%),
    var(--black);
}

.privacy-hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 7rem);
}

.privacy-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.privacy-content {
  width: min(1120px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 110px) 0;
}

.privacy-content article {
  padding: clamp(24px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}

.privacy-content article:first-child {
  padding-top: 0;
}

.privacy-content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2.2vw, 2.5rem);
}

.privacy-content p {
  max-width: 920px;
  margin: 12px 0 0;
  color: var(--graphite);
  font-size: 1.06rem;
}

.privacy-content a {
  color: var(--red);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  right: clamp(14px, 2.4vw, 34px);
  bottom: clamp(14px, 2.4vw, 34px);
  width: min(680px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: clamp(18px, 2vw, 26px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.97), rgba(74, 0, 0, 0.98)),
    var(--black);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.cookie-banner a {
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.shared-product-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 74px);
  background: var(--paper);
}

.shared-product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  width: min(1180px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.shared-product > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  background: var(--black);
}

.shared-product-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 58px);
}

.shared-product-body h1 {
  color: var(--black);
  font-size: clamp(2.2rem, 4.8vw, 5.4rem);
}

.shared-product-body p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.shared-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.subpage-main {
  background: var(--white);
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 132px var(--page-pad) clamp(56px, 7vw, 96px);
  color: var(--white);
  overflow: hidden;
}

.page-hero-media,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.page-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.54) 46%, rgba(189, 3, 3, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1020px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: var(--red);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.7vw, 6.5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(78px, 8vw, 132px) var(--page-pad);
}

.detail-copy {
  max-width: 940px;
}

.detail-copy h2 {
  margin-top: clamp(52px, 6vw, 92px);
  font-size: clamp(2rem, 3.2vw, 4.1rem);
}

.detail-copy p {
  margin: 22px 0 0;
  color: var(--graphite);
  font-size: 1.08rem;
}

.detail-copy .lead {
  color: var(--carbon);
  font-size: clamp(1.18rem, 1.6vw, 1.36rem);
  font-weight: 650;
}

.detail-panel {
  align-self: start;
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.detail-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-panel-body {
  padding: 26px;
}

.detail-panel-body h3 {
  font-size: 1.1rem;
}

.detail-panel-body ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.detail-panel-body li {
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: var(--graphite);
  font-weight: 650;
}

.detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 26px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--black));
}

.detail-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.related-section {
  padding: clamp(68px, 7vw, 108px) var(--page-pad);
  background: var(--paper);
}

.related-section .department-grid {
  margin-top: 30px;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 22px 24px;
    color: var(--white);
    background: var(--black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .site-nav.is-open {
    display: grid;
    gap: 2px;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

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

  .hero-content,
  .section-head {
    max-width: 100%;
  }

  .section-head.split,
  .services-head,
  .products-toolbar,
  .brand-intro,
  .workshop,
  .contact-section,
  .detail-layout,
  .detail-cta {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
  }

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

  .shared-product > img {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }

  .workshop {
    grid-template-areas:
      "copy"
      "media"
      "proof";
  }

  .workshop-media {
    min-height: 460px;
  }

  .services-head-media {
    min-height: 260px;
  }

  .brand-intro-media {
    min-height: 300px;
  }

  .detail-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand {
    width: min(195px, 58vw);
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .hero {
    min-height: 100svh;
    padding: 108px 18px 42px;
    align-items: end;
  }

  .page-hero {
    min-height: 66svh;
    padding: 106px 18px 46px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0) 76%),
      radial-gradient(ellipse at 22% 70%, rgba(189, 3, 3, 0.2) 0%, rgba(0, 0, 0, 0.22) 38%, rgba(0, 0, 0, 0) 72%);
  }

  .quick-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: 0;
    width: 100%;
    padding: 0;
  }

  .section,
  .section.muted,
  .product-showcase,
  .products-listing,
  .detail-layout,
  .related-section {
    padding: 72px 18px;
  }

  .products-hero {
    min-height: 76svh;
    padding: 108px 18px 46px;
  }

  .products-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

  .products-toolbar {
    margin-bottom: 22px;
  }

  .products-toolbar h2 {
    font-size: clamp(2rem, 11vw, 3.8rem);
  }

  .products-page-filters {
    margin-bottom: 24px;
  }

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

  .products-grid .product-card {
    width: 100%;
  }

  .product-carousel {
    width: calc(100% + 36px);
    margin-left: -18px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }

  .product-card {
    width: min(82vw, 320px);
    min-height: 410px;
  }

  .product-card-meta {
    grid-template-columns: minmax(150px, 1fr) auto;
    gap: 10px;
  }

  .product-logo-box {
    min-width: 150px;
    max-width: 210px;
  }

  .product-logo-box img {
    max-width: 210px;
  }

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

  .service-card,
  .department {
    min-height: auto;
  }

  .services-head-media {
    min-height: 220px;
    max-height: none;
  }

  .brand-intro-media {
    min-height: 220px;
  }

  .department-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

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

  .brand-card {
    min-height: 108px;
    padding: 18px 12px 13px;
  }

  .brand-card img {
    max-width: 128px;
    max-height: 54px;
  }

  .brand-card.is-wide-logo img {
    max-width: 136px;
  }

  .brand-card span {
    font-size: 0.68rem;
  }

  .workshop,
  .contact-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .workshop-proof {
    grid-template-columns: 1fr;
  }

  .workshop-media {
    min-height: 330px;
  }

  .workshop-media figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .workshop-actions .btn {
    width: 100%;
  }

  .contact-section,
  .workshop {
    min-height: auto;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .privacy-content {
    width: calc(100% - 36px);
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 18px;
    bottom: 18px;
    width: calc(100vw - 36px);
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1 1 140px;
  }

  .breadcrumb {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-track {
    animation: none;
  }

  .product-carousel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 {
    animation: none;
  }
}
