/* =========================================================
   SWISS BUILD — Premium B2B Wholesale Distribution
   Tools to Build Your Trade
   ========================================================= */

:root {
  /* Palette: industrial, premium, hardware-trade inspired */
  --bg-hero: #0a0a0a;
  --bg-light: #f4f1ec;
  --bg-cream: #ece7df;
  --bg-dark: #0f0f10;
  --bg-deep: #050505;
  --ink: #0c0c0c;
  --ink-soft: #2b2b2c;
  --ink-mute: #6a6864;
  --rule: rgba(12, 12, 12, 0.12);
  --rule-dark: rgba(255, 255, 255, 0.12);
  --accent: #c8412a;        /* Swiss Build heritage red-orange */
  --accent-dark: #a8331e;
  --accent-soft: #e0b35a;   /* Brass / brushed metal */
  --paper: #faf8f4;

  /* Type */
  --font-display: 'Archivo', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', monospace;

  /* Layout */
  --container-pad: clamp(20px, 4vw, 56px);
  --section-pad-y: clamp(80px, 12vw, 180px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  overflow-y: auto;
  /* Native momentum-scroll on iOS — keeps the page gliding instead of jerking
     on touch release. Harmless on other platforms. */
  -webkit-overflow-scrolling: touch;
}
html, body { background: var(--bg-hero); color: var(--ink); }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* Default text-wrap: pretty avoids orphans on the last line of paragraphs
   and is gracefully ignored where unsupported. */
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* =========================================================
   LOADER
   ========================================================= */
#loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
  color: #e9e6e0;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  width: min(520px, 80vw);
  display: grid;
  gap: 28px;
}
.loader-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.2em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.loader-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
}
.loader-bar-wrap {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
#loader-bar {
  width: 0%;
  height: 100%;
  background: #f4f1ec;
  transition: width 0.18s ease-out;
}
.loader-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}
.loader-meta #loader-percent { color: #fff; font-weight: 600; }
.loader-divider { width: 28px; height: 1px; background: rgba(255,255,255,0.3); }

/* =========================================================
   SITE HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  /* env() pushes the visual nav content below the iOS notch/dynamic island
     while the header background still extends to the actual top of the
     viewport — no strip of section content peeking through above the nav. */
  padding: calc(18px + env(safe-area-inset-top)) var(--container-pad) 18px;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
/* iOS safe-area cap — guarantees a solid black strip above the nav even if
   the nav's background painting glitches under viewport-fit=cover. */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: env(safe-area-inset-top);
  background: #000;
  z-index: 51;
  pointer-events: none;
}
.site-header .nav-inner { pointer-events: auto; }

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  color: #fff;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.03); }

.nav-links {
  display: flex;
  gap: 36px;
  justify-content: center;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.nav-links a { opacity: 0.78; transition: opacity 0.25s; color: #fff; }
.nav-links a:hover { opacity: 1; }
.nav-cta { display: flex; justify-content: flex-end; }
.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-button:hover { background: #fff; color: #000; border-color: #fff; }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links-cta { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  /* Mobile drawer — full-width slide-down panel below the nav bar. */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: calc(70px + env(safe-area-inset-top)) 28px 40px;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
    pointer-events: none;
    font-size: 15px;
    letter-spacing: 0.14em;
    z-index: 1;
    max-height: 100dvh;
    overflow-y: auto;
  }
  .site-header.nav-is-open .nav-links {
    display: flex;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a {
    display: block;
    padding: 18px 0;
    opacity: 1;
  }
  .nav-links-cta {
    display: block;
    margin-top: 20px;
    border-bottom: 0 !important;
  }
  .nav-links-cta a { padding: 0; }
  .nav-links-cta .nav-button {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 12px;
  }
}

/* =========================================================
   HERO STANDALONE (100vh, fades out as scroll begins)
   ========================================================= */
.hero-standalone {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #010101;
  color: #f0ede8;
  z-index: 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 90%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 110px var(--container-pad) 36px;
  gap: 32px;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.5);
}
.hero-region { display: inline-block; }

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.6);
}
.section-label.dark { color: rgba(12, 12, 12, 0.55); }

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

.hero-title-mask {
  place-self: center;
  position: relative;
  width: min(980px, 84vw);
  margin: 0;
  display: block;
  background: #010101;
  filter: drop-shadow(0 26px 74px rgba(0,0,0,0.58));
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  will-change: opacity, transform;
  /* Softer, wider feather → the oval reads with a slight blurred edge that melts
     into the black instead of a crisp ellipse boundary. */
  -webkit-mask-image: radial-gradient(ellipse 93% 71% at 50% 50%, #000 50%, rgba(0,0,0,0.82) 64%, rgba(0,0,0,0.46) 78%, rgba(0,0,0,0.18) 90%, transparent 100%);
  mask-image: radial-gradient(ellipse 93% 71% at 50% 50%, #000 50%, rgba(0,0,0,0.82) 64%, rgba(0,0,0,0.46) 78%, rgba(0,0,0,0.18) 90%, transparent 100%);
}

.hero-title-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  pointer-events: none;
}
.hero-title-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 50%;
  box-shadow: inset 0 0 78px 46px #010101;
}

.hero-heading {
  align-self: end;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-size: clamp(56px, 11.5vw, 196px);
  color: #f3efe8;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.hero-heading .word {
  display: block;
  white-space: nowrap;
  perspective: 1200px;
}
.hero-heading .word > span {
  display: inline-block;
  position: relative;
  will-change: transform;
}
.hero-heading .word:nth-child(2) > span,
.hero-heading .word:nth-child(3) > span {
  color: #fff;
  z-index: 1;
}
.hero-heading .word:nth-child(2) > span::before,
.hero-heading .word:nth-child(3) > span::before {
  content: "";
  position: absolute;
  inset: 0.06em -0.08em 0.02em;
  z-index: -1;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.72s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-heading.is-highlighted .word:nth-child(2) > span::before {
  transform: scaleX(1);
  transition-delay: 0s;
}
.hero-heading.is-highlighted .word:nth-child(3) > span::before {
  transform: scaleX(1);
  transition-delay: 0.12s;
}
/* Per-character chips set by the JS splitter */
.hero-heading .char {
  display: inline-block;
  transform-origin: 50% 100% -10px;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}
.hero-heading .char-space {
  display: inline-block;
  width: 0.32em;
}
.hero-heading .word:nth-child(2) {
  padding-left: clamp(28px, 6vw, 120px);
}
.hero-heading .word:nth-child(3) {
  padding-left: clamp(56px, 11vw, 200px);
}

.hero-bottom {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(34px, 7vh, 78px);
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-bottom: 0;
  pointer-events: none;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;          /* compensate for last-letter spacing */
  text-transform: uppercase;
  color: rgba(243, 239, 232, 0.85);
}
.scroll-indicator-label {
  display: inline-block;
}
.scroll-indicator-bar {
  position: relative;
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(243, 239, 232, 0.2);
  overflow: hidden;
}
.scroll-indicator-bar::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(243, 239, 232, 0.95);
  animation: scrollBar 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.scroll-indicator-arrow {
  font-size: 22px;
  line-height: 1;
  opacity: 0.85;
}
@keyframes scrollBar {
  0%   { transform: translateY(0); }
  100% { transform: translateY(400%); }
}
@media (max-width: 700px) {
  .hero-content { padding: 100px 20px 28px; gap: 24px; }
  .hero-title-mask {
    width: min(94vw, 620px);
    margin: 0;
  }
  .hero-heading { font-size: clamp(44px, 13.5vw, 84px); margin-bottom: 16px; }
  .hero-heading .word { white-space: nowrap; }
  .hero-heading .word:nth-child(2) { padding-left: 16px; }
  .hero-heading .word:nth-child(3) { padding-left: 32px; }
  .hero-bottom {
    bottom: 28px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .scroll-indicator { align-self: flex-end; font-size: 11px; }
  .hero-top { font-size: 10px; }
  .hero-region { display: none; }
}

/* =========================================================
   CANVAS LAYER (scroll-driven video scrub)
   ========================================================= */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 32;
  pointer-events: none;
  /* Starts hidden, revealed via opacity fade (was a circle wipe). */
  opacity: 0;
  background: transparent;
  /* Promote to its own GPU layer so the canvas paints don't trigger
     layout-thread compositing every frame during the scrub. Required by
     the new hero scroll architecture for buttery-smooth scrubbing. */
  transform: translateZ(0);
  will-change: clip-path, opacity, transform;
  backface-visibility: hidden;
}
/* Soft black blur halo behind the video edges — feathers the rectangular
   canvas into the dark page background so the video doesn't sit on a hard
   edge. The pseudo lives inside .canvas-wrap so it inherits the same opacity
   fade-in (it stays invisible while the hero logo intro is still on screen).
   The element is intentionally LARGER than the canvas (inset:-12%) and
   heavily blurred so the dark falloff extends well past the video's edges. */
.canvas-wrap::before {
  content: '';
  position: absolute;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 58% 62% at 50% 50%,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.95) 100%
  );
  filter: blur(90px);
}
/* Vignette ON the video itself — fades the video's outer pixels toward black
   so the transition from video → halo → page background is one smooth gradient
   instead of three hard layers. */
.canvas-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 92% 96% at 50% 50%,
    transparent 0%,
    transparent 55%,
    rgba(0, 0, 0, 0.32) 80%,
    rgba(0, 0, 0, 0.88) 100%
  );
}
.canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
/* Hero scrub video sits in the DOM purely so drawImage() can sample it —
   the canvas above is what's actually painted. */
