/* VELVAAR — direction B "Noir".
   Near-black editorial: photographs carry the light, type stays cold and quiet.
   Display: Inter Tight · Body: Inter · Labels: Manrope. All faces cyrillic-ext. */

/* ---------- fonts ---------- */
@font-face {
  font-family: "Inter Tight";
  src: url("../../shared/fonts/inter-tight/inter-tight-v9-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../../shared/fonts/inter-tight/inter-tight-v9-cyrillic_cyrillic-ext_latin_latin-ext-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../../shared/fonts/inter-tight/inter-tight-v9-cyrillic_cyrillic-ext_latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../shared/fonts/inter/inter-v20-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../shared/fonts/inter/inter-v20-cyrillic_cyrillic-ext_latin_latin-ext-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../shared/fonts/manrope/manrope-v20-cyrillic_cyrillic-ext_latin_latin-ext-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../shared/fonts/manrope/manrope-v20-cyrillic_cyrillic-ext_latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --bg: #0C0C0E;
  --bg-2: #101013;
  --panel: #141419;
  --ink: #E8E6E0;
  --ink-2: #A2A09A;
  --ink-3: #6B6A65;
  --line: rgba(232, 230, 224, .13);
  --line-soft: rgba(232, 230, 224, .07);
  --display: "Inter Tight", "Inter", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --label: "Manrope", "Inter", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .21, 1);
  --gut: clamp(20px, 4.5vw, 64px);
  --maxw: 1520px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--body); font-size: 15.5px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--bg); }
:focus-visible { outline: 1px solid var(--ink-2); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: var(--bg); padding: 10px 18px; font-size: 13px;
}
.skip-link:focus { left: 0; }

/* page veil (route transition) */
.veil {
  position: fixed; inset: 0; z-index: 200; background: var(--bg);
  opacity: 1; pointer-events: none; transition: opacity .5s var(--ease);
}
.veil.is-gone { opacity: 0; }

/* scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal="fade"] { transform: none; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- type ---------- */
.kicker {
  font-family: var(--label); font-weight: 600; font-size: 10.5px;
  letter-spacing: .34em; text-transform: uppercase; color: var(--ink-3);
  display: flex; align-items: center; gap: 14px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--ink-3); flex: none; }
.display {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .015em; line-height: 1.02;
}
h2.display { font-size: clamp(30px, 4.6vw, 66px); }
.lead { color: var(--ink-2); font-size: clamp(15px, 1.35vw, 17.5px); max-width: 60ch; }
.caption { font-size: 12px; color: var(--ink-3); letter-spacing: .04em; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border: 1px solid var(--line); padding: 17px 38px;
  font-family: var(--label); font-weight: 600; font-size: 11px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn::after { content: "\2192"; font-family: var(--body); font-size: 13px; transition: transform .35s var(--ease); }
.btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn:hover::after { transform: translateX(4px); }

/* ---------- header ---------- */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: transform .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(12, 12, 14, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.header.is-hidden { transform: translateY(-101%); }
.header-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.wordmark { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: .42em; padding-left: .42em; }
.nav-side { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); }
.nav-a {
  font-family: var(--label); font-weight: 600; font-size: 10.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2);
  padding: 6px 0; position: relative; transition: color .3s var(--ease);
}
.nav-a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-a:hover, .nav-a[aria-current="page"] { color: var(--ink); }
.nav-a[aria-current="page"]::after, .nav-a:hover::after { transform: scaleX(1); }
.lang { display: flex; align-items: center; border: 1px solid var(--line); }
.lang button {
  font-family: var(--label); font-weight: 600; font-size: 10px; letter-spacing: .12em;
  padding: 8px 12px; color: var(--ink-3); transition: color .3s, background .3s;
}
.lang button + button { border-left: 1px solid var(--line); }
.lang button.is-active { color: var(--bg); background: var(--ink); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 12px 2px; z-index: 210; }
.menu-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .3s; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.menu-panel {
  position: fixed; inset: 0; z-index: 150; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 var(--gut); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
body.menu-open .menu-panel { opacity: 1; visibility: visible; }
/* keep the toggle reachable above the open panel */
body.menu-open .header { z-index: 220; transform: none; background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
.menu-panel a {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  font-size: clamp(30px, 8vw, 52px); line-height: 1.25; letter-spacing: .02em;
  color: var(--ink-2); transition: color .3s;
}
.menu-panel a:hover { color: var(--ink); }
.menu-panel .lang { margin-top: 34px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12,12,14,.62) 0%, rgba(12,12,14,.18) 38%, rgba(12,12,14,.34) 62%, rgba(12,12,14,.92) 100%);
}
.hero-content { width: 100%; padding-block: 0 clamp(46px, 8vh, 96px); }
.hero-content .kicker { color: var(--ink-2); margin-bottom: clamp(18px, 3vh, 30px); }
.hero-content .kicker::before { background: var(--ink-2); }
h1.display { font-size: clamp(46px, 8.6vw, 132px); letter-spacing: .008em; line-height: .97; }
.hero-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  margin-top: clamp(22px, 4vh, 42px); flex-wrap: wrap;
}
.hero-foot .lead { max-width: 46ch; }
.hero-content .caption { margin-top: 30px; color: rgba(232, 230, 224, .45); }
.hero-caption { position: absolute; right: var(--gut); top: calc(100svh - 34px); display: none; }

