/* === Inna Brands === */
:root {
  --bg: #F5F5F5;
  --bg-alt: #F0F0F0;
  --card: #FFFFFF;
  --ink: #19445A;
  --ink-soft: #19445A;
  --ink-muted: #547385;
  --line: #E0E0E0;
  --line-strong: rgba(25, 68, 90, 0.28);
  --accent: #2B5673;
  --accent-hover: #214660;
  --accent-ink: #FFFFFF;
  --primary: #19445A;
  --radius: 5px;
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* Typography */
.eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}
.eyebrow-accent {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}
.display, .headline, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}
h1.display, .hero-mega {
  font-weight: 700;
  line-height: 1.05;
}
.lede {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  max-width: 60ch;
  text-wrap: pretty;
}
.section.dark .lede, .hero .lede, .page-header .lede {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
p { font-weight: 300; font-size: 18px; line-height: 1.625; }

/* Layout */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.container-wide {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px clamp(20px, 3vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: var(--ink);
}
.nav.scrolled {
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(25, 68, 90, 0.08), 0 1px 3px rgba(25, 68, 90, 0.06);
}
.nav.on-dark {
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%);
  color: #FFFFFF;
  border-bottom: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.nav.on-dark .nav-links a { color: #FFFFFF; opacity: 0.9; }
.nav.on-dark .nav-links a:hover { color: #FFFFFF; opacity: 1; }
.nav.on-dark .nav-links a.active { color: #FFFFFF; opacity: 1; }
.nav.on-dark .nav-links a.active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: #FFFFFF;
}
.nav.on-dark.scrolled {
  background: #FFFFFF;
  color: var(--ink);
  border-bottom-color: rgba(0,0,0,0.1);
  text-shadow: none;
}
.nav.on-dark.scrolled .nav-links a { color: var(--ink); }
.nav.on-dark.scrolled .nav-links a:hover { color: var(--accent); }
.nav.on-dark.scrolled .nav-links a.active { color: var(--accent); }
.nav.on-dark.scrolled .nav-links a.active::after { display: none; }
.nav.on-dark .logo-img { filter: invert(1) brightness(1.6); }
.nav.on-dark.scrolled .logo-img { filter: none; }
.nav.on-dark .nav-cta { background: #FFFFFF; color: var(--ink); border-color: #FFFFFF; }
.nav.on-dark .nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Below 900px: nav is opaque and flows in layout so hero content sits below it. */
@media (max-width: 900px) {
  .nav { position: sticky; }
  .nav.on-dark {
    background: #FFFFFF;
    color: var(--ink);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-shadow: none;
  }
  .nav.on-dark .nav-links a { color: var(--ink); opacity: 0.85; }
  .nav.on-dark .nav-links a:hover { color: var(--accent); opacity: 1; }
  .nav.on-dark .nav-links a.active { color: var(--accent); opacity: 1; }
  .nav.on-dark .nav-links a.active::after { display: none; }
  .nav.on-dark .logo-img { filter: none; }
  .nav.on-dark .nav-cta { background: var(--accent); color: #fff; border-color: var(--accent); }
  .nav.on-dark .nav-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
}
.nav.on-dark.scrolled .nav-cta { background: var(--accent); color: #fff; border-color: var(--accent); }
.brand-mark {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-mark .dot { display: none; }
.nav-links {
  display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}
.nav-links a { padding: 6px 0; position: relative; opacity: 0.85; transition: opacity .2s ease; }
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-links a.active { opacity: 1; color: var(--accent); }
.nav-links a.active::after { display: none; }
.nav-cta {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  padding: 10px 18px;
  border-radius: 5px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.nav-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }
.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid currentColor;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius);
  color: inherit;
  cursor: pointer;
}
.nav-mobile-toggle svg { display: block; }
.nav-mobile-toggle .icon-close { display: none; }
.nav-mobile-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-mobile-toggle[aria-expanded="true"] .icon-close { display: block; }
@media (max-width: 800px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink); color: var(--bg);
  z-index: 99;
  padding: 80px 24px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-menu a {
  font-size: 32px; font-weight: 500; letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500; letter-spacing: normal;
  text-transform: none;
  padding: 12px 20px;
  border-radius: 5px;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: currentColor;
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.7,0,.2,1);
  z-index: -1;
}
.btn:hover { transform: translateY(-1px); }
.btn:hover::before { transform: translateX(0); }

.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary::before { background: var(--ink); }
.btn-primary:hover { color: #fff; border-color: var(--ink); box-shadow: 0 8px 22px rgba(25,68,90,0.22); }

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: inherit;
  padding: 8px 12px;
}
.btn-ghost::before { display: none; }
.btn-ghost:hover { color: var(--accent); transform: none; }
.btn-ghost.on-light:hover { color: var(--accent); }

/* Ghost button on dark backgrounds — bordered, fills on hover */
.btn-ghost-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 12px 20px;
}
.btn-ghost-light::before { display: block; background: #fff; }
.btn-ghost-light:hover {
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(25,68,90,0.25);
}

.btn .arrow { display: inline-block; transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Placeholder imagery */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(10,26,47,0.04) 0 10px,
      rgba(10,26,47,0.02) 10px 20px
    ),
    var(--bg-alt);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
}
.placeholder.dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.04) 0 10px,
      rgba(255,255,255,0.02) 10px 20px
    ),
    #0E1F38;
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}
.placeholder.accent {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(10,26,47,0.06) 0 10px,
      rgba(10,26,47,0.03) 10px 20px
    ),
    color-mix(in oklab, var(--accent) 70%, white);
  border-color: color-mix(in oklab, var(--accent) 60%, var(--ink));
  color: var(--ink);
}
.placeholder .label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.placeholder.dark .label {
  background: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8);
}
.placeholder .corner {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  opacity: 0.55;
  text-transform: uppercase;
}
.placeholder .corner-r {
  position: absolute; top: 10px; right: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  opacity: 0.55;
  text-transform: uppercase;
}

