/* ------------------------------------------------------------------ */
/* Therapedic — editorial landing                                      */
/* ------------------------------------------------------------------ */

html { scroll-behavior: smooth; }

:root {
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --ink: #0a1d3a;
  --ink-2: #14305b;
  --ink-soft: #4a5a76;
  --accent: #f5b942;
  --accent-warm: #e8a93a;
  --line: rgba(10, 29, 58, 0.10);
  --line-soft: rgba(10, 29, 58, 0.05);
  --paper: #ffffff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --micro: 10px;
  --label: 11px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img { display: block; max-width: 100%; }

/* italics are no longer serif — use Inter italic at lighter weight */
em {
  font-style: italic;
  font-weight: 300;
}

/* ------------------------------------------------------------------ */
/* Top nav                                                             */
/* ------------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 29, 58, 0.06);
  color: #0a1d3a;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), background .3s ease, color .3s ease, border-color .3s ease;
}
.nav.hidden { transform: translateY(-110%); }
.nav.dark {
  background: rgba(10, 29, 58, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  display: block;
  height: 36px;
  width: auto;
}

.nav-center {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-link {
  position: relative;
  padding: 6px 2px;
  color: inherit;
  opacity: .85;
  transition: opacity .2s ease;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

/* Search ------------------------------------------------------------ */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color .25s ease, background .25s ease, width .3s ease;
}
.nav-search input {
  width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: width .3s ease, padding .3s ease;
}
.nav-search.open {
  border-color: rgba(10, 29, 58, 0.18);
  background: rgba(255, 255, 255, 0.6);
}
.nav.dark .nav-search.open {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.nav-search.open input {
  width: 200px;
  padding: 8px 4px 8px 14px;
}
.nav-search input::placeholder { color: currentColor; opacity: .55; }

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  color: inherit;
  transition: background .2s ease;
}
.nav-icon-btn:hover { background: rgba(10, 29, 58, 0.06); }
.nav.dark .nav-icon-btn:hover { background: rgba(255, 255, 255, 0.1); }

/* Language toggle --------------------------------------------------- */
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.nav-lang button {
  padding: 4px 6px;
  color: inherit;
  opacity: .45;
  transition: opacity .2s ease;
  font: inherit;
}
.nav-lang button.active { opacity: 1; }
.nav-lang button:hover { opacity: .85; }
.nav-lang-sep { opacity: .3; }

/* Mobile menu hamburger (hidden on desktop) ------------------------- */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.nav-menu-btn span {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  border-radius: 1px;
}
.nav-menu-btn:hover { background: rgba(10, 29, 58, 0.06); }
.nav.dark .nav-menu-btn:hover { background: rgba(255, 255, 255, 0.1); }

/* ------------------------------------------------------------------ */
/* Nav item wrapper + chevron + mega-menu                              */
/* ------------------------------------------------------------------ */
.nav-item {
  display: inline-flex;
  align-items: center;
}
.nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-chev {
  opacity: .6;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-item.has-mega:hover .nav-chev,
.nav.mega-open .nav-item.has-mega .nav-chev {
  transform: rotate(-180deg);
  opacity: 1;
}

/* Mega-menu drops down from the bottom edge of the nav */
.mega-wrap {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid rgba(10, 29, 58, .06);
  border-bottom: 1px solid rgba(10, 29, 58, .06);
  box-shadow: 0 24px 48px -24px rgba(10, 29, 58, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .28s cubic-bezier(.22,.61,.36,1), visibility .22s ease;
  pointer-events: none;
  z-index: 1;
}
.mega-wrap.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav.dark .mega-wrap {
  /* mega panel stays light even when nav is dark — it's a content surface */
  color: var(--ink);
}

.mega-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Filter chips */
.mega-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.mega-tab {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(10, 29, 58, .12);
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.mega-tab:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.mega-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.mega-tab-end {
  margin-left: auto;
  border-color: transparent;
  color: var(--ink);
  font-weight: 600;
  padding-left: 14px;
  padding-right: 14px;
}
.mega-tab-end:hover {
  background: rgba(10, 29, 58, .04);
  border-color: transparent;
  color: var(--ink);
}
.mega-tab-end span[aria-hidden] {
  transition: transform .25s ease;
}
.mega-tab-end:hover span[aria-hidden] {
  transform: translateX(3px);
}

/* Grid */
.mega-grid {
  display: grid;
  grid-template-columns: 1.05fr 2.2fr;
  gap: 32px;
  min-height: 380px;
}
.mega-series-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Lead (left hero card) */
.mega-lead {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f1ec;
  position: relative;
  min-height: 380px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.mega-lead:hover { transform: translateY(-2px); }
.mega-lead-media {
  position: absolute;
  inset: 0;
}
.mega-lead-media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.mega-lead-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.mega-lead-body {
  position: relative;
  margin-top: auto;
  padding: 22px 24px 22px;
  background: linear-gradient(to top, rgba(10, 29, 58, .9) 0%, rgba(10, 29, 58, .6) 55%, rgba(10, 29, 58, 0) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-lead-eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .8;
}
.mega-lead-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0;
  line-height: 1.1;
}
.mega-lead-sub {
  font-size: 13px;
  line-height: 1.45;
  opacity: .85;
  margin: 0;
  max-width: 34ch;
}
.mega-lead-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mega-lead-cta span[aria-hidden] {
  transition: transform .25s ease;
}
.mega-lead:hover .mega-lead-cta span[aria-hidden] {
  transform: translateX(4px);
}

/* Series columns */
.mega-series-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mega-series-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10, 29, 58, .08);
}
.mega-series-code {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.mega-series-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
}
.mega-series-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Product row */
.mega-prod {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 10px;
  margin: 0 -10px;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  transition: background .18s ease;
}
.mega-prod:hover {
  background: rgba(10, 29, 58, .04);
}
.mega-prod-thumb {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f1ec;
  position: relative;
}
.mega-prod-thumb image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.mega-prod-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mega-prod-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
  line-height: 1.2;
}
.mega-prod-tag {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent-warm, #c96442);
}
.mega-prod-arrow {
  font-size: 14px;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .25s ease, color .2s ease;
}
.mega-prod:hover .mega-prod-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--ink);
}

