:root {
  --charcoal-950: #111310;
  --charcoal-900: #171916;
  --charcoal-850: #1d201d;
  --charcoal-800: #20272b;
  --charcoal-700: #343a38;
  --steel-600: #566169;
  --steel-400: #9ca39f;
  --warm-500: #c7c5be;
  --warm-300: #dedbd3;
  --warm-200: #e9e6df;
  --warm-100: #f4f2ec;
  --white: #ffffff;
  --accent: #e7682d;
  --accent-dark: #bd4615;
  --sage: #687267;
  --success: #3f7252;
  --error: #b63126;
  --border-dark: rgba(255, 255, 255, 0.15);
  --border-light: rgba(23, 25, 22, 0.18);
  --control-border: #737975;
  --shadow-small: 0 12px 34px rgba(17, 19, 16, 0.12);
  --shadow-large: 0 28px 80px rgba(8, 10, 8, 0.35);
  --container: 1180px;
  --container-wide: 1360px;
  --header-height: 88px;
  --header-sticky-height: var(--header-height);
  --section-nav-height: 56px;
  --radius: 6px;
  --font-sans: "Rubik", sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html.is-modal-open,
html.is-menu-open {
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--charcoal-900);
  color: var(--charcoal-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3,
p,
button,
a,
label,
input,
textarea,
select {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

[hidden] {
  display: none !important;
}

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

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

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 3px;
  background: var(--white);
  color: var(--charcoal-900);
  font-weight: 600;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--accent);
  color: var(--charcoal-950);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 1rem;
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(17, 19, 16, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal-900);
}

.button-phone {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(17, 19, 16, 0.32);
  color: var(--white);
  white-space: nowrap;
}

.button-phone .icon {
  color: var(--accent);
}

.button-phone:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal-900);
}

.button-dark {
  border-color: var(--charcoal-900);
  background: var(--charcoal-900);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--charcoal-700);
  background: var(--charcoal-700);
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 3px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.noscript-only {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--charcoal-900);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-link .icon {
  width: 18px;
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--charcoal-700);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.eyebrow .eyebrow-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  stroke-width: 1.8;
}

.eyebrow-light {
  color: var(--warm-200);
}

.section {
  padding: 112px 0;
}

.section-light,
.advantages,
.equipment {
  background: var(--warm-100);
}

.faq {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 62px;
}

.section-heading h1,
.section-heading h2,
.accessories-intro h2,
.safety-content h2,
.faq-intro h1,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: 3.25rem;
  font-weight: 500;
}

.section-heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: 80px;
}

.section-heading-split .lead {
  margin-bottom: 4px;
  color: var(--charcoal-700);
  font-size: 1.08rem;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--border-dark);
  color: var(--white);
  transition: height 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 70px;
  background: rgba(23, 25, 22, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.page-inner .site-header {
  background: rgba(23, 25, 22, 0.96);
  backdrop-filter: blur(14px);
}

.inner-page {
  padding-top: var(--header-height);
}

.section-nav {
  position: sticky;
  z-index: 90;
  top: var(--header-sticky-height);
  height: var(--section-nav-height);
  border-bottom: 1px solid var(--border-dark);
  background: rgba(23, 25, 22, 0.97);
  color: var(--white);
  backdrop-filter: blur(14px);
  transition: top 240ms ease;
}

.section-nav-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.section-nav-label {
  flex: 0 0 auto;
  color: var(--warm-300);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-nav-links {
  display: flex;
  height: 100%;
  min-width: 0;
  align-items: stretch;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav-links::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--steel-400);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.section-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.section-nav a:hover,
.section-nav a[aria-current="true"] {
  color: var(--white);
}

.section-nav a:hover::after,
.section-nav a[aria-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.inner-page section[id] {
  scroll-margin-top: calc(var(--header-sticky-height) + var(--section-nav-height) + 18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-link img {
  width: 220px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--warm-200);
  font-size: 1rem;
  font-weight: 600;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-trigger .icon {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  width: 190px;
  padding: 8px;
  border: 1px solid var(--border-dark);
  border-radius: 3px;
  background: rgba(23, 25, 22, 0.99);
  box-shadow: var(--shadow-small);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -7px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 10px;
  content: "";
}

.desktop-nav .nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 2px;
  color: var(--warm-200);
  font-size: 0.82rem;
}

.desktop-nav .nav-submenu a::after {
  display: none;
}

.desktop-nav .nav-submenu a:hover,
.desktop-nav .nav-submenu a:focus-visible,
.desktop-nav .nav-submenu a[aria-current="page"] {
  background: var(--charcoal-700);
  color: var(--white);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown:hover .nav-dropdown-trigger .icon,
.nav-dropdown:focus-within .nav-dropdown-trigger .icon {
  transform: rotate(180deg);
}

.header-cta {
  margin-left: 4px;
}

.header-phone {
  flex: 0 0 auto;
}

.mobile-sticky-actions {
  display: none;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  max-height: 960px;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--charcoal-950);
  color: var(--white);
}

.hero-product-grid {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1.48fr) minmax(380px, 0.92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-product {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  align-items: flex-end;
  background: var(--charcoal-850);
  isolation: isolate;
}

.hero-product:focus-visible {
  z-index: 4;
  outline: 3px solid var(--accent);
  outline-offset: -5px;
}

.hero-product-primary {
  grid-row: 1 / -1;
}

.hero-product img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 600ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-product-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 10, 0.06) 20%, rgba(10, 12, 10, 0.9) 100%);
  transition: background-color 400ms ease;
}

.hero-product-primary .hero-product-shade {
  background: linear-gradient(180deg, rgba(10, 12, 10, 0.02) 18%, rgba(10, 12, 10, 0.2) 50%, rgba(10, 12, 10, 0.94) 100%);
}

.hero-product::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0);
  content: "";
  pointer-events: none;
  transition: border-color 300ms ease, inset 300ms ease;
}

.hero-product-content {
  display: flex;
  width: 100%;
  padding: 44px 48px;
  align-items: flex-start;
  flex-direction: column;
}