.canvas-wrap #hero-scrub-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   DARK OVERLAY + RADIAL WHITE REVEAL
   ========================================================= */
#dark-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  z-index: 34;
  pointer-events: none;
  will-change: opacity;
}

#radial-reveal {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity;
}
.radial-reveal-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #faf6ee;
  will-change: opacity;
}

/* =========================================================
   HERO TEXT OVERLAYS (appear during scroll)
   ========================================================= */
.hero-overlay-text {
  position: fixed;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  will-change: opacity, transform;
  max-width: min(460px, 40vw);
}
.hero-overlay-text.top-left { top: 16vh; left: var(--container-pad); }
.hero-overlay-text.bottom-left { bottom: 16vh; left: var(--container-pad); }
.hero-overlay-text.bottom-right {
  bottom: 16vh;
  right: var(--container-pad);
  text-align: right;
}
.hero-overlay-text.top-right { top: 16vh; right: var(--container-pad); text-align: right; }
.hero-overlay-text.radial-center {
  z-index: 46;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100vw - 40px));
  max-width: none;
  text-align: center;
}

.overlay-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.78);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffffff;
  border-left: 2px solid var(--accent);
}
.hero-overlay-text.bottom-right .overlay-eyebrow,
.hero-overlay-text.top-right .overlay-eyebrow {
  border-left: none;
  border-right: 2px solid var(--accent);
}
.hero-overlay-text.radial-center .overlay-eyebrow {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid var(--accent);
}
.overlay-heading {
  display: inline;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-transform: none;
  /* "Highlighter" plate so text reads against any frame */
  background: var(--accent);
  box-shadow:
    10px 0 0 var(--accent),
    -10px 0 0 var(--accent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 0;
}
.overlay-sub {
  display: block;
  margin-top: 14px;
  max-width: 32ch;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
  color: #000000;
  letter-spacing: 0.01em;
}
.hero-overlay-text.bottom-right .overlay-sub,
.hero-overlay-text.top-right .overlay-sub { margin-left: auto; }
.hero-overlay-text.radial-center .overlay-heading {
  display: block;
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 112px);
  line-height: 0.96;
  text-transform: uppercase;
}
.radial-highlight {
  display: inline;
  color: #fff;
  background: var(--accent);
  box-shadow:
    12px 0 0 var(--accent),
    -12px 0 0 var(--accent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.radial-scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 48px);
  color: rgba(12, 12, 12, 0.72);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
}
.radial-scroll-bar {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(12, 12, 12, 0.18);
}
.radial-scroll-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42%;
  background: var(--ink);
  animation: radialScrollBar 1.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.radial-scroll-arrow {
  font-size: 18px;
  line-height: 1;
  opacity: 0.72;
}
@keyframes radialScrollBar {
  0%   { transform: translateY(-120%); }
  100% { transform: translateY(260%); }
}

@media (max-width: 700px) {
  .hero-overlay-text { max-width: 80vw; }
  .hero-overlay-text.top-left { top: 10vh; }
  .hero-overlay-text.bottom-left { bottom: 20vh; }
  .hero-overlay-text.bottom-right { bottom: 12vh; }
  .hero-overlay-text.top-right { top: 10vh; }
  .hero-overlay-text.radial-center {
    width: min(86vw, 520px);
    max-width: none;
  }
  .overlay-heading { font-size: clamp(28px, 9vw, 48px); }
  .hero-overlay-text.radial-center .overlay-heading {
    font-size: clamp(40px, 12vw, 72px);
  }
  .radial-scroll-cue {
    margin-top: 28px;
  }
}

/* =========================================================
   SCROLL CONTAINER
   ========================================================= */
#scroll-container {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.hero-scroll-spacer {
  /* Drives the cinematic hero. Sized so the post-hero section sits right behind
     the radial as it fades out (≈ where hero progress hits RADIAL_OUT_END), so
     the white reveals the next section sliding in — no lingering empty gap. */
  height: 112vh;
  width: 100%;
  background: transparent;
  pointer-events: none;
}

/* The post-hero homepage sits ABOVE the canvas with solid bgs */
.post-hero {
  position: relative;
  z-index: 20;
  background: var(--bg-light);
  overflow: visible;
}

/* =========================================================
   GENERIC PAGE SECTION
   ========================================================= */
.page-section {
  position: relative;
  padding: var(--section-pad-y) 0;
  background: var(--bg-light);
  color: var(--ink);
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 880px;
}
.section-head.split-head {
  flex-direction: row;
  max-width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.section-head.split-head > div { max-width: 640px; }
.section-head.center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .section-subhead { max-width: 640px; }

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.heading-highlight {
  display: inline;
  color: #fff;
  background: var(--accent);
  box-shadow:
    0.08em 0 0 var(--accent),
    -0.08em 0 0 var(--accent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.04em;
}
.section-heading em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}

.section-subhead {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 560px;
}
.section-subhead-right {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 420px;
  text-align: right;
}

@media (max-width: 800px) {
  .section-head.split-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-subhead-right { text-align: left; }
}

/* =========================================================
   SECTION: INTRO
   ========================================================= */
/* =========================================================
   SECTION: BRAND STATEMENT (full red, scroll-driven text reveal)
   ========================================================= */
.section-statement {
  position: relative;
  width: 100%;
  /* Tall — gives the sticky frame room to scroll the text reveal */
  min-height: 260vh;
  background: var(--bg-light);
  color: var(--ink);
  overflow: visible;
  isolation: isolate;
}
.statement-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 10vw, 140px) var(--container-pad);
  overflow: hidden;
}
.statement-sticky.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 22;
}
.statement-sticky.is-released {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}
.statement-sticky::before {
  /* Subtle vertical brushed-grid texture (low-contrast dark lines on cream) */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(12,12,12,0.05) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: 0.5;
  pointer-events: none;
}
.statement-sticky::after {
  /* Tiny grain so the off-white doesn't read as banner-flat */
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(12,12,12,0.08) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.statement-grid {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
}
.statement-stage {
  position: relative;
  height: clamp(420px, 70vh, 720px);
  width: 100%;
  overflow: visible;
  isolation: isolate;
}
.statement-stage::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(68%, 520px);
  height: 16%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.28), transparent 68%);
  filter: blur(10px);
  opacity: 0.72;
}
.statement-stands {
  position: absolute;
  inset: 0;
  display: block;
}
.statement-stand {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(82%, 520px);
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  opacity: var(--stand-opacity, 0);
  transform: translate(-50%, var(--stand-y, 26px)) scale(var(--stand-scale, 0.96));
  filter: blur(var(--stand-blur, 12px));
  will-change: opacity, transform, filter;
  pointer-events: none;
  -webkit-user-select: none; user-select: none;
}
.statement-stand-badges {
  position: absolute;
  inset: 0;
  z-index: 160;
  pointer-events: none;
}
.statement-stand-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 9px 13px 8px;
  background: #fff;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 9px 9px 0 rgba(0,0,0,0.18);
  opacity: var(--badge-opacity, 0);
  transform: translate3d(0, var(--badge-y, 16px), 0) scale(var(--badge-scale, 0.92));
  will-change: opacity, transform;
  pointer-events: none;
}
.statement-stand-badge-1 {
  left: clamp(18px, 4vw, 76px);
  top: clamp(34px, 7vh, 74px);
}
.statement-stand-badge-2 {
  right: clamp(14px, 3vw, 56px);
  top: clamp(128px, 21vh, 188px);
}
.statement-stand-badge-3 {
  left: clamp(6px, 2vw, 44px);
  bottom: clamp(152px, 23vh, 220px);
}
.statement-stand-badge-4 {
  right: clamp(4px, 2vw, 42px);
  bottom: clamp(58px, 9vh, 104px);
}
.statement-stand-badge::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
}
/* Full product showcase — legacy fallback if a single image is restored. */
.statement-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  --enter: 0;
  opacity: var(--enter);
  will-change: opacity;
  pointer-events: none;
  -webkit-user-select: none; user-select: none;
}
.statement-frame {
  position: relative;
  z-index: 2;
  text-align: left;
}
.statement-eyebrow {
  display: inline-block;
  margin-bottom: clamp(28px, 3.5vw, 48px);
  padding-bottom: 14px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--rule);
}
.statement-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin: 0;
  /* Prevent any single word ever wrapping to its own line awkwardly */
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
/* Word containers injected by JS — keep each word as an atomic, unbreakable
   unit so the per-character spans inside can never cause mid-word wrapping. */
.statement-word {
  display: inline-block;
  white-space: nowrap;
}
/* Per-char spans injected by JS — invisible until the scroll cursor reaches
   them. No faded/blurred preview of upcoming words. */
.statement-char {
  display: inline-block;
  opacity: 0;
  transition: none;
  will-change: opacity;
}
.statement-char.is-on {
  opacity: 1;
}
.statement-char-space {
  display: inline-block;
  width: 0.28em;
}
.statement-caret {
  display: inline-block;
  width: 0.08em;
  height: 0.92em;
  margin-left: 0.04em;
  background: var(--accent);
  vertical-align: -0.04em;
  animation: caret-blink 1.05s steps(2, end) infinite;
}
@keyframes caret-blink {
  50% { opacity: 0; }
}
.statement-progress {
  display: block;
  margin-top: clamp(36px, 5vw, 64px);
  width: 100%;
  height: 1px;
  background: rgba(12,12,12,0.18);
  position: relative;
  overflow: hidden;
}
.statement-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: none;
}

