/* ============================================================
   LESSIVIA — Design tokens & base
   Palette locked from packaging: navy + Lessivia red + accent yellow
   ============================================================ */

:root {
  /* ---- Colors (unified editorial system, aligned with home.css) ---- */
  --lv-navy:        #0B2A6B;
  --lv-navy-deep:   #061B47;
  --lv-navy-light:  #123A8C;
  --lv-navy-mid:    #1E4BB8;   /* brighter navy for living gradients */
  --lv-navy-elec:   #2C55D4;   /* electric blue, aurora highlight */
  --lv-navy-soft:   #ECEAE3;   /* warm light tint for subtle fills */
  --lv-red:         #E30613;   /* single accent, CTA only */
  --lv-red-dark:    #B00510;
  --lv-yellow:      #FFD200;   /* brand mark only, not a UI accent */
  --lv-white:       #FFFFFF;
  --lv-ink:         #14181C;   /* near-black display / dark surfaces */
  --lv-cream:       #F6F5F2;   /* warm paper */
  --lv-text:        #14181C;
  --lv-text-muted:  #55606B;
  --lv-text-faint:  #79828C;
  --lv-border:      #E5E2DB;   /* warm hairline */
  --lv-border-warm: #DAD6CC;

  /* ---- Type ---- */
  --lv-font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --lv-mono: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* ---- Spacing scale (4px base) ---- */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px; --sp-5: 20px;
  --sp-6: 24px; --sp-7: 32px; --sp-8: 40px; --sp-9: 56px; --sp-10: 72px;

  /* ---- Layout ---- */
  --lv-container: 1440px;
  --lv-radius-sm: 12px;
  --lv-radius: 12px;
  --lv-radius-lg: 16px;
  --lv-radius-pill: 999px;

  /* ---- Motion ---- */
  --lv-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lv-dur: 500ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--lv-font);
  color: var(--lv-text);
  background: var(--lv-white);
  line-height: 1.55;
  font-weight: 400;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ---------- Browser surfaces (themed, not defaults) ---------- */