.hero-product-primary .hero-product-content {
  max-width: 780px;
  padding: 64px 72px;
}

.hero-product-kicker {
  margin-bottom: 12px;
  color: var(--warm-300);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-product h1,
.hero-product h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-product h1 {
  font-size: clamp(4.4rem, 7.2vw, 7.5rem);
}

.hero-product h2 {
  font-size: clamp(2.5rem, 3.7vw, 4rem);
}

.hero-product h2.hero-product-primary-title {
  font-size: clamp(4.4rem, 7.2vw, 7.5rem);
}

.hero-product-description {
  width: 100%;
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--warm-200);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
}

.hero-product-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--accent);
  color: var(--charcoal-950);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-product-link .icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  transition: transform 220ms ease;
}

.hero-product:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.hero-product:hover::after {
  inset: 20px;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-product:hover .hero-product-link .icon {
  transform: translateX(5px);
}

.hero-product:hover .hero-product-link,
.hero-product:focus-visible .hero-product-link {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white);
}

/* Introduction */
.section.home-introduction {
  padding-bottom: clamp(44px, 6vw, 64px);
  background: var(--white);
}

.home-introduction-heading {
  max-width: 980px;
  margin-bottom: 0;
}

.home-introduction-copy {
  max-width: 780px;
  margin-top: 32px;
  color: var(--charcoal-700);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-introduction-copy p + p {
  margin-top: 16px;
}

.intro {
  padding-top: 128px;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 72px;
  align-items: center;
}

.technical-figure {
  margin-bottom: 0;
}

.figure-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
}

.figure-frame::before,
.figure-frame::after {
  position: absolute;
  z-index: 1;
  width: 45px;
  height: 45px;
  border-color: var(--accent);
  content: "";
  pointer-events: none;
}

.figure-frame::before {
  top: 13px;
  left: 13px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.figure-frame::after {
  right: 13px;
  bottom: 13px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.figure-code {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  background: var(--charcoal-900);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
}

.technical-figure figcaption {
  display: flex;
  margin-top: 12px;
  align-items: center;
  gap: 10px;
  color: var(--steel-600);
  font-size: 0.75rem;
}

.technical-figure figcaption::before {
  width: 32px;
  height: 1px;
  background: var(--steel-600);
  content: "";
}

.intro-copy p {
  margin-bottom: 25px;
  color: var(--charcoal-700);
}

.intro-copy .text-link {
  margin-top: 10px;
}

/* Advantages */
.advantages {
  padding-top: 44px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.feature {
  position: relative;
  min-height: 460px;
  padding: 28px 28px 34px;
  border-left: 1px solid var(--border-light);
  transition: background-color 220ms ease, color 220ms ease;
}

.feature:last-child {
  border-right: 1px solid var(--border-light);
}

.feature:hover {
  background: var(--charcoal-900);
  color: var(--white);
}

.feature-number {
  color: var(--steel-600);
  font-size: 0.72rem;
  font-weight: 600;
}

.feature-icon {
  width: 38px;
  height: 38px;
  margin: 54px 0 32px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  min-height: 54px;
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature p {
  margin-bottom: 0;
  color: var(--charcoal-700);
  font-size: 0.86rem;
  transition: color 220ms ease;
}

.feature:hover p {
  color: var(--warm-300);
}

/* Safety */
.safety {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-900);
  color: var(--white);
}

.safety::after {
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  content: "";
}

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

.safety-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #090a09;
}

.safety-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: invert(1) grayscale(1) contrast(1.25);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.safety-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 19, 16, 0.96), transparent 55%);
  content: "";
}

.safety-visual-label {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.safety-visual-label span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.safety-visual-label strong {
  display: block;
  max-width: 360px;
  font-size: 1.12rem;
}

.safety-content h2 {
  margin-bottom: 28px;
}

.safety-lead {
  margin-bottom: 38px;
  color: var(--warm-300);
}

.safety-list {
  border-top: 1px solid var(--border-dark);
}

.safety-list > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 22px 0;
  border-bottom: 1px solid var(--border-dark);
}

.safety-list span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
}

.safety-list h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.safety-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--steel-400);
  font-size: 0.84rem;
}

/* Accessories */
.accessories {
  background: var(--warm-200);
}

.accessories-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.accessories-intro p:last-child {
  margin-bottom: 0;
  color: var(--charcoal-700);
  font-size: 1.04rem;
}

.accessory-strip {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.accessory-strip > div {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-left: 1px solid var(--border-light);
  font-size: 0.86rem;
  font-weight: 600;
}

.accessory-strip > div:last-child {
  border-right: 1px solid var(--border-light);
}

.accessory-strip .icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

/* Equipment */
.equipment {
  position: relative;
}

.equipment-heading {
  margin-bottom: 54px;
}

.equipment-highlights {
  display: grid;
  margin: -16px 0 54px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.equipment-highlights > div {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-left: 1px solid var(--border-light);
  font-size: 0.86rem;
  font-weight: 600;
}

.equipment-highlights > div:last-child {
  border-right: 1px solid var(--border-light);
}

.equipment-highlights .icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.catalogue-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  align-items: start;
  gap: 14px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.search-field {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--control-border);
  border-radius: 3px;
  background: var(--white);
}

.search-field:focus-within {
  border-color: var(--accent);
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
}

.search-field .icon {
  width: 18px;
  color: var(--steel-600);
}

.search-field input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.86rem;
}

.category-filters {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid var(--control-border);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--charcoal-900);
  background: var(--charcoal-900);
  color: var(--white);
}

.catalogue-result-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--steel-600);
  font-size: 0.75rem;
  white-space: nowrap;
}

.equipment-grid {
  display: grid;
  min-height: 260px;
  margin-top: 38px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalogue-loading {
  display: flex;
  grid-column: 1 / -1;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--steel-600);
  font-size: 0.85rem;
}

.catalogue-loading span,
.media-loader span {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  border: 2px solid var(--warm-300);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 850ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.equipment-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 510px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.equipment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 25, 22, 0.38);
  box-shadow: var(--shadow-small);
}