/* Sections */
section { position: relative; }
.section {
  padding: clamp(80px, 10vw, 160px) 0;
}
.section-sm { padding: clamp(60px, 7vw, 110px) 0; }
.section-tight { padding: clamp(40px, 5vw, 80px) 0; }

.section.dark { background: var(--primary); color: #FFFFFF; }
.section.dark .lede { color: rgba(255,255,255,0.85); }
.section.dark .eyebrow { opacity: 1; color: rgba(255,255,255,0.6); }

/* Divider label */
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.section-label .bar {
  flex: 0 0 40px; height: 1px; background: currentColor;
}
.section.dark .section-label { color: rgba(255,255,255,0.6); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { 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; }

/* Line reveal (headline words) */
.words-reveal .word {
  display: inline-block; overflow: hidden; padding-right: 0.2em;
}
.words-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.words-reveal.is-visible .word-inner { transform: translateY(0); }
.words-reveal .word:nth-child(2) .word-inner { transition-delay: .05s; }
.words-reveal .word:nth-child(3) .word-inner { transition-delay: .1s; }
.words-reveal .word:nth-child(4) .word-inner { transition-delay: .15s; }
.words-reveal .word:nth-child(5) .word-inner { transition-delay: .2s; }
.words-reveal .word:nth-child(6) .word-inner { transition-delay: .25s; }
.words-reveal .word:nth-child(7) .word-inner { transition-delay: .3s; }
.words-reveal .word:nth-child(8) .word-inner { transition-delay: .35s; }
.words-reveal .word:nth-child(9) .word-inner { transition-delay: .4s; }

/* Marquee */
.marquee {
  overflow: hidden;
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: #FFFFFF;
}
.marquee.dark { border-color: rgba(255,255,255,0.18); background: var(--primary); }
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  padding-right: 60px;
  flex-shrink: 0;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.marquee.dark .marquee-item { color: #FFFFFF; }
.marquee-item .dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Footer */
.footer {
  background: #FFFFFF;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(50px, 6vw, 80px) 0 24px;
}
.footer .foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .footer .foot-grid { grid-template-columns: 1fr 1fr; }
}
.foot-head {
  font-family: var(--font-body);
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.foot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-list a { opacity: 0.9; transition: color .2s; font-size: 15px; }
.foot-list a:hover { color: var(--accent); opacity: 1; }
.foot-logo-large { display: none; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; margin-top: 40px;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  flex-wrap: wrap; gap: 12px;
}

/* Brand card */
.brand-card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--card);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  height: 100%;
  flex: 1;
}
.brand-card:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.brand-card .shot {
  height: 360px;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--bg-alt);
}
.brand-card .shot .img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.brand-card .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-card .meta {
  padding: 20px 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.brand-card .meta .visit,
.brand-card .meta > .sub:last-child {
  margin-top: auto;
  padding-top: 12px;
}
.brand-card .meta h3 {
  margin: 0; font-size: 24px; font-weight: 400; letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.brand-card .meta p {
  margin: 0; color: var(--ink-muted); font-size: 16px; line-height: 1.5; font-weight: 400;
}
.brand-card .visit {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent);
}
.section.dark .brand-card .visit { color: #FFFFFF; }
.section.dark .brand-card .visit:hover { color: rgba(255,255,255,0.8); }

/* Tweaks panel */
.tweaks-panel {
  position: fixed; right: 20px; bottom: 20px;
  z-index: 200;
  background: var(--ink); color: var(--bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px;
  width: 260px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.tweaks-panel .tw-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.tweaks-panel .tw-title { opacity: 0.7; }
.tweaks-panel .tw-group { margin-bottom: 16px; }
.tweaks-panel .tw-label { opacity: 0.5; margin-bottom: 8px; }
.tweaks-panel .tw-swatches { display: flex; gap: 8px; }
.tweaks-panel .tw-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
}
.tweaks-panel .tw-swatch.active { border-color: white; }
.tweaks-panel .tw-options { display: flex; flex-direction: column; gap: 6px; }
.tweaks-panel .tw-opt {
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: white; padding: 8px 10px; text-align: left;
  font-family: inherit; font-size: inherit; letter-spacing: inherit; text-transform: inherit;
  border-radius: 4px;
}
.tweaks-panel .tw-opt.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* Hero */
.hero {
  position: relative;
  background: var(--primary); color: #FFFFFF;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero.v-reel {
  padding: 0;
  width: 100%;
  margin-top: 0;
  aspect-ratio: 16 / 9;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.hero.v-reel .hero-reel-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--primary);
}
.hero.v-reel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero.v-reel .hero-reel-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(25,68,90,0) 55%, rgba(25,68,90,0.5) 100%);
  pointer-events: none;
}
.hero.v-reel .hero-reel-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 56px;
}
/* Hidden on desktop (video carries the message); shown below 900px. */
.hero-reel-copy { display: none; }
.hero-reel-copy h1 { color: #FFFFFF; }
.hero.v-reel .hero-reel-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hero.v-reel .hero-reel-spacer { flex: 1; }
.hero.v-reel .hero-reel-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  /* Stack video and buttons instead of overlaying. Video keeps its native 16:9
     aspect at full width (zero crop), copy + buttons flow below on a teal band. */
  .hero.v-reel {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: var(--primary);
  }
  .hero.v-reel .hero-reel-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 5;
  }
  .hero.v-reel .hero-reel-fade { display: none; }
  .hero.v-reel .hero-reel-overlay {
    position: static;
    padding: 36px 0 48px;
  }

  /* Hero copy: show on mobile, smaller H1 */
  .hero-reel-copy { display: block; margin-bottom: 28px; }
  .hero-reel-copy h1 { margin: 0; font-size: clamp(36px, 7vw, 48px); }
  .hero-reel-copy .lede { max-width: 42ch; }

  /* Buttons stack vertically, natural width, left-aligned */
  .hero.v-reel .hero-reel-spacer { display: none; }
  .hero.v-reel .hero-reel-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .hero.v-reel .hero-reel-ctas {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
  }

  /* Secondary CTA: drop the border + fill, render as a text link for hierarchy. */
  .hero.v-reel .btn-ghost-light {
    border-color: transparent;
    padding: 8px 0;
    color: #FFFFFF;
  }
  .hero.v-reel .btn-ghost-light::before { display: none; }
  .hero.v-reel .btn-ghost-light:hover {
    color: #FFFFFF;
    box-shadow: none;
    transform: none;
    opacity: 0.8;
  }
}
.hero.v-type {
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-mega {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: #FFFFFF;
}
.hero-mega .accent { color: #FFFFFF; font-style: normal; font-weight: 700; }
.hero-ticker {
  position: absolute; top: 90px; left: 0; right: 0;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
}
.hero-grid-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-top: 60px;
}
@media (max-width: 900px) { .hero-grid-row { grid-template-columns: 1fr; } }

/* Split hero */
.hero.v-split {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  padding: 0;
  align-items: stretch;
}
@media (max-width: 900px) { .hero.v-split { grid-template-columns: 1fr; } }
.hero.v-split .left {
  padding: 180px clamp(20px, 4vw, 56px) 60px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero.v-split .right {
  position: relative;
  background: #0E1F38;
  overflow: hidden;
}

/* Full bleed hero */
.hero.v-bleed {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
}
.hero.v-bleed .bleed-image {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero.v-bleed .bleed-content {
  position: relative; z-index: 2;
  padding: 0 clamp(20px, 4vw, 56px) 80px;
  width: 100%;
  max-width: 1440px; margin: 0 auto;
}
.hero.v-bleed::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,47,0.3) 0%, rgba(10,26,47,0.85) 100%);
  z-index: 1;
}