@media (max-width: 1100px) {
  .mega-grid { grid-template-columns: 1fr; }
  .mega-series-cols { grid-template-columns: 1fr 1fr; }
  .mega-lead { min-height: 220px; }
}
@media (max-width: 760px) {
  .mega-wrap { display: none; }
}

/* ------------------------------------------------------------------ */
/* Side menu                                                          */
/* ------------------------------------------------------------------ */
.menu-overlay {
  position: fixed; inset: 0;
  z-index: 90;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0; pointer-events: none;
  transition: opacity .5s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

.menu-close {
  position: absolute;
  top: 22px; right: 28px;
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-main {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.menu-list a {
  display: inline-block;
  width: max-content;
  transition: color .2s, transform .3s;
}
.menu-list a:hover { color: var(--accent); transform: translateX(8px); }

.menu-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--label);
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .65;
  font-weight: 500;
}

.menu-aside {
  position: relative;
  background: #061229;
  overflow: hidden;
}
.menu-aside image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* ------------------------------------------------------------------ */
/* Section utility                                                     */
/* ------------------------------------------------------------------ */
.section-label {
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 22px 28px 22px;
  font-size: var(--label);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.section-head .center { color: var(--ink-soft); }
.section-head .right { text-align: right; color: var(--ink-soft); }

/* Fade-up reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }
.reveal.delay-5 { transition-delay: .40s; }

/* ------------------------------------------------------------------ */
/* Hero carousel                                                       */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  --slot-bg: #0a1d3a;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 110px 28px 28px;
  color: #fff;
  pointer-events: none;
}

.hero-numbers {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 0 36px;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: rgba(255,255,255,.85);
}
.hero-numbers .num {
  text-align: center;
  transition: opacity .4s;
  opacity: .35;
  cursor: pointer;
  pointer-events: auto;
}
.hero-numbers .num.active { opacity: 1; }
.hero-numbers .scroll {
  text-align: right;
  opacity: .85;
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
}

.hero-content {
  align-self: end;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  pointer-events: auto;
}

.hero-tagline {
  max-width: 560px;
}
.hero-eyebrow {
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: .8;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
  margin: 0;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 420px;
  opacity: .85;
}

.hero-cta {
  text-align: right;
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-cta .cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  cursor: pointer;
  transition: color .3s;
}
.hero-cta .cta-row:hover {
  color: var(--accent);
}
.hero-cta-meta {
  font-size: var(--micro);
  opacity: .6;
  margin-top: 10px;
}

.hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.15);
  z-index: 6;
}
.hero-progress > span {
  display: block;
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width .25s linear;
}

/* ------------------------------------------------------------------ */
/* Manifesto                                                           */
/* ------------------------------------------------------------------ */
.manifesto {
  padding: 140px 28px 100px;
  background: var(--bg);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-label {
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.manifesto-copy {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.018em;
  max-width: 1100px;
  text-wrap: pretty;
}
.manifesto-copy em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}
.manifesto-copy .accent {
  color: var(--accent-warm);
  font-style: italic;
  font-weight: 300;
}

/* ------------------------------------------------------------------ */
/* Therapedic Recommendation                                           */
/* ------------------------------------------------------------------ */
.recs {
  padding: 60px 28px 140px;
  background: var(--bg);
}
.recs-head {
  max-width: 1640px;
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.recs-title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}
.recs-link {
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s, gap .25s;
}
.recs-link:hover { color: var(--ink); gap: 14px; }

.recs-grid {
  max-width: 1640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.recs-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
  display: block;
  color: inherit;
}
.recs-card image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  --slot-bg: var(--bg-soft);
  --slot-fg: var(--ink-soft);
  --slot-border: transparent;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.recs-card:hover image-slot { transform: scale(1.03); }
.recs-card::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 35%);
}
.recs-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 22px 24px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.recs-card-eyebrow {
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.recs-card-title {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  letter-spacing: -.005em;
}

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

/* ------------------------------------------------------------------ */
/* Mattress technologies — 8-card grid                                 */
/* ------------------------------------------------------------------ */
.tech-grid-section {
  padding: 120px 28px 140px;
  background: var(--bg);
}
.tech-grid-head {
  max-width: 1640px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}
.tech-grid-title {
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.tech-grid-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}
.tech-grid-sub {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0;
  justify-self: end;
  text-wrap: pretty;
}

.tech-grid {
  max-width: 1640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}

/* Carousel ---------------------------------------------------------- */
.tech-carousel {
  position: relative;
  max-width: 1640px;
  margin: 0 auto;
}
.tech-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 8px;
}
.tech-track::-webkit-scrollbar { display: none; }
.tech-track .tech-card {
  flex: 0 0 320px;
}
@media (max-width: 720px) {
  .tech-track .tech-card { flex-basis: 78vw; }
}