.equipment-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(231, 104, 45, 0.18);
}

.equipment-visual {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
  background: var(--warm-200);
}

.equipment-detail-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
}

.equipment-detail-trigger:hover img,
.equipment-detail-trigger:focus-visible img {
  transform: scale(1.03);
}

.equipment-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.equipment-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--steel-600);
}

.equipment-placeholder::before,
.equipment-placeholder::after {
  position: absolute;
  width: 70%;
  height: 1px;
  background: rgba(101, 113, 121, 0.25);
  content: "";
}

.equipment-placeholder::before { transform: rotate(26deg); }
.equipment-placeholder::after { transform: rotate(-26deg); }

.equipment-placeholder .icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: var(--warm-200);
  stroke-width: 1.2;
}

.equipment-selected-mark {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(23, 25, 22, 0.28);
  border-radius: 50%;
  background: var(--white);
  color: transparent;
}

.equipment-card.is-selected .equipment-selected-mark {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--charcoal-950);
}

.equipment-selected-mark .icon {
  width: 17px;
  height: 17px;
  stroke-width: 2.3;
}

.equipment-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.home-equipment {
  background: var(--warm-100);
}

.section.home-equipment {
  padding-top: clamp(44px, 6vw, 64px);
}

.home-equipment-intro {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex-direction: column;
}

.home-equipment-actions {
  display: flex;
  margin-top: 32px;
  justify-content: center;
}

.home-equipment-actions .button {
  min-width: 190px;
}

.home-equipment-grid {
  min-height: 0;
}

.home-equipment-card {
  min-height: 430px;
}

.home-equipment-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.home-equipment-empty {
  padding: 28px;
  border: 1px solid var(--border-light);
  color: var(--steel-600);
}

/* Shelter models */
.home-shelters {
  background: var(--charcoal-850);
  color: var(--white);
}

.home-shelters-heading h2,
.shelter-description .section-heading h2 {
  color: var(--white);
}

.home-shelters-heading .lead {
  color: var(--warm-300);
}

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

.shelter-card {
  display: grid;
  min-height: 650px;
  grid-template-rows: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: var(--charcoal-900);
}

.shelter-card-image {
  display: block;
  overflow: hidden;
  background: var(--white);
}

.shelter-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 450ms ease;
}

.shelter-card:hover .shelter-card-image img {
  transform: scale(1.025);
}

.shelter-card-body {
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.shelter-card-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.shelter-card h3 {
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 500;
}

.shelter-card h3 a:hover {
  color: var(--accent);
}

.shelter-card-body > p:not(.shelter-card-kicker) {
  display: -webkit-box;
  margin-bottom: 24px;
  overflow: hidden;
  color: var(--warm-300);
  font-size: 0.88rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.shelter-card-facts {
  display: grid;
  margin: 0 0 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.shelter-card-facts > div {
  padding: 15px 10px 15px 0;
}

.shelter-card-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--border-dark);
}

.shelter-card-facts dt {
  color: var(--steel-400);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
}

.shelter-card-facts dd {
  margin: 3px 0 0;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.shelter-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

/* Shelter detail pages */
.shelter-hero {
  padding: 44px 0 50px;
  overflow: hidden;
  background: var(--charcoal-900);
  color: var(--white);
}

.shelter-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(44px, 7vw, 98px);
}

.shelter-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.bunker-hero h1 {
  font-size: clamp(3.1rem, 5vw, 4.8rem);
}

.shelter-hero-lead {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--warm-300);
  font-size: 1.08rem;
}

.shelter-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.shelter-hero-visual {
  margin: 0;
}

.shelter-hero-visual img {
  box-sizing: border-box;
  width: 100%;
  height: clamp(320px, 28vw, 390px);
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid var(--border-dark);
  background: var(--white);
  object-fit: contain;
  object-position: center;
}

.shelter-hero-visual figcaption {
  padding-top: 12px;
  color: var(--steel-400);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shelter-alternative {
  padding: clamp(54px, 6vw, 76px) 0 clamp(58px, 7vw, 88px);
  border-top: 1px solid var(--border-dark);
  background: var(--charcoal-850);
  color: var(--white);
}

.shelter-alternative-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(44px, 7vw, 98px);
  color: var(--white);
}

.shelter-alternative-card:focus-visible {
  outline-color: var(--accent);
  outline-offset: 4px;
}

.shelter-alternative-visual {
  display: block;
  min-width: 0;
  margin: 0;
}

.shelter-alternative-content {
  display: block;
  min-width: 0;
}

.shelter-alternative-visual img {
  box-sizing: border-box;
  width: 100%;
  height: clamp(300px, 27vw, 370px);
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid var(--border-dark);
  background: var(--white);
  object-fit: contain;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.shelter-alternative-caption {
  display: block;
  padding-top: 12px;
  color: var(--steel-400);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shelter-alternative-kicker {
  margin-bottom: 18px;
}

.shelter-alternative-card h2 {
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 5vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.shelter-alternative-description {
  display: block;
  max-width: 470px;
  margin-bottom: 30px;
  color: var(--warm-300);
  font-size: 1.02rem;
  line-height: 1.55;
}

.shelter-alternative-link {
  font-size: 0.82rem;
}

.shelter-alternative-card:hover .shelter-alternative-visual img {
  transform: scale(1.035);
}

.shelter-alternative-card:hover .shelter-alternative-link .icon {
  transform: translateX(4px);
}

.shelter-properties {
  background: var(--warm-100);
}

.shelter-properties-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(48px, 9vw, 126px);
}

.shelter-properties-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
}

.shelter-rich-copy p {
  color: var(--charcoal-700);
  font-size: 1.02rem;
}

.shelter-rich-copy p:last-child {
  margin-bottom: 0;
}

.shelter-description {
  background: var(--charcoal-850);
  color: var(--white);
}

.shelter-description .section-heading h2 {
  margin-bottom: 28px;
}

.shelter-description .shelter-rich-copy p {
  color: var(--warm-300);
}

.shelter-description-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
}