@media (max-width: 900px) {
  .statement-grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 48px);
  }
  .statement-stage {
    height: clamp(260px, 45vh, 420px);
    order: -1; /* image above text on mobile */
  }
  .statement-container { max-width: 460px; }
}
@media (max-width: 700px) {
  .section-statement { min-height: 240vh; }
  .statement-text { font-size: clamp(18px, 4.6vw, 30px); }
}

@media (prefers-reduced-motion: reduce) {
  .statement-char { opacity: 1; transform: none; filter: none; }
  .statement-caret { animation: none; }
}

/* =========================================================
   SECTION: WAREHOUSE CAPABILITY
   ========================================================= */
.section-warehouse {
  position: relative;
  min-height: 420vh;
  color: var(--paper);
  background-color: #0b0b0b;
  background-image:
    linear-gradient(rgba(11, 11, 11, 0.85), rgba(11, 11, 11, 0.85)),
    url('../assets/images/texture.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  /* overflow:visible so the sticky pin sticks to the viewport — overflow:hidden
     here would make this section its own scroll container and break sticky.
     The scaled video is clipped by .warehouse-pin / .warehouse-video-wrap. */
  overflow: visible;
  isolation: isolate;
}
/* JS-driven pin (not CSS sticky — body{overflow-x:hidden} disables sticky
   site-wide, so we mirror the statement section: absolute → fixed → absolute). */
.warehouse-pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  z-index: 2;
  /* Black base + tool-doodle texture: fading the pin in/out over a neighbour
     fades the screen to/from black; the video irises in/out on top of this. */
  background-color: #000;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url('../assets/images/texture.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  /* display-only panel; it overlays neighbours during the transition, so it must
     never intercept their clicks/scroll. */
  pointer-events: none;
}
.warehouse-pin.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 21;
}
.warehouse-pin.is-released {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
}
.warehouse-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  /* opacity fade, driven by JS — starts hidden so the video fades up from black */
  opacity: 0;
  will-change: opacity;
}
.warehouse-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.05);
  transform: scale(1.01);
  z-index: 1;
}
/* Canvas overlays the <video> and is what the user actually sees. Transparent
   until the first frame is drawn, so the native <video> shows through as a
   graceful fallback if JS/canvas is unavailable. */
.warehouse-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  filter: saturate(0.96) contrast(1.05);
  transform: scale(1.01);
}
.warehouse-side-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0; /* fades in/out with the iris (set by JS) so it never shows over black */
  will-change: opacity;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.70) 28%, rgba(5,5,5,0.06) 45%, rgba(5,5,5,0.06) 58%, rgba(5,5,5,0.72) 78%, rgba(5,5,5,0.90) 100%);
}
.warehouse-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  height: 100vh;
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(72px, 9vw, 132px);
}
/* Each copy block is absolutely positioned inside .warehouse-content so its
   on-screen anchor is dead-explicit — no grid auto-placement surprises.
   The JS `[data-enter, data-leave]` toggle controls which one is visible. */
.warehouse-copy {
  position: absolute;
  max-width: 600px;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.56s ease, transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.56s ease;
}
.warehouse-copy.is-visible {
  opacity: 1;
  filter: blur(0);
}

/* TOP-LEFT */
.warehouse-copy-primary {
  top: clamp(72px, 9vw, 132px);
  left: clamp(20px, 4vw, 64px);
  right: auto;
  bottom: auto;
  max-width: min(620px, 52vw);
  transform: translate3d(-72px, 0, 0);
}
.warehouse-copy-primary.is-visible { transform: translate3d(0, 0, 0); }

/* BOTTOM-RIGHT */
.warehouse-copy-secondary {
  bottom: clamp(72px, 9vw, 132px);
  right: clamp(20px, 4vw, 64px);
  top: auto;
  left: auto;
  max-width: min(520px, 46vw);
  text-align: right;
  transform: translate3d(72px, 0, 0);
}
.warehouse-copy-secondary.is-visible { transform: translate3d(0, 0, 0); }
.warehouse-copy-secondary .warehouse-eyebrow { border-bottom-color: rgba(250,248,244,0.34); }
.warehouse-copy-secondary .warehouse-lead { margin-left: auto; }

/* DEAD CENTER */
.warehouse-copy-center {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: min(760px, 88vw);
  max-width: none;
  text-align: center;
  transform: translate3d(-50%, calc(-50% + 32px), 0);
  /* IMPORTANT: drop the blur filter inherited from .warehouse-copy.
     Any non-`none` filter creates a stacking context that FLATTENS
     `transform-style: preserve-3d` on descendants — which would turn
     the business-card 3D flip into a 2D horizontal mirror, with both
     faces appearing as the same image. */
  filter: none;
  /* Fade-in via opacity only — same arrival rhythm, no 3D break. */
  transition: opacity 0.56s ease, transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.warehouse-copy-center.is-visible {
  transform: translate3d(-50%, -50%, 0);
  filter: none;
}
.warehouse-copy-center .warehouse-lead {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.warehouse-center-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 96px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  text-transform: none;
}
.warehouse-eyebrow {
  display: inline-block;
  margin-bottom: clamp(22px, 3vw, 38px);
  padding-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.76);
  border-bottom: 1px solid rgba(250,248,244,0.24);
}
.warehouse-heading {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
}
.warehouse-side-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}
.warehouse-lead {
  max-width: 540px;
  margin-top: clamp(18px, 2.2vw, 28px);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  color: rgba(250,248,244,0.76);
}

@media (max-width: 980px) {
  .section-warehouse { min-height: 360vh; }
  .warehouse-pin { min-height: 640px; }
  .warehouse-copy {
    max-width: min(86vw, 520px);
  }
  .warehouse-copy-primary,
  .warehouse-copy-secondary {
    left: clamp(20px, 4vw, 40px);
    right: clamp(20px, 4vw, 40px);
    max-width: none;
    text-align: left;
  }
  .warehouse-copy-secondary .warehouse-lead { margin-left: 0; }
}
@media (max-width: 620px) {
  .warehouse-pin {
    height: 100vh;
    min-height: 620px;
  }
  .warehouse-side-shade {
    background:
      linear-gradient(90deg, rgba(5,5,5,0.86) 0%, rgba(5,5,5,0.46) 44%, rgba(5,5,5,0.72) 100%);
  }
  .warehouse-content {
    padding-top: 92px;
    padding-bottom: 96px;
  }
  .warehouse-lead { max-width: 92%; }
}

@media (prefers-reduced-motion: reduce) {
  .warehouse-copy {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  #warehouse-radial-reveal,
  .warehouse-end-overlay { display: none !important; }
}

/* --- End-of-warehouse radial transition (black variant, logo typography) - */
#warehouse-radial-reveal {
  position: fixed;
  inset: 0;
  z-index: 44;
  pointer-events: none;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity;
}
#warehouse-radial-reveal .radial-reveal-circle {
  background-color: #050505;
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)),
    url('../assets/images/texture.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
}

.warehouse-end-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 46;
  pointer-events: none;
  width: min(960px, calc(100vw - 40px));
  text-align: center;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 30px));
  will-change: opacity, transform;
}
.warehouse-end-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid var(--accent);
}
.warehouse-end-heading {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(46px, 7.4vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-transform: lowercase;
  margin: 0;
}
.warehouse-end-heading .heading-highlight {
  background: var(--accent);
  color: #ffffff;
  box-shadow:
    0.08em 0 0 var(--accent),
    -0.08em 0 0 var(--accent);
  padding: 0 0.04em;
}
/* Restored end-overlay address text — small caps under the "2,500+ products"
   heading. Lives in #warehouse-end-overlay, not in warehouse-copy-center. */
.warehouse-end-address {
  display: block;
  margin: clamp(20px, 3vw, 36px) auto 0;
  font-family: var(--font-sans, var(--font-display));
  font-style: normal;
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

/* Business card flip — 3D rotateY driven by scroll via --card-flip (0→1).
   Hardware-accelerated; sized responsively so the card reads as a "real"
   object on the dark warehouse background. Lives in .warehouse-copy-center
   (replaces the old "Durban, South Africa" heading). */
.warehouse-card-stage {
  display: block;
  margin: clamp(20px, 3vw, 36px) auto 0;
  width: min(420px, 70vw);
  aspect-ratio: 1050 / 600;          /* matches the source artwork */
  perspective: 1400px;
  perspective-origin: 50% 50%;
}
.warehouse-card {
  /* JS writes the full `transform: rotateY(<deg>)` value on every scroll
     tick — we don't go through a CSS variable because untyped custom
     properties can't be used inside calc(... * 180deg) and the rule
     silently fails to apply. */
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 0.05s linear;
  will-change: transform;
  /* NO filter / overflow / mask / clip-path here or on any ancestor up to
     .warehouse-card-stage — they flatten preserve-3d and the back face
     never gets its turn. Drop-shadow is applied per-face below instead. */
}
.warehouse-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.warehouse-card-face img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55))
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}
.warehouse-card-front { transform: rotateY(0deg); }
.warehouse-card-back  { transform: rotateY(180deg); }
.warehouse-end-overlay .radial-scroll-cue {
  margin-top: clamp(28px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.72);
}
.warehouse-end-overlay .radial-scroll-bar {
  background: rgba(255, 255, 255, 0.18);
}
.warehouse-end-overlay .radial-scroll-bar::after {
  background: #ffffff;
}
@media (max-width: 700px) {
  .warehouse-end-heading {
    font-size: clamp(26px, 8vw, 48px);
    text-wrap: pretty;
    word-break: keep-all;
    overflow-wrap: normal;
  }
}