/* ---------- sections ---------- */
.sec { padding-block: clamp(84px, 12vw, 170px); }
.sec-tight { padding-block: clamp(56px, 8vw, 110px); }
.anchor-sec { scroll-margin-top: 60px; }
.sec-head { margin-bottom: clamp(44px, 6vw, 84px); }
.sec-head .kicker { margin-bottom: 22px; }
.sec-head .lead { margin-top: 20px; }
.sec-alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

/* manifesto (principles) */
.principles { border-bottom: 1px solid var(--line-soft); }
.pr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); }
.pr { border-top: 1px solid var(--line); padding-top: 26px; }
.pr .idx { font-family: var(--display); font-weight: 400; font-size: 13px; letter-spacing: .18em; color: var(--ink-3); margin-bottom: 20px; }
.pr h3 {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .06em; font-size: 17px; margin-bottom: 14px;
}
.pr p { color: var(--ink-2); font-size: 14.5px; }
.pr.d1 { transition-delay: .12s; }
.pr.d2 { transition-delay: .24s; }

/* ---------- materials: numbered editorial rows ---------- */
.mat-list { display: flex; flex-direction: column; }
.mat-block {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 5vw, 88px); align-items: center;
  padding-block: clamp(40px, 5.5vw, 72px); border-top: 1px solid var(--line-soft);
}
.mat-block:last-child { border-bottom: 1px solid var(--line-soft); }
.mat-block:nth-child(even) { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.mat-block:nth-child(even) .mat-copy { order: 2; }
.mat-block:nth-child(even) .media { order: 1; }
.mat-num {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(52px, 6.5vw, 110px); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(232, 230, 224, .22);
  margin-bottom: clamp(16px, 2vw, 28px);
}
@supports not (-webkit-text-stroke: 1px black) {
  .mat-num { color: rgba(232, 230, 224, .16); }
}
.mat-block h3 {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(22px, 2.6vw, 36px); margin-bottom: 16px;
}
.mat-block p { color: var(--ink-2); max-width: 52ch; }
.mat-block .media { overflow: hidden; }
.mat-block .media img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 1.1s var(--ease); }
.mat-block:hover .media img { transform: scale(1.035); }

/* ---------- collection ---------- */
.filters { display: flex; flex-wrap: wrap; gap: clamp(18px, 2.6vw, 38px); margin-bottom: clamp(34px, 4.5vw, 56px); }
.filters button {
  font-family: var(--label); font-weight: 600; font-size: 10.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3);
  padding: 6px 0; border-bottom: 1px solid transparent; transition: color .3s, border-color .3s;
}
.filters button:hover { color: var(--ink-2); }
.filters button.is-active { color: var(--ink); border-bottom-color: var(--ink); }

.coll-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(16px, 2.4vw, 34px) clamp(14px, 2vw, 28px); }
.p-card { display: block; min-width: 0; }
.p-card.span-a { grid-column: span 4; }
.p-card.span-b { grid-column: span 2; }
.p-card.span-c { grid-column: span 3; }
.p-card .media { overflow: hidden; background: var(--panel); }
.p-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), opacity .5s var(--ease); }
.p-card.span-a .media img { aspect-ratio: 16 / 10; }
.p-card.span-b .media img { aspect-ratio: 4 / 5; }
.p-card.span-c .media img { aspect-ratio: 4 / 3; }
.p-card:hover .media img { transform: scale(1.04); }
.p-card .meta {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line-soft);
}
.p-card .name {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .14em; font-size: 13.5px;
}
.p-card .price { font-family: var(--label); font-weight: 500; font-size: 12px; color: var(--ink-2); letter-spacing: .06em; white-space: nowrap; }
.p-card .short { margin-top: 8px; font-size: 12.5px; color: var(--ink-3); max-width: 44ch; }

/* grid-3: related products, equal columns */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 34px) clamp(14px, 2vw, 28px); }
.grid-3 .p-card .media img { aspect-ratio: 4 / 3; }