.shelter-description-card {
  position: relative;
  min-height: 300px;
  padding: 38px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.shelter-description-number {
  display: block;
  margin-bottom: 46px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
}

.shelter-description-card h3 {
  margin-bottom: 22px;
  font-size: 1.45rem;
  font-weight: 500;
}

.shelter-description-card p,
.shelter-description-card li {
  color: var(--warm-300);
  font-size: 0.88rem;
}

.shelter-description-card p:last-child {
  margin-bottom: 0;
}

.shelter-description-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.shelter-description-card li {
  position: relative;
  padding-left: 18px;
}

.shelter-description-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.shelter-description-card strong {
  color: var(--white);
}

.shelter-properties-intro {
  position: sticky;
  top: 110px;
}

.shelter-properties-intro > p:last-child {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--charcoal-700);
}

.shelter-table-wrap {
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
}

.shelter-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.shelter-table-wrap th,
.shelter-table-wrap td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.shelter-table-wrap thead th {
  background: var(--charcoal-900);
  color: var(--white);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.shelter-table-wrap tbody th {
  width: 52%;
  color: var(--charcoal-700);
  font-size: 0.84rem;
  font-weight: 500;
}

.shelter-table-wrap tbody td {
  font-size: 0.9rem;
  font-weight: 650;
}

.shelter-table-wrap tbody tr:last-child th,
.shelter-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.equipment-category {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
}

.equipment-card h3 {
  margin-bottom: 12px;
  font-size: 1.17rem;
  font-weight: 600;
}

.equipment-detail-title {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.equipment-detail-title:hover,
.equipment-detail-title:focus-visible {
  color: var(--accent-dark);
}

.equipment-description {
  display: -webkit-box;
  margin-bottom: 18px;
  overflow: hidden;
  color: var(--charcoal-700);
  font-size: 0.84rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.equipment-facts {
  display: flex;
  margin: auto 0 19px;
  flex-wrap: wrap;
  gap: 6px;
}

.equipment-facts span {
  padding: 5px 8px;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  color: var(--charcoal-700);
  font-size: 0.68rem;
  line-height: 1.3;
}

.equipment-card-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.equipment-card-actions .button {
  min-height: 44px;
  flex: 1;
  padding: 10px 14px;
  font-size: 0.76rem;
}

.equipment-card-actions .details-button {
  width: 44px;
  height: 44px;
  color: var(--charcoal-900);
}

.equipment-card-actions .details-button:hover {
  background: var(--charcoal-900);
  color: var(--white);
}

.catalogue-empty {
  padding: 70px 20px;
  text-align: center;
}

.catalogue-empty > .icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  color: var(--steel-600);
}

.catalogue-empty h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.catalogue-empty p {
  color: var(--steel-600);
}

.selection-dock {
  position: sticky;
  z-index: 10;
  bottom: 18px;
  display: flex;
  max-width: 720px;
  min-height: 82px;
  margin: 38px auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 14px 13px 20px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(23, 25, 22, 0.97);
  color: var(--white);
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(12px);
}

.selection-dock > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.selection-count {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--charcoal-950);
  font-size: 0.86rem;
  font-weight: 600;
}

.selection-dock p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  line-height: 1.35;
}

.selection-dock p strong {
  font-size: 0.82rem;
}

.selection-dock p span {
  max-width: 270px;
  overflow: hidden;
  color: var(--steel-400);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Gallery */
.gallery {
  background: var(--white);
}

.gallery-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.gallery-heading p:last-child {
  max-width: 350px;
  margin-bottom: 4px;
  color: var(--steel-600);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: clamp(220px, 24vw, 290px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  background: var(--warm-100);
  cursor: zoom-in;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.shelter-product-gallery .gallery-item img {
  background: var(--white);
  object-fit: contain;
}

.gallery-item::after {
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(17, 19, 16, 0.82));
  content: "";
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-caption {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 22px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.gallery-caption b {
  margin-right: 12px;
  color: var(--accent);
  font-size: 0.7rem;
}

.gallery-expand {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  color: var(--white);
}

/* Media panels */
.media-showcase {
  padding: 112px 0;
  background: var(--charcoal-900);
  color: var(--white);
}

.media-showcase .section-heading-split .lead {
  color: var(--steel-400);
}

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

.media-panel {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: #090a09;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(1) grayscale(1);
  mix-blend-mode: screen;
  opacity: 0.62;
  transition: transform 450ms ease, opacity 450ms ease;
}

.media-panel-video img {
  object-position: center;
}

.media-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 8, 7, 0.94), transparent 72%);
}

.media-panel:hover img {
  transform: scale(1.025);
  opacity: 0.78;
}

.media-panel-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(17, 19, 16, 0.25);
  backdrop-filter: blur(8px);
}

.media-panel-icon .icon {
  width: 26px;
  height: 26px;
}

.media-panel-copy {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
}

.media-panel-copy small {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.media-panel-copy strong {
  margin-bottom: 20px;
  font-size: 1.7rem;
}

.media-panel-copy em {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
}

.media-panel-copy em .icon {
  width: 16px;
  height: 16px;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 100px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--steel-600);
}

.faq-intro h1 + p {
  margin-top: 24px;
}

.accordion {
  border-top: 1px solid var(--border-light);
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item h3 button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 600;
  text-align: left;
}

.accordion-item h3 button .icon {
  transition: transform 220ms ease;
}

.accordion-item h3 button[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.accordion-panel {
  overflow: hidden;
}

.accordion-panel > div {
  padding: 0 54px 26px 0;
}

.accordion-panel p {
  margin: 0;
  color: var(--charcoal-700);
  font-size: 0.92rem;
}

/* Privacy policy */
.privacy-hero {
  padding: 104px 0 84px;
  border-bottom: 1px solid var(--border-dark);
  background:
    radial-gradient(circle at 82% 24%, rgba(231, 104, 45, 0.14), transparent 32%),
    var(--charcoal-850);
  color: var(--white);
}

.privacy-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.25rem);
  font-weight: 500;
}

.privacy-hero-lead {
  max-width: 750px;
  margin-bottom: 30px;
  color: var(--warm-300);
  font-size: 1.08rem;
}

