:root {
  --white: #ffffff;
  --warm-white: #f8f5f0;
  --ivory: #f3eee6;
  --soft-beige: #eee7dd;
  --gold: #b98234;
  --gold-dark: #8d5e21;
  --ink: #171717;
  --muted: #77706a;
  --line: rgba(0, 0, 0, 0.08);
  --max-width: 1320px;
  --section-padding: clamp(96px, 10vw, 176px);
  --video-bg: #f7f2f0;
  --header-height: 72px;
  color-scheme: light;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

figure,
h1,
h2,
h3,
p {
  margin: 0;
}

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

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

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

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 5px;
}

::selection {
  background: rgba(185, 130, 52, 0.18);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 68px);
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition:
    background-color 400ms ease,
    border-color 400ms ease,
    color 400ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.header-mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.header-mark img {
  width: 21px;
  height: 21px;
}

.site-header > p,
.header-contact {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header > p {
  grid-column: 2;
}

.header-contact {
  grid-column: 3;
  justify-self: end;
  transition: color 180ms ease;
}

.header-contact:hover {
  color: var(--gold-dark);
}

.product-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 61%, rgba(238, 231, 221, 0.44), transparent 31%),
    var(--white);
}

.hero-brand {
  position: absolute;
  z-index: 4;
  top: clamp(106px, 14vh, 144px);
  left: 50%;
  width: min(90vw, 760px);
  transform: translateX(-50%);
  text-align: center;
}

.hero-brand h1 {
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 500;
  letter-spacing: clamp(0.25em, 0.55vw, 0.58em);
  line-height: 1.3;
  text-indent: 0.58em;
  text-transform: uppercase;
}

.hero-brand p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-letters {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  color: rgba(185, 130, 52, 0.07);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(220px, 34vw, 590px);
  font-weight: 300;
  letter-spacing: -0.09em;
  line-height: 0.7;
  pointer-events: none;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.hero-product-anchor {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: clamp(460px, 52.5vw, 780px);
  aspect-ratio: 1363 / 479;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 30px 24px rgba(70, 48, 24, 0.09));
}

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

.js .hero-product-anchor.is-carried img {
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: clamp(32px, 5vh, 54px);
  left: 50%;
  display: grid;
  gap: 14px;
  justify-items: center;
  transform: translateX(-50%);
}

.hero-scroll span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(185, 130, 52, 0.25);
}

.hero-scroll i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  content: "";
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }

  55%,
  100% {
    transform: translateY(200%);
  }
}

.journey-glasses {
  position: fixed;
  z-index: 65;
  top: 0;
  left: 0;
  display: none;
  width: 1px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 30px 24px rgba(70, 48, 24, 0.09));
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.js .journey-glasses.is-ready {
  display: block;
  opacity: 1;
}

.video-story {
  position: relative;
  z-index: 2;
  height: 245vh;
  background: var(--video-bg);
  transition: background-color 140ms linear;
}

.video-sticky {
  position: sticky;
  top: 0;
  display: grid;
  width: 100%;
  height: 100svh;
  place-items: center;
  overflow: hidden;
  background: var(--video-bg);
  transition: background-color 100ms linear;
}

.video-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.story-video {
  width: min(74vw, 820px, 110svh);
  height: auto;
  max-width: none;
  max-height: 86svh;
  object-fit: contain;
  opacity: 0;
  background: transparent;
  backface-visibility: hidden;
  will-change: opacity;
}

.video-copy {
  position: absolute;
  z-index: 3;
  top: clamp(98px, 12vh, 126px);
  left: clamp(24px, 5.5vw, 86px);
  max-width: 370px;
  pointer-events: none;
}

.video-copy p {
  margin-bottom: 11px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.video-copy h2 {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.video-progress {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(34px, 5vh, 58px);
  width: clamp(90px, 12vw, 170px);
  height: 1px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
}

.video-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--gold);
}

.video-sampler {
  position: fixed;
  top: -100px;
  left: -100px;
  width: 24px;
  height: 24px;
  opacity: 0;
  pointer-events: none;
}