/* ---------- campaign (full-bleed break) ---------- */
.campaign { position: relative; }
.campaign img { width: 100%; height: clamp(420px, 88vh, 900px); object-fit: cover; }
.campaign .caption { position: absolute; left: var(--gut); bottom: 22px; color: var(--ink-2); text-shadow: 0 1px 8px rgba(12,12,14,.8); }

/* ---------- stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.stat { padding: clamp(28px, 3.5vw, 52px) clamp(16px, 2vw, 34px); border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: 0; }
.stat .val { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; font-size: clamp(40px, 4.6vw, 76px); line-height: 1; }
.stat .lab {
  margin-top: 14px; font-family: var(--label); font-weight: 600; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3);
}

/* ---------- house ---------- */
.about-lede {
  font-family: var(--display); font-weight: 400; letter-spacing: .002em;
  font-size: clamp(22px, 3vw, 40px); line-height: 1.28; max-width: 30ch;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.about-cols { columns: 2; column-gap: clamp(32px, 4vw, 72px); max-width: 1060px; }
.about-cols p { break-inside: avoid; margin-bottom: 1.35em; color: var(--ink-2); }
.about-media { margin-block: clamp(56px, 8vw, 110px); }
.about-media img { width: 100%; height: clamp(400px, 80vh, 820px); object-fit: cover; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 48px); }
.tl-cell { border-top: 1px solid var(--line); padding-top: 20px; }
.tl-cell .y { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.4vw, 34px); margin-bottom: 10px; }
.tl-cell .t { font-size: 13px; color: var(--ink-2); }

/* ---------- contact / forms ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(40px, 6vw, 110px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(20px, 2.5vw, 40px); }
.field { margin-bottom: 30px; }
.field label {
  display: block; font-family: var(--label); font-weight: 600; font-size: 10px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line);
  color: var(--ink); font: inherit; padding: 8px 0 12px; border-radius: 0;
  transition: border-color .3s var(--ease);
}
.field select { -webkit-appearance: none; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px; background-repeat: no-repeat; cursor: pointer;
}
.field select option { background: var(--panel); color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--ink); }
.field.has-error input, .field.has-error textarea { border-bottom-color: #B4574B; }
[data-field-error] { display: block; margin-top: 8px; font-size: 12px; color: #C97A6F; min-height: 1em; }
[data-enquiry-success] { border: 1px solid var(--line); padding: clamp(30px, 4vw, 54px); }
[data-enquiry-success] h3 {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .04em; font-size: 26px; margin-bottom: 12px;
}
[data-enquiry-success] p { color: var(--ink-2); }

.c-block { border-top: 1px solid var(--line); padding-block: 24px 30px; }
.c-block h3 {
  font-family: var(--label); font-weight: 600; font-size: 10px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px;
}
.c-block p { color: var(--ink-2); font-size: 14px; }
.c-block a { border-bottom: 1px solid var(--line); transition: border-color .3s; color: var(--ink); }
.c-block a:hover { border-bottom-color: var(--ink); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); }
.footer-in {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 2fr) minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(30px, 4vw, 64px); padding-block: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 70px);
}
.f-brand .wordmark { display: block; margin-bottom: 18px; }
.f-brand p { color: var(--ink-3); font-size: 13px; max-width: 30ch; }
.f-col h3, .f-news h3 {
  font-family: var(--label); font-weight: 600; font-size: 10px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px;
}
.f-col li { margin-bottom: 10px; font-size: 13.5px; color: var(--ink-2); }
.f-col a { transition: color .3s; }
.f-col a:hover { color: var(--ink); }
.f-news p { font-size: 13px; color: var(--ink-2); margin-bottom: 18px; }
.f-news form { display: flex; border-bottom: 1px solid var(--line); }
.f-news input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--ink); font: inherit; font-size: 13.5px; padding: 8px 0 12px; }
.f-news input:focus { outline: none; }
.f-news input::placeholder { color: var(--ink-3); }
.f-news button {
  font-family: var(--label); font-weight: 600; font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-2); padding: 0 0 4px 14px; transition: color .3s;
}
.f-news button:hover { color: var(--ink); }
[data-newsletter-note] { display: block; margin-top: 10px; font-size: 12px; color: var(--ink-3); }
[data-newsletter-note].is-err { color: #C97A6F; }
.footer-base {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line-soft); padding-block: 22px 26px;
  font-size: 12px; color: var(--ink-3);
}
.footer-base a { margin-left: 22px; transition: color .3s; }
.footer-base a:hover { color: var(--ink); }

/* ---------- product page ---------- */
.prod { padding-top: clamp(110px, 16vh, 170px); display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(36px, 5vw, 96px); align-items: start; }
.prod-gallery { position: sticky; top: 96px; display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 24px); }
.prod-gallery figure { overflow: hidden; background: var(--panel); }
.prod-gallery img { width: 100%; height: 100%; object-fit: cover; }
.g-main img { aspect-ratio: 3 / 2; }
.g-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.6vw, 24px); }
.g-row img { aspect-ratio: 1 / 1; }
.breadcrumb { display: flex; gap: 10px; font-family: var(--label); font-weight: 600; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: clamp(24px, 3vh, 40px); }
.breadcrumb a { transition: color .3s; }
.breadcrumb a:hover { color: var(--ink); }
.prod-info h1.display { font-size: clamp(38px, 5vw, 72px); }
.prod-info .byline { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); letter-spacing: .04em; }
.prod-info .price { font-family: var(--display); font-weight: 400; font-size: 21px; margin-block: 20px 26px; }
.prod-info .short { color: var(--ink); margin-bottom: 14px; }
.prod-info .desc { color: var(--ink-2); margin-bottom: 36px; max-width: 56ch; }
.slab { border-top: 1px solid var(--line); padding-block: 20px 26px; }
.slab-label {
  font-family: var(--label); font-weight: 600; font-size: 10px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px;
}
.fabric-line { color: var(--ink-2); font-size: 14px; }
.dims-row { display: flex; flex-wrap: wrap; gap: 14px 34px; }
.dims-row .dv { font-family: var(--display); font-weight: 400; font-size: 19px; letter-spacing: .02em; }
.dims-row .dl { font-family: var(--label); font-weight: 600; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
dl.slab { display: block; }
.spec-row { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 18px; padding-block: 11px; border-bottom: 1px solid var(--line-soft); }
.spec-row:last-child { border-bottom: 0; }
.spec-row dt { font-family: var(--label); font-weight: 600; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); padding-top: 3px; }
.spec-row dd { font-size: 13.5px; color: var(--ink-2); }
.prod-cta-line { margin-top: 16px; font-size: 12.5px; color: var(--ink-3); }
.related h2.display { font-size: clamp(24px, 3vw, 42px); margin-bottom: clamp(30px, 4vw, 52px); }