::selection { background: var(--lv-red); color: var(--lv-white); text-shadow: none; }
::-moz-selection { background: var(--lv-red); color: var(--lv-white); text-shadow: none; }
::placeholder { color: rgba(20, 24, 28, 0.42); }
::-webkit-scrollbar { width: 12px; height: 12px; background: var(--lv-cream); }
::-webkit-scrollbar-thumb { background: var(--lv-ink); border: 3px solid var(--lv-cream); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #000; }
* { scrollbar-color: var(--lv-ink) var(--lv-cream); scrollbar-width: thin; }
:focus-visible {
  outline: 2px solid var(--lv-red);
  outline-offset: 3px;
  border-radius: var(--lv-radius);
}
.btn:focus-visible { outline-color: var(--lv-red); outline-offset: 4px; }
a:focus-visible { outline-color: var(--lv-red); }

/* Tabular numerals on any numeric element */
.bignum__figure, .cat-tile__bgnum, .hero-bleed__stamp strong,
.rail-card__num, .step__num, .pillar__num, .bignum__row-num,
.hero__meta strong, .cathero__stat strong {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; letter-spacing: -0.03em; line-height: 1.06; font-weight: 700; }
p { margin: 0; text-align: justify; -webkit-hyphens: auto; hyphens: auto; }
ul, ol { padding: 0; margin: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--lv-container); margin-inline: auto; padding-inline: clamp(16px, 3vw, 40px); }
.section { padding-block: clamp(80px, 9vw, 140px); }
.section--tight { padding-block: clamp(56px, 6.5vw, 96px); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(1, 1fr); }
.grid--3 { grid-template-columns: repeat(1, 1fr); }
.grid--4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Type utilities ---------- */
.display     { font-size: clamp(2.25rem, 4.8vw + 0.5rem, 4.25rem); font-weight: 700; line-height: 1; letter-spacing: -0.04em; text-transform: uppercase; }
.h1          { font-size: clamp(2rem, 3vw + 0.75rem, 3rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.035em; line-height: 1.04; }
.h2          { font-size: clamp(1.6rem, 1.6vw + 0.9rem, 2.25rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.03em; }
.h3          { font-size: 1.25rem; font-weight: 600; }
.eyebrow     { font-family: var(--lv-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 500; color: var(--lv-red); }
.lead        { font-size: clamp(1rem, 0.4vw + 0.9rem, 1.12rem); color: var(--lv-text-muted); max-width: 62ch; }
.muted       { color: var(--lv-text-muted); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  padding: 17px 26px;
  border-radius: var(--lv-radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform 120ms var(--lv-ease), background 200ms, color 200ms, border-color 200ms, box-shadow 220ms var(--lv-ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary { background: var(--lv-red); color: var(--lv-white); }
.btn--primary:hover { background: var(--lv-red-dark); box-shadow: 0 6px 20px rgba(227,6,19,0.34); }
.btn--ghost { background: transparent; color: var(--lv-white); border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); box-shadow: 0 6px 22px rgba(255,255,255,0.14); }
.btn--dark { background: var(--lv-navy); color: var(--lv-white); }
.btn--dark:hover { background: var(--lv-navy-deep); box-shadow: 0 6px 20px rgba(11,42,107,0.36); }
.btn--outline { background: transparent; color: var(--lv-navy); border-color: var(--lv-navy); }
.btn--outline:hover { background: var(--lv-navy); color: var(--lv-white); box-shadow: 0 6px 20px rgba(11,42,107,0.24); }
.btn--white { background: var(--lv-white); color: var(--lv-navy); }
.btn--white:hover { background: var(--lv-cream); box-shadow: 0 6px 22px rgba(255,255,255,0.28); }
.btn__arrow { width: 16px; height: 16px; transition: transform 200ms var(--lv-ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--lv-border);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.nav__logo { display: flex; align-items: center; gap: var(--sp-2); color: var(--lv-ink); }
.nav__logo-mark { color: var(--lv-red); font-style: italic; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.nav__logo-mark, .nav__logo { font-style: italic; font-weight: 700; letter-spacing: -0.02em; color: var(--lv-ink); }
.nav__logo .nav__logo-mark { color: var(--lv-red); }
.nav__logo-img { height: 34px; width: auto; }
.nav__list { display: none; align-items: center; gap: clamp(12px, 2vw, 32px); }
.nav__list a {
  position: relative;
  display: inline-block; padding: 8px 0;
  font-family: var(--lv-mono); font-size: 11px; font-weight: 500;
  letter-spacing: clamp(0.06em, 0.6vw, 0.16em); text-transform: uppercase; color: var(--lv-text-faint);
  transition: color 200ms var(--lv-ease);
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--lv-red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--lv-ease), opacity 200ms;
}
.nav__list a:hover { color: var(--lv-ink); }
.nav__list a:hover::after { opacity: 0.5; transform: scaleX(1); }
.nav__list a.is-active { color: var(--lv-ink); }
.nav__list a.is-active::after { opacity: 1; transform: scaleX(1); }

/* Nav dropdown ("Produits") */
.navdrop { position: relative; }
.navdrop > summary {
  position: relative;
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 0;
  font-family: var(--lv-mono); font-size: 11px; font-weight: 500;
  letter-spacing: clamp(0.06em, 0.6vw, 0.16em); text-transform: uppercase;
  color: var(--lv-text-faint);
  transition: color 200ms var(--lv-ease);
}
.navdrop > summary::-webkit-details-marker { display: none; }
.navdrop > summary::marker { content: ''; }
/* Animated red underline, matching .nav__list a */
.navdrop > summary::after {
  content: '';
  position: absolute; left: 0; right: 16px; bottom: 0; height: 1px;
  background: var(--lv-red);
  opacity: 0; transform: scaleX(0); transform-origin: left;
  transition: transform 320ms var(--lv-ease), opacity 200ms;
}
.navdrop:hover > summary, .navdrop[open] > summary { color: var(--lv-ink); }
.navdrop:hover > summary::after, .navdrop[open] > summary::after { opacity: 0.5; transform: scaleX(1); }
.navdrop.is-active > summary { color: var(--lv-ink); }
.navdrop.is-active > summary::after { opacity: 1; transform: scaleX(1); }
.navdrop__chevron { width: 10px; height: 10px; flex: 0 0 auto; transition: transform 200ms var(--lv-ease); }
.navdrop[open] .navdrop__chevron { transform: rotate(180deg); }
.navdrop__menu {
  position: absolute; left: 0; top: calc(100% + 14px); z-index: 60;
  min-width: 220px; padding: 8px;
  background: var(--lv-white); border: 1px solid var(--lv-border); border-radius: var(--lv-radius);
  box-shadow: 0 16px 40px rgba(20,24,28,0.16);
  display: grid; gap: 2px;
}
.navdrop__menu a {
  display: block; padding: 11px 12px; border-radius: 8px;
  color: var(--lv-ink); font-size: 13px; font-weight: 500;
  letter-spacing: 0; text-transform: none;
}
.navdrop__menu a::after { content: none; }
.navdrop__menu a:hover { background: var(--lv-cream); color: var(--lv-ink); }
.nav__cta {
  display: none;
  background: var(--lv-red); color: var(--lv-white); border-color: transparent;
  padding: 11px clamp(12px, 1.4vw, 18px);
  font-family: var(--lv-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.nav__cta:hover { background: var(--lv-red-dark); box-shadow: 0 4px 16px rgba(227,6,19,0.4); }
.nav__cta .btn__arrow { display: none; }
.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--lv-radius);
  background: transparent; border: 1px solid var(--lv-border);
}
.nav__toggle svg { width: 22px; height: 22px; stroke: var(--lv-ink); }

@media (min-width: 900px) {
  /* Match home header distribution: logo left, nav centered, lang+cta grouped right */
  .nav { justify-content: flex-start; }
  .nav__list { display: flex; margin-inline: auto; }
  .nav__cta  { display: inline-flex; }
  .nav__toggle { display: none; }
}
/* Mobile header mirrors home: logo + burger only (lang lives in the drawer) */
@media (max-width: 899px) {
  .header .lang-switch { display: none; }
}

.nav-drawer {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(6, 27, 71, 0.75);
  backdrop-filter: blur(6px);
  display: none;
}
.nav-drawer.is-open { display: block; }
.nav-drawer__panel {
  position: absolute; inset-inline: 12px; top: 12px;
  background: var(--lv-white); border: 1px solid var(--lv-border); border-radius: var(--lv-radius);
  padding: var(--sp-5);
  box-shadow: 0 20px 40px rgba(20,24,28,0.18);
}
.nav-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-3); }
.nav-drawer__list { display: grid; gap: 2px; margin-top: var(--sp-2); }
.nav-drawer__list a {
  display: block; padding: 14px 8px; border-bottom: 1px solid var(--lv-border);
  font-family: var(--lv-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; color: var(--lv-ink);
}
/* Mobile drawer: "Produits" group (accordion, mirrors desktop dropdown) */
.nav-drawer__group > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 8px; border-bottom: 1px solid var(--lv-border);
  font-family: var(--lv-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: var(--lv-ink);
}
.nav-drawer__group > summary::-webkit-details-marker { display: none; }
.nav-drawer__group > summary::marker { content: ''; }
.nav-drawer__group-chevron { width: 13px; height: 13px; color: var(--lv-text-muted); flex: none; transition: transform 220ms var(--lv-ease); }
.nav-drawer__group[open] .nav-drawer__group-chevron { transform: rotate(180deg); }
.nav-drawer__group-menu a { padding-left: 26px; color: var(--lv-text-muted); }
.nav-drawer__cta { margin-top: var(--sp-4); display: grid; gap: var(--sp-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(255,210,0,0.18), transparent 60%),
              linear-gradient(180deg, var(--lv-navy-deep) 0%, var(--lv-navy) 100%);
  color: var(--lv-white);
}
.hero__inner {
  display: grid; gap: 40px; align-items: center;
  padding-block: clamp(56px, 8vw, 112px);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero__eyebrow-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--lv-yellow); }
.hero__title {
  margin-top: 20px;
  font-size: clamp(2.25rem, 4.4vw + 0.5rem, 4rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.03em;
}
.hero__title em { font-style: italic; color: var(--lv-yellow); font-weight: 800; }
.hero__lead {
  margin-top: 22px; max-width: 52ch;
  color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.6;
}
.hero__ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 28px; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.hero__meta strong { display: block; color: var(--lv-white); font-size: 1.5rem; letter-spacing: -0.02em; }

.hero__media {
  position: relative;
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Category cards ---------- */
.cat-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--lv-white);
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  transition: border-color 200ms, transform 300ms var(--lv-ease), box-shadow 300ms;
  isolation: isolate;
}
.cat-card:hover { border-color: var(--lv-navy); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(11,42,107,0.12); }
.cat-card__media {
  aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--lv-navy-soft);
  position: relative;
}
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--lv-ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.02); }
.cat-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.cat-card__kicker { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--lv-red); }
.cat-card__title { font-size: 1.35rem; font-weight: 700; color: var(--lv-navy); }
.cat-card__desc { color: var(--lv-text-muted); font-size: 0.95rem; }
.cat-card__link { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--lv-navy); }
.cat-card__link svg { width: 16px; height: 16px; transition: transform 200ms var(--lv-ease); }
.cat-card:hover .cat-card__link svg { transform: translateX(4px); }