/* =========================================================
   SECTION: BRAND RANGE GRID
   ========================================================= */
.section-brand-ranges {
  position: relative;
  background-color: #120f0e;
  background-image:
    linear-gradient(rgba(18, 15, 14, 0.85), rgba(18, 15, 14, 0.85)),
    url('../assets/images/texture.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  color: var(--paper);
  padding: clamp(70px, 8vw, 120px) 0;
  overflow: hidden;
}
.section-brand-ranges::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 96px 100%, 4px 4px;
  opacity: 0.32;
  pointer-events: none;
}
.brand-ranges-container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
}
.brand-ranges-head {
  display: block;
  text-align: left;
}
.brand-ranges-heading {
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 78px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.brand-ranges-subhead {
  max-width: 520px;
  margin-top: 18px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
  color: rgba(244, 241, 236, 0.68);
}
.brand-range-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(244,241,236,0.16);
  border: 1px solid rgba(244,241,236,0.16);
}
.brand-range-tile {
  appearance: none;
  border: 0;
  min-height: clamp(170px, 18vw, 250px);
  padding: clamp(24px, 3vw, 42px);
  background: rgba(244,241,236,0.93);
  color: var(--ink);
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  align-items: center;
  justify-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: center;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.brand-range-tile:hover,
.brand-range-tile:focus-visible {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
  outline: none;
}
.brand-range-logo {
  width: min(100%, 220px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-range-logo-wide {
  width: min(100%, 270px);
}
.brand-range-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-range-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.brand-range-count {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand-range-count span {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.brand-range-link::after {
  content: '→';
  font-size: 14px;
  line-height: 1;
}

/* ----- Sub-brand tier strip (visible on each tile, before click) ----- */
.brand-range-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid rgba(26, 18, 8, 0.08);
  width: 100%;
  min-height: 36px;
}
.brand-range-sub:empty { display: none; }
.brand-range-sub-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 8px;
  background: #fff;
  border: 1px solid rgba(26, 18, 8, 0.08);
  border-radius: 6px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.brand-range-tile:hover .brand-range-sub-pill { border-color: rgba(196, 38, 49, 0.32); }
.brand-range-sub-pill img {
  display: block;
  height: 18px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .brand-range-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .brand-range-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION: 002 INTRODUCTION (editorial spread)
   Warm paper section with the man-and-truck video kept frameless.
   ========================================================= */
.section-intro {
  position: relative;
  background: #faf6ee;
  padding-top: clamp(52px, 7vw, 104px);
  padding-bottom: clamp(72px, 9vw, 132px);
}
.intro-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}

/* --- Top: eyebrow row + big headline ---------------------------------- */
.intro-stage {
  flex-shrink: 0;
}

/* --- Headline ------------------------------------------------------- */
.intro-headline {
  position: relative;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.35vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 16ch;
  text-transform: uppercase;
  margin-top: 0;
}
.intro-headline em {
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  box-shadow:
    0.08em 0 0 var(--accent),
    -0.08em 0 0 var(--accent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* --- Editorial spread (body left, figure right) --------------------- */
.intro-spread {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 1.12fr);
  gap: clamp(22px, 3vw, 52px);
  align-items: start;
}
.intro-text {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
  padding-top: 0;
}
.intro-lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}
.intro-lead + .intro-lead {
  color: var(--ink-mute);
}
.intro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  border-top: 1px solid rgba(12, 12, 12, 0.2);
  border-bottom: 1px solid rgba(12, 12, 12, 0.2);
}
.intro-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-right: 1px solid rgba(12, 12, 12, 0.16);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.intro-proof span:first-child {
  padding-left: 0;
}
.intro-proof span:last-child {
  border-right: none;
}
.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: clamp(4px, 1vw, 12px);
  padding: 14px 22px 14px 24px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.4s cubic-bezier(0.65, 0, 0.35, 1),
              color 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.intro-cta:hover {
  background: var(--accent);
  color: #fff;
}
.intro-cta-arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.intro-cta:hover .intro-cta-arrow { transform: translateX(4px); }

/* --- Figure (video + caption) — fully frameless, no container ------- */
.intro-figure {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-top: clamp(-280px, -15vw, -148px);
  transform: translateX(clamp(-44px, -3vw, -18px));
  background: transparent;
}
/* The <video> sizes itself directly — no wrapper, no border, no shadow.
   Edges are softened with a radial mask so the video alpha fades into the
   cream section background instead of cutting on a hard rectangle. */
.intro-figure-video {
  display: block;
  width: min(128%, 720px);
  max-width: none;
  aspect-ratio: 1 / 1;        /* matches the source — no crop */
  object-fit: cover;
  object-position: center center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image:
    radial-gradient(ellipse 86% 86% at 50% 50%, #000 55%, rgba(0,0,0,0.6) 75%, transparent 100%);
          mask-image:
    radial-gradient(ellipse 86% 86% at 50% 50%, #000 55%, rgba(0,0,0,0.6) 75%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
/* --- Fact strip (stats) --------------------------------------------- */
.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(12, 12, 12, 0.18);
  border-bottom: 1px solid rgba(12, 12, 12, 0.18);
  background: rgba(250, 246, 238, 0.62);
}
.intro-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2vw, 32px);
  border-right: 1px solid var(--rule);
}
.intro-stat:last-child { border-right: none; }
.intro-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.intro-stat-num small {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--ink-mute);
  vertical-align: 0.32em;
  margin-left: 2px;
}
.intro-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* --- Responsive ----------------------------------------------------- */
@media (max-width: 900px) {
  .intro-spread {
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 56px);
  }
  .intro-figure {
    margin-top: 0; /* never lift on stacked mobile layout */
    transform: none;
  }
  .intro-figure-video {
    width: 100%;
    max-width: none;
  }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }
  .intro-stat { border-bottom: 1px solid var(--rule); }
  .intro-stat:nth-child(2n) { border-right: none; }
  .intro-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 540px) {
  .intro-proof {
    width: 100%;
  }
  .intro-proof span {
    width: 100%;
    padding-inline: 0;
    border-right: none;
    border-bottom: 1px solid rgba(12, 12, 12, 0.12);
  }
  .intro-proof span:last-child {
    border-bottom: none;
  }
  .intro-stats { grid-template-columns: 1fr; }
  .intro-stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .intro-stat:last-child { border-bottom: none; }
}

/* =========================================================
   SECTION: BRANDS GRID
   ========================================================= */
.section-brands {
  background: var(--bg-cream);
  color: var(--ink);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.brand-card {
  position: relative;
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.5s cubic-bezier(0.65, 0, 0.35, 1),
              color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  aspect-ratio: 1 / 1.35;
  color: var(--ink);
}
.brand-card:hover { background: var(--ink); color: var(--paper); }

/* MEDIA — top portion of card, holds the catalogue hero image + number badge */
.brand-card-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: #ece9e3;
}
.brand-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
              filter 0.6s ease;
  will-change: transform;
}
.brand-card:hover .brand-card-img {
  transform: scale(1.04);
  filter: brightness(1.04);
}
.brand-card-num {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink);
  background: rgba(244, 241, 236, 0.92);
  padding: 5px 9px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  transition: background 0.4s, color 0.4s;
}
.brand-card:hover .brand-card-num {
  background: rgba(12, 12, 12, 0.88);
  color: var(--paper);
}

/* BODY — bottom panel with name, description, arrow */
.brand-card-body {
  flex: 0 0 auto;
  padding: clamp(18px, 1.8vw, 26px) clamp(18px, 1.8vw, 26px) clamp(20px, 2vw, 28px);
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--rule);
  background: inherit;
}
.brand-card:hover .brand-card-body { border-top-color: rgba(255,255,255,0.10); }

.brand-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.brand-card-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 34ch;
  transition: color 0.4s;
}
.brand-card:hover .brand-card-desc { color: rgba(255,255,255,0.7); }

.brand-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.4s;
}
.brand-card:hover .brand-card-arrow { color: var(--accent-soft); }
.brand-card-arrow span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.brand-card:hover .brand-card-arrow span { transform: translateX(6px); }

/* WIDE card (Swiss Paint) — image on one side, body on the other */
.brand-card-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1.35;
  flex-direction: row;
}
.brand-card-wide .brand-card-media {
  flex: 0 0 55%;
  height: 100%;
  border-right: 1px solid var(--rule);
}
.brand-card:hover .brand-card-media { border-right-color: rgba(255,255,255,0.10); }
.brand-card-wide .brand-card-body {
  flex: 1;
  border-top: none;
  border-left: none;
  align-self: center;
  padding: clamp(24px, 2.4vw, 36px);
}
.brand-card-wide .brand-card-name {
  font-size: clamp(24px, 2vw, 34px);
}
.brand-card-wide .brand-card-desc { max-width: 38ch; font-size: 13.5px; }