.privacy-updated {
  margin: 0;
  color: var(--steel-400);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.privacy-content {
  background: var(--warm-100);
}

.privacy-layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(54px, 8vw, 110px);
}

.privacy-toc {
  position: sticky;
  top: calc(var(--header-sticky-height) + 28px);
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 1px solid var(--border-light);
}

.privacy-toc p {
  margin-bottom: 14px;
  color: var(--charcoal-900);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.privacy-toc a {
  padding: 5px 0;
  color: var(--steel-600);
  font-size: 0.76rem;
  transition: color 180ms ease;
}

.privacy-toc a:hover {
  color: var(--accent-dark);
}

.privacy-document {
  width: 100%;
  min-width: 0;
  max-width: 830px;
}

.privacy-document > section {
  min-width: 0;
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--border-light);
}

.privacy-document > section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.privacy-section-number {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 600;
}

.privacy-document h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.privacy-document h3 {
  margin: 38px 0 14px;
  color: var(--charcoal-700);
  font-size: 1.18rem;
  font-weight: 600;
}

.privacy-document p,
.privacy-document li {
  color: var(--charcoal-700);
  font-size: 0.94rem;
}

.privacy-document p {
  margin-bottom: 18px;
}

.privacy-document ul {
  padding-left: 22px;
  margin: 0 0 24px;
}

.privacy-document li {
  padding-left: 5px;
  margin-bottom: 8px;
}

.privacy-document a {
  color: var(--accent-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-document a:hover {
  color: var(--charcoal-900);
}

.privacy-contact-card {
  display: grid;
  padding: 22px 24px;
  margin: 28px 0;
  border-left: 3px solid var(--accent);
  background: var(--white);
  box-shadow: var(--shadow-small);
  gap: 6px;
}

.privacy-contact-card p {
  margin: 0;
}

.privacy-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 26px 0 30px;
  overflow-x: auto;
  border: 1px solid var(--border-light);
  background: var(--white);
}

.privacy-table-wrap table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.privacy-table-wrap th,
.privacy-table-wrap td {
  padding: 16px 18px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}

.privacy-table-wrap th:last-child,
.privacy-table-wrap td:last-child {
  border-right: 0;
}

.privacy-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.privacy-table-wrap th {
  background: var(--charcoal-850);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.privacy-table-wrap td {
  color: var(--charcoal-700);
  font-size: 0.82rem;
}

.privacy-table-wrap code {
  font-size: 0.84rem;
  font-weight: 600;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #090a09;
  color: var(--white);
}

.final-cta > img {
  position: absolute;
  inset: -15% -5% -15% 28%;
  width: 82%;
  height: 130%;
  object-fit: cover;
  filter: invert(1) grayscale(1) contrast(1.15);
  mix-blend-mode: screen;
  opacity: 0.35;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.98) 0%, rgba(8, 9, 8, 0.78) 50%, rgba(8, 9, 8, 0.18) 100%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 660px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 27px;
  font-size: 4rem;
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--warm-300);
  font-size: 1.04rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 76px 0 24px;
  background: var(--charcoal-950);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(160px, 0.7fr) minmax(220px, 0.9fr);
  gap: 70px;
  padding-bottom: 66px;
}

.footer-brand .brand-link img {
  width: 240px;
}

.footer-brand > p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--steel-400);
  font-size: 0.84rem;
}

.footer-nav,
.footer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav p,
.footer-action > p {
  margin-bottom: 17px;
  color: var(--steel-400);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-nav a {
  padding: 4px 0;
  color: var(--warm-200);
  font-size: 0.84rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-phone {
  margin-top: 10px;
}

.footer-phone .icon {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
  color: var(--steel-400);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom .footer-recaptcha a {
  display: inline;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom .footer-recaptcha a:hover {
  color: var(--warm-300);
}

.footer-bottom .footer-credit {
  color: var(--warm-300);
  transition: color 180ms ease;
}

.footer-bottom .footer-credit:hover {
  color: var(--accent);
}

.footer-bottom .icon {
  width: 14px;
  transform: rotate(180deg);
}

/* Dialogs */
.modal {
  width: min(calc(100% - 32px), 840px);
  max-width: none;
  max-height: min(92svh, 900px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--charcoal-900);
}

.modal::backdrop {
  background: rgba(8, 9, 8, 0.82);
  backdrop-filter: blur(5px);
}

.modal[open] {
  animation: dialog-in 220ms ease both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-shell {
  max-height: min(92svh, 900px);
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--warm-100);
  box-shadow: var(--shadow-large);
  overscroll-behavior: contain;
}

/* The hero link exposes the general form when JavaScript is unavailable. */
#request-dialog:target:not([open]) {
  position: relative;
  inset: auto;
  display: block;
  width: min(calc(100% - 32px), 840px);
  max-height: none;
  margin: 32px auto;
}

#request-dialog:target:not([open]) .modal-shell {
  max-height: none;
}

#request-dialog:target:not([open]) .modal-close {
  display: none;
}

#request-dialog:target:not([open]) .noscript-only {
  display: inline-grid;
}

.modal-header,
.media-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 36px 28px;
  border-bottom: 1px solid var(--border-light);
}

.modal-header h2,
.media-modal-header h2,
.detail-content h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
}

.modal-header > div > p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--steel-600);
  font-size: 0.84rem;
}

.modal-kicker {
  margin-bottom: 9px;
  color: var(--accent-dark);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
}

.modal-close {
  color: var(--charcoal-900);
}

.modal-close:hover {
  border-color: var(--charcoal-900);
  background: var(--charcoal-900);
  color: var(--white);
}

.request-form {
  padding: 30px 36px 36px;
}

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

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.76rem;
  font-weight: 600;
}