.tech-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 36px;
  padding: 0 4px;
}
.tech-arrow {
  width: 52px; height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10, 29, 58, .22);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tech-arrow:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tech-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tech-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  overflow: hidden;
  border-radius: 6px;
}
.tech-card-media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  --slot-bg: var(--bg-soft);
  --slot-fg: var(--ink-soft);
  --slot-border: transparent;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.tech-card:hover .tech-card-media image-slot { transform: scale(1.03); }

/* Linked tech card (anchor wrapper) */
.tech-card-linked {
  text-decoration: none;
  color: inherit;
}
.tech-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.tech-card-link > span:last-child {
  transition: transform .25s ease;
}
.tech-card-linked:hover .tech-card-link > span:last-child {
  transform: translateX(4px);
}

.tech-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 2px;
}
.tech-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent, #c96442);
  background: color-mix(in srgb, var(--accent, #c96442) 12%, transparent);
  padding: 5px 10px;
  border-radius: 4px;
}
.tech-card-title {
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.tech-card-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
}

@media (max-width: 1280px) {
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid-head { grid-template-columns: 1fr; gap: 20px; }
  .tech-grid-sub { justify-self: start; }
}
@media (max-width: 560px) {
  .tech-grid { grid-template-columns: 1fr; }
  .tech-grid-section { padding: 80px 22px 100px; }
}

/* ------------------------------------------------------------------ */
/* Collections — two-panel hero                                        */
/* ------------------------------------------------------------------ */
.series {
  background: var(--paper);
}
.series-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: #fff;
}
.series-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1a1a;
}
.series-panel image-slot,
.series-panel .series-panel-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  --slot-bg: #1a1a1a;
  --slot-fg: rgba(255,255,255,.55);
  --slot-border: transparent;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.series-panel:hover image-slot,
.series-panel:hover .series-panel-img { transform: scale(1.03); }

.series-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
}

.series-panel-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 48px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.series-panel-title {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  letter-spacing: .03em;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}
.series-panel-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255,255,255,.92);
  margin: 0;
  max-width: 460px;
}
.series-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #fff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  margin-top: 8px;
  transition: background .25s, color .25s, transform .25s;
}
.series-panel-cta:hover {
  background: rgba(255,255,255,.88);
  transform: translateY(-1px);
}

/* ------------------------------------------------------------------ */
/* Tech / Feature — single HourGlass with scroll-scrub video           */
/* ------------------------------------------------------------------ */
.tech {
  background: #000;
}

.scrub {
  position: relative;
  background: #000;
}
.scrub-sticky {
  position: relative;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
}

/* ---------- Top text band (sits ABOVE the video) ----------------- */
.scrub-text-band {
  position: relative;
  padding: 36px 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.scrub-meta {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.scrub-meta .tag {
  justify-self: start;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 8px 12px;
  font-size: var(--label);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.18);
}
.scrub-phase {
  justify-self: center;
  font-size: var(--micro);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}
.scrub-frame-count {
  justify-self: end;
  font-size: var(--micro);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 11px;
}

/* Headline + stats stack overlap in same grid cell, fade between phases */
.scrub-headline-stack {
  position: relative;
  width: 100%;
  max-width: 1100px;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 180px;
}

.scrub-headline {
  grid-column: 1;
  grid-row: 1;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 0;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  will-change: opacity, transform;
}
.scrub-headline sup {
  font-size: .35em;
  font-weight: 400;
  vertical-align: super;
  margin-left: 4px;
  color: rgba(255,255,255,.6);
}

.scrub-h1 {
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 400;
}
.scrub-h2 {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -.028em;
}

/* Scrub CTA link (Explore HourGlass® in depth) */
.scrub-cta-link {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  z-index: 5;
}
.scrub-cta-link > span:last-child {
  transition: transform .25s ease;
}
.scrub-cta-link:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-1px);
}
.scrub-cta-link:hover > span:last-child {
  transform: translateX(4px);
}