@media (max-width: 1100px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card-wide { grid-column: span 2; aspect-ratio: 2 / 1.2; }
}
@media (max-width: 640px) {
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { aspect-ratio: 1 / 1.15; }
  .brand-card-wide {
    grid-column: span 1;
    aspect-ratio: 1 / 1.15;
    flex-direction: column;
  }
  .brand-card-wide .brand-card-media {
    flex: 1;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .brand-card-wide .brand-card-body {
    flex: 0 0 auto;
    border-top: 1px solid var(--rule);
  }
}

/* =========================================================
   SECTION: FEATURED RANGES
   ========================================================= */
.section-featured {
  background: var(--bg-light);
  color: var(--ink);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.featured-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  overflow: hidden;
}
.featured-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  margin-bottom: 18px;
}
.featured-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.featured-card:hover .featured-art::before { transform: scale(1.06); }

.featured-art-1::before {
  background:
    radial-gradient(circle at 50% 40%, rgba(232, 200, 140, 0.55), transparent 60%),
    linear-gradient(135deg, #1d1c1a 0%, #3a2f25 50%, #14110d 100%);
}
.featured-art-2::before {
  background:
    radial-gradient(circle at 60% 50%, rgba(200, 65, 42, 0.5), transparent 60%),
    linear-gradient(135deg, #2a1814 0%, #432418 60%, #1a0e0a 100%);
}
.featured-art-3::before {
  background:
    radial-gradient(circle at 40% 60%, rgba(178, 178, 178, 0.45), transparent 60%),
    linear-gradient(135deg, #232323 0%, #3a3a3a 50%, #161616 100%);
}
.featured-art-4::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(224, 179, 90, 0.45), transparent 60%),
    linear-gradient(135deg, #1f1a14 0%, #4a3a22 60%, #0f0c08 100%);
}

.featured-art-mark {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
}

.featured-body { display: grid; gap: 8px; }
.featured-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.featured-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.featured-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
}

@media (max-width: 1000px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .featured-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION: PARTNERS
   ========================================================= */
.section-partners {
  background: var(--bg-dark);
  color: var(--paper);
}
.section-partners .section-label,
.section-partners .section-subhead { color: rgba(244, 241, 236, 0.6); }
.section-partners .section-heading { color: var(--paper); }

.partners-grid-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: flex-start;
}
.partners-head {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.partners-list {
  list-style: none;
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.partner-item {
  background: var(--bg-dark);
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  transition: padding 0.4s, background 0.4s;
}
.partner-item:hover { background: #161617; padding-left: 16px; padding-right: 16px; }
.partner-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent-soft);
  padding-top: 4px;
}
.partner-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.partner-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.65);
  max-width: 540px;
}

@media (max-width: 900px) {
  .partners-grid-wrap { grid-template-columns: 1fr; }
  .partners-head { position: static; }
}

/* =========================================================
   SECTION: ABOUT (light theme)
   ========================================================= */
.section-about {
  background: var(--bg-light);
  color: var(--ink);
  padding: clamp(80px, 10vw, 140px) 0;
}
.about-container {
  display: grid;
  gap: clamp(48px, 6vw, 88px);
}

/* About banner: full-width cinematic video with the heading + subheading laid
   tastefully on top. The text sits in the bottom-left, anchored by a dark
   bottom-to-top gradient that keeps copy legible without obscuring the
   footage. */
.about-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: clamp(10px, 0.9vw, 16px);
  background: #0f0c08;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 0 0 1px rgba(26, 22, 18, 0.06),
    0 28px 72px -32px rgba(26, 22, 18, 0.48),
    0 8px 22px -10px rgba(26, 22, 18, 0.22);
  isolation: isolate;
}
.about-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.16) saturate(0.9) contrast(1.06) brightness(0.96);
  z-index: 0;
}
/* Soft top-corner vignette + strong bottom darken so the copy reads cleanly
   while the top of the frame stays open for the expo footage. */
.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.55) 25%,
      rgba(0, 0, 0, 0.18) 52%,
      rgba(0, 0, 0, 0) 78%
    ),
    radial-gradient(120% 70% at 30% 100%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
}
.about-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(28px, 4.8vw, 72px) clamp(28px, 5.2vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: clamp(12px, 1.4vw, 22px);
  color: #ffffff;
}
.about-banner-label {
  /* Override the dark-ink section-label color for the white banner context. */
  color: rgba(255, 255, 255, 0.78);
}
.about-banner-heading {
  margin: 0;
  max-width: 18ch;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}
.about-banner-sub {
  margin: 0;
  max-width: 56ch;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}
@media (max-width: 720px) {
  .about-banner { aspect-ratio: 5 / 4; }
  .about-banner-overlay { padding: 20px; gap: 10px; }
  .about-banner-heading {
    font-size: clamp(26px, 8.5vw, 44px);
    line-height: 1.02;
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .about-banner-sub { font-size: clamp(13px, 3.6vw, 16px); }
}
.about-head { align-items: flex-end; }
.about-body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}
.about-copy p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
  max-width: 64ch;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-subheading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.5vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
.about-subheading + p { margin-top: 0; }
.about-copy p + .about-subheading { margin-top: 1.6em; }
.about-stats {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.about-stat {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) 1fr;
  align-items: baseline;
  gap: 16px;
  padding: clamp(16px, 1.6vw, 22px) 0;
  border-bottom: 1px solid var(--rule);
}
.about-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.about-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 860px) {
  .about-body { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION: FAQ (light theme, native <details> accordion)
   ========================================================= */
.section-faq {
  background: var(--bg-cream);
  color: var(--ink);
  padding: clamp(80px, 10vw, 140px) 0;
}
.faq-container {
  display: grid;
  gap: clamp(40px, 5vw, 72px);
}
.faq-head { align-items: flex-end; }
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-summary {
  display: grid;
  grid-template-columns: minmax(60px, 80px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 2.4vw, 32px) 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { content: ''; }
.faq-summary:hover .faq-question { color: var(--accent); }
.faq-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.25s ease;
}
.faq-toggle {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  color: var(--ink-mute);
  line-height: 1;
  transition: transform 0.3s ease, color 0.25s ease;
}
.faq-item details[open] .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-item details[open] .faq-question { color: var(--accent); }
.faq-answer {
  padding: 0 0 clamp(22px, 2.4vw, 32px) calc(60px + 24px);
  max-width: 64ch;
}
.faq-answer p {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .faq-summary { grid-template-columns: minmax(40px, 56px) 1fr auto; gap: 16px; }
  .faq-answer { padding-left: calc(40px + 16px); }
}

/* =========================================================
   SECTION: REGIONAL
   ========================================================= */
.section-regional {
  background: var(--bg-light);
  color: var(--ink);
  padding-top: 0; /* globe banner absorbs the top padding */
  padding-bottom: clamp(100px, 14vw, 180px);
  /* Override .page-section's overflow:hidden so position:sticky descendants
     can actually pin inside this section. */
  overflow: visible;
}

/* --- Globe banner --- */
.regional-globe {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: #050505;
  margin-bottom: clamp(80px, 10vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.regional-globe-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.05) saturate(1.06);
  /* Heavy radial feather: video edges dissolve into the black container background
     so the video appears to bleed into black with a soft blur halo. */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 28%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.35) 78%, transparent 95%);
          mask-image: radial-gradient(ellipse at center, #000 28%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.35) 78%, transparent 95%);
}
.regional-globe-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Soft center darkening for heading legibility — sits above the feathered video. */
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0) 75%);
}
.regional-globe-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max, 1280px);
  padding: 0 var(--container-pad);
  text-align: center;
}
.regional-globe-head {
  color: #ffffff;
  margin: 0;
}
.regional-globe-head .section-label {
  color: rgba(255, 255, 255, 0.72);
}
.regional-globe-head .section-heading {
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
@media (max-width: 720px) {
  .regional-globe-head .section-heading {
    font-size: clamp(26px, 8vw, 40px);
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .regional-globe-head .section-subhead { font-size: clamp(13px, 3.6vw, 15px); }
}
.regional-globe-head .section-subhead {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.regional-globe-head .section-subhead strong {
  color: #ffffff;
}
.regional-globe-meta {
  position: absolute;
  left: var(--container-pad);
  bottom: clamp(40px, 5vw, 72px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.regional-globe-eyebrow {
  display: inline-block;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.regional-globe-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(200, 65, 42, 0.6);
  animation: globe-pulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes globe-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 65, 42, 0.55); }
  50%      { box-shadow: 0 0 0 14px rgba(200, 65, 42, 0); }
}

@media (max-width: 720px) {
  .regional-globe { height: 60vh; min-height: 360px; max-height: 520px; padding: 56px 0; }
  .regional-globe-meta { bottom: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .regional-globe-pulse { animation: none; }
}

.regional-heading {
  max-width: 18ch;
}

/* --- Region grid heading (top-left of the grid area) --------------- */
.region-grid-head {
  text-align: left;
  align-items: flex-start;
}
.region-grid-head .section-heading {
  max-width: 16ch;
}

/* --- Region grid (bordered cells, clickable tiles) ------------------ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 1px gap with rule-coloured grid background creates the cell borders */
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: clamp(60px, 8vw, 100px);
}
.region-tile {
  appearance: none;
  background: var(--bg-light);
  border: 0;
  padding: clamp(20px, 1.8vw, 32px) clamp(14px, 1.4vw, 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  cursor: pointer;
  color: var(--ink);
  font: inherit;
  text-align: center;
  transition: background 0.45s cubic-bezier(0.65, 0, 0.35, 1),
              color      0.45s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
}
.region-tile:hover {
  background: var(--ink);
  color: var(--paper);
}
.region-tile:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: -3px;
}
.region-tile-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  transition: color 0.45s ease;
}
.region-tile:hover .region-tile-num { color: var(--accent); }
.region-tile-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.region-tile-map {
  /* Solid-silhouette PNGs in assets/regions/solid/ are applied as CSS
     masks on this container. The container is painted with the exact
     brand accent — pixel-perfect match, no filter approximation. Each
     tile's mask URL is set per-region rules below. */
  background-color: var(--accent);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 78% auto;
  mask-size: 78% auto;
  transition: background-color 0.35s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.region-tile-map img { display: none; }
.region-tile:hover .region-tile-map { transform: scale(1.04); }
/* Per-region mask URLs. Uses url() paths relative to the STYLESHEET,
   so `../assets/regions/solid/…` from `/css/style.css`. */
.region-tile[data-region="kwazulu-natal"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/kwazulu-natal.png");
          mask-image: url("../assets/regions/solid/kwazulu-natal.png");
}
.region-tile[data-region="eastern-cape"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/eastern-cape.png");
          mask-image: url("../assets/regions/solid/eastern-cape.png");
}
.region-tile[data-region="gauteng"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/gauteng.png");
          mask-image: url("../assets/regions/solid/gauteng.png");
}
.region-tile[data-region="north-west"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/north-west.png");
          mask-image: url("../assets/regions/solid/north-west.png");
}
.region-tile[data-region="free-state"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/free-state.png");
          mask-image: url("../assets/regions/solid/free-state.png");
}
.region-tile[data-region="lesotho"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/lesotho.png");
          mask-image: url("../assets/regions/solid/lesotho.png");
}
.region-tile[data-region="mpumalanga"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/mpumalanga.png");
          mask-image: url("../assets/regions/solid/mpumalanga.png");
}
.region-tile[data-region="limpopo"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/limpopo.png");
          mask-image: url("../assets/regions/solid/limpopo.png");
}
.region-tile[data-region="botswana"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/botswana.png");
          mask-image: url("../assets/regions/solid/botswana.png");
}
.region-tile[data-region="eswatini"] .region-tile-map {
  -webkit-mask-image: url("../assets/regions/solid/eswatini.png");
          mask-image: url("../assets/regions/solid/eswatini.png");
}
.region-tile-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 17px);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .region-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .region-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Region modal (pops up on tile click) --------------------------- */
.region-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 64px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.region-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.region-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.region-modal-card {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: calc(100vh - 80px);
  background: var(--paper);
  color: var(--ink);
  padding: clamp(32px, 4vw, 56px);
  border-radius: 2px;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.55);
  transform: translateY(16px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 26px);
  overflow: auto;
}
.region-modal.is-open .region-modal-card {
  transform: translateY(0) scale(1);
}
.region-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-mute);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}
.region-modal-close:hover {
  background: rgba(12, 12, 12, 0.06);
  color: var(--ink);
}
.region-modal-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.region-modal-step {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.region-modal-tag { color: var(--accent); }
.region-modal-stage {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.region-modal-map { display: none; }
.region-modal-stage {
  background-color: var(--accent);
  -webkit-mask-image: var(--region-map);
  mask-image: var(--region-map);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 82% auto;
  mask-size: 82% auto;
}
.region-modal-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
}
.region-modal-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  text-align: center;
  max-width: 52ch;
  align-self: center;
}