/* ---------- Range (gamme) card ---------- */
.range {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--lv-white);
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
}
@media (min-width: 900px) {
  .range { grid-template-columns: minmax(280px, 42%) 1fr; gap: 0; }
}
.range__media {
  background: var(--lv-white);
  overflow: hidden;
  align-self: start;
}
.range__media img { width: 100%; height: auto; display: block; }
.range__body { padding: var(--sp-7) clamp(24px, 4vw, 40px); display: flex; flex-direction: column; gap: var(--sp-5); }
.range__kicker { font-family: var(--lv-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--lv-red); }
.range__title { font-size: clamp(1.5rem, 1.4vw + 1rem, 2rem); font-weight: 700; color: var(--lv-ink); text-transform: uppercase; letter-spacing: -0.035em; line-height: 1.02; }
.range__desc { color: var(--lv-text-muted); }
.range__specs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-6); margin-top: var(--sp-1); }
.range__spec dt { font-family: var(--lv-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--lv-text-faint); font-weight: 500; }
.range__spec dd { margin: var(--sp-1) 0 0; font-weight: 500; color: var(--lv-text); }
.range__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--lv-radius);
  border: 1px solid var(--lv-border-warm); background: var(--lv-cream); color: var(--lv-ink);
  font-family: var(--lv-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.tag::before { content: ''; width: 5px; height: 5px; background: var(--lv-text-faint); flex: 0 0 auto; }
.tag--eco::before { background: #2E7D32; }
.tag--tech::before { background: var(--lv-navy); }
.range__foot { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-1); }

/* ---------- Range carousel (switch one product at a time) ---------- */
.rangecar { position: relative; }
.rangecar__viewport { overflow: hidden; border-radius: var(--lv-radius-lg); }
.rangecar__track { display: flex; transition: transform 480ms var(--lv-ease); will-change: transform; }
.rangecar__track > .range {
  flex: 0 0 100%; min-width: 100%;
  border-radius: 0; border-left: 0; border-right: 0;
}
.rangecar__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lv-white); color: var(--lv-navy);
  border: 1px solid var(--lv-border);
  box-shadow: 0 12px 30px rgba(20,24,28,0.16);
  cursor: pointer;
  transition: background 160ms var(--lv-ease), color 160ms var(--lv-ease), transform 160ms var(--lv-ease), box-shadow 200ms var(--lv-ease);
}
.rangecar__arrow:hover { background: var(--lv-navy); color: var(--lv-white); }
.rangecar__arrow:active { transform: translateY(-50%) scale(0.94); }
.rangecar__arrow svg { width: 22px; height: 22px; }
.rangecar__arrow--prev { left: 10px; }
.rangecar__arrow--next { right: 10px; }
.rangecar__dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 24px; }
.rangecar__dot {
  width: 8px; height: 8px; border-radius: 999px; padding: 0;
  background: var(--lv-border-warm); border: 0; cursor: pointer;
  transition: background 220ms var(--lv-ease), width 220ms var(--lv-ease);
}
.rangecar__dot.is-active { background: var(--lv-navy); width: 24px; }
@media (max-width: 640px) {
  .rangecar__arrow { width: 44px; height: 44px; }
  .rangecar__arrow--prev { left: 4px; }
  .rangecar__arrow--next { right: 4px; }
}

/* ---------- Category page header (living aurora, aligned with home) ---------- */
.cathero {
  position: relative; overflow: hidden; isolation: isolate;
  color: var(--lv-white);
  padding-block: clamp(72px, 8vw, 120px);
  background:
    radial-gradient(60% 90% at 18% 20%, rgba(44,85,212,0.55), transparent 60%),
    radial-gradient(55% 80% at 85% 15%, rgba(30,75,184,0.50), transparent 62%),
    radial-gradient(50% 70% at 75% 95%, rgba(227,6,19,0.50), transparent 60%),
    linear-gradient(125deg, var(--lv-navy-deep) 0%, var(--lv-navy) 55%, var(--lv-navy-light) 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  animation: lv-aurora 13s ease-in-out infinite;
}
.cathero::before, .cathero::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.6; pointer-events: none; z-index: 0;
}
.cathero::before {
  width: 42vw; height: 42vw; left: -8vw; top: -14vw;
  background: radial-gradient(circle, var(--lv-navy-elec), transparent 68%);
  animation: lv-drift-a 15s ease-in-out infinite;
}
.cathero::after {
  width: 36vw; height: 36vw; right: -10vw; bottom: -16vw;
  background: radial-gradient(circle, rgba(227,6,19,0.5), transparent 70%);
  animation: lv-drift-b 19s ease-in-out infinite;
}
.cathero > .container { position: relative; z-index: 2; }