/* stats panel — sits in same stack cell */
.scrub-stats {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 880px;
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}
.scrub-stats-eyebrow {
  font-size: var(--micro);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
  text-align: center;
}
.scrub-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 22px;
}
.scrub-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.scrub-stats .stat-val {
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .92;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.scrub-stats .stat-bar {
  position: relative;
  height: 2px;
  width: 100%;
  max-width: 220px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}
.scrub-stats .stat-bar > span {
  position: absolute;
  inset: 0;
  background: #fff;
  width: 0%;
  transition: width .2s linear;
}
.scrub-stats .stat-label {
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

/* ---------- Video area (BELOW the text band) --------------------- */
.scrub-video-area {
  position: relative;
  overflow: hidden;
  background: #000;
}
.scrub-video-area video,
.scrub-video-area canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* progress track inside video area */
.scrub-progress {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--micro);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  z-index: 4;
}
.scrub-progress .track {
  height: 1px;
  background: rgba(255,255,255,.18);
  width: 240px;
  position: relative;
  overflow: hidden;
}
.scrub-progress .track > span {
  position: absolute;
  inset: 0;
  background: #fff;
  width: 0%;
}

/* drop zone */
.scrub-drop {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px,
      transparent 1px, transparent 14px),
    #000;
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 32px;
  transition: background .25s, color .25s;
  z-index: 5;
}
.scrub-drop.dragover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.scrub-drop .drop-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.4);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.scrub-drop .drop-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -.005em;
}
.scrub-drop .drop-sub {
  font-size: var(--micro);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 360px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
}
.scrub-drop label.drop-btn {
  display: inline-block;
  padding: 11px 20px;
  background: #fff;
  color: #000;
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  margin-top: 6px;
}
.scrub-drop label.drop-btn:hover { background: rgba(255,255,255,.85); }
.scrub-drop input[type=file] { display: none; }

/* ------------------------------------------------------------------ */
/* Wake Up Ready campaign                                              */
/* ------------------------------------------------------------------ */
.campaign {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.campaign-stage {
  position: relative;
  aspect-ratio: 16/9;
  background: #061229;
  max-width: 1640px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
  transition: outline-color .2s ease;
  outline: 2px solid transparent;
  outline-offset: -2px;
}
.campaign-stage.dragover {
  outline-color: var(--accent, #c96442);
}
.campaign-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.campaign-drop {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  font: inherit;
}
.campaign-drop-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(255,255,255,.85);
  margin-bottom: 6px;
}
.campaign-drop-title {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,.95);
}
.campaign-drop-sub {
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.campaign-drop:hover .campaign-drop-icon {
  border-color: rgba(255,255,255,.75);
  color: #fff;
}

.campaign-video-replace {
  position: absolute;
  bottom: 18px; right: 18px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s ease, background .25s ease;
}
.campaign-stage:hover .campaign-video-replace { opacity: 1; }
.campaign-video-replace:hover { background: rgba(0,0,0,.75); }

.campaign-caption {
  max-width: 1640px;
  margin: 56px auto 0;
  padding: 0 28px;
  text-align: center;
}
.campaign-headline {
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0;
  color: #fff;
  text-wrap: balance;
}
.campaign-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.campaign-lede {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  text-wrap: pretty;
}

/* ------------------------------------------------------------------ */
/* Brand lockup + footer                                               */
/* ------------------------------------------------------------------ */
.brand-lockup {
  padding: 140px 28px 140px;
  text-align: center;
  background: var(--bg);
}
.brand-lockup .pre {
  font-size: var(--label);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-weight: 500;
}
.brand-lockup .logo {
  font-size: clamp(64px, 11vw, 180px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .9;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.brand-lockup .logo .pe { color: var(--ink); }
.brand-lockup .logo .ic { color: #6ea2d5; }
.brand-lockup .logo .dot {
  position: absolute;
  top: -.05em;
  right: -.02em;
  width: .18em;
  height: .18em;
  border-radius: 50%;
  background: var(--accent);
}
.brand-lockup .sub {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

footer.foot {
  background: var(--ink);
  color: #fff;
  padding: 56px 28px 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.foot-brand .logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
}
.foot-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  max-width: 320px;
  margin: 0;
}
.foot-newsletter {
  display: flex;
  padding-bottom: 10px;
  gap: 10px;
  max-width: 340px;
}
.foot-newsletter input {
  background: transparent;
  border: 0;
  color: #fff;
  font: inherit;
  font-size: 13px;
  flex: 1;
  outline: 0;
}
.foot-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.foot-newsletter button {
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}
.foot-newsletter button:hover { color: var(--accent); }

.foot-col h4 {
  font-size: var(--label);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin: 0 0 18px;
}
.foot-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col a {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.foot-col a:hover { color: var(--accent); }

.foot-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 24px;
  font-size: var(--micro);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.45);
}
.foot-bottom .center { text-align: center; }
.foot-bottom .right { text-align: right; }

/* ------------------------------------------------------------------ */
/* image-slot integration                                              */
/* ------------------------------------------------------------------ */
image-slot {
  --slot-bg: var(--bg-soft);
  --slot-fg: var(--ink-soft);
  --slot-border: transparent;
}
.hero-slide image-slot,
.menu-aside image-slot,
.campaign-stage image-slot {
  --slot-bg: #061229;
  --slot-fg: rgba(255,255,255,.55);
  --slot-border: transparent;
}

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 28px; }
  .series-pair { grid-template-columns: 1fr; gap: 2px; }
  .series-panel { aspect-ratio: 4 / 5; }
  .series-panel-overlay { padding: 32px 24px; }
  .scrub-text-band { padding: 24px 18px 16px; gap: 14px; }
  .scrub-meta .scrub-frame-count { display: none; }
  .scrub-meta { grid-template-columns: auto 1fr; }
  .scrub-stats-grid { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
  .scrub-phase { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-cta { text-align: left; }
  .hero-overlay { padding: 90px 22px 22px; }
  .nav-center { display: none; }
  .nav-menu-btn { display: inline-flex; }
  .nav-lang { display: none; }
  .nav-search { display: none; }
  .nav-search.open input { width: 140px; }
  .menu-overlay { grid-template-columns: 1fr; }
  .menu-aside { display: none; }
}

/* ── Mobile nav panel ── */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.nav-mobile-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw);
  background: #0a1d3a;
  color: #fff;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -8px 0 40px rgba(0,0,0,.45);
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}

.nav-mobile-close {
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.nav-mobile-close:hover { background: rgba(255,255,255,.08); color: #fff; }

.nav-mobile-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0 32px;
}

.nav-mobile-section-label {
  padding: 14px 20px 6px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-family: 'Inter', -apple-system, sans-serif;
}

.nav-mobile-collection-label {
  padding: 8px 20px 4px 28px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  font-family: 'Inter', -apple-system, sans-serif;
}

.nav-mobile-prod-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 20px 10px 32px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  gap: 12px;
  transition: background .15s;
}
.nav-mobile-prod-link:hover { background: rgba(255,255,255,.05); }

.nav-mobile-prod-name {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  font-family: 'Inter', -apple-system, sans-serif;
}

.nav-mobile-prod-tag {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-family: 'Inter', -apple-system, sans-serif;
  white-space: nowrap;
}

.nav-mobile-link {
  display: block;
  padding: 13px 20px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 15px;
  font-family: 'Inter', -apple-system, sans-serif;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s, color .15s;
}
.nav-mobile-link:hover { background: rgba(255,255,255,.05); color: #fff; }

.nav-mobile-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 8px 0;
}

.nav-mobile-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 8px;
}