/* ----- Regional reps block inside the region modal ----- */
.region-modal-reps {
  margin-top: clamp(20px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.region-modal-reps:empty { display: none; }
.rep-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  padding-bottom: 4px;
}
.rep-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.rep-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.rep-card:hover {
  border-color: rgba(196, 38, 49, 0.4);
  box-shadow: 0 12px 28px -18px rgba(26, 18, 8, 0.4);
  transform: translateY(-1px);
}
.rep-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rep-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.rep-card-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.rep-card-actions {
  display: grid;
  gap: 8px;
}
.rep-card-cta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.rep-card-cta:hover { transform: translateX(2px); }
.rep-card-cta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.rep-card-cta-value {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  word-break: break-word;
}
.rep-card-cta-email {
  background: rgba(26, 18, 8, 0.04);
  color: var(--ink);
}
.rep-card-cta-email .rep-card-cta-label { color: var(--ink-mute); }
.rep-card-cta-email:hover { background: rgba(26, 18, 8, 0.08); }
.rep-card-cta-call {
  background: var(--accent);
  color: #fff;
}
.rep-card-cta-call .rep-card-cta-label { color: rgba(255, 255, 255, 0.78); }
.rep-card-cta-call:hover { background: #a51e29; }

@media (max-width: 540px) {
  .region-modal-stage { max-width: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .region-modal,
  .region-modal-card { transition: none; }
}

/* --- Brand range modal ---------------------------------------------- */
.range-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 64px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.range-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.range-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.76);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.range-modal-card {
  position: relative;
  z-index: 1;
  width: min(1100px, 96vw);
  max-height: calc(100vh - 80px);
  background: var(--paper);
  color: var(--ink);
  padding: clamp(32px, 4vw, 58px);
  border-radius: 2px;
  box-shadow: 0 42px 130px -32px rgba(0,0,0,0.58);
  transform: translateY(16px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  overflow: auto;
}
.range-modal.is-open .range-modal-card {
  transform: translateY(0) scale(1);
}
.range-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-mute);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}
.range-modal-close:hover {
  background: rgba(12, 12, 12, 0.06);
  color: var(--ink);
}
.range-modal-logo-wrap {
  width: min(340px, 80%);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid var(--rule);
}
.range-modal-logo {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
}
.range-modal-tag {
  justify-self: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.range-modal-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
}
.range-modal-body {
  max-width: 58ch;
  justify-self: center;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: center;
}
.range-modal-cta {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 20px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ----- Brand organogram inside the range modal ----- */
.range-modal-organogram { display: flex; flex-direction: column; gap: 14px; }
.range-modal-organogram:empty { display: none; }
.range-organ-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
}
.range-organ-intro {
  margin: 0 auto;
  max-width: 54ch;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute);
  text-align: center;
}
.range-organ-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}
.range-organ-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.range-organ-card:hover {
  border-color: rgba(196, 38, 49, 0.32);
  box-shadow: 0 12px 28px -18px rgba(26, 18, 8, 0.35);
  transform: translateY(-1px);
}
.range-organ-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 4px;
  background: rgba(26, 18, 8, 0.03);
  border-radius: 6px;
}
.range-organ-badge img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.range-organ-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.range-organ-label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.range-organ-blurb {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.range-organ-warranty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 4px 8px;
  background: rgba(26, 18, 8, 0.04);
  border-radius: 999px;
  align-self: flex-start;
}
.range-organ-warranty img {
  display: block;
  height: 22px;
  width: auto;
  object-fit: contain;
}
.range-organ-warranty span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
/* Desktop: one column per organogram (N cards → N columns). Mobile stays
   single-column (default above). Cards switch to a vertical layout so narrow
   columns still read well. */
@media (min-width: 720px) {
  .range-organ-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    grid-template-columns: none;
    align-items: stretch;
  }
  .range-organ-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 12px;
  }
  .range-organ-badge { width: 100%; max-width: 120px; height: 72px; }
  .range-organ-meta { align-items: center; }
  .range-organ-warranty { align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  .range-modal,
  .range-modal-card { transition: none; }
}

.regional-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.regional-stat { display: grid; gap: 8px; }
.regional-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.regional-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 720px) {
  .regional-stats { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION: PRODUCT DEMOS
   Dark, cinematic, horizontal-scrolling poster gallery.
   Posters are static JPGs — video only loads on click (lightbox).
   ========================================================= */
.section-demos {
  position: relative;
  background-color: #0c0a09;
  background-image:
    linear-gradient(rgba(12, 10, 9, 0.82), rgba(12, 10, 9, 0.82)),
    url('../assets/images/texture.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  color: var(--paper);
  padding-top: clamp(100px, 12vw, 160px);
  padding-bottom: clamp(100px, 12vw, 160px);
  overflow: hidden;
  isolation: isolate;
}
.demos-container {
  display: grid;
  gap: clamp(36px, 4.5vw, 64px);
}
.demos-head {
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
  max-width: 760px;
}
.demos-label {
  color: rgba(244, 241, 236, 0.55);
}
.demos-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0;
}
.demos-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.7);
  max-width: 56ch;
  margin: 0;
}

/* Horizontal poster strip. Cards are portrait (9:16) to match the source
   videos, which were shot vertically for WhatsApp Status. */
.demos-gallery {
  display: flex;
  gap: clamp(16px, 1.8vw, 26px);
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: clamp(20px, 4vw, 60px);
  padding-bottom: 12px;
  margin: 0 calc(-1 * clamp(20px, 4vw, 60px));
  padding-inline: clamp(20px, 4vw, 60px);
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 241, 236, 0.25) transparent;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  overscroll-behavior-x: contain;
}
.demos-gallery::-webkit-scrollbar { height: 6px; }
.demos-gallery::-webkit-scrollbar-track { background: transparent; }
.demos-gallery::-webkit-scrollbar-thumb {
  background: rgba(244, 241, 236, 0.18);
  border-radius: 999px;
}
.demos-gallery::-webkit-scrollbar-thumb:hover {
  background: rgba(244, 241, 236, 0.35);
}