.section-heading {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.section-heading > p,
.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-heading h2,
.section-copy h2 {
  max-width: 820px;
  font-size: clamp(36px, 5.2vw, 76px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.details {
  position: relative;
  z-index: 4;
  padding-top: var(--section-padding);
  background: var(--white);
}

.details-heading {
  position: relative;
  z-index: 5;
}

.details-scroll {
  position: relative;
  height: 300vh;
  margin-top: clamp(30px, 5vh, 72px);
}

.details-sticky {
  position: sticky;
  top: 0;
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  height: 100svh;
  margin: 0 auto;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
}

.detail-rail {
  display: grid;
  align-content: center;
  align-self: stretch;
  grid-template-rows: auto minmax(170px, 31vh) auto;
  padding: 23vh 0 18vh;
  border-right: 1px solid var(--line);
}

.detail-rail > p {
  color: var(--gold);
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.06em;
}

.detail-rail small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.detail-track {
  position: relative;
  display: block;
  width: 1px;
  height: 100%;
  margin: 22px 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}

.detail-track i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top center;
  background: var(--gold);
}

.detail-rail strong {
  max-width: 80px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.detail-stage {
  position: relative;
  width: 100%;
  height: min(78vh, 760px);
}

.detail-state {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
  padding-left: clamp(40px, 5vw, 80px);
  opacity: 0;
  visibility: hidden;
}

.detail-state.is-active {
  opacity: 1;
  visibility: visible;
}

.detail-product {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 510px;
  place-items: center;
}

.detail-product::after {
  position: absolute;
  z-index: -1;
  bottom: 18%;
  left: 50%;
  width: min(74%, 660px);
  height: 68px;
  border-radius: 50%;
  background: rgba(238, 231, 221, 0.46);
  content: "";
  filter: blur(4px);
  transform: translateX(-50%);
}

.detail-product img {
  width: min(100%, 850px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(53, 35, 17, 0.08));
  will-change: opacity, transform;
}

.detail-product--side img {
  width: min(100%, 790px);
}

.detail-product--setting img {
  width: min(70%, 570px);
  max-height: 560px;
}

.detail-product--setting::after {
  width: min(54%, 450px);
}

.detail-copy {
  align-self: end;
  padding-bottom: clamp(72px, 10vh, 112px);
}

.detail-number {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.detail-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.detail-copy > p:last-child {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.callout {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.callout i {
  display: block;
  width: clamp(50px, 7vw, 112px);
  height: 1px;
  margin-right: 12px;
  transform: scaleX(0);
  transform-origin: right center;
  background: rgba(185, 130, 52, 0.62);
}

.callout b {
  max-width: 130px;
  font-weight: 400;
  opacity: 0;
}

.callout--front-one {
  top: 31%;
  right: 8%;
}

.callout--front-two {
  bottom: 27%;
  left: 9%;
  flex-direction: row-reverse;
}

.callout--front-two i,
.callout--angle-two i,
.callout--side-two i {
  margin-right: 0;
  margin-left: 12px;
  transform-origin: left center;
}

.callout--angle-one {
  top: 25%;
  right: 3%;
}

.callout--angle-two {
  bottom: 24%;
  left: 6%;
  flex-direction: row-reverse;
}

.callout--angle-three {
  top: 41%;
  right: 13%;
}

.callout--side-one {
  top: 33%;
  left: 31%;
}

.callout--side-two {
  right: 1%;
  bottom: 28%;
  flex-direction: row-reverse;
}

.callout--side-three {
  bottom: 35%;
  left: 10%;
}

.callout--setting-one {
  top: 29%;
  right: 8%;
}

.callout--setting-two {
  bottom: 36%;
  left: 13%;
}

.callout--setting-three {
  right: 5%;
  bottom: 24%;
}

.stat-bar {
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-bar p {
  min-height: 104px;
  padding: 27px clamp(18px, 2vw, 32px);
  border-left: 1px solid var(--line);
}

.stat-bar p:first-child {
  border-left: 0;
}

.stat-bar strong,
.stat-bar span {
  display: block;
}

.stat-bar strong {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-bar span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.network {
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: var(--section-padding) 0;
  grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.25fr) minmax(210px, 0.55fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}

.section-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.network-copy h2 {
  font-size: clamp(34px, 4vw, 60px);
}

.text-link {
  display: inline-flex;
  margin-top: 38px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(185, 130, 52, 0.38);
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--gold);
}

.network-map {
  position: relative;
  min-height: 630px;
}

.network-map img {
  width: 100%;
  height: 630px;
  object-fit: contain;
  opacity: 0.72;
  filter: sepia(0.08) saturate(0.68) contrast(0.92);
}

.map-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-point i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(185, 130, 52, 0.08);
}

.map-point--antwerp {
  top: 28%;
  left: 45%;
}

.map-point--paris {
  top: 39%;
  left: 38%;
}

.map-point--madrid {
  top: 65%;
  left: 18%;
}

.map-point--milan {
  top: 50%;
  left: 61%;
}

.network-stats {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.network-stats p {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.network-stats strong,
.network-stats span {
  display: block;
}

.network-stats strong {
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.network-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
}

.craftsmanship {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
  background: var(--warm-white);
}

.craft-copy {
  display: flex;
  padding: clamp(70px, 9vw, 140px);
  flex-direction: column;
  justify-content: center;
}

.craft-copy h2 {
  max-width: 540px;
  font-size: clamp(40px, 5vw, 72px);
}

.craft-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(0.76) sepia(0.1) contrast(0.96);
  will-change: transform;
}

.certifications {
  padding: var(--section-padding) 0;
}

.certification-grid {
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  margin: clamp(62px, 7vw, 100px) auto 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.certification-grid article {
  min-height: 390px;
  padding: 42px clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--line);
}

.certification-grid article:first-child {
  border-left: 1px solid var(--line);
}

.certification-index {
  color: var(--gold);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.certification-grid h3 {
  margin: 72px 0 24px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.certification-grid article > p:not(.certification-index) {
  max-width: 300px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.certification-grid a {
  display: inline-block;
  margin-top: 44px;
  border-bottom: 1px solid rgba(185, 130, 52, 0.35);
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog {
  padding: var(--section-padding) 0 clamp(84px, 9vw, 140px);
  background: var(--warm-white);
}

.catalog-heading {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.catalog-heading p {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 400;
}

.catalog-heading h2 {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
}

.catalog-viewer {
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 590px;
  margin: clamp(40px, 5vw, 72px) auto 0;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 590px;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.catalog-stage > img {
  z-index: 2;
  width: min(86%, 900px);
  max-height: 490px;
  object-fit: contain;
  filter: drop-shadow(0 30px 28px rgba(66, 43, 20, 0.08));
  transform: translateZ(0);
}

.catalog-watermark {
  position: absolute;
  z-index: 1;
  color: rgba(185, 130, 52, 0.045);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(180px, 24vw, 360px);
  font-weight: 300;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.catalog-count {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.catalog-copy {
  display: flex;
  padding: clamp(44px, 5vw, 76px) clamp(30px, 4vw, 58px);
  flex-direction: column;
  justify-content: center;
}

.catalog-copy > p {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.catalog-copy h3 {
  margin: 20px 0 28px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.catalog-copy > span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.catalog-copy > a {
  width: fit-content;
  margin-top: 34px;
  border-bottom: 1px solid rgba(185, 130, 52, 0.35);
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-copy > a b {
  margin-left: 14px;
  font-weight: 400;
}

.catalog-arrows {
  display: flex;
  gap: 10px;
  margin-top: 62px;
}

.catalog-arrows button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.catalog-arrows button:hover {
  border-color: rgba(185, 130, 52, 0.5);
  background: var(--white);
  transform: translateY(-2px);
}

.catalog-selector {
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 18px auto 0;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.catalog-selector button {
  position: relative;
  display: grid;
  min-width: 0;
  height: 108px;
  padding: 12px;
  place-items: center;
  overflow: hidden;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background-color 220ms ease;
}

.catalog-selector button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 300ms ease;
}

.catalog-selector button.is-active {
  border-color: rgba(185, 130, 52, 0.18);
  background: var(--white);
}

.catalog-selector button.is-active::after {
  transform: scaleX(1);
}

.catalog-selector img {
  width: 88%;
  height: 70px;
  object-fit: contain;
  opacity: 0.62;
  transition:
    opacity 220ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-selector button:hover img,
.catalog-selector button.is-active img {
  opacity: 1;
  transform: scale(1.035);
}

.catalog-selector span {
  position: absolute;
  right: 9px;
  bottom: 6px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.configurator {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  background: var(--white);
}

.configurator-copy {
  display: flex;
  padding: clamp(72px, 9vw, 140px);
  flex-direction: column;
  justify-content: center;
}

.configurator-copy h2 {
  max-width: 600px;
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.configurator-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.configurator-preview {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 48%, rgba(238, 231, 221, 0.52), transparent 38%),
    var(--warm-white);
}

.configurator-preview > img {
  position: relative;
  z-index: 2;
  width: min(88%, 860px);
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(62, 40, 18, 0.08));
}

.configurator-watermark {
  position: absolute;
  z-index: 1;
  color: rgba(185, 130, 52, 0.055);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(96px, 13vw, 220px);
  font-weight: 300;
  letter-spacing: -0.065em;
  pointer-events: none;
}

.configurator-steps {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 60px);
  bottom: 34px;
  left: clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.configurator-steps span {
  padding: 18px 0;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.configurator-steps i {
  margin-right: 9px;
  color: var(--gold);
  font-style: normal;
}

.site-footer {
  display: grid;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 5vw, 82px) 28px;
  grid-template-columns: 1fr 0.65fr 0.85fr;
  gap: clamp(40px, 7vw, 120px);
  background: var(--ivory);
}

.footer-brand img {
  width: 28px;
  height: 28px;
  margin-bottom: 30px;
}

.footer-brand h2 {
  max-width: 390px;
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.footer-brand p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 10px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 15px;
}

.site-footer nav a {
  width: fit-content;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

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

.newsletter label {
  display: block;
  margin-bottom: 26px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.newsletter > div {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.newsletter input {
  width: 100%;
  padding: 13px 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 10px;
}

.newsletter input::placeholder {
  color: var(--muted);
}

.newsletter button {
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  gap: 28px;
  align-items: center;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom a:last-child {
  margin-left: auto;
}

@media (max-width: 1100px) {
  .detail-state {
    grid-template-columns: minmax(0, 1fr) 230px;
    padding-left: 36px;
  }

  .detail-product {
    min-height: 430px;
  }

  .network {
    grid-template-columns: minmax(250px, 0.9fr) minmax(360px, 1.1fr);
  }

  .network-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .network-stats p {
    padding-right: 30px;
    border-right: 1px solid var(--line);
  }

  .network-stats p:last-child {
    border-right: 0;
  }

  .craft-copy {
    padding: clamp(64px, 7vw, 90px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 62px;
    --section-padding: clamp(84px, 18vw, 124px);
  }

  .site-header {
    padding: 0 22px;
  }

  .header-contact {
    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .site-header > p {
    display: none;
  }

  .header-contact {
    grid-column: 3;
  }

  .hero-brand {
    top: 100px;
  }

  .hero-brand h1 {
    font-size: 10px;
  }

  .hero-letters {
    font-size: clamp(180px, 59vw, 390px);
  }

  .hero-product-anchor {
    top: 50%;
    width: min(82vw, 620px);
  }

  .video-story {
    height: 190vh;
  }

  .story-video {
    width: min(86vw, 780px, 108svh);
    height: auto;
  }

  .video-copy {
    top: 88px;
    left: 24px;
  }

  .video-copy h2 {
    font-size: 22px;
  }

  .details-scroll {
    height: auto;
    margin-top: 60px;
  }

  .details-sticky {
    position: relative;
    display: block;
    width: min(calc(100% - 36px), 720px);
    height: auto;
  }

  .detail-rail {
    display: none;
  }

  .detail-stage {
    display: grid;
    height: auto;
    gap: 90px;
  }

  .detail-state {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }

  .detail-product {
    min-height: 330px;
  }

  .detail-product--setting img {
    width: min(72%, 440px);
  }

  .detail-copy {
    width: min(100%, 480px);
    padding: 0 0 0 12px;
  }

  .detail-number {
    margin-bottom: 14px;
  }

  .detail-copy h3 {
    margin-bottom: 10px;
  }

  .callout {
    display: none;
  }

  .stat-bar {
    margin-top: 100px;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-bar p:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat-bar p:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .network-copy h2,
  .craft-copy h2 {
    font-size: clamp(36px, 8.7vw, 58px);
  }

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

  .network-map img {
    height: 520px;
  }

  .network-stats {
    grid-column: auto;
  }

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

  .craft-copy {
    padding: var(--section-padding) 24px;
  }

  .craft-image {
    min-height: 58vw;
    order: -1;
  }

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

  .certification-grid article {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .certification-grid h3 {
    margin-top: 40px;
  }

  .catalog-viewer {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .catalog-stage {
    min-height: 500px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-copy {
    min-height: 350px;
  }

  .catalog-selector {
    grid-template-columns: repeat(3, 1fr);
  }

  .configurator {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .configurator-copy {
    padding: var(--section-padding) 24px;
  }

  .configurator-preview {
    min-height: 620px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .header-contact {
    letter-spacing: 0.1em;
  }

  .product-hero {
    min-height: 100svh;
  }

  .hero-brand {
    width: calc(100% - 42px);
  }

  .hero-brand h1 {
    font-size: 9px;
    letter-spacing: 0.27em;
    text-indent: 0.27em;
  }

  .hero-brand p {
    font-size: 7px;
  }

  .hero-letters {
    top: 49%;
    font-size: 54vw;
  }

  .hero-product-anchor {
    top: 50%;
    width: 88vw;
  }

  .hero-scroll {
    bottom: 27px;
  }

  .video-copy {
    top: 90px;
  }

  .video-copy h2 {
    max-width: 220px;
    font-size: 20px;
  }

  .story-video {
    width: 108vw;
    height: auto;
  }

  .details-heading,
  .section-heading,
  .network,
  .stat-bar,
  .certification-grid,
  .catalog-heading,
  .catalog-viewer,
  .catalog-selector {
    width: calc(100% - 36px);
  }

  .section-heading h2,
  .section-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .detail-product {
    min-height: 245px;
  }

  .detail-product::after {
    bottom: 14%;
    height: 44px;
  }

  .detail-stage {
    gap: 76px;
  }

  .stat-bar p {
    min-height: 96px;
    padding: 22px 15px;
  }

  .network-map {
    min-height: 420px;
  }

  .network-map img {
    height: 420px;
  }

  .map-point--antwerp {
    top: 29%;
  }

  .map-point--paris {
    top: 40%;
  }

  .map-point--madrid {
    top: 65%;
  }

  .network-stats {
    grid-template-columns: 1fr;
  }

  .network-stats p {
    border-right: 0;
  }

  .craft-image {
    min-height: 72vw;
  }

  .catalog-stage {
    min-height: 390px;
  }

  .catalog-stage > img {
    width: 94%;
    max-height: 320px;
  }

  .catalog-copy {
    min-height: 330px;
    padding: 40px 24px;
  }

  .catalog-arrows {
    margin-top: 42px;
  }

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

  .catalog-selector button {
    height: 96px;
  }

  .configurator-copy h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .configurator-preview {
    min-height: 500px;
  }

  .configurator-preview > img {
    width: 105%;
  }

  .configurator-watermark {
    font-size: 22vw;
  }

  .configurator-steps {
    right: 18px;
    left: 18px;
  }

  .configurator-steps span {
    font-size: 6px;
    letter-spacing: 0.08em;
  }

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

  .newsletter {
    grid-column: auto;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .footer-bottom a:last-child {
    width: 100%;
    margin: 12px 0 0;
  }
}

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

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

  .journey-glasses,
  .video-progress,
  .detail-rail {
    display: none !important;
  }

  .hero-product-anchor.is-carried img,
  .story-video {
    opacity: 1 !important;
  }

  .video-story {
    height: 100svh;
  }

  .details-scroll {
    height: auto;
  }

  .details-sticky {
    position: relative;
    display: block;
    height: auto;
  }

  .detail-stage {
    display: grid;
    height: auto;
    gap: 90px;
  }

  .detail-state {
    position: relative;
    display: grid;
    opacity: 1;
    visibility: visible;
  }
}