.nav-mobile-lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.65);
  padding: 5px 14px;
  font-size: 12px;
  font-family: 'Inter', -apple-system, sans-serif;
  border-radius: 3px;
  cursor: pointer;
  transition: all .15s;
}
.nav-mobile-lang-btn.active {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* ── Rich mobile panel inner components ── */
.nm-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}

.nm-search-icon { color: rgba(255,255,255,.45); flex-shrink: 0; }

.nm-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', -apple-system, sans-serif;
}
.nm-search-input::placeholder { color: rgba(255,255,255,.35); }

/* Accordion */
.nm-accordion { border-bottom: 1px solid rgba(255,255,255,.08); }

.nm-accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: 'Inter', -apple-system, sans-serif;
  cursor: pointer;
  text-align: left;
}

.nm-accordion-chevron {
  transition: transform .2s;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}
.nm-accordion-chevron.open { transform: rotate(180deg); }

.nm-accordion-body { padding-bottom: 8px; }

/* Collection */
.nm-collection { margin-bottom: 4px; }

.nm-collection-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 4px;
}

.nm-collection-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-family: 'Inter', -apple-system, sans-serif;
}

.nm-collection-see-all {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  font-family: 'Inter', -apple-system, sans-serif;
  transition: color .15s;
}
.nm-collection-see-all:hover { color: rgba(255,255,255,.7); }

/* Series */
.nm-series { margin-bottom: 2px; }

.nm-series-label {
  padding: 6px 20px 4px 28px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  font-family: 'Inter', -apple-system, sans-serif;
}

/* Product row */
.nm-prod-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 20px 9px 28px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s;
}
.nm-prod-row:hover { background: rgba(255,255,255,.06); }

.nm-prod-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.1);
  position: relative;
}
.nm-prod-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.nm-prod-thumb image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.nm-prod-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nm-prod-name {
  font-size: 14px;
  color: rgba(255,255,255,.88);
  font-family: 'Inter', -apple-system, sans-serif;
}
.nm-prod-tag {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-family: 'Inter', -apple-system, sans-serif;
}
.nm-prod-arrow {
  font-size: 14px;
  color: rgba(255,255,255,.3);
}

/* Accessories */
.nm-acc-cat { margin-bottom: 2px; }

.nm-acc-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px 11px 28px;
  text-decoration: none;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s;
}
.nm-acc-cat-head:hover { background: rgba(255,255,255,.08); }

.nm-acc-cat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  font-family: 'Inter', -apple-system, sans-serif;
}

.nm-acc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 20px 9px 36px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s;
}
.nm-acc-item:hover { background: rgba(255,255,255,.05); }