/* ---------- legal & 404 ---------- */
.page-head { padding-top: clamp(140px, 22vh, 220px); padding-bottom: clamp(40px, 6vw, 80px); }
.page-head .kicker { margin-bottom: 22px; }
.e404 { min-height: 100svh; display: flex; align-items: center; padding-top: 80px; }
.e404 .code {
  font-family: var(--display); font-weight: 400; letter-spacing: .02em;
  font-size: clamp(110px, 22vw, 300px); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(232, 230, 224, .25);
}
@supports not (-webkit-text-stroke: 1px black) { .e404 .code { color: rgba(232, 230, 224, .16); } }
.e404 h1 { font-size: clamp(28px, 4vw, 52px); margin-block: 18px 14px; }
.e404 p { color: var(--ink-2); margin-bottom: 34px; max-width: 46ch; }

/* broken image guard */
.img-missing { position: relative; min-height: 200px; background: var(--panel); }
.img-missing img { opacity: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .contact-grid { grid-template-columns: 1fr; }
  .prod { grid-template-columns: 1fr; }
  .prod-gallery { position: static; }
  .footer-in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-side { display: none; }
  .menu-toggle { display: flex; }
  .pr-grid { grid-template-columns: 1fr; gap: 0; }
  .pr { padding-block: 26px; }
  .pr.d1, .pr.d2 { transition-delay: 0s; }
  .mat-block, .mat-block:nth-child(even) { grid-template-columns: 1fr; gap: 22px; }
  .mat-block:nth-child(even) .mat-copy { order: 1; }
  .mat-block:nth-child(even) .media { order: 2; }
  .p-card.span-a { grid-column: span 6; }
  .p-card.span-b, .p-card.span-c { grid-column: span 3; }
  .p-card.span-b .media img, .p-card.span-c .media img { aspect-ratio: 4 / 5; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .about-cols { columns: 1; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3 .p-card .media img { aspect-ratio: 3 / 2; }
}
@media (max-width: 620px) {
  /* small screens put the kicker over bright pillows — deepen the mid scrim */
  .hero-scrim { background: linear-gradient(180deg, rgba(12,12,14,.66) 0%, rgba(12,12,14,.38) 38%, rgba(12,12,14,.52) 62%, rgba(12,12,14,.94) 100%); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .p-card.span-b, .p-card.span-c { grid-column: span 6; }
  .p-card.span-b .media img, .p-card.span-c .media img { aspect-ratio: 3 / 2; }
  .footer-in { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 10px; }
  .footer-base a { margin-left: 0; margin-right: 22px; }
  .hero-foot { margin-top: 26px; }
  .campaign .caption { right: var(--gut); }
}