/* ===== Category hero WITH product image = exact copy of the home hero ===== */
.cathero:has(.cathero__pack) { padding-block: 0; }
.cathero__row {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center;
  min-height: 640px;
}
.cathero__text { padding-block: clamp(72px, 9vw, 112px); }
.cathero:has(.cathero__pack) .cathero__lead { max-width: 46ch; }
.cathero__media {
  position: relative; align-self: center; overflow: visible;
  display: flex; align-items: center; justify-content: center;
}
.cathero__pack {
  position: relative; inset: auto;
  width: calc(100% + 300px); max-width: none; height: auto;
  margin-left: -150px; margin-right: -150px;
  object-fit: contain;
  border-radius: 30px;
  transform: scale(1.1);
  filter: drop-shadow(0 34px 60px rgba(0,0,0,0.42));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 23%, #000 77%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 23%, #000 77%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
  mask-composite: intersect;
}
@media (max-width: 899px) {
  .cathero__row { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .cathero__text { padding-block: 56px 8px; }
  .cathero:has(.cathero__pack) .cathero__lead { max-width: none; }
  .cathero__media { min-height: 0; order: 2; margin-top: 24px; }
  .cathero__pack { position: static; inset: auto; width: 100%; height: auto; margin: 0; }
}
.cathero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--lv-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; color: rgba(255,255,255,0.75);
}
.cathero__eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--lv-red); }
.cathero__title { font-size: clamp(2.4rem, 4vw + 0.5rem, 4rem); margin-top: var(--sp-6); font-weight: 700; letter-spacing: -0.04em; line-height: 0.98; text-transform: uppercase; }
.cathero__lead { margin-top: var(--sp-6); color: rgba(255,255,255,0.74); max-width: 60ch; font-size: 1.075rem; line-height: 1.6; }
.cathero__grid {
  margin-top: 40px;
  display: grid; gap: 12px 32px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  color: rgba(255,255,255,0.9);
}
@media (min-width: 700px) { .cathero__grid { grid-template-columns: repeat(4, 1fr); } }
.cathero__stat strong { display: block; color: var(--lv-white); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.cathero__stat span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ---------- Featurettes / stat rows ---------- */
.features { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature { padding: 24px; border: 1px solid var(--lv-border); border-radius: var(--lv-radius); background: var(--lv-white); }
.feature__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lv-navy-soft); color: var(--lv-navy);
  margin-bottom: 14px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__title { font-size: 1.05rem; font-weight: 700; color: var(--lv-navy); margin-bottom: 6px; }
.feature__desc { color: var(--lv-text-muted); font-size: 0.95rem; }

/* ---------- Storyboard / process ---------- */
.storyboard {
  background: var(--lv-cream);
}
.storyboard__grid {
  display: grid; gap: 20px; grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 700px) { .storyboard__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .storyboard__grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--lv-white);
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius);
  padding: 24px;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--lv-navy); color: var(--lv-white);
  font-weight: 800; font-size: 0.9rem;
  margin-bottom: 14px;
}
.step__title { font-weight: 700; color: var(--lv-navy); margin-bottom: 6px; }
.step__desc { color: var(--lv-text-muted); font-size: 0.9rem; }

/* ---------- Split section (about teaser, cta) ---------- */
.split {
  display: grid; gap: 40px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split__media { border-radius: var(--lv-radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--lv-navy-soft); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--lv-navy-deep);
  color: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  padding: clamp(36px, 5vw, 56px);
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative; overflow: hidden; isolation: isolate;
}
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.6fr 1fr; } }
.cta-band::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 120% at 12% 20%, rgba(44,85,212,0.55), transparent 60%),
    radial-gradient(60% 120% at 90% 90%, rgba(227,6,19,0.30), transparent 62%),
    linear-gradient(120deg, var(--lv-navy-deep), var(--lv-navy) 70%, var(--lv-navy-light));
  background-size: 200% 200%, 200% 200%, 100% 100%;
  animation: lv-aurora 13s ease-in-out infinite;
  pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  left: -8%; top: -120%; width: 42%; aspect-ratio: 1;
  border-radius: 50%; filter: blur(60px); opacity: 0.55;
  background: radial-gradient(circle, var(--lv-navy-elec), transparent 66%);
  animation: lv-drift-a 15s ease-in-out infinite;
}
.cta-band__title { position: relative; font-size: clamp(1.5rem, 1.6vw + 0.9rem, 2.2rem); font-weight: 700; letter-spacing: -0.03em; text-transform: uppercase; }
.cta-band__lead { position: relative; color: rgba(255,255,255,0.78); margin-top: 12px; max-width: 52ch; }
.cta-band__actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
@media (min-width: 900px) { .cta-band__actions { justify-content: flex-end; } }