.nm-acc-item-name {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-family: 'Inter', -apple-system, sans-serif;
}
.nm-acc-item-tag {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  font-family: 'Inter', -apple-system, sans-serif;
  white-space: nowrap;
}

/* Divider */
.nm-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 4px 0;
}

/* Footer language */
.nm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}

.nm-footer-label {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-family: 'Inter', -apple-system, sans-serif;
}

.nm-lang-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================================================================== */
/* All Products page                                                   */
/* ================================================================== */
.ap-main {
  padding-top: 72px; /* clear fixed nav */
}

/* Hero ------------------------------------------------------------- */
.ap-hero {
  padding: 80px 28px 100px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.ap-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.ap-hero-eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.ap-hero-title {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.ap-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}
.ap-hero-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0;
  text-wrap: pretty;
}
.ap-hero-jump {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ap-hero-jump a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background .2s ease, border-color .2s ease, color .2s ease, gap .25s ease;
}
.ap-hero-jump a:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  gap: 22px;
}

/* Collection block ------------------------------------------------- */
.ap-collection {
  padding: 100px 28px 120px;
  background: var(--bg);
  scroll-margin-top: 80px;
}
.ap-collection-b {
  background: var(--bg-soft);
}
.ap-coll-head {
  max-width: 1280px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  border-top: 1px solid var(--ink);
  padding-top: 28px;
}
.ap-coll-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.ap-coll-badge { color: var(--ink); font-weight: 600; }
.ap-coll-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.ap-coll-blurb {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0;
  text-wrap: pretty;
}

/* Product grid ----------------------------------------------------- */
.ap-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
}
@media (max-width: 760px) {
  .ap-grid { grid-template-columns: 1fr; gap: 36px; }
  .ap-coll-head { margin-bottom: 36px; }
  .ap-collection { padding: 60px 22px 80px; }
  .ap-hero { padding: 56px 22px 64px; }
}

.ap-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 560px) {
  .ap-card { grid-template-columns: 1fr; gap: 18px; }
}
.ap-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.ap-collection-b .ap-card-media { background: #fff; }
.ap-card-media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  --slot-bg: transparent;
  --slot-fg: var(--ink-soft);
  --slot-border: transparent;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.ap-card:hover .ap-card-media image-slot { transform: scale(1.03); }
.ap-card-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.ap-card:hover .ap-card-media img { transform: scale(1.03); }

.ap-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 4px;
}
.ap-card-tag {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-warm, #c96442);
}
.ap-card-name {
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
}
.ap-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
  flex: 1;
}
.ap-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.ap-card-sizes {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.ap-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
  transition: gap .25s ease, color .2s ease;
}
.ap-card-cta:hover { gap: 14px; color: var(--accent-warm, #c96442); }

/* Series block ----------------------------------------------------- */
.ap-series-stack {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.ap-series {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.ap-series-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 820px;
}
.ap-series-code {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.ap-series-title {
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.ap-series-blurb {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0;
  max-width: 640px;
}
@media (max-width: 760px) {
  .ap-series-stack { gap: 64px; }
  .ap-series { gap: 28px; }
}

/* Variant switcher within product card ----------------------------- */
.ap-card-media { overflow: hidden; }
.ap-card-variant-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.ap-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 6px;
}
.ap-variant {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  font-family: inherit;
}
.ap-variant:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.ap-variant.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Mini footer ------------------------------------------------------ */
.ap-foot {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 56px 28px;
}
.ap-foot-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.ap-foot-logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.ap-foot-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.ap-foot-links a {
  opacity: .8;
  transition: opacity .2s ease;
}
.ap-foot-links a:hover { opacity: 1; }
.ap-foot-meta {
  font-size: 12px;
  letter-spacing: .04em;
  text-align: right;
}
@media (max-width: 720px) {
  .ap-foot-inner { grid-template-columns: 1fr; text-align: center; }
  .ap-foot-links { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .ap-foot-meta { text-align: center; }
}


/* ================================================================== */
/* Accessories page                                                    */
/* ================================================================== */

/* Sticky category tab bar */
.acc-tabs {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: top .35s cubic-bezier(.22,.61,.36,1);
}
body.nav-hidden .acc-tabs { top: 0; }
.acc-tabs-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  padding: 12px 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.acc-tabs-inner::-webkit-scrollbar { display: none; }
.acc-tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.acc-tab .acc-tab-num {
  font-size: 11px;
  letter-spacing: .14em;
  opacity: .55;
  font-variant-numeric: tabular-nums;
}
.acc-tab:hover {
  color: var(--ink);
  border-color: rgba(10, 29, 58, .14);
}
.acc-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.acc-tab.active .acc-tab-num { opacity: .7; color: #fff; }

/* Category section */
.acc-cat {
  padding: 100px 28px 120px;
  background: var(--bg);
  scroll-margin-top: 140px;
}
.acc-cat-b { background: var(--bg-soft); }
.acc-cat-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.acc-cat-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  border-top: 1px solid var(--ink);
  padding-top: 28px;
  margin-bottom: 56px;
  max-width: 820px;
}
.acc-cat-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.acc-cat-blurb {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 720px;
  text-wrap: pretty;
}

/* Grid of cards */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.acc-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.acc-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f8f9fb;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.acc-card-media img {
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.acc-cat-b .acc-card-media { background: #fff; }
.acc-card-media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  --slot-bg: transparent;
  --slot-fg: var(--ink-soft);
  --slot-border: transparent;
}
.acc-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.acc-card-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}
.acc-card-tag {
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--ink-soft);
  margin: 0;
}
.acc-card-link {
  display: contents; /* lets parent card control layout */
  color: inherit;
  text-decoration: none;
}
.acc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  transition: gap .2s ease;
}
.acc-card:hover .acc-card-cta { gap: 12px; }
.acc-card:hover .acc-card-media img { transform: scale(1.03); }

/* Responsive */
@media (max-width: 980px) {
  .acc-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-cat { padding: 64px 22px 80px; }
}
@media (max-width: 600px) {
  .acc-grid { grid-template-columns: 1fr; gap: 28px; }
  .acc-tabs-inner { padding: 10px 18px; }
  .acc-tab { padding: 9px 14px; font-size: 12.5px; }
  .acc-tab .acc-tab-num { display: none; }
}



/* Accessories mega — single-column item list */
.mega-series-cols-acc {
  grid-template-columns: 1fr;
}
@media (min-width: 1101px) {
  .mega-series-cols-acc .mega-series-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
  }
}


/* Accessories mega — text-only variants */
.mega-grid-acc { align-items: stretch; }
.mega-lead-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 8px 8px 8px 0;
}
.mega-lead-text .mega-lead-body { gap: 12px; }

/* ================================================================== */
/* About Us page                                                       */
/* ================================================================== */

/* --- Hero ---------------------------------------------------------- */
.ab-hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ab-hero-media {
  position: absolute;
  inset: 0;
  background: #0d1117;
}
.ab-hero-media image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 60%, transparent 100%);
}
.ab-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 7vw 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.ab-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.ab-hero-title {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.03em;
  margin: 0;
}
.ab-hero-title em {
  font-style: italic;
  font-weight: 300;
}