.field label span,
.form-footer > p span,
.consent-field b {
  color: var(--accent-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid var(--control-border);
  border-radius: 3px;
  outline: 0;
  background: var(--white);
  font-size: 0.87rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(231, 104, 45, 0.16);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: var(--error);
  font-size: 0.7rem;
  line-height: 1.35;
}

.consent-field {
  display: grid;
  margin-top: 19px;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  color: var(--charcoal-700);
  cursor: pointer;
  font-size: 0.75rem;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.consent-field a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-error {
  margin-left: 30px;
}

.form-footer {
  display: flex;
  margin-top: 17px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-footer > p {
  margin: 0;
  color: var(--steel-600);
  font-size: 0.68rem;
}

.submit-button.is-loading .icon {
  animation: spin 850ms linear infinite;
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(63, 114, 82, 0.08);
  color: var(--success);
}

.form-status.is-error {
  background: rgba(182, 49, 38, 0.08);
  color: var(--error);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.selected-equipment {
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  background: var(--white);
}

.selected-equipment-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border-light);
}

.selected-equipment-heading h3 {
  margin: 0;
  font-size: 0.9rem;
}

.selected-equipment-heading span {
  color: var(--steel-600);
  font-size: 0.7rem;
}

.selected-equipment ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.selected-equipment li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(23, 25, 22, 0.1);
}

.selected-equipment li:last-child {
  border-bottom: 0;
}

.selected-item-name {
  min-width: 0;
}

.selected-item-name strong,
.selected-item-name small {
  display: block;
  overflow-wrap: anywhere;
}

.selected-item-name strong {
  font-size: 0.8rem;
}

.selected-item-name small {
  color: var(--steel-600);
  font-size: 0.65rem;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 34px 38px 34px;
  border: 1px solid var(--control-border);
  border-radius: 3px;
}

.quantity-stepper:focus-within {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
}

.quantity-stepper button {
  display: grid;
  min-height: 34px;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.quantity-stepper button:hover {
  background: var(--warm-200);
}

.quantity-stepper .icon {
  width: 14px;
  height: 14px;
}

.quantity-stepper input {
  width: 38px;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--control-border);
  border-left: 1px solid var(--control-border);
  outline: 0;
  text-align: center;
  -moz-appearance: textfield;
}

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

.remove-selected {
  width: 36px;
  height: 36px;
  color: var(--error);
}

.remove-selected:hover {
  background: rgba(182, 49, 38, 0.08);
}

.remove-selected .icon {
  width: 16px;
  height: 16px;
}

/* Equipment detail */
.detail-modal {
  width: min(calc(100% - 32px), 980px);
}

.detail-modal .modal-shell {
  position: relative;
}

.modal-close-floating {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  background: var(--warm-100);
}

.detail-layout {
  display: grid;
  min-height: 550px;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.detail-visual {
  position: relative;
  display: grid;
  min-height: 400px;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--border-light);
  background: var(--warm-200);
}

.detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-visual .equipment-placeholder .icon {
  background: var(--warm-200);
}

.detail-content {
  padding: 62px 44px 42px;
}

.detail-description {
  color: var(--charcoal-700);
}

.detail-facts {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border-light);
}

.detail-facts h3 {
  margin-bottom: 13px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.detail-facts dl {
  margin-bottom: 0;
}

.detail-facts dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.3fr);
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(23, 25, 22, 0.1);
  font-size: 0.75rem;
}

.detail-facts dt {
  color: var(--steel-600);
}

.detail-facts dd {
  margin: 0;
  font-weight: 600;
}

.detail-actions {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

/* Lightbox */
.lightbox-modal {
  width: calc(100% - 48px);
  max-height: calc(100svh - 48px);
}

.lightbox-shell {
  position: relative;
  display: grid;
  height: calc(100svh - 48px);
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
  gap: 14px;
}

.lightbox-shell figure {
  display: grid;
  min-width: 0;
  max-height: calc(100svh - 48px);
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  border-radius: 3px;
  background: var(--white);
}

.lightbox-shell figure img {
  width: 100%;
  height: calc(100svh - 112px);
  object-fit: contain;
}

.lightbox-shell figcaption {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 18px;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
}

.lightbox-shell figcaption b {
  color: var(--steel-600);
  font-variant-numeric: tabular-nums;
}

.lightbox-nav,
.lightbox-close {
  color: var(--white);
}

.lightbox-nav:hover,
.lightbox-close:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal-900);
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 18px;
  right: 18px;
}

/* Media modals */
.media-modal {
  width: min(calc(100% - 32px), 1180px);
}

.media-modal .modal-shell {
  max-height: 94svh;
  background: var(--charcoal-950);
  color: var(--white);
}

.media-modal-header {
  padding: 20px 24px;
  align-items: center;
  border-bottom-color: var(--border-dark);
}

.media-modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.media-modal-header .modal-kicker {
  margin-bottom: 4px;
  color: var(--accent);
}

.media-modal .modal-close {
  color: var(--white);
}

.media-modal .modal-close:hover {
  background: var(--white);
  color: var(--charcoal-900);
}

.model-stage {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  max-height: calc(94svh - 92px);
  place-items: center;
  overflow: hidden;
  background: #e8e5dd;
}

.model-stage model-viewer {
  width: 100%;
  height: 100%;
  background: #e8e5dd;
}

.media-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--charcoal-700);
  font-size: 0.82rem;
}

.media-fallback {
  max-width: 560px;
  padding: 24px;
  color: var(--charcoal-700);
  text-align: center;
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #080908;
}

.video-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.noscript-note {
  position: fixed;
  z-index: 200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px 18px;
  border: 1px solid var(--accent);
  background: var(--charcoal-900);
  color: var(--white);
  font-size: 0.82rem;
  text-align: center;
}