/* Contact aside: living aurora tuned to the (narrower, taller) bubble */
.contact-card {
  position: relative; overflow: hidden; isolation: isolate;
  color: var(--lv-white);
  background: var(--lv-navy-deep);
  border-radius: var(--lv-radius-lg);
  padding: 32px;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card::before {
  content: ''; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(75% 55% at 18% 10%, rgba(44,85,212,0.60), transparent 60%),
    radial-gradient(85% 60% at 88% 90%, rgba(227,6,19,0.50), transparent 64%),
    radial-gradient(45% 40% at 62% 30%, rgba(227,6,19,0.20), transparent 60%),
    linear-gradient(155deg, var(--lv-navy-deep), var(--lv-navy) 68%, var(--lv-navy-light));
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  animation: lv-aurora 13s ease-in-out infinite;
}
.contact-card::after {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  left: -18%; top: -6%; width: 68%; aspect-ratio: 1;
  border-radius: 50%; filter: blur(46px); opacity: 0.5;
  background: radial-gradient(circle, var(--lv-navy-elec), transparent 66%);
  animation: lv-drift-a 15s ease-in-out infinite;
}

/* ---------- Form ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--lv-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 500; color: var(--lv-text-muted); }
.field input, .field select, .field textarea {
  padding: 14px;
  border: 1px solid var(--lv-border-warm);
  border-radius: var(--lv-radius);
  background: var(--lv-white);
  color: var(--lv-text);
  transition: border-color 150ms, box-shadow 150ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lv-ink);
  box-shadow: 0 0 0 3px rgba(20,24,28,0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
/* Phone field: globe country picker + number fused into a single control */
.tel-group {
  display: flex; align-items: stretch;
  border: 1px solid var(--lv-border-warm);
  border-radius: var(--lv-radius);
  background: var(--lv-white);
  transition: border-color 150ms, box-shadow 150ms;
}
.tel-group:focus-within { border-color: var(--lv-ink); box-shadow: 0 0 0 3px rgba(20,24,28,0.12); }
.tel-group input { flex: 1 1 auto; min-width: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.tel-group input:focus { outline: none; box-shadow: none; }

.tel-picker { position: relative; display: flex; align-items: stretch; flex: 0 0 auto; border-right: 1px solid var(--lv-border-warm); }
.tel-picker__trigger { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.tel-picker__trigger::-webkit-details-marker { display: none; }
.tel-picker__trigger::marker { content: ''; }
.tel-picker__globe { width: 20px; height: 20px; display: block; opacity: 0.75; }
.tel-picker__chevron { width: 11px; height: 11px; color: var(--lv-text-muted); transition: transform 220ms var(--lv-ease); }
.tel-picker[open] .tel-picker__chevron { transform: rotate(180deg); }
.tel-picker__menu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
  width: 300px; max-width: 82vw; padding: 8px;
  background: var(--lv-white); border: 1px solid var(--lv-border); border-radius: var(--lv-radius);
  box-shadow: 0 14px 34px rgba(20,24,28,0.18);
}
.tel-picker__search {
  width: 100%; padding: 10px; margin-bottom: 6px;
  border: 1px solid var(--lv-border-warm); border-radius: 8px;
  font-family: var(--lv-font); font-size: 0.95rem; color: var(--lv-text);
}
.tel-picker__search:focus { outline: none; border-color: var(--lv-ink); }
.tel-picker__list { list-style: none; margin: 0; padding: 0; max-height: 240px; overflow-y: auto; }
.tel-picker__item {
  display: block; width: 100%; text-align: left; padding: 9px 10px; border: 0; border-radius: 8px;
  background: transparent; cursor: pointer;
  font-family: var(--lv-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--lv-ink);
}
.tel-picker__item:hover, .tel-picker__item:focus { background: var(--lv-cream); outline: none; }
.tel-picker__empty { padding: 12px 10px; font-size: 12px; color: var(--lv-text-muted); }
.field__help { font-size: 12px; color: var(--lv-text-muted); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--lv-text-muted); }
.checkbox input { margin-top: 3px; }
.form__submit { display: flex; justify-content: flex-start; margin-top: 8px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--lv-ink);
  color: rgba(255,255,255,0.72);
  padding-block: var(--sp-10) var(--sp-7);
  margin-top: var(--sp-10);
}
.footer__grid {
  display: grid; gap: var(--sp-8);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer h4 { color: var(--lv-white); font-family: var(--lv-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: var(--sp-4); font-weight: 500; }
.footer a { display: block; padding: 6px 0; font-size: 0.95rem; }
.footer a:hover { color: var(--lv-white); }
.footer__brand { max-width: 320px; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 12px; }
.footer__mark { color: var(--lv-white); font-style: italic; font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; }
.footer__mark span { color: var(--lv-red); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: var(--sp-8); padding-top: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3); align-items: center; text-align: center;
  color: rgba(255,255,255,0.5); font-family: var(--lv-mono); font-size: 11px;
}
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: center; align-items: center; } }
/* Footer brand logo + language dropdown (matches home footer) */
.footer .brand__img { height: 34px; width: auto; display: block; }
.footer__lang { margin-top: 22px; display: inline-flex; align-items: center; }
.footer__lang .lang-flag { border-color: rgba(255,255,255,0.24); }
.footer__lang .lang-select__chevron { color: rgba(255,255,255,0.55); }
.lang-select--up .lang-select__menu { top: auto; bottom: calc(100% + 10px); min-width: 0; }
.lang-select--up .lang-select__item { justify-content: center; padding: 8px; }
.lang-select--up .lang-select__item img { height: 18px; }