.demo-card {
  flex: 0 0 auto;
  width: clamp(240px, 22vw, 320px);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.demo-card:hover { transform: translateY(-4px); }
.demo-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; border-radius: 4px; }

.demo-poster {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  background: #161311;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 40px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}
.demo-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
  filter: saturate(0.95) brightness(0.92);
}
.demo-card:hover .demo-poster img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}

/* Play button — sits center, subtle until hover. */
.demo-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(54px, 4.5vw, 72px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(15, 12, 8, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.demo-play svg {
  width: 38%;
  height: 38%;
  margin-left: 8%; /* optical centering of triangle */
}
.demo-card:hover .demo-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Brand category chip — sits top-left of each poster as a small dark glass
   pill with a coloured dot. Identifies the Swiss Build sub-brand at a glance. */
.demo-brand-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px 6px 9px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 12, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.13em;
  /* Smooth lift on card hover */
  transition: background 0.25s ease, transform 0.25s ease;
}
.demo-brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(200, 65, 42, 0.22);
  flex-shrink: 0;
}
/* Per-brand colour accents on the dot. */
[data-brand="swiss-xpert"]  .demo-brand-dot { background: #e0b35a; box-shadow: 0 0 0 2px rgba(224,179,90,0.25); }
[data-brand="swiss-build"]  .demo-brand-dot { background: #2b6fd6; box-shadow: 0 0 0 2px rgba(43,111,214,0.25); }
[data-brand="swiss-chem"]   .demo-brand-dot { background: #4caf6a; box-shadow: 0 0 0 2px rgba(76,175,106,0.25); }
.demo-card:hover .demo-brand-chip {
  background: rgba(15, 12, 8, 0.88);
  transform: translateY(-2px);
}

.demo-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
}
.demo-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
}
.demo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--paper);
  line-height: 1.25;
}

.demos-hint {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.4);
  margin: 0;
  text-align: right;
}

/* --- Lightbox --- */
.demo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.demo-lightbox[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}
.demo-lightbox[hidden] { display: none; }
.demo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.demo-lightbox-frame {
  position: relative;
  z-index: 1;
  width: min(92vw, 540px);
  background: #0f0c08;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.demo-lightbox[data-open="true"] .demo-lightbox-frame {
  transform: translateY(0) scale(1);
}
.demo-lightbox-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 4;                 /* above the <video> + its controls */
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.demo-lightbox-close:hover { background: var(--accent); }
@media (max-width: 720px) {
  .demo-lightbox-close {
    /* Bigger tap target + brighter contrast on mobile. Lives inside the
       modal frame at top-right, well clear of native video controls
       (which always render at the bottom of the <video>). */
    top: 10px;
    right: 10px;
    width: 52px;
    height: 52px;
    font-size: 34px;
    background: rgba(0, 0, 0, 0.92);
    border-width: 2px;
  }
}
.demo-lightbox-media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}
.demo-lightbox-media img,
.demo-lightbox-media iframe,
.demo-lightbox-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}
.demo-lightbox-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
  color: #fff;
  padding: 24px;
  text-align: center;
  font-family: var(--font-body);
}
.demo-lightbox-fallback span {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.demo-lightbox-meta {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #0f0c08;
}
.demo-lightbox-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
}
.demo-lightbox-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--paper);
  margin: 0;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .demos-hint { display: none; }
  .demo-card { width: 72vw; }
}

/* =========================================================
   SECTION: FINAL CTA
   ========================================================= */
.section-cta {
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.78)),
    url('../assets/images/texture.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  color: var(--paper);
  padding-top: clamp(120px, 16vw, 200px);
  padding-bottom: clamp(120px, 16vw, 200px);
  overflow: hidden;
}
.cta-container {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  text-align: left;
  max-width: 1200px;
}
.section-cta .section-label.dark { color: rgba(244, 241, 236, 0.55); }
.cta-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--paper);
}
.cta-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: rgba(244, 241, 236, 0.7);
  max-width: 640px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background 0.35s, color 0.35s, transform 0.35s;
}
.cta-button.primary {
  background: var(--paper);
  color: var(--bg-deep);
  border-color: var(--paper);
}
.cta-button.primary:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); transform: translateY(-2px); }
.cta-button.ghost { color: var(--paper); }
.cta-button.ghost:hover { background: var(--paper); color: var(--bg-deep); transform: translateY(-2px); }
.cta-button-arrow {
  display: inline-block;
  transition: transform 0.35s;
}
.cta-button:hover .cta-button-arrow { transform: translateX(6px); }

.cta-marquee {
  margin-top: clamp(60px, 8vw, 120px);
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: clamp(20px, 3vw, 36px) 0;
}
.cta-marquee span {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.04em;
  color: rgba(244, 241, 236, 0.08);
  text-transform: uppercase;
  white-space: nowrap;
  animation: ctaMarquee 32s linear infinite;
}
@keyframes ctaMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #050505;
  color: rgba(244, 241, 236, 0.7);
  padding: clamp(60px, 8vw, 96px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 72px);
}
.footer-brand-col { max-width: 360px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--paper);
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0;
}
.footer-tag { font-size: 13px; line-height: 1.55; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--paper);
  opacity: 0.78;
  transition: opacity 0.25s, color 0.25s, background 0.25s, border-color 0.25s;
}
.footer-social-link:hover {
  opacity: 1;
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
  margin-bottom: 16px;
}
.footer-list { list-style: none; display: grid; gap: 10px; }
.footer-list a {
  font-size: 14px;
  color: var(--paper);
  opacity: 0.78;
  transition: opacity 0.25s, color 0.25s;
}
.footer-list a:hover { opacity: 1; color: var(--accent-soft); }
.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.78;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   REVEAL WORDS UTILITY
   ========================================================= */
.reveal-words .word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 0.95;
}
.reveal-words .word-mask > span {
  display: inline-block;
  will-change: transform;
  padding-right: 0.25em;
}

/* =========================================================
   ACCESSIBILITY / MOTION REDUCE
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   PRINT / FALLBACK
   ========================================================= */
@media print {
  #loader, .canvas-wrap, #dark-overlay, #radial-reveal,
  .hero-overlay-text { display: none !important; }
}

/* =========================================================
   CATALOGUE PAGE
   ========================================================= */
.catalogue-page {
  background: var(--paper);
  color: var(--ink);
}
.catalogue-header {
  background: #050505;
}
.catalogue-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 14vw, 190px) 0 clamp(80px, 10vw, 140px);
  background:
    linear-gradient(90deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.92) 46%, rgba(5,5,5,0.78) 100%),
    #050505;
  color: var(--paper);
  overflow: hidden;
}
.catalogue-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 6vw, 100px);
}
.catalogue-hero-copy {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}
.catalogue-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 8.4vw, 142px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 10ch;
}
.catalogue-lead {
  max-width: 620px;
  color: rgba(244, 241, 236, 0.72);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.6;
}
.catalogue-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.catalogue-hero-media {
  position: relative;
  min-height: clamp(420px, 54vw, 720px);
}
.catalogue-hero-img {
  position: absolute;
  inset: auto -8vw -7vw auto;
  width: min(760px, 58vw);
  max-width: none;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,0.38));
}
.catalogue-hero-stamp {
  position: absolute;
  top: 8%;
  right: 4%;
  width: clamp(112px, 12vw, 170px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(244, 241, 236, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px;
  background: rgba(5,5,5,0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.catalogue-hero-stamp span,
.catalogue-hero-stamp strong {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.catalogue-hero-stamp span {
  color: var(--accent);
}
.catalogue-hero-stamp strong {
  color: var(--paper);
}

.catalogue-downloads {
  background: #faf6ee;
  padding: clamp(90px, 12vw, 170px) 0;
}
.catalogue-download-head {
  margin-bottom: clamp(44px, 6vw, 76px);
}
.catalogue-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
}
.catalogue-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(0, 1fr);
  min-height: 420px;
  background: var(--paper);
  border: 1px solid rgba(12, 12, 12, 0.12);
}
.catalogue-card-cover {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 44px);
  background:
    linear-gradient(135deg, rgba(200,65,42,0.96), rgba(124,28,18,0.96)),
    var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}
.catalogue-card-cover::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.22);
}
.catalogue-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.32;
}
.catalogue-card-cover-dark {
  background:
    linear-gradient(135deg, #151515, #050505 64%, #2a100b),
    #050505;
}
.catalogue-card-kicker,
.catalogue-card-cover h3,
.catalogue-card-cover p,
.catalogue-card-mark {
  position: relative;
  z-index: 1;
}
.catalogue-card-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}
.catalogue-card-cover h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}
.catalogue-card-cover p {
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.5;
}
.catalogue-card-mark {
  position: absolute;
  top: clamp(28px, 3vw, 44px);
  right: clamp(28px, 3vw, 44px);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: rgba(255,255,255,0.38);
}
.catalogue-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 3vw, 44px);
}
.catalogue-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.catalogue-card-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(12, 12, 12, 0.12);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.catalogue-card-body p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.catalogue-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.catalogue-download-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.35s ease, transform 0.35s ease;
}
.catalogue-download-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.catalogue-view-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.catalogue-view-link:hover {
  color: var(--accent);
}