/* --- Shared section layout ----------------------------------------- */
.ab-section {
  padding: 120px 7vw;
}
.ab-section--dark {
  background: #0d1117;
  color: #fff;
}
.ab-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.ab-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab-layout-split--reverse {
  direction: rtl;
}
.ab-layout-split--reverse > * {
  direction: ltr;
}

/* --- Text block ---------------------------------------------------- */
.ab-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.4);
  margin-bottom: 20px;
}
.ab-section--dark .ab-eyebrow {
  color: rgba(255,255,255,.4);
}
.ab-section-title {
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 28px;
  color: #0d1117;
}
.ab-section--dark .ab-section-title {
  color: #fff;
}
.ab-section-title em {
  font-style: italic;
  font-weight: 300;
}
.ab-body {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: rgba(13,17,23,.65);
  max-width: 520px;
  margin: 0;
  text-wrap: pretty;
}
.ab-section--dark .ab-body {
  color: rgba(255,255,255,.6);
}

/* --- Media slot ---------------------------------------------------- */
.ab-split-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: #e8e8e4;
}
.ab-section--dark .ab-split-media {
  background: #1a2030;
}
.ab-split-media image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* --- Stats bar ----------------------------------------------------- */
.ab-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0d1117;
  padding: 64px 7vw;
  gap: 0;
}
.ab-stat {
  padding: 0 40px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.ab-stat:first-child {
  border-left: none;
  padding-left: 0;
}
.ab-stat-value {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.ab-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* --- Footer -------------------------------------------------------- */
.ab-footer {
  background: #060a0f;
  padding: 48px 7vw;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ab-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.ab-footer-logo {
  height: 32px;
  width: auto;
  opacity: .7;
}
.ab-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin: 0;
}

/* --- Responsive ---------------------------------------------------- */
@media (max-width: 900px) {
  .ab-section {
    padding: 80px 6vw;
  }
  .ab-layout-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ab-layout-split--reverse {
    direction: ltr;
  }
  .ab-split-media {
    aspect-ratio: 3/2;
    order: -1;
  }
  .ab-stats {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
    padding: 56px 6vw;
  }
  .ab-stat:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
  .ab-stat:nth-child(even) {
    padding-left: 32px;
  }
  .ab-hero-inner {
    padding: 0 6vw 60px;
  }
}
@media (max-width: 560px) {
  .ab-stats {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }
  .ab-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ================================================================== */
/* Official Dealers page                                               */
/* ================================================================== */

/* --- Hero ---------------------------------------------------------- */
.dl-hero {
  background: #0d1117;
  padding: 160px 7vw 80px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dl-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.dl-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.dl-hero-title {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 20px;
}
.dl-hero-title em {
  font-style: italic;
  font-weight: 300;
}
.dl-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  margin: 0;
}

/* --- Body ---------------------------------------------------------- */
.dl-body {
  background: #f7f6f3;
  min-height: 60vh;
}

/* --- Search -------------------------------------------------------- */
.dl-search-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 7vw 0;
}
.dl-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  overflow: hidden;
  max-width: 520px;
  transition: border-color .15s;
}
.dl-search:focus-within {
  border-color: #0d1117;
}
.dl-search-icon {
  position: absolute;
  left: 16px;
  color: rgba(0,0,0,.35);
  pointer-events: none;
  flex-shrink: 0;
}
.dl-search-input {
  width: 100%;
  padding: 14px 44px 14px 44px;
  font-size: 14px;
  font-family: inherit;
  border: none;
  outline: none;
  background: transparent;
  color: #0d1117;
}
.dl-search-input::placeholder { color: rgba(0,0,0,.35); }
.dl-search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: rgba(0,0,0,.4);
  padding: 4px;
  line-height: 1;
}
.dl-search-results {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(0,0,0,.45);
}

