/* =========================================================
   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;
}
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;
}
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;
  padding: 18px var(--container-pad);
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  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; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

/* =========================================================
   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;
  -webkit-mask-image: radial-gradient(ellipse 94% 72% at 50% 50%, #000 62%, rgba(0,0,0,0.82) 73%, rgba(0,0,0,0.35) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse 94% 72% at 50% 50%, #000 62%, rgba(0,0,0,0.82) 73%, rgba(0,0,0,0.35) 86%, 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 frame sequence)
   ========================================================= */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 32;
  pointer-events: none;
  /* starts hidden, revealed via circle-wipe */
  clip-path: circle(0% at 50% 50%);
  -webkit-clip-path: circle(0% at 50% 50%);
  background: transparent;
  will-change: clip-path, opacity;
}
.canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================================================
   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;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0vmax;
  height: 0vmax;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffffff 0%, #faf8f4 55%, #f4f1ec 100%);
  box-shadow: 0 0 80px 20px rgba(255,255,255,0.4);
  will-change: width, height;
}

/* =========================================================
   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-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;
}
.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-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 — tightened so the radial reveals into the
     truck section without lingering empty white */
  height: 200vh;
  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(--accent);
  color: #fff;
  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, very low contrast */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: 0.5;
  pointer-events: none;
}
.statement-sticky::after {
  /* Tiny grain so the flat red doesn't read as banner-flat */
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.18;
  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: #fff;
}
/* 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: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.statement-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  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 — start hidden, revealed by scroll */
.statement-char {
  display: inline-block;
  opacity: 0.08;
  transform: translateY(0.18em);
  filter: blur(6px);
  transition: none; /* driven by scroll, not transitions */
  will-change: opacity, transform, filter;
}
.statement-char.is-on {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.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: #fff;
  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(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.statement-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  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(24px, 6.6vw, 44px); }
}

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

/* =========================================================
   SECTION: BRAND RANGE GRID
   ========================================================= */
.section-brand-ranges {
  position: relative;
  background: #120f0e;
  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;
  align-items: center;
  justify-items: center;
  gap: 22px;
  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;
}

@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. */
.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;
}
/* --- 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: 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: 65vh;
  min-height: 380px;
  max-height: 720px;
  overflow: hidden;
  background: #050505;
  margin-bottom: clamp(80px, 10vw, 140px);
}
.regional-globe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: contrast(1.05) saturate(1.06);
}
.regional-globe-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Subtle side vignettes only — no bottom fade. The video ends with a clean
     hard line into the next section. */
  background:
    linear-gradient(90deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 78%, rgba(0,0,0,0.30) 100%);
}
.regional-globe-meta {
  position: absolute;
  left: var(--container-pad);
  bottom: clamp(28px, 4vw, 56px);
  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: 52vh; min-height: 320px; }
}

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

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

/* --- 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 img {
  max-width: 78%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 0.85;
  transition: filter 0.45s ease, opacity 0.45s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.region-tile:hover .region-tile-map img {
  /* Flip silhouette to brand red on the dark hover bg */
  filter: brightness(0) invert(1) sepia(1) hue-rotate(330deg) saturate(2.2) brightness(1.05);
  opacity: 1;
  transform: scale(1.04);
}
.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 {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 0.92;
}
.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;
}

@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(720px, 100%);
  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;
}

@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: FINAL CTA
   ========================================================= */
.section-cta {
  background: var(--bg-deep);
  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-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: var(--bg-deep);
  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-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;
  }
}