/* Page header */
.page-header {
  background: var(--primary); color: #FFFFFF;
  padding: clamp(120px, 14vw, 160px) 0 clamp(60px, 7vw, 100px);
  position: relative; overflow: hidden;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 20px 0 24px;
  color: #FFFFFF;
}
.page-header .lede { color: rgba(255,255,255,0.85); max-width: 52ch; }
.page-header-nav {
  display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap;
}
.page-header-nav a {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  transition: background .2s, color .2s, border-color .2s;
}
.page-header-nav a:hover { background: #FFFFFF; border-color: #FFFFFF; color: var(--primary); }

/* Utilities */
.row-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 120px); align-items: start; }
@media (max-width: 900px) { .row-split { grid-template-columns: 1fr; } }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.grid-3 > * { display: flex; height: 100%; }
.grid-3 > * > a, .grid-3 > * > .brand-card { width: 100%; display: flex; flex-direction: column; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

/* Accent big number */
.big-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}

/* Stat block */
.stat-card {
  padding: 28px 28px 32px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 5px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 200px;
}
.stat-card .num {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}
.stat-card h3 {
  margin: 0; font-size: 24px; font-weight: 400; letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.stat-card p { margin: 0; color: var(--ink-muted); font-size: 16px; line-height: 1.5; font-weight: 300; }
.section.dark .stat-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.section.dark .stat-card h3 { color: var(--bg); }
.section.dark .stat-card p { color: rgba(255,255,255,0.6); }

/* Category strip */
.category-strip {
  border-top: 1px solid var(--line);
  padding: clamp(50px, 6vw, 90px) 0;
}
.section.dark .category-strip { border-color: rgba(255,255,255,0.12); }
.category-header {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: end;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .category-header { grid-template-columns: 1fr; } }
.category-header h2 {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500; letter-spacing: -0.035em; line-height: 0.95; margin: 16px 0 0;
}

/* Form */
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field label {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500; letter-spacing: normal; text-transform: none;
  color: var(--ink);
}
.form-field input, .form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(25,68,90,0.1); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field.invalid input, .form-field.invalid textarea { border-color: #E63333; }
.form-error {
  font-family: var(--font-body); font-size: 13px; font-weight: 400; letter-spacing: normal; text-transform: none;
  color: #E63333;
}

/* Parallax helper */
.parallax { will-change: transform; }

/* Image wrap */
.img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.img-corner {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  color: var(--ink);
  padding: 5px 9px;
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

/* Logo img */
.brand-mark svg, .brand-mark img.logo-img { height: 26px; width: auto; display: block; }
.footer .brand-mark .logo-svg path { fill: #F5F4EF !important; }

/* Huge brand display row */
.brand-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.5fr;
  gap: 0;
  border-top: 1px solid var(--line);
  padding: 40px 0;
  align-items: center;
  transition: background .3s;
}
.section.dark .brand-row { border-color: rgba(255,255,255,0.12); }
.brand-row:hover { background: color-mix(in oklab, var(--accent) 8%, transparent); }
.brand-row .num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; opacity: 0.5; }
.brand-row .name {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500; letter-spacing: -0.025em;
}
.brand-row .desc { font-size: 14px; color: var(--ink-muted); }
.section.dark .brand-row .desc { color: rgba(255,255,255,0.6); }
@media (max-width: 800px) { .brand-row { grid-template-columns: 1fr; gap: 8px; } }

/* Small caps sub */
.sub { font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); }

/* 4D grid */
.fourd-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section.dark .fourd-grid { border-color: rgba(255,255,255,0.12); }
.fourd-cell {
  padding: 40px 30px 50px;
  border-right: 1px solid var(--line);
  position: relative;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.fourd-cell:last-child { border-right: none; }
.section.dark .fourd-cell { border-color: rgba(255,255,255,0.12); }
.fourd-cell .num {
  font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.fourd-cell h3 {
  margin: 0 0 14px; font-size: 24px; font-weight: 400; letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.fourd-cell p { margin: 0; color: var(--ink-muted); font-size: 16px; line-height: 1.5; font-weight: 300; }
.section.dark .fourd-cell p { color: rgba(255,255,255,0.65); }
@media (max-width: 900px) {
  .fourd-grid { grid-template-columns: repeat(2, 1fr); }
  .fourd-cell:nth-child(2) { border-right: none; }
  .fourd-cell:nth-child(1), .fourd-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .fourd-grid { grid-template-columns: 1fr; }
  .fourd-cell { border-right: none !important; border-bottom: 1px solid var(--line); }
  .fourd-cell:last-child { border-bottom: none; }
}

/* Retailer logo grid */
.retailer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.retailer-grid a,
.retailer-grid > div {
  display: block;
  background: #FFFFFF;
}
.retailer-logo-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  background: #FFFFFF;
  overflow: hidden;
  transition: background .2s ease;
}
.retailer-logo-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 32px rgba(0,0,0,0.12);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.retailer-grid a:hover .retailer-logo-cell::after,
.retailer-grid > div:hover .retailer-logo-cell::after {
  opacity: 1;
}
.retailer-logo-cell img {
  width: 100%;
  max-width: 280px;
  height: 160px;
  object-fit: contain;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.retailer-grid a:hover .retailer-logo-cell img,
.retailer-grid > div:hover .retailer-logo-cell img {
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .retailer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 500px) {
  .retailer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.announce-bar { display: none; }
.has-announce .nav { top: 0; }

/* page transition */
.page-fade { animation: pageIn .5s cubic-bezier(.2,.8,.2,1); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