/* --- Region tabs --------------------------------------------------- */
.dl-tabs-wrap {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: #f7f6f3;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.dl-tabs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 7vw;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.dl-tabs::-webkit-scrollbar { display: none; }
.dl-tab {
  flex-shrink: 0;
  padding: 16px 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(0,0,0,.4);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  font-family: inherit;
}
.dl-tab:hover { color: #0d1117; }
.dl-tab--active {
  color: #0d1117;
  border-bottom-color: #0d1117;
}

/* --- Regions ------------------------------------------------------- */
.dl-regions {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 7vw 100px;
}
.dl-region {
  padding-top: 64px;
}
.dl-region-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding-bottom: 16px;
}
.dl-region-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #0d1117;
  margin: 0;
}
.dl-region-count {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* --- Grid ---------------------------------------------------------- */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

/* --- Store card ---------------------------------------------------- */
.dl-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  cursor: pointer;
}
.dl-card:hover {
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateY(-1px);
}
.dl-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #f0efeb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d1117;
  margin-top: 1px;
}
.dl-card-body {
  flex: 1;
  min-width: 0;
}
.dl-card-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #0d1117;
  line-height: 1.3;
  margin-bottom: 5px;
  text-wrap: pretty;
}
.dl-card-address {
  font-size: 12px;
  color: rgba(0,0,0,.45);
  line-height: 1.5;
  text-wrap: pretty;
}
.dl-card-arrow {
  flex-shrink: 0;
  color: rgba(0,0,0,.25);
  margin-top: 2px;
  transition: color .15s;
}
.dl-card:hover .dl-card-arrow { color: #0d1117; }

/* --- Empty state --------------------------------------------------- */
.dl-empty {
  padding: 80px 0;
  text-align: center;
  color: rgba(0,0,0,.45);
  font-size: 15px;
}
.dl-empty strong { color: #0d1117; }
.dl-empty-reset {
  margin-top: 16px;
  display: inline-block;
  padding: 10px 24px;
  background: #0d1117;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

/* --- Responsive ---------------------------------------------------- */
@media (max-width: 768px) {
  .dl-hero { padding: 140px 6vw 60px; }
  .dl-search-wrap { padding: 36px 6vw 0; }
  .dl-tabs { padding: 0 6vw; }
  .dl-regions { padding: 0 6vw 80px; }
  .dl-grid { grid-template-columns: 1fr; }
  .dl-tab { padding: 14px 14px; font-size: 11.5px; }
}
.mega-prod-text {
  grid-template-columns: 1fr auto;
  padding: 12px 4px;
  gap: 16px;
}

/* ------------------------------------------------------------------ */
/* What's Inside — landing page ingredient showcase                    */
/* ------------------------------------------------------------------ */
.wi-section {
  padding: 120px 60px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.wi-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.wi-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .45;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.wi-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -.02em;
  font-family: var(--font-sans);
}

.wi-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  opacity: .7;
}

.wi-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
}

.wi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--line);
}

.wi-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  transition: background .25s ease;
}

.wi-card:hover {
  background: var(--bg-soft);
}

.wi-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
}

.wi-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.wi-card:hover .wi-card-media img {
  transform: scale(1.05);
}

.wi-card-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wi-card-tag {
  display: block;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-family: var(--font-sans);
  font-weight: 600;
}

.wi-card-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  font-family: var(--font-sans);
  letter-spacing: -.01em;
}

.wi-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
}

@media (max-width: 1200px) {
  .wi-section { padding: 100px 40px; }
  .wi-grid { grid-template-columns: repeat(3, 1fr); }
  /* last row: center the remaining 2 cards */
  .wi-card:nth-child(4) { grid-column: 1 / 2; }
}

@media (max-width: 768px) {
  .wi-section { padding: 72px 20px; }
  .wi-head { margin-bottom: 40px; }
  .wi-grid { grid-template-columns: repeat(2, 1fr); }
  .wi-card:nth-child(4) { grid-column: auto; }
  .wi-card:nth-child(5) { grid-column: 1 / -1; }
  .wi-card:nth-child(5) .wi-card-media { aspect-ratio: 16/7; }
  .wi-card-body { padding: 18px 16px 20px; }
}