/* ---------- Living gradients + entrance (shared with home) ---------- */
@keyframes lv-aurora {
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
  50%  { background-position: 90% 55%, 10% 70%, 95% 25%, 0 0; }
  100% { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
}
@keyframes lv-drift-a {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20%, 14%) scale(1.22); }
}
@keyframes lv-drift-b {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-18%, -13%) scale(1.26); }
}
@keyframes lv-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cathero entrance on load (staggered, CSS-only) */
.cathero__eyebrow { animation: lv-rise 3260ms var(--lv-ease) 80ms both; }
.cathero__title   { animation: lv-rise 3320ms var(--lv-ease) 180ms both; }
.cathero__lead    { animation: lv-rise 3320ms var(--lv-ease) 320ms both; }
.cathero__grid,
.cathero__tag     { animation: lv-rise 3320ms var(--lv-ease) 440ms both; }
.cathero__media   { animation: lv-rise 3400ms var(--lv-ease) 280ms both; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 3220ms var(--lv-ease), transform 3220ms var(--lv-ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .cathero, .cta-band::before, .cta-band::after,
  .contact-card::before, .contact-card::after,
  .cathero::before, .cathero::after { animation: none; }
  .cathero__eyebrow, .cathero__title, .cathero__lead,
  .cathero__grid, .cathero__tag, .cathero__media { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Placeholder helper (for editable slots) ---------- */
.placeholder-note {
  display: inline-block; margin-top: 8px;
  padding: 4px 10px; border-radius: 999px;
  background: #FFF7DB; color: #7A5A00; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
}

/* ============================================================
   v2 — Taste-skill pass: asymmetric bento, marquee, refined type
   ============================================================ */

/* ---------- Display type refinement ---------- */
.display-xl {
  font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.display-xl em {
  font-style: italic;
  font-weight: 800;
  color: var(--lv-yellow);
}

/* ---------- Marquee (single instance per page, per §5) ---------- */
.marquee {
  background: var(--lv-navy-deep);
  color: var(--lv-white);
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.marquee__track {
  display: flex;
  gap: 56px;
  padding-block: 26px;
  white-space: nowrap;
  animation: marquee-scroll 68s linear infinite;
  width: max-content;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.78);
}
.marquee__dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.35); flex: 0 0 auto;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- Bento for the 2 categories (paired) ---------- */
.bento-cats {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .bento-cats { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.cat-tile {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 320px;
  border-radius: var(--lv-radius-lg);
  color: var(--lv-white);
  background: var(--lv-navy);
  isolation: isolate;
  transition: transform 400ms var(--lv-ease), box-shadow 400ms;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(11,42,107,0.20); }
.cat-tile__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 900ms var(--lv-ease);
}
.cat-tile:hover .cat-tile__img { transform: scale(1.015); }
.cat-tile__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,27,71,0.15) 0%, rgba(6,27,71,0.55) 55%, rgba(6,27,71,0.92) 100%);
}
.cat-tile__body {
  padding: 24px 26px 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.cat-tile__num {
  font-size: 12px; letter-spacing: 0.24em; font-weight: 700;
  color: var(--lv-yellow); text-transform: uppercase;
}
.cat-tile__title {
  font-size: clamp(1.35rem, 1.6vw + 0.6rem, 2rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1;
}
.cat-tile__desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.82); max-width: 40ch;
}
.cat-tile__link {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; color: var(--lv-white);
}
.cat-tile__link svg { width: 14px; height: 14px; transition: transform 200ms var(--lv-ease); }
.cat-tile:hover .cat-tile__link svg { transform: translateX(4px); }

/* Both tiles are co-featured (only 2 categories) */
.bento-cats > .cat-tile { min-height: 420px; }
.bento-cats > .cat-tile .cat-tile__title { font-size: clamp(1.75rem, 1.8vw + 1rem, 2.5rem); }
.bento-cats > .cat-tile .cat-tile__desc  { font-size: 1rem; }

/* ---------- Rail: horizontal step cards (replaces vertical storyboard grid) ---------- */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 8px;
  padding-inline: 4px;
  margin-inline: -4px;
  scrollbar-width: thin;
}
.rail > * { scroll-snap-align: start; }
@media (min-width: 900px) {
  .rail { grid-template-columns: repeat(4, 1fr); grid-auto-flow: initial; overflow-x: visible; }
}

.rail-card {
  padding: 26px 24px;
  border-radius: var(--lv-radius);
  background: var(--lv-white);
  border: 1px solid var(--lv-border);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 200px;
}
.rail-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--lv-navy); color: var(--lv-white);
  font-weight: 800; font-size: 0.95rem;
}
.rail-card__title { font-weight: 700; color: var(--lv-navy); font-size: 1.05rem; }
.rail-card__desc  { color: var(--lv-text-muted); font-size: 0.92rem; }

/* ---------- Editorial about split (asymmetric) ---------- */
.editorial {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .editorial {
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
  }
}
.editorial__label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--lv-red);
}
.editorial__title {
  margin-top: 12px;
  font-size: clamp(2rem, 3vw + 0.75rem, 3rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.02;
}
.editorial__body { color: var(--lv-text-muted); font-size: 1.05rem; line-height: 1.65; }
.editorial__body p + p { margin-top: 14px; }

/* ---------- Pillar rows (replaces "3 equal feature cards" AI default) ---------- */
.pillars { display: grid; gap: 0; margin-top: 32px; }
.pillar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 28px 0;
  border-top: 1px solid var(--lv-border);
}
.pillar:last-child { border-bottom: 1px solid var(--lv-border); }
@media (min-width: 800px) {
  .pillar {
    grid-template-columns: 88px 1fr 1.4fr;
    gap: 32px;
    align-items: start;
  }
}
.pillar__num {
  font-family: var(--lv-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  color: var(--lv-text-faint); font-variant-numeric: tabular-nums; padding-top: 6px;
}
.pillar__title { font-size: 1.3rem; font-weight: 700; color: var(--lv-ink); letter-spacing: -0.02em; text-transform: uppercase; }
.pillar__body  { color: var(--lv-text-muted); font-size: 1rem; line-height: 1.6; }

/* ---------- Hero refinement (v2) ---------- */
.hero__media--v2 {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.hero__media--v2 img { width: 100%; height: 100%; object-fit: cover; }
.hero__media--v2::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,27,71,0.35));
  pointer-events: none;
}
.hero__badge {
  position: absolute; left: 20px; top: 20px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(6,27,71,0.72);
  backdrop-filter: blur(10px);
  color: var(--lv-white);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}

/* ---------- Anchor kicker (replaces overused eyebrows on secondary sections) ---------- */
.anchor-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 600; color: var(--lv-navy);
}
.anchor-kicker::before {
  content: ''; width: 32px; height: 1px; background: var(--lv-navy); opacity: 0.4;
}