/* Content stays visible when scripting is unavailable. */
@media (scripting: enabled) and (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
  }

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

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.82rem;
  }

  .brand-link img {
    width: 190px;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .header-cta .icon {
    display: none;
  }

  .header-phone {
    padding-inline: 13px;
    font-size: 0.78rem;
  }

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

  .feature:nth-child(2) {
    border-right: 1px solid var(--border-light);
  }

  .feature:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-light);
  }

  .feature {
    min-height: 390px;
  }

  .catalogue-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 88px 0;
  }

  .desktop-nav,
  .header-cta,
  .header-phone {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .section-nav-inner {
    gap: 22px;
  }

  .menu-toggle {
    display: inline-grid;
    margin-left: auto;
    border-color: rgba(255, 255, 255, 0.4);
  }

  .menu-toggle .close-icon {
    display: none;
  }

  .site-header.is-menu-open .menu-toggle .menu-icon {
    display: none;
  }

  .site-header.is-menu-open .menu-toggle .close-icon {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: block;
    height: calc(100svh - 70px);
    overflow-y: auto;
    border-top: 1px solid var(--border-dark);
    background: var(--charcoal-900);
  }

  .mobile-nav-inner {
    display: flex;
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
    padding: 24px 0 40px;
    flex-direction: column;
  }

  .mobile-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--border-dark);
    color: var(--warm-200);
    font-size: 1rem;
    font-weight: 600;
  }

  .mobile-nav-group {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav .mobile-nav-parent {
    color: var(--white);
  }

  .mobile-nav .mobile-nav-child {
    padding: 11px 0 11px 22px;
    color: var(--steel-400);
    font-size: 0.88rem;
  }

  .mobile-nav .button {
    margin-top: 26px;
  }

  .mobile-nav .button + .button {
    margin-top: 12px;
  }

  .mobile-nav a.button-phone {
    min-height: 52px;
    padding: 13px 22px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    color: var(--white);
    font-size: 0.88rem;
    text-align: center;
  }

  .mobile-nav a.button-phone:hover {
    border-color: var(--white);
    color: var(--charcoal-900);
  }

  .mobile-sticky-actions {
    position: fixed;
    z-index: 80;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.96);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .mobile-sticky-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-request-button,
  .mobile-phone-button {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    height: 58px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 29px;
    box-shadow: 0 12px 32px rgba(17, 19, 16, 0.34);
    color: var(--white);
    font-size: clamp(0.73rem, 3.3vw, 0.86rem);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .mobile-request-button {
    background: var(--accent);
    color: var(--charcoal-950);
    cursor: pointer;
  }

  .mobile-phone-button {
    background: var(--charcoal-900);
  }

  .mobile-phone-button .icon {
    width: 22px;
    height: 22px;
    color: var(--accent);
    stroke-width: 2;
  }

  .mobile-request-button .icon {
    width: 20px;
    height: 20px;
  }

  .mobile-request-button:active,
  .mobile-phone-button:active {
    transform: translateY(1px);
  }

  html.is-menu-open .mobile-sticky-actions,
  html.is-modal-open .mobile-sticky-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.96);
    visibility: hidden;
  }

  .hero {
    min-height: 720px;
  }

  .hero-product-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

  .hero-product-primary .hero-product-content {
    padding: 52px 44px;
  }

  .hero-product-content {
    padding: 34px 32px;
  }

  .hero-product h1 {
    font-size: clamp(4rem, 8vw, 6rem);
  }

  .hero-product h2.hero-product-primary-title {
    font-size: clamp(4rem, 8vw, 6rem);
  }

  .section-heading-split,
  .accessories-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading-split .lead {
    max-width: 680px;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-copy {
    max-width: 690px;
  }

  .safety-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
    gap: 46px;
  }

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

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

  .faq-intro {
    position: static;
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 48px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .privacy-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .privacy-toc {
    position: static;
    display: grid;
    padding: 22px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--border-light);
    background: var(--white);
    gap: 2px 24px;
  }

  .privacy-toc p {
    grid-column: 1 / -1;
  }

  .privacy-document {
    max-width: none;
  }

  .shelter-hero-grid {
    grid-template-columns: 1fr;
  }

  .shelter-hero-copy {
    max-width: 720px;
  }

  .shelter-hero-visual {
    max-width: 820px;
  }

  .shelter-hero-visual img {
    height: min(52vw, 360px);
  }

  .shelter-alternative-card {
    grid-template-columns: 1fr;
  }

  .shelter-alternative-content {
    max-width: 720px;
  }

  .shelter-alternative-visual {
    max-width: 820px;
  }

  .shelter-alternative-visual img {
    height: min(52vw, 350px);
  }
}