.catalogue-contact {
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.78)),
    url('../assets/images/texture.png');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  color: var(--paper);
  padding: clamp(90px, 12vw, 170px) 0;
}
.catalogue-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: start;
}
.catalogue-contact-copy {
  display: grid;
  gap: 22px;
}
.catalogue-contact-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 0.96;
  text-transform: uppercase;
}
.catalogue-contact-copy p {
  max-width: 560px;
  color: rgba(244, 241, 236, 0.68);
  font-size: 16px;
  line-height: 1.6;
}
.catalogue-contact-list {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.catalogue-contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  background: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.76);
  transition: color 0.3s ease, padding 0.3s ease;
}
.catalogue-contact-list a:hover {
  color: var(--accent-soft);
  padding-left: 12px;
}
.catalogue-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 52px);
  background: #101011;
  border: 1px solid rgba(255,255,255,0.12);
}
.catalogue-form label {
  display: grid;
  gap: 8px;
}
.catalogue-form label span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.58);
}
.catalogue-form input,
.catalogue-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: #050505;
  color: var(--paper);
  padding: 15px 16px;
  font: inherit;
  border-radius: 0;
  outline: none;
}
.catalogue-form textarea {
  resize: vertical;
  min-height: 140px;
}
.catalogue-form input:focus,
.catalogue-form textarea:focus {
  border-color: var(--accent);
}
.catalogue-form-status {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
/* === Enquiry-form success state ====================================== */
.catalogue-form-wrap { position: relative; }
.catalogue-form-success[hidden] { display: none !important; }
.catalogue-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 32px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  animation: enquiryFadeIn 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes enquiryFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.catalogue-form-tick {
  width: clamp(96px, 12vw, 132px);
  height: clamp(96px, 12vw, 132px);
}
.catalogue-form-tick-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-dasharray: 251.327;
  stroke-dashoffset: 251.327;
  animation: enquiryRingDraw 0.55s cubic-bezier(0.65, 0, 0.35, 1) 0.05s forwards;
}
.catalogue-form-tick-check {
  fill: none;
  stroke: var(--accent);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: enquiryCheckDraw 0.35s cubic-bezier(0.65, 0, 0.35, 1) 0.45s forwards;
}
@keyframes enquiryRingDraw  { to { stroke-dashoffset: 0; } }
@keyframes enquiryCheckDraw { to { stroke-dashoffset: 0; } }
.catalogue-form-success-heading {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.catalogue-form-success-sub {
  margin: 0;
  max-width: 36ch;
  color: var(--ink-mute);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}
.catalogue-form-success-reset {
  margin-top: 10px;
  padding: 12px 22px;
  border: 1px solid var(--rule);
  background: transparent;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.catalogue-form-success-reset:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.catalogue-submit {
  min-height: 54px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.catalogue-submit:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .catalogue-card-grid,
  .catalogue-contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .catalogue-hero {
    min-height: auto;
  }
  .catalogue-hero-grid {
    grid-template-columns: 1fr;
  }
  .catalogue-hero-media {
    min-height: 420px;
  }
  .catalogue-hero-img {
    inset: auto 50% -80px auto;
    transform: translateX(50%);
    width: min(640px, 100vw);
  }
}
@media (max-width: 720px) {
  .catalogue-card {
    grid-template-columns: 1fr;
  }
  .catalogue-card-cover {
    min-height: 360px;
  }
  .catalogue-contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .catalogue-heading {
    font-size: clamp(44px, 15vw, 72px);
  }
  .catalogue-hero-actions,
  .catalogue-card-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .catalogue-download-button,
  .catalogue-view-link,
  .catalogue-hero-actions .cta-button {
    justify-content: center;
    text-align: center;
  }
}

/* =====================================================================
   MOBILE VIDEO SAFETY NET + LAYOUT FIXES
   - No video element should ever exceed the viewport.
   - Hero scrub video is shrunk to a smaller centred panel surrounded by
     a clean white frame (less visual weight on a phone).
   - The tool-doodle texture is removed from all dark sections on mobile;
     it was rendering as a faint scrolling layer underneath section
     content on iOS.
   ===================================================================== */
@media (max-width: 720px) {
  /* ===== Universal mobile overflow safety ============================
     Headings/copy must never spill past the viewport. break-word is the
     emergency valve; max-width:100% on every block element stops images
     and embedded media from forcing horizontal scroll. */
  h1, h2, h3, h4, p, span, a, li {
    overflow-wrap: break-word;
    word-break: normal;
  }
  /* Long brand names + URLs shouldn't trigger weird breaks though */
  .nav-logo, .nav-button, [class*="-eyebrow"], [class*="section-label"] {
    word-break: normal;
    overflow-wrap: normal;
  }
  /* All section content respects viewport edges */
  .container, .intro-container, .warehouse-content, .brand-ranges-container,
  .about-container, .cta-container, .demos-container, .catalogue-contact-grid {
    padding-left: clamp(20px, 5vw, 32px);
    padding-right: clamp(20px, 5vw, 32px);
  }

  video {
    max-width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
  }

  /* Hero scrub on mobile: cover-fit slightly oversize, then a strong
     oval mask carves the painted canvas into a soft elliptical shape
     against a white surround. Both the canvas AND a wrap-level mask
     layer are applied — the canvas mask handles its own paint, and the
     ::after layer paints an extra feather plate so the falloff reads as
     a clear circular vignette regardless of canvas state. */
  .canvas-wrap {
    background: #ffffff;
  }
  .canvas-wrap canvas {
    -webkit-mask-image:
      radial-gradient(ellipse 80% 30% at 50% 24%,
        #000 40%,
        rgba(0,0,0,0.72) 58%,
        rgba(0,0,0,0.30) 78%,
        transparent 96%);
    mask-image:
      radial-gradient(ellipse 80% 30% at 50% 24%,
        #000 40%,
        rgba(0,0,0,0.72) 58%,
        rgba(0,0,0,0.30) 78%,
        transparent 96%);
  }
  .canvas-wrap::before { display: none; }
  /* Soft white halo painted ON TOP of the canvas — oval sits at the
     top of the screen with a thin white margin above, generous white
     space below for overlay copy. */
  .canvas-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    display: block;
    background: radial-gradient(
      ellipse 78% 28% at 50% 24%,
      rgba(255, 255, 255, 0) 42%,
      rgba(255, 255, 255, 0.5) 64%,
      rgba(255, 255, 255, 0.9) 82%,
      #ffffff 100%
    );
  }

  /* Texture removal — solid dark backgrounds on mobile so nothing reads
     as a moving texture layer under the section content. */
  .section-warehouse,
  .warehouse-pin,
  #warehouse-radial-reveal .radial-reveal-circle,
  .section-brand-ranges,
  .section-demos,
  .section-cta,
  .catalogue-contact {
    background-image: none;
  }
  /* Intro figure: keep it bounded to the section column, no neg-margin
     overhang on small screens. */
  .intro-figure-video {
    width: 88%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
  }
  /* About banner: 4:5 was set above for ≤720px — reinforce that the
     video fills its parent and never busts out. */
  .about-banner-video {
    max-width: 100%;
    max-height: 100%;
  }
  /* Regional globe: stage is height-bounded above (60vh, max 520px) —
     ensure the video is masked to its container, no overhang. */
  .regional-globe-video {
    max-width: 100%;
    max-height: 100%;
  }
  /* Hero title oval: already 94vw via .hero-title-mask, the video
     inside is width:100% — re-affirm so the mask edge is never crossed. */
  .hero-title-video {
    max-width: 100%;
  }
}

/* =====================================================================
   CENTERED SECTION HEADINGS (desktop + mobile)
   Section headings and their sub copy in these blocks read centered.
   ===================================================================== */
/* About banner ("Built for the trade, since 2008") */
.about-banner-overlay {
  align-items: center;
  text-align: center;
}
.about-banner-heading { max-width: 100%; }
.about-banner-sub { margin-left: auto; margin-right: auto; }

/* Intro ("Efficient Distribution. Exceptional Reliability.") */
.intro-headline {
  text-align: center;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .intro-headline {
    font-size: clamp(24px, 7vw, 40px);
    max-width: 100%;
    padding: 0 12px;
    word-break: keep-all;
    overflow-wrap: normal;
    line-height: 1.06;
  }
}
.intro-spread { text-align: center; }
.intro-text { align-items: center; margin-left: auto; margin-right: auto; }
.intro-lead { margin-left: auto; margin-right: auto; }
.intro-proof { justify-content: center; }
.intro-cta { margin-left: auto; margin-right: auto; }

/* Brand ranges ("Our Trusted Brands") */
.brand-ranges-head { text-align: center; align-items: center; }
.brand-ranges-heading, .brand-ranges-subhead {
  margin-left: auto; margin-right: auto;
}

/* Demos ("See Our Products in Action") */
.demos-head {
  text-align: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}
.demos-heading, .demos-sub { margin-left: auto; margin-right: auto; }

/* Regional grid heading ("Find Your Local Sales Representative")
   High specificity to beat .section-head.split-head's row-layout. */
.section-head.split-head.region-grid-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.section-head.split-head.region-grid-head > div {
  max-width: 100%;
  text-align: center;
}
.section-head.split-head.region-grid-head .section-heading {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.section-head.split-head.region-grid-head .section-subhead-right {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Final CTA ("Discover Our Complete Range") */
.cta-container { text-align: center; justify-items: center; }
.cta-sub { margin-left: auto; margin-right: auto; }
.cta-buttons { justify-content: center; }
.cta-marquee { text-align: left; }

/* Hide region tile numbers (01, 02, …) — kept in DOM for a11y but not
   visually rendered. */
.region-tile-num { display: none; }