/* ---------- Cathero refinement, use single tagline ---------- */
.cathero__tag {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   v3 - Design push: signature moments, less template
   ============================================================ */

/* ---------- Language switcher (compact chip in nav) ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 8px;
  margin-right: 8px;
  font-family: var(--lv-mono); font-size: 11px; letter-spacing: 0.12em;
}
.lang-switch a {
  color: var(--lv-text-faint);
  transition: color 150ms;
}
.lang-switch a:hover { color: var(--lv-ink); }
.lang-switch a.is-lang-active { color: var(--lv-ink); background: transparent; }
.lang-switch a:first-child::after {
  content: '/'; margin-left: 8px; color: var(--lv-text-faint); pointer-events: none;
}

/* Language toggle as a flag (current language shown; click switches) */
.lang-flag {
  display: inline-flex; align-items: center;
  height: 22px; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--lv-border);
  box-shadow: 0 1px 2px rgba(20,24,28,0.12);
  transition: transform 160ms var(--lv-ease), box-shadow 200ms var(--lv-ease);
}
.lang-flag img { height: 100%; width: auto; display: block; }
.lang-flag:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(20,24,28,0.22); }
.lang-flag--footer { border-color: rgba(255,255,255,0.22); }

/* Language dropdown (native <details>) */
.lang-select { position: relative; }
.lang-select > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
}
.lang-select > summary::-webkit-details-marker { display: none; }
.lang-select > summary::marker { content: ''; }
.lang-select__chevron { width: 11px; height: 11px; color: var(--lv-text-faint); transition: transform 220ms var(--lv-ease); }
.lang-select[open] .lang-select__chevron { transform: rotate(180deg); }
.lang-select__menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 60;
  min-width: 148px; padding: 6px;
  background: var(--lv-white); border: 1px solid var(--lv-border); border-radius: var(--lv-radius);
  box-shadow: 0 14px 34px rgba(20,24,28,0.18);
}
.lang-select__item {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px;
  font-family: var(--lv-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-ink);
  transition: background 160ms var(--lv-ease);
}
.lang-select__item img { height: 15px; width: auto; border-radius: 2px; border: 1px solid var(--lv-border); display: block; }
.lang-select__item:hover { background: var(--lv-cream); }

@media (max-width: 899px) { .header .lang-flag, .header .lang-select { display: none; } }

/* ---------- Multi-select dropdown (checkbox menu) ---------- */
.multi { position: relative; }
.multi > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px; border: 1px solid var(--lv-border-warm); border-radius: var(--lv-radius);
  background: var(--lv-white); color: var(--lv-text);
  transition: border-color 150ms, box-shadow 150ms;
}
.multi > summary::-webkit-details-marker { display: none; }
.multi > summary::marker { content: ''; }
.multi[open] > summary,
.multi > summary:focus-visible { outline: none; border-color: var(--lv-ink); box-shadow: 0 0 0 3px rgba(20,24,28,0.12); }
.multi__label { color: var(--lv-text); }
.multi__label.is-empty { color: rgba(20, 24, 28, 0.42); }
.multi__chevron { width: 16px; height: 16px; flex: 0 0 auto; color: var(--lv-text-faint); transition: transform 220ms var(--lv-ease); }
.multi[open] .multi__chevron { transform: rotate(180deg); }
.multi__menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30;
  display: grid; gap: 2px; padding: 6px;
  background: var(--lv-white); border: 1px solid var(--lv-border); border-radius: var(--lv-radius);
  box-shadow: 0 14px 34px rgba(20,24,28,0.16);
}
.multi__option {
  display: flex; align-items: center; gap: 10px; padding: 11px 10px; border-radius: 8px;
  cursor: pointer; color: var(--lv-ink); font-weight: 500;
  transition: background 140ms var(--lv-ease);
}
.multi__option:hover { background: var(--lv-cream); }
.multi__option input { width: 17px; height: 17px; accent-color: var(--lv-navy); flex: 0 0 auto; }