@media (max-width: 720px) {
  :root {
    --section-nav-height: 50px;
  }

  .container,
  .container-wide {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

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

  .section-heading h1,
  .section-heading h2,
  .accessories-intro h2,
  .safety-content h2,
  .faq-intro h1,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .privacy-hero {
    padding: 74px 0 62px;
  }

  .privacy-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .privacy-toc {
    grid-template-columns: 1fr;
  }

  .privacy-toc p {
    grid-column: auto;
  }

  .privacy-document > section {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }

  .privacy-document h2 {
    margin-bottom: 24px;
    font-size: 2rem;
  }

  .privacy-table-wrap {
    margin-right: 0;
  }

  .brand-link img {
    width: 178px;
  }

  .mobile-nav-inner {
    width: calc(100% - 32px);
  }

  .section-nav-inner {
    width: 100%;
    padding: 0 16px;
    gap: 0;
  }

  .section-nav-label {
    display: none;
  }

  .section-nav-links {
    width: 100%;
    gap: 22px;
  }

  .section-nav a {
    font-size: 0.74rem;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-product-grid {
    display: flex;
    height: auto;
    flex-direction: column;
    gap: 12px;
    background: var(--warm-100);
  }

  .hero-product {
    min-height: 270px;
  }

  .hero-product-primary {
    min-height: min(610px, 72svh);
  }

  .hero-product-primary .hero-product-content,
  .hero-product-content {
    padding: 38px 32px;
  }

  .hero-product h1 {
    font-size: clamp(3.65rem, 16vw, 5.4rem);
  }

  .hero-product h2 {
    font-size: clamp(2.4rem, 11vw, 3.3rem);
  }

  .hero-product h2.hero-product-primary-title {
    font-size: clamp(3.65rem, 16vw, 5.4rem);
  }

  .hero-product-description {
    max-width: 450px;
    font-size: 0.98rem;
  }

  .shelter-alternative {
    padding: 52px 0 58px;
  }

  .shelter-alternative-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .shelter-alternative-visual {
    width: 100%;
  }

  .shelter-alternative-visual img {
    height: min(64vw, 330px);
  }

  .shelter-alternative-card h2 {
    font-size: clamp(2.55rem, 11vw, 3.4rem);
  }

  .intro {
    padding-top: 82px;
  }

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

  .feature,
  .feature:nth-child(2),
  .feature:last-child {
    min-height: 0;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .feature-icon {
    margin: 34px 0 22px;
  }

  .feature h3 {
    min-height: 0;
  }

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

  .safety-visual {
    aspect-ratio: 4 / 3;
  }

  .accessory-strip,
  .equipment-highlights {
    grid-template-columns: 1fr;
  }

  .accessory-strip > div,
  .accessory-strip > div:last-child,
  .equipment-highlights > div,
  .equipment-highlights > div:last-child {
    min-height: 72px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .accessory-strip > div:last-child,
  .equipment-highlights > div:last-child {
    border-bottom: 0;
  }

  .catalogue-toolbar {
    grid-template-columns: 1fr;
  }

  .catalogue-result-count {
    grid-column: auto;
  }

  .category-filters {
    margin-right: 0;
    padding-right: 0;
  }

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

  .equipment-card {
    min-height: 0;
  }

  .selection-dock {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    min-height: 72px;
    margin: 0;
  }

  .selection-dock p span {
    max-width: 160px;
  }

  .selection-dock .button {
    min-height: 46px;
    padding-inline: 15px;
  }

  .selection-dock .button .icon {
    display: none;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .shelter-card-grid,
  .shelter-properties-grid {
    grid-template-columns: 1fr;
  }

  .shelter-card {
    min-height: 0;
  }

  .shelter-properties-intro {
    position: static;
  }

  .shelter-description-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: clamp(145px, 42vw, 230px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item img {
    object-fit: cover;
  }

  .gallery-caption {
    right: 48px;
    bottom: 12px;
    left: 12px;
    overflow: hidden;
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .gallery-caption b {
    display: block;
    margin: 0 0 3px;
  }

  .gallery-expand {
    right: 10px;
    bottom: 10px;
    width: 32px;
    height: 32px;
  }

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

  .media-panel {
    min-height: 360px;
  }

  .final-cta,
  .final-cta-inner {
    min-height: 600px;
  }

  .final-cta > img {
    inset: 5% -55% 0 10%;
    width: 145%;
    height: 95%;
  }

  .final-cta h2 {
    font-size: 2.7rem;
  }

  .modal {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
  }

  .modal-shell {
    max-height: calc(100svh - 16px);
  }

  .modal-header {
    padding: 24px 20px 20px;
  }

  .modal-header h2,
  .detail-content h2 {
    font-size: 1.55rem;
  }

  .request-form {
    padding: 22px 20px 26px;
  }

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

  .field-full {
    grid-column: auto;
  }

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

  .detail-visual {
    min-height: 260px;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .detail-content {
    padding: 30px 20px;
  }

  .lightbox-modal {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
  }

  .lightbox-shell {
    height: calc(100svh - 16px);
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 5px;
  }

  .lightbox-shell figure img {
    height: calc(100svh - 90px);
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .media-modal-header {
    padding: 14px 16px;
  }

  .media-modal-header h2 {
    font-size: 1rem;
  }

  .model-stage {
    min-height: 65svh;
    aspect-ratio: auto;
  }

  html.has-equipment-selection .mobile-sticky-actions {
    bottom: calc(102px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .button {
    width: 100%;
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .hero-product {
    min-height: 240px;
  }

  .hero-product-primary {
    min-height: min(540px, 68svh);
  }

  .hero-product-primary .hero-product-content,
  .hero-product-content {
    padding: 30px 24px;
  }

  .hero-product h1 {
    font-size: clamp(3.25rem, 18vw, 4.65rem);
  }

  .hero-product h2 {
    font-size: 2.35rem;
  }

  .hero-product h2.hero-product-primary-title {
    font-size: clamp(3.25rem, 18vw, 4.65rem);
  }

  .hero-product-description {
    margin-bottom: 22px;
  }

  .hero-product:hover::after {
    inset: 14px;
  }

  .section-heading h1,
  .section-heading h2,
  .accessories-intro h2,
  .safety-content h2,
  .faq-intro h1,
  .faq-intro h2 {
    font-size: 2.05rem;
  }

  .technical-figure .figure-frame {
    aspect-ratio: 4 / 3;
  }

  .safety-visual {
    aspect-ratio: 1 / 1;
  }

  .selection-dock {
    gap: 10px;
    padding-left: 12px;
  }

  .selection-dock p span {
    display: none;
  }

  .selection-count {
    width: 36px;
    height: 36px;
  }

  .selection-dock .button {
    width: auto;
    min-width: 168px;
    font-size: 0.72rem;
  }

  .media-panel {
    min-height: 310px;
  }

  .media-panel-copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .media-panel-icon {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .final-cta h2 {
    font-size: 2.35rem;
  }

  .shelter-hero {
    padding: 32px 0 42px;
  }

  .shelter-hero h1 {
    font-size: 2.65rem;
  }

  .shelter-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .shelter-hero-actions .text-link {
    align-self: flex-start;
  }

  .shelter-alternative-card h2 {
    font-size: 2.35rem;
  }

  .shelter-card-body,
  .shelter-description-card {
    padding: 26px 22px;
  }

  .shelter-table-wrap th,
  .shelter-table-wrap td {
    padding: 14px 12px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .form-footer > p {
    order: 2;
  }

  .selected-equipment li {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .selected-equipment .quantity-stepper {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .lightbox-shell {
    display: block;
    padding-top: 56px;
  }

  .lightbox-shell figure {
    height: calc(100svh - 80px);
  }

  .lightbox-shell figure img {
    height: calc(100svh - 144px);
  }

  .lightbox-nav {
    position: fixed;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
  }

  .lightbox-prev { left: 14px; }
  .lightbox-next { right: 14px; }
}

.grecaptcha-badge {
  visibility: hidden !important;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