/* ---------- Full-bleed hero v3 (product image bleeds off canvas) ---------- */
.hero-bleed {
  position: relative;
  min-height: 88vh;
  min-height: 88dvh;
  background: linear-gradient(180deg, var(--lv-navy-deep) 0%, var(--lv-navy) 100%);
  color: var(--lv-white);
  overflow: hidden;
  isolation: isolate;
}
.hero-bleed::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 88% 12%, rgba(255,210,0,0.20), transparent 55%),
    radial-gradient(700px 500px at 0% 100%, rgba(227,6,19,0.16), transparent 60%);
  pointer-events: none; z-index: -1;
}
.hero-bleed__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: inherit;
  padding-top: 40px;
  max-width: 1440px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .hero-bleed__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    padding-top: 24px;
  }
}
@media (min-width: 1200px) {
  .hero-bleed__inner {
    grid-template-columns: 1.3fr 1fr;
  }
}
.hero-bleed__text {
  padding: 40px 24px 60px;
  max-width: 720px;
  margin-inline: auto;
  width: 100%;
}
@media (min-width: 900px) {
  .hero-bleed__text { padding: 40px 24px 40px 40px; margin: 0; max-width: 640px; }
}
@media (min-width: 1300px) {
  .hero-bleed__text { padding-left: 56px; max-width: 680px; }
}
.hero-bleed__mark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.hero-bleed__mark::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--lv-yellow);
}
.hero-bleed__title {
  margin-top: 28px;
  font-size: clamp(2.5rem, 3.2vw + 1rem, 4.5rem);
  font-weight: 700; line-height: 1; letter-spacing: -0.035em;
}
.hero-bleed__title em {
  display: block;
  font-style: italic; color: var(--lv-yellow); font-weight: 700;
  padding-bottom: 0.08em;
}
.hero-bleed__lead {
  margin-top: 28px; max-width: 46ch;
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.2rem);
  color: rgba(255,255,255,0.78); line-height: 1.55;
}
.hero-bleed__ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-bleed__stamp {
  margin-top: 44px;
  display: inline-flex; align-items: baseline; gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.hero-bleed__stamp strong { color: var(--lv-white); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }

.hero-bleed__media {
  position: relative;
  min-height: 320px;
  align-self: stretch;
  overflow: hidden;
}
.hero-bleed__pack {
  position: absolute;
  right: 0; bottom: 0; top: 0;
  width: 100%;
  max-height: 620px;
  margin: auto 0;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}
@media (min-width: 900px) {
  .hero-bleed__pack {
    right: 24px; top: 40px; bottom: 40px;
    width: calc(100% - 24px);
    max-height: none;
    object-position: center;
  }
}
@media (min-width: 1440px) {
  .hero-bleed__pack {
    right: 40px;
    max-width: 560px;
    width: auto;
    left: 24px;
  }
}
.hero-bleed__floater {
  position: absolute;
  right: 24px; bottom: 24px;
  width: 140px; height: 140px; border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  background: var(--lv-navy-deep);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  z-index: 2;
  display: none;
}
@media (min-width: 1024px) {
  .hero-bleed__floater { display: block; width: 200px; height: 200px; right: 40px; bottom: 40px; }
}
.hero-bleed__floater video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Signature big-number section ---------- */
.bignum {
  padding-block: clamp(64px, 8vw, 120px);
  border-top: 1px solid var(--lv-border);
  border-bottom: 1px solid var(--lv-border);
  background: var(--lv-white);
}
.bignum__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .bignum__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.bignum__figure {
  position: relative;
  font-size: clamp(8rem, 18vw + 2rem, 18rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.055em;
  color: var(--lv-navy);
  font-variant-numeric: tabular-nums;
}
.bignum__figure::after {
  content: ''; display: block;
  height: 2px; width: 48%;
  background: var(--lv-red);
  margin-top: 22px;
}
.bignum__label {
  position: absolute; top: 8%; right: 4%;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700;
  color: var(--lv-text-muted);
  display: none;
}
@media (min-width: 900px) { .bignum__label { display: block; } }

.bignum__list {
  display: grid; gap: 0;
}
.bignum__row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 22px 12px;
  margin-inline: -12px;
  border-bottom: 1px solid var(--lv-border);
  background: transparent;
  transition: background 260ms var(--lv-ease);
}
.bignum__row:first-child { border-top: 1px solid var(--lv-border); }
.bignum__row > * { transition: transform 300ms var(--lv-ease); }
.bignum__row:hover { background: var(--lv-cream); }
.bignum__row:hover > * { transform: translateX(4px); }
.bignum__row-num {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--lv-text-muted); font-variant-numeric: tabular-nums;
}
.bignum__row-title {
  font-size: clamp(1.25rem, 1vw + 0.9rem, 1.75rem);
  font-weight: 700; color: var(--lv-navy); letter-spacing: -0.02em;
}
.bignum__row-arrow {
  color: var(--lv-navy);
}
.bignum__row:hover .bignum__row-arrow { transform: translateX(10px); }
.bignum__row-arrow svg { width: 20px; height: 20px; }

/* ---------- Photo wall (packshot mosaic) ---------- */
.photowall {
  padding-block: clamp(48px, 6vw, 96px);
  background: var(--lv-cream);
  overflow: hidden;
}
.photowall__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
}
@media (min-width: 700px) {
  .photowall__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
}
@media (min-width: 1024px) {
  .photowall__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; }
}
.photowall__cell {
  overflow: hidden;
  border-radius: var(--lv-radius);
  background: var(--lv-navy-soft);
  position: relative;
}
.photowall__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--lv-ease);
}
.photowall__cell:hover img { transform: scale(1.02); }
.photowall__cell--tall { grid-row: span 2; }
.photowall__cell--wide { grid-column: span 2; }

/* ---------- Video panel (autoplay muted loop) ---------- */
.video-panel {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  min-height: 60dvh;
  background: var(--lv-navy-deep);
  color: var(--lv-white);
  isolation: isolate;
}
.video-panel__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.42;
}
.video-panel__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,27,71,0.55) 0%, rgba(6,27,71,0.82) 100%),
    radial-gradient(600px 400px at 20% 30%, rgba(255,210,0,0.10), transparent 60%);
}
.video-panel__content {
  position: relative;
  padding-block: clamp(80px, 10vw, 140px);
}
.video-panel__title {
  font-size: clamp(2rem, 4vw + 0.5rem, 4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  max-width: 16ch;
}
.video-panel__title em { font-style: italic; color: var(--lv-yellow); font-weight: 800; }
.video-panel__body { margin-top: 24px; color: rgba(255,255,255,0.78); max-width: 52ch; }

/* ---------- Enhanced bento tile (bg number, better hover) ---------- */
.cat-tile__bgnum {
  position: absolute;
  right: 24px; bottom: 20px;
  font-size: clamp(3.5rem, 5vw + 1rem, 6.5rem);
  font-weight: 600; letter-spacing: -0.05em; line-height: 1;
  color: rgba(255,255,255,0.12);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  transition: color 400ms var(--lv-ease);
  z-index: 0;
}
.cat-tile:hover .cat-tile__bgnum { color: rgba(255,210,0,0.32); }
.cat-tile__body { position: relative; z-index: 1; }

/* ---------- Editorial callout (magazine-style pull quote) ---------- */
.callout {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--lv-white);
}
.callout__inner {
  max-width: 980px; margin-inline: auto;
  text-align: left;
}
.callout__quote {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 3rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.15;
  color: var(--lv-navy);
}
.callout__quote span { color: var(--lv-red); }
.callout__meta {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--lv-text-muted);
}
.callout__meta::before {
  content: ''; width: 40px; height: 2px; background: var(--lv-red);
}
