:root {
  --ink: #f3efe7;
  --ink-soft: rgba(243, 239, 231, 0.72);
  --ink-muted: rgba(243, 239, 231, 0.46);
  --bg: #060b14;
  --bg-2: #0b1320;
  --bg-3: #0f1a2b;
  --card: rgba(15, 26, 43, 0.76);
  --card-2: rgba(9, 15, 26, 0.82);
  --card-border: rgba(255,255,255,0.08);
  --blue: #4f74ff;
  --blue-soft: rgba(79, 116, 255, 0.16);
  --gold: #cba062;
  --gold-soft: rgba(203, 160, 98, 0.18);
  --teal: #58d2c6;
  --teal-soft: rgba(88, 210, 198, 0.16);
  --danger: #ff8a79;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1380px;
  --pad: 28px;
  --radius: 26px;
  --section-space: clamp(58px, 5.4vw, 76px);
  --section-head-space: clamp(16px, 1.6vw, 22px);
  --card-pad: clamp(22px, 2.1vw, 28px);
  --card-gap: clamp(18px, 2vw, 30px);
  --editorial-rule: rgba(243, 239, 231, .13);
  --editorial-motion: 400ms;
  --editorial-shift: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="light"] {
  --light-bg-primary: #edf2f6;
  --light-bg-secondary: #f8f7f3;
  --light-bg-elevated: #fffdfa;
  --light-text-primary: #111c2c;
  --light-text-secondary: #3f4d5e;
  --light-text-muted: #586779;
  --light-border: rgba(32, 48, 68, 0.18);
  --light-border-strong: #778391;
  --light-accent-gold: #8a5d25;
  --light-focus: #315bd8;
  --light-field-bg: #e8eef3;
  --ink: var(--light-text-primary);
  --ink-soft: var(--light-text-secondary);
  --ink-muted: var(--light-text-muted);
  --bg: var(--light-bg-primary);
  --bg-2: var(--light-bg-secondary);
  --bg-3: #dfe7ef;
  --card: rgba(255, 253, 250, 0.94);
  --card-2: var(--light-bg-elevated);
  --card-border: var(--light-border);
  --gold: var(--light-accent-gold);
  --gold-soft: rgba(138, 93, 37, 0.13);
  --editorial-rule: rgba(32, 48, 68, 0.22);
  --shadow: 0 18px 46px rgba(26, 42, 62, 0.075);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(79,116,255,0.10), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(203,160,98,0.08), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 42%, var(--bg) 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: min(100%, var(--max)); margin: 0 auto; padding-inline: var(--pad); }
.page-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.05) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  opacity: 0.05; mix-blend-mode: soft-light;
}

.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none;
  transform: translate(-50%, -50%); z-index: 9999;
}
.cursor { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(203,160,98,.46);
  transition: transform .18s var(--ease), width .28s, height .28s, border-color .28s;
}
.cursor-ring.expanded { width: 54px; height: 54px; border-color: var(--blue); }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
  background: rgba(6,11,20,0.84);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
html[data-theme="light"] .site-header { background: rgba(255,255,255,0.82); border-color: rgba(16,24,39,0.06); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .15em; position: relative; z-index: 3; }
.brand-eye, .footer-eye { width: 38px; color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.main-nav > a, .nav-dropdown-trigger { color: var(--ink-soft); transition: color .25s ease; }
.main-nav > a:hover, .nav-dropdown-trigger:hover { color: var(--ink); }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-cta, .theme-toggle, .locale-trigger {
  height: 46px; border-radius: 999px; border: 1px solid rgba(203,160,98,.35);
  background: rgba(255,255,255,0.03); display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all .25s ease;
}
.header-cta { padding: 0 24px; text-transform: uppercase; font-size: .75rem; letter-spacing: .15em; font-weight: 700; }
.theme-toggle, .locale-trigger { width: 46px; }
.header-cta:hover, .theme-toggle:hover, .locale-trigger:hover { background: var(--gold); color: #08111f; }
.locale-picker { position: relative; }
.locale-menu {
  position: absolute; top: 56px; right: 0; min-width: 150px; padding: 8px; display: none;
  background: var(--card-2); backdrop-filter: blur(18px); border: 1px solid var(--card-border);
  border-radius: 18px; box-shadow: var(--shadow);
}
.locale-picker.open .locale-menu { display: block; }
.locale-option {
  display: block; width: 100%; text-align: left; padding: 12px 12px; border: 0; background: transparent;
  color: var(--ink); border-radius: 12px; cursor: pointer; font-weight: 600;
}
.locale-option:hover, .locale-option.is-active { background: rgba(79,116,255,.12); color: var(--blue); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; border: 0; background: none; cursor: pointer; }
.menu-toggle span { width: 24px; height: 1.5px; background: var(--ink); display: block; transition: transform .25s var(--ease), opacity .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  position: fixed; inset: 0; z-index: 32; display: none; flex-direction: column; padding: 112px var(--pad) 32px;
  background: rgba(6,11,20,0.98);
}
.mobile-nav.open { display: flex; }
body.nav-open { overflow: hidden; }
.mobile-nav a, .mobile-nav .mobile-locale {
  padding: 16px 0; border: 0; border-bottom: 1px solid var(--card-border); background: none;
  text-align: left; font-family: var(--font-display); font-size: 2.5rem; letter-spacing: .04em; color: var(--ink);
}
.mobile-cta { color: var(--gold) !important; }

.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 8px; }
.dropdown-arrow { font-size: .625em; transition: transform .3s var(--ease); }
.mega-menu {
  position: absolute; top: calc(100% + 18px); left: 0; transform: translateY(16px);
  width: 500px; padding: 24px; border-radius: 24px; background: rgba(8,14,24,.92);
  border: 1px solid var(--card-border); box-shadow: var(--shadow); backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden; transition: all .28s var(--ease);
}
html[data-theme="light"] .mega-menu { background: rgba(255,255,255,.92); }
.mega-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item-dropdown:has(.mega-menu.active) .dropdown-arrow { transform: rotate(180deg); }
.mega-menu-head { margin-bottom: 16px; }
.mega-menu-kicker { font-size: .75rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); margin-bottom: 8px; }
.mega-menu-head h3 { font-family: var(--font-display); font-size: 2rem; letter-spacing: .03em; }
.menu-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.menu-product {
  position: relative; display: grid; gap: 12px; text-align: left; align-items: end; min-height: 220px; overflow: hidden;
  border-radius: 22px; padding: 16px; border: 1px solid var(--card-border); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  transition: transform .3s var(--ease), border-color .3s ease;
}
.menu-product:hover { transform: translateY(-6px); border-color: rgba(203,160,98,.36); }
.menu-product img { height: 132px; width: auto; margin-left: auto; filter: drop-shadow(0 16px 30px rgba(0,0,0,.35)); }
.menu-product span { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .04em; }
.menu-product small { color: var(--ink-soft); font-size: .75rem; line-height: 1.45; }

.hero-grid {
  position: relative; min-height: 100svh; height: auto; overflow: hidden; isolation: isolate;
  background: var(--bg); padding-top: 80px;
}
.hero-grid::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(6,11,20,.20) 0%, rgba(6,11,20,.05) 32%, rgba(6,11,20,.74) 85%, var(--bg) 100%),
    linear-gradient(90deg, rgba(6,11,20,.52) 0%, rgba(6,11,20,.08) 28%, rgba(6,11,20,.04) 74%, rgba(6,11,20,.34) 100%);
}
.hero-main-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-narrative {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  align-items: end;
  gap: clamp(36px, 6vw, 96px);
  min-height: calc(100svh - 80px);
  padding-block: clamp(96px, 14vh, 150px) clamp(64px, 9vh, 96px);
}
.hero-narrative-copy {
  max-width: 320px;
  padding-bottom: clamp(6px, 1.5vw, 24px);
}
.hero-narrative .vc-label { color: var(--gold); }
.hero-narrative .vc-body {
  max-width: 300px;
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(0,0,0,.52);
}
.hero-narrative-title {
  justify-self: end;
  font-family: var(--font-display);
  font-size: clamp(5.6rem, 12.5vw, 11.5rem);
  line-height: .78;
  letter-spacing: -.015em;
  text-align: right;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(243,239,231,.82);
  text-shadow: none;
  background: none;
}
.hero-columns { position: absolute; inset: 80px 0 0 0; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; }
.hero-column { position: relative; overflow: hidden; }
.hero-column::after {
  content: ""; position: absolute; inset: 0; box-shadow: inset -1px 0 0 rgba(255,255,255,.08), inset 1px 0 0 rgba(255,255,255,.04);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.14));
}
.hero-column-bg {
  position: absolute; left: 0; top: -8svh; width: 400%; height: calc(100% + 16svh);
  background-image:
    linear-gradient(180deg, rgba(6,11,20,.12) 0%, rgba(6,11,20,.02) 34%, rgba(6,11,20,.26) 100%),
    url('assets/img/hero-2.jpeg');
  background-repeat: no-repeat; background-size: 100% 100%, cover; background-position: center center, center center;
  will-change: transform; transform: translate3d(0,0,0) scale(1.03);
}
.column-1 .hero-column-bg { left: 0; }
.column-2 .hero-column-bg { left: -100%; }
.column-3 .hero-column-bg { left: -200%; }
.column-4 .hero-column-bg { left: -300%; }
.hero-overlay-content { position: relative; z-index: 3; display: flex; align-items: center; min-height: calc(100svh - 80px); padding-bottom: 80px; }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) clamp(280px, 26vw, 360px); gap: 50px; width: 100%; align-items: end; }
.hero-copy { max-width: 820px; }
.hero-eyebrow, .section-label, .mini-kicker, .vc-label, .modal-kicker, .science-card-kicker {
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--gold);
}
.hero-title, .section-title, .contact-title, .vc-title {
  font-family: var(--font-display); line-height: .88; letter-spacing: -.01em;
}
.hero-title { font-size: clamp(5rem, 13vw, 12rem); margin-top: 12px; }
.hero-title em, .section-title em { font-family: var(--font-serif); font-style: italic; font-weight: 300; color: var(--gold); }
.hero-lead, .section-sub, .contact-sub, .science-card p, .proof-card p, .protocol-step p, .manifesto-card p {
  font-size: 1rem; line-height: 1.82; color: var(--ink-soft);
}
.hero-lead { max-width: 620px; margin-top: 20px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn-hero {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px;
  font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--blue), #294ad0); color: white; box-shadow: 0 14px 32px rgba(79,116,255,.28); }
.btn-secondary { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.03); color: var(--ink); }
.hero-side { display: grid; gap: 18px; align-self: center; }
.hero-side-card {
  padding: 24px; border-radius: 24px; background: rgba(9,15,26,.66); border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(18px);
}
.hero-side-card h2 { font-family: var(--font-display); font-size: 2rem; letter-spacing: .04em; margin: 12px 0 12px; }
.hero-side-card p { color: var(--ink-soft); line-height: 1.72; font-size: 1rem; }
.hero-drinks-nav { display: grid; gap: 10px; }
.hdn-item {
  display: flex; align-items: center; gap: 12px; padding: 16px 16px; border-radius: 18px; background: rgba(9,15,26,.68);
  border: 1px solid rgba(255,255,255,.08); color: var(--ink-soft); text-transform: uppercase; letter-spacing: .14em; font-size: .75rem;
}
.hdn-item.active, .hdn-item:hover { color: var(--ink); border-color: rgba(203,160,98,.34); }
.hdn-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mental-dot { background: var(--blue); box-shadow: 0 0 10px rgba(79,116,255,.45); }
.calm-dot { background: var(--teal); box-shadow: 0 0 10px rgba(88,210,198,.45); }
section { position: relative; z-index: 2; }
.section-head { margin-bottom: var(--section-head-space); }
.section-title { max-width: 940px; font-size: clamp(2.45rem, 4.7vw, 4.35rem); margin-top: 8px; line-height: .91; }
.section-sub { max-width: 620px; margin-top: 10px; font-size: clamp(.9rem, 1vw, 1rem); line-height: 1.68; }
.manifesto-section, .protocol-section, .ambassadors-section, .contact-section { padding-block: var(--section-space); }
.manifesto-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--card-gap); }
.manifesto-card, .protocol-step, .proof-card, .science-card {
  border-radius: 24px; border: 1px solid var(--card-border); background: var(--card); backdrop-filter: blur(14px); box-shadow: var(--shadow);
}
.manifesto-card { padding: var(--card-pad); min-height: clamp(220px, 18vw, 240px); display: flex; flex-direction: column; justify-content: space-between; }
.manifesto-index, .protocol-step span {
  display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%;
  border: 1px solid rgba(203,160,98,.32); color: var(--gold); font-weight: 700; margin-bottom: 12px;
}
.manifesto-card h3, .protocol-step h3, .science-card h3 { font-family: var(--font-display); font-size: clamp(1.65rem, 2.2vw, 2rem); letter-spacing: .03em; margin-bottom: 9px; }

.cans-hero { padding: var(--section-space) 0; overflow: hidden; }
.cans-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(79,116,255,.14), transparent 28%),
    radial-gradient(circle at 82% 36%, rgba(88,210,198,.12), transparent 28%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.cans-content { position: relative; z-index: 2; }
.cans-duo { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--card-gap); }
.can-feature {
  position: relative; overflow: hidden; border-radius: 32px; min-height: clamp(520px, 43vw, 570px); padding: var(--card-pad); display: grid; align-content: space-between;
  border: 1px solid var(--card-border); box-shadow: var(--shadow); transition: transform .35s var(--ease), border-color .35s ease;
}
.can-feature:hover { transform: translateY(-8px); }
.mental-can { background: linear-gradient(180deg, rgba(13,21,40,.96), rgba(8,14,28,.96)); }
.calm-can { background: linear-gradient(180deg, rgba(10,22,28,.96), rgba(7,14,21,.96)); }
.can-aura {
  position: absolute; width: 320px; height: 320px; border-radius: 50%; filter: blur(76px); left: -120px; top: 30%; pointer-events: none;
}
.mental-aura { background: rgba(79,116,255,.28); }
.calm-aura { background: rgba(88,210,198,.24); }
.can-top { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.can-badge {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.mental-badge { background: rgba(79,116,255,.16); color: #b3c2ff; }
.calm-badge { background: rgba(88,210,198,.16); color: #aef0ea; }
.can-meta { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-muted); margin-top: 8px; }
.can-img-wrap { display: flex; justify-content: center; align-items: center; min-height: 280px; position: relative; z-index: 2; }
.can-img { max-height: 300px; width: auto; filter: drop-shadow(0 24px 36px rgba(0,0,0,.42)); }
.can-bottom { position: relative; z-index: 2; }
.can-info h3 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: .03em; line-height: .92; }
.can-story { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; margin-top: 12px; max-width: 560px; }
.can-benefits { list-style: none; display: grid; gap: 8px; margin: 18px 0 24px; }
.can-benefits li { position: relative; padding-left: 18px; color: var(--ink-soft); line-height: 1.65; }
.can-benefits li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.can-conversion {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08);
}
.can-price, .can-stock { display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.can-price { background: rgba(255,255,255,.06); }
.can-stock { background: rgba(203,160,98,.14); color: var(--gold); }
.can-cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 24px; border-radius: 999px;
  text-transform: uppercase; font-size: .75rem; font-weight: 800; letter-spacing: .14em; color: #fff;
}
.mental-cta { background: linear-gradient(135deg, var(--blue), #2b4de0); }
.calm-cta { background: linear-gradient(135deg, var(--teal), #2aaea2); color: #082019; }

.protocol-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--card-gap); }
.protocol-step { padding: var(--card-pad); min-height: clamp(220px, 19vw, 250px); }

.ambassadors-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--card-gap); }
.ambassadors-swipe-hint {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  margin: -8px 0 14px;
  color: var(--gold);
}
.ambassadors-swipe-hint p {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.ambassadors-swipe-hint p span { display: inline-block; }
.ambassadors-swipe-rail {
  display: block;
  width: 112px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(243,239,231,.14);
}
.ambassadors-swipe-rail > span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: rgba(203,160,98,.82);
  animation: swipeHint 3.2s var(--ease) infinite;
}
.amb-card {
  position: relative; display: grid; min-height: clamp(440px, 37vw, 500px); border-radius: 26px; overflow: hidden; background: var(--card-2);
  border: 1px solid var(--card-border); box-shadow: var(--shadow); cursor: pointer; transition: transform .35s var(--ease), border-color .35s ease;
}
.amb-card:hover { transform: translateY(-8px); border-color: rgba(203,160,98,.34); }
.amb-media { position: absolute; inset: 0; }
.amb-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.16) 34%, rgba(5,10,18,.94) 100%);
}
.amb-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.amb-card:hover .amb-media img { transform: scale(1.06); }
.amb-overlay {
  position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: end; min-height: inherit; padding: var(--card-pad);
}
.amb-kicker { color: var(--gold); font-size: .75rem; text-transform: uppercase; letter-spacing: .16em; }
.amb-name { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); line-height: .88; margin-top: 12px; }
.amb-metrics { margin-top: 12px; font-size: .75rem; line-height: 1.7; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .12em; }
.amb-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; color: var(--ink); text-transform: uppercase; font-size: .75rem; letter-spacing: .15em; font-weight: 700;
}

.proof-shell { display: grid; gap: var(--section-head-space); }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--card-gap); }
.proof-card { padding: var(--card-pad); }
.proof-card strong { display: block; font-family: var(--font-display); font-size: clamp(3.3rem, 8vw, 5rem); line-height: .86; color: var(--gold); }
.proof-card span { display: block; margin: 8px 0 12px; text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; color: var(--ink-muted); }

/* Editorial modules — Vision, Protocole, Proof */
.manifesto-card.editorial-module,
.protocol-step.editorial-module,
.proof-card.editorial-module {
  display: flex;
  min-height: 0;
  padding: 0 0 clamp(18px, 2vw, 26px);
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(203,160,98,.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.editorial-module {
  flex-direction: column;
  align-items: stretch;
}
.editorial-module-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 clamp(17px, 1.7vw, 23px);
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 20%, rgba(79,116,255,.16), transparent 44%),
    var(--bg-3);
}
.editorial-module-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(6,11,20,.03), rgba(6,11,20,.24));
}
.editorial-module-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.08) brightness(.84);
  transition: transform var(--editorial-motion) var(--ease), filter var(--editorial-motion) ease;
}
.editorial-module:hover .editorial-module-media img {
  transform: scale(1.025);
  filter: saturate(.9) contrast(1.08) brightness(.92);
}
.editorial-module-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.manifesto-card.editorial-module .editorial-module-marker,
.protocol-step.editorial-module .editorial-module-marker,
.proof-card.editorial-module .editorial-module-marker {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .12em;
}
.manifesto-card.editorial-module h3,
.protocol-step.editorial-module h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: .95;
}
.editorial-module-body p {
  max-width: 34rem;
  margin-top: auto;
}
.proof-card.editorial-module .editorial-module-marker {
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  letter-spacing: -.02em;
}
.proof-card.editorial-module span {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  line-height: 1;
  letter-spacing: .045em;
}
html[data-theme="light"] .editorial-module-media {
  background: #e8e4db;
}
html[data-theme="light"] .editorial-module-media::after {
  border-color: rgba(7,18,35,.1);
  background: linear-gradient(180deg, rgba(7,18,35,0), rgba(7,18,35,.1));
}
html[data-theme="light"] .manifesto-card.editorial-module,
html[data-theme="light"] .protocol-step.editorial-module,
html[data-theme="light"] .proof-card.editorial-module {
  border-bottom-color: rgba(151,105,48,.28);
}

.video-wrapper { position: relative; min-height: 600px; background: transparent; overflow: hidden; }
.main-video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.video-vignette {
  position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(6,11,20,.18) 0%, transparent 30%, rgba(6,11,20,.28) 68%, rgba(6,11,20,.76) 100%),
  linear-gradient(90deg, rgba(6,11,20,.74) 0%, rgba(6,11,20,.32) 48%, rgba(6,11,20,.12) 74%, rgba(6,11,20,.38) 100%);
}
.audio-toggle {
  position: absolute; right: 22px; top: 22px; z-index: 6; display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 16px;
  border-radius: 999px; border: 1px solid rgba(203,160,98,.32); background: rgba(6,11,20,.58); color: var(--ink);
  backdrop-filter: blur(12px); cursor: pointer; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 700;
}
.audio-toggle.is-on { background: rgba(79,116,255,.20); border-color: rgba(79,116,255,.42); }
.video-content { position: relative; z-index: 2; min-height: 600px; display: flex; align-items: end; justify-content: space-between; padding-bottom: 56px; }
.vc-body { font-family: var(--font-serif); font-style: italic; font-size: 2rem; line-height: 1.4; margin-top: 10px; }
.vc-title { font-size: clamp(3rem, 8vw, 6rem); color: transparent; -webkit-text-stroke: 1px rgba(243,239,231,.42); text-align: right; }
.media-editorial {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: end;
  gap: clamp(48px, 7vw, 110px);
  min-height: clamp(680px, 62vw, 820px);
  padding-block: clamp(72px, 8vw, 108px);
}
.media-editorial-main { max-width: 700px; }
.media-editorial-title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 8.8rem);
  line-height: .8;
  letter-spacing: -.01em;
  text-shadow: 0 8px 42px rgba(0,0,0,.34);
}
.media-editorial-title em {
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}
.media-editorial-lead {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(243,239,231,.78);
  font-size: 1rem;
  line-height: 1.72;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.brand-signature {
  align-self: end;
  max-width: 520px;
  padding: 8px 0 4px clamp(22px, 3vw, 42px);
  border-left: 1px solid rgba(203,160,98,.48);
  text-shadow: 0 2px 18px rgba(0,0,0,.56);
}
.brand-signature h3 {
  max-width: 480px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: .92;
  letter-spacing: .025em;
}
.brand-signature-copy {
  max-width: 470px;
  margin-top: 16px;
  color: rgba(243,239,231,.72);
  line-height: 1.7;
}
.brand-signature-worlds {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0 24px;
  margin-top: 24px;
}
.brand-signature-worlds .hdn-item {
  min-width: 0;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid rgba(243,239,231,.22);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}
.brand-signature-worlds .hdn-item:hover,
.brand-signature-worlds .hdn-item.active {
  border-color: rgba(203,160,98,.58);
  background: transparent;
}

.partners-section { padding-block: var(--section-space); }
.science-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--card-gap); }
.science-card { padding: var(--card-pad); min-height: clamp(205px, 17vw, 225px); }
.science-card-kicker {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--gold-soft); color: var(--gold);
  font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px;
}
/* ── Partners marquee (RAF-driven) ── */
.logo-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(203,160,98,.14);
  border-bottom: 1px solid rgba(203,160,98,.14);
  padding: 40px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.logo-marquee-wrap.is-dragging { cursor: grabbing; }
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  will-change: transform;
}
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: auto;
  cursor: pointer;
}
.logo-chip img {
  max-height: 72px;
  max-width: 220px;
  object-fit: contain;
  opacity: 1;
  transition: filter 250ms ease, opacity 250ms ease, transform 250ms ease;
  display: block;
  pointer-events: none;
}
html[data-theme="light"] .logo-marquee-wrap {
  background: rgba(205, 216, 230, 0.58);
}
html[data-theme="light"] .logo-chip img {
  max-height: 144px;
  max-width: 440px;
}
/* Hover desktop — logo ciblé : scale + premier plan ; autres : estompés */
@media (hover: hover) and (pointer: fine) {
  .logo-marquee-track:has(.logo-chip:hover) .logo-chip:not(:hover) img {
    filter: grayscale(1) brightness(1.2);
    opacity: 0.35;
  }
  .logo-chip:hover img {
    opacity: 1;
    transform: scale(1.35);
  }
}
/* Tap mobile — chip actif : mis en avant ; autres : estompés (.is-dimmed) */
.logo-chip.is-active img {
  opacity: 1;
  transform: scale(1.35);
}
.logo-chip.is-dimmed img {
  filter: grayscale(1) brightness(1.2);
  opacity: 0.35;
}

/* ── Partner modal ── */
.partner-modal {
  position: fixed; inset: 0; z-index: 70; display: none;
  align-items: center; justify-content: center; padding: 24px;
}
.partner-modal.open { display: flex; }
.partner-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(4,7,12,.80); backdrop-filter: blur(10px);
}
.partner-modal-card {
  position: relative; z-index: 1;
  width: min(100%, 480px);
  border-radius: 24px;
  background: var(--card-2);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 48px 40px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
.partner-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--card-border);
  background: rgba(6,11,20,.58); color: var(--ink);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease;
}
.partner-modal-close:hover { background: rgba(203,160,98,.18); }
.partner-modal-logo {
  max-height: 72px; max-width: 200px; object-fit: contain;
}
.partner-modal-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: .06em;
  margin: 0;
}
.partner-modal-desc {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.contact-inner { text-align: center; }
.contact-form { display: flex; justify-content: center; margin-top: 32px; }
.form-row {
  width: min(100%, 560px); display: flex; border-radius: 999px; overflow: hidden; border: 1px solid var(--card-border); background: rgba(255,255,255,.04);
}
.form-input { flex: 1; min-height: 58px; border: 0; outline: none; background: transparent; color: var(--ink); padding: 0 24px; }
.form-btn {
  min-width: 180px; border: 0; background: linear-gradient(135deg, var(--gold), #b88a4a); color: #091321; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
}
.site-footer { padding: 56px 0 80px; border-top: 1px solid rgba(255,255,255,.06); background: rgba(4,8,15,.7); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand > span { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .15em; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-muted); }
.footer-legal { font-size: .75rem; color: var(--ink-muted); }
.sticky-mobile-cta {
  position: fixed; left: 18px; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 45; display: none; align-items: center; justify-content: center;
  min-height: 54px; border-radius: 999px; background: linear-gradient(135deg, var(--gold), #b88a4a); color: #091321; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; box-shadow: 0 18px 36px rgba(0,0,0,.26);
}

.modal-backdrop {
  position: fixed; inset: 0; z-index: 60; display: none; align-items: center; justify-content: center; padding: 24px;
  background: rgba(4,7,12,.72); backdrop-filter: blur(10px);
  overscroll-behavior: contain;
}
.modal-backdrop.open { display: flex; }
.modal-panel {
  position: relative; width: min(100%, 980px); height: min(600px, calc(100dvh - 48px)); min-height: 0;
  display: grid; grid-template-columns: minmax(0, 48%) minmax(0, 52%); overflow: hidden;
  border-radius: 28px; background: var(--card-2); border: 1px solid var(--card-border); box-shadow: var(--shadow);
  max-height: calc(100dvh - 48px);
}
.modal-media { min-width: 0; min-height: 0; height: 100%; overflow: hidden; }
.modal-media img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.modal-body {
  min-width: 0; min-height: 0; overflow-y: auto; overscroll-behavior: contain;
  padding: 40px; display: flex; flex-direction: column; justify-content: flex-start;
}
.modal-body h3 { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5rem); line-height: .88; margin: 12px 0; }
.modal-metrics { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; line-height: 1.8; margin-bottom: 20px; }
.modal-bio { color: var(--ink-soft); font-size: 1rem; line-height: 1.86; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--card-border);
  background: rgba(6,11,20,.58); color: var(--ink); font-size: 1.5rem; cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(var(--editorial-shift)) scale(.995); transition: opacity var(--editorial-motion) var(--ease), transform var(--editorial-motion) var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0) scale(1); }
.delay-1, .delay-2, .delay-3 { transition-delay: 0ms; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* Minimal house header and full-screen navigation */
.luxury-header {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 14px clamp(20px, 3vw, 46px);
  background: transparent;
  border: 0;
  backdrop-filter: blur(0);
  transition: background-color .7s var(--ease), backdrop-filter .7s var(--ease), border-color .7s ease;
}
.luxury-header.is-scrolled {
  background: rgba(6, 11, 20, .76);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(13px);
}
html[data-theme="light"] .luxury-header { background: transparent; border-color: transparent; }
html[data-theme="light"] .luxury-header.is-scrolled {
  background: rgba(247, 245, 239, .82);
  border-color: rgba(16,24,39,.08);
}
.luxury-header .brand {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-self: center;
  align-items: center;
  color: var(--ink);
  line-height: 1;
}
.luxury-header .brand-eye { width: 31px; color: currentColor; }
.luxury-header .brand-name {
  display: block;
  font-family: var(--font-body);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .48em;
  transform: translateX(.24em);
}
.luxury-header .menu-toggle {
  position: relative;
  z-index: 45;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-self: center;
  justify-self: start;
  width: 44px;
  height: 44px;
  padding: 13px 8px;
  gap: 5px;
}
.luxury-header .menu-toggle span { width: 27px; height: 1px; }
.luxury-header .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.luxury-header .menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.luxury-header .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.luxury-header .header-audio-toggle {
  position: static;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  z-index: 45;
}

.fullscreen-menu {
  display: grid;
  grid-template-columns: minmax(140px, .55fr) minmax(300px, 1.45fr);
  grid-template-rows: 1fr auto;
  gap: 32px;
  padding: clamp(130px, 16vh, 190px) clamp(28px, 8vw, 130px) clamp(32px, 7vh, 70px);
  background: var(--bg-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .65s var(--ease), transform .75s var(--ease), visibility .75s;
}
.fullscreen-menu.open {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.fullscreen-menu__index {
  padding-top: 13px;
  color: var(--ink-muted);
  font-size: .67rem;
  letter-spacing: .23em;
}
.fullscreen-menu__links { display: flex; flex-direction: column; align-items: flex-start; }
.fullscreen-menu__links a {
  width: 100%;
  padding: 5px 0;
  border: 0;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.2vw, 6.7rem);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.025em;
  text-transform: none;
  opacity: 0;
  transform: translateY(18px);
  transition: color .35s ease, opacity .65s var(--ease), transform .75s var(--ease);
}
.fullscreen-menu.open .fullscreen-menu__links a { opacity: 1; transform: translateY(0); }
.fullscreen-menu.open .fullscreen-menu__links a:nth-child(2) { transition-delay: .05s; }
.fullscreen-menu.open .fullscreen-menu__links a:nth-child(3) { transition-delay: .1s; }
.fullscreen-menu.open .fullscreen-menu__links a:nth-child(4) { transition-delay: .15s; }
.fullscreen-menu.open .fullscreen-menu__links a:nth-child(5) { transition-delay: .2s; }
.fullscreen-menu.open .fullscreen-menu__links a:nth-child(6) { transition-delay: .25s; }
.fullscreen-menu__links a:hover { color: var(--gold); }
.fullscreen-menu__tools {
  grid-column: 2;
  display: flex;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--card-border);
}
.fullscreen-menu .mobile-locale {
  width: auto;
  padding: 8px 13px;
  border: 0;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: .67rem;
  letter-spacing: .16em;
  cursor: pointer;
}
.fullscreen-menu .mobile-locale.is-active { color: var(--gold); }

/* Light theme — semantic surfaces and dark editorial islands */
html[data-theme="light"] body {
  background:
    radial-gradient(circle at 18% 14%, rgba(49,91,216,.075), transparent 29%),
    radial-gradient(circle at 84% 25%, rgba(138,93,37,.065), transparent 27%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 44%, var(--bg) 100%);
}
html[data-theme="light"] .page-noise {
  background-image: radial-gradient(rgba(17,28,44,.12) .65px, transparent .65px);
  opacity: .035;
  mix-blend-mode: multiply;
}
html[data-theme="light"] .site-header,
html[data-theme="light"] .luxury-header.is-scrolled {
  background: rgba(248,247,243,.92);
  border-color: var(--light-border);
}
html[data-theme="light"] .header-audio-toggle {
  border-color: var(--light-border-strong);
  background: rgba(17,28,44,.56);
  color: #f3efe7;
}
html[data-theme="light"] .fullscreen-menu {
  background: var(--light-bg-elevated);
}
html[data-theme="light"] .editorial-experience {
  background: rgba(255,253,250,.52);
}
html[data-theme="light"] .editorial-experience + .cans-hero,
html[data-theme="light"] .video-section + .editorial-experience {
  border-top: 1px solid var(--light-border);
}
html[data-theme="light"] .editorial-tab:not(.is-active),
html[data-theme="light"] .fullscreen-menu__index,
html[data-theme="light"] .fullscreen-menu .mobile-locale {
  color: var(--light-text-muted);
}
html[data-theme="light"] .editorial-module-media {
  background: #e2e6e7;
}
html[data-theme="light"] .experience-card > img {
  outline: 1px solid rgba(32,48,68,.14);
  outline-offset: -1px;
}

/* Light theme — clear typography on the dark photographic hero */
html[data-theme="light"] #hero .hero-narrative,
html[data-theme="light"] #hero .video-content {
  color: #f3efe7;
}
html[data-theme="light"] #hero .vc-label {
  color: #e0b777;
}
html[data-theme="light"] #hero .vc-body {
  color: rgba(243,239,231,.88);
  text-shadow: 0 2px 24px rgba(0,0,0,.62);
}
html[data-theme="light"] #hero .hero-narrative-title,
html[data-theme="light"] #hero .vc-title {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(243,239,231,.88);
}

html[data-theme="light"] .amb-card {
  --ink: #f3efe7;
  --ink-soft: rgba(243,239,231,.78);
  --ink-muted: rgba(243,239,231,.66);
  --gold: #d8ae70;
  color: var(--ink);
  border-color: rgba(243,239,231,.16);
}
html[data-theme="light"] .amb-card .amb-name,
html[data-theme="light"] .amb-card .amb-metrics,
html[data-theme="light"] .amb-card .amb-link {
  color: inherit;
}
html[data-theme="light"] .amb-card .amb-kicker {
  color: #e0b777;
}
html[data-theme="light"] .amb-card {
  box-shadow: 0 18px 44px rgba(17,28,44,.13);
}

html[data-theme="light"] .can-feature {
  --ink: var(--light-text-primary);
  --ink-soft: var(--light-text-secondary);
  --ink-muted: var(--light-text-muted);
  --gold: var(--light-accent-gold);
  color: var(--ink);
  border-color: rgba(49,91,216,.2);
  background:
    radial-gradient(circle at 18% 34%, rgba(49,91,216,.1), transparent 38%),
    linear-gradient(180deg, rgba(255,253,250,.98), rgba(235,241,248,.98));
  box-shadow: 0 18px 44px rgba(26,42,62,.1);
}
html[data-theme="light"] .can-feature.calm-can {
  border-color: rgba(23,95,91,.22);
  background:
    radial-gradient(circle at 18% 34%, rgba(56,189,180,.11), transparent 38%),
    linear-gradient(180deg, rgba(255,253,250,.98), rgba(232,243,241,.98));
}
html[data-theme="light"] .can-aura { opacity: .2; }
html[data-theme="light"] .can-img {
  filter: drop-shadow(0 20px 30px rgba(26,42,62,.24));
}
html[data-theme="light"] .mental-badge {
  background: #e1e9ff;
  color: #244389;
}
html[data-theme="light"] .calm-badge {
  background: #d9f1ee;
  color: #175f5b;
}
html[data-theme="light"] .can-feature .can-meta,
html[data-theme="light"] .can-feature .can-story,
html[data-theme="light"] .can-feature .can-benefits li {
  color: var(--ink-soft);
}
html[data-theme="light"] .can-feature .can-conversion {
  border-color: var(--light-border);
}
html[data-theme="light"] .can-feature .can-price {
  background: rgba(17,28,44,.07);
  color: var(--ink);
}
html[data-theme="light"] .can-feature .can-stock,
html[data-theme="light"] .can-feature .can-benefits li::before {
  color: var(--gold);
}

html[data-theme="light"] .video-section {
  color: #f3efe7;
}
html[data-theme="light"] .video-section .hero-eyebrow,
html[data-theme="light"] .video-section .mini-kicker,
html[data-theme="light"] .video-section .media-editorial-title em {
  color: #ddb477;
}
html[data-theme="light"] .video-section .media-editorial-title,
html[data-theme="light"] .video-section .brand-signature h3,
html[data-theme="light"] .video-section .btn-secondary {
  color: #f7f3eb;
}
html[data-theme="light"] .video-section .btn-secondary {
  border-color: rgba(247,243,235,.38);
  background: rgba(6,11,20,.26);
}
html[data-theme="light"] #hero-video .media-editorial-lead {
  color: rgba(243,239,231,.88);
}
html[data-theme="light"] #hero-video .brand-signature-copy {
  color: rgba(243,239,231,.82);
}
html[data-theme="light"] #hero-video .brand-signature-worlds .hdn-item {
  color: rgba(243,239,231,.78);
}
html[data-theme="light"] #hero-video .brand-signature-worlds .hdn-item:hover,
html[data-theme="light"] #hero-video .brand-signature-worlds .hdn-item.active {
  color: #f7f3eb;
}

html[data-theme="dark"] .logo-marquee-wrap {
  background: var(--bg-3);
}
html[data-theme="dark"] .logo-chip img {
  filter: brightness(1.06);
}
html[data-theme="dark"] .logo-chip img[src*="ministere-armees"] {
  filter: brightness(1.06) drop-shadow(0 0 1px rgba(255,255,255,.85)) drop-shadow(0 0 1px rgba(255,255,255,.85)) drop-shadow(0 0 3px rgba(255,255,255,.45));
}

html[data-theme="light"] .logo-marquee-wrap {
  border-color: rgba(32,48,68,.2);
  background: rgba(205,216,230,.58);
}
@media (hover: hover) and (pointer: fine) {
  html[data-theme="light"] .logo-marquee-track:has(.logo-chip:hover) .logo-chip:not(:hover) img {
    filter: grayscale(.72) contrast(.9);
    opacity: .52;
  }
  html[data-theme="light"] .logo-chip:hover img {
    filter: none;
  }
}
html[data-theme="light"] .logo-chip.is-dimmed img {
  filter: grayscale(.72) contrast(.9);
  opacity: .52;
}

html[data-theme="light"] .contact-section {
  border-top: 1px solid var(--light-border);
  background: linear-gradient(180deg, rgba(223,231,239,.72), rgba(237,242,246,.96));
}
html[data-theme="light"] .form-row {
  border-color: var(--light-border-strong);
  background: var(--light-field-bg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
html[data-theme="light"] .form-input::placeholder {
  color: #5d6a7c;
  opacity: 1;
}
html[data-theme="light"] .form-row:focus-within {
  border-color: var(--light-focus);
  box-shadow: 0 0 0 3px rgba(49,91,216,.18), inset 0 1px 0 rgba(255,255,255,.72);
}
html[data-theme="light"] .form-btn {
  background: linear-gradient(135deg, #9a6a2e, #82551f);
  color: #fffaf1;
}

html[data-theme="light"] .site-footer {
  border-color: rgba(243,239,231,.16);
  background: #121c2a;
  color: #f3efe7;
}
html[data-theme="light"] .site-footer .footer-nav,
html[data-theme="light"] .site-footer .footer-legal {
  color: rgba(243,239,231,.72);
}
html[data-theme="light"] .site-footer .footer-eye {
  color: #d8ae70;
}
html[data-theme="light"] .partner-modal-close,
html[data-theme="light"] .modal-close {
  border-color: var(--light-border-strong);
  background: #e2e8ee;
  color: var(--light-text-primary);
}
html[data-theme="light"] :where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--light-focus);
  outline-offset: 3px;
}
html[data-theme="light"] .sticky-mobile-cta:focus-visible,
html[data-theme="light"] .form-btn:focus-visible {
  outline-color: #173b9a;
}

/* Shared editorial experience — DV-024 */
.editorial-experience {
  padding: clamp(48px, 5vw, 68px) 0;
  background: var(--bg-2);
  overflow: hidden;
}
.editorial-experience + .editorial-experience { border-top: 1px solid var(--editorial-rule); }
.editorial-intro {
  display: block;
  max-width: 650px;
}
.editorial-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.editorial-intro > p:last-child {
  max-width: 610px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: clamp(.88rem, .95vw, .98rem);
  line-height: 1.55;
}
.experience-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(22px, 2.5vw, 32px);
  border-bottom: 1px solid var(--editorial-rule);
}
.editorial-tabs {
  display: flex;
  gap: clamp(24px, 3vw, 42px);
}
.editorial-tab {
  position: relative;
  min-height: 42px;
  padding: 0 1px 12px;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: clamp(.94rem, 1.15vw, 1.08rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .035em;
  cursor: pointer;
  transition: color var(--editorial-motion) ease;
}
.editorial-tab::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--editorial-motion) var(--ease);
}
.editorial-tab.is-active { color: var(--ink); }
.editorial-tab.is-active::after { transform: scaleX(1); }
.experience-controls {
  display: none;
  gap: 7px;
  padding-bottom: 8px;
}
.experience-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--editorial-rule);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--editorial-motion) ease, color var(--editorial-motion) ease, transform var(--editorial-motion) var(--ease);
}
.experience-controls button:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.editorial-stage { padding-top: clamp(18px, 2vw, 26px); }
.editorial-panel {
  opacity: 0;
  transform: translateY(var(--editorial-shift)) scale(.995);
  transition: opacity var(--editorial-motion) var(--ease), transform var(--editorial-motion) var(--ease);
}
.editorial-panel.is-active { opacity: 1; transform: translateY(0) scale(1); }
.editorial-panel[hidden] { display: none; }
.experience-carousel {
  display: flex;
  gap: clamp(14px, 1.5vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  cursor: grab;
  touch-action: pan-y;
  scroll-behavior: smooth;
}
.experience-carousel::-webkit-scrollbar { display: none; }
.experience-carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.experience-card {
  flex: 0 0 calc((100% - 2 * clamp(14px, 1.5vw, 22px)) / 3);
  min-width: 0;
  scroll-snap-align: start;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.experience-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(.72) contrast(1.04);
  transition: transform 450ms var(--ease), filter 450ms ease;
}
.experience-card:hover > img { transform: scale(1.012); filter: saturate(.84) contrast(1.03); }
.experience-card__index {
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
}
.experience-card__copy { display: grid; gap: 9px; margin-top: 7px; }
.experience-card__copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.experience-card__copy small {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: clamp(.82rem, .9vw, .92rem);
  line-height: 1.6;
}

@media (max-width: 1380px) {
  .ambassadors-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 1180px) {
  :root {
    --pad: clamp(20px, 2.4vw, 26px);
    --section-space: clamp(60px, 7vw, 76px);
    --card-pad: clamp(20px, 2.3vw, 26px);
    --card-gap: clamp(12px, 1.5vw, 16px);
  }
  .site-header { gap: 16px; padding-block: 12px; }
  .brand { font-size: 1.3rem; gap: 9px; }
  .brand-eye { width: 32px; }
  .main-nav { gap: clamp(12px, 1.55vw, 20px); font-size: .68rem; letter-spacing: .1em; }
  .header-right { gap: 8px; }
  .header-cta { padding-inline: 16px; }
  .header-cta, .theme-toggle, .locale-trigger { height: 40px; }
  .theme-toggle, .locale-trigger { width: 40px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-side { max-width: 560px; }
  .media-editorial {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: clamp(32px, 4vw, 52px);
  }
  .manifesto-grid, .protocol-grid, .proof-grid, .science-grid, .ambassadors-grid {
    display: flex;
    gap: var(--card-gap);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 1px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .manifesto-grid::-webkit-scrollbar,
  .protocol-grid::-webkit-scrollbar,
  .proof-grid::-webkit-scrollbar,
  .science-grid::-webkit-scrollbar,
  .ambassadors-grid::-webkit-scrollbar,
  .cans-duo::-webkit-scrollbar { display: none; }
  .manifesto-card, .protocol-step, .proof-card, .science-card, .amb-card {
    flex: 0 0 calc((100% - (2 * var(--card-gap))) / 3);
    min-width: 0;
    scroll-snap-align: start;
  }
  .ambassadors-section:has(.ambassadors-grid > .amb-card:nth-child(4)) .ambassadors-swipe-hint {
    display: flex;
  }
  .amb-card { min-height: clamp(400px, 48vw, 470px); }
  .manifesto-grid,
  .protocol-grid,
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }
  .manifesto-card.editorial-module,
  .protocol-step.editorial-module,
  .proof-card.editorial-module {
    min-width: 0;
  }
}

@media (min-width: 961px) and (max-width: 1180px) and (orientation: landscape) {
  :root {
    --pad: clamp(18px, 2vw, 22px);
    --section-space: clamp(42px, 5.2vw, 52px);
    --section-head-space: 16px;
    --card-pad: clamp(18px, 1.9vw, 22px);
    --card-gap: 14px;
  }
  .site-header {
    min-height: 0;
    gap: 12px;
    padding-block: 8px;
  }
  .brand {
    flex: 0 0 auto;
    gap: 8px;
    font-size: 1.1rem;
    letter-spacing: .12em;
  }
  .brand-eye { width: 29px; }
  .main-nav {
    flex-wrap: nowrap;
    gap: clamp(14px, 1.55vw, 18px);
    font-size: .66rem;
    letter-spacing: .08em;
    white-space: nowrap;
  }
  .header-right { flex: 0 0 auto; gap: 6px; }
  .header-cta {
    height: 40px;
    padding-inline: 14px;
    font-size: .66rem;
    letter-spacing: .1em;
  }
  .theme-toggle, .locale-trigger {
    width: 38px;
    height: 38px;
  }
  .locale-menu { top: 46px; }

  .hero-grid {
    min-height: 82svh;
    padding-top: 57px;
  }
  .hero-narrative {
    grid-template-columns: minmax(190px, .48fr) minmax(0, 1.52fr);
    gap: clamp(28px, 4vw, 48px);
    min-height: calc(82svh - 57px);
    padding-block: clamp(54px, 8vh, 66px) clamp(28px, 5vh, 40px);
  }
  .hero-narrative-copy {
    max-width: 260px;
    padding-bottom: 4px;
  }
  .hero-narrative .vc-label { font-size: .65rem; letter-spacing: .18em; }
  .hero-narrative .vc-body {
    max-width: 250px;
    margin-top: 7px;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .hero-narrative-title {
    font-size: clamp(4.6rem, 8.8vw, 6.5rem);
    line-height: .8;
  }
  .section-title {
    max-width: 980px;
    margin-top: 7px;
    font-size: clamp(2.5rem, 4.2vw, 3.2rem);
  }
  .section-sub {
    margin-top: 7px;
    font-size: .9rem;
    line-height: 1.58;
  }
  .hero-eyebrow, .section-label, .mini-kicker, .vc-label, .modal-kicker {
    font-size: .66rem;
  }
  .manifesto-card, .protocol-step, .proof-card, .science-card {
    border-radius: 20px;
  }
  .manifesto-card { min-height: 185px; }
  .protocol-step { min-height: 190px; }
  .science-card { min-height: 180px; }
  .manifesto-card h3, .protocol-step h3, .science-card h3 {
    margin-bottom: 6px;
    font-size: clamp(1.4rem, 1.9vw, 1.65rem);
  }
  .manifesto-index, .protocol-step span {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    font-size: .8rem;
  }
  .manifesto-card p, .protocol-step p, .proof-card p, .science-card p {
    font-size: .88rem;
    line-height: 1.55;
  }
  .can-feature {
    min-height: 420px;
    border-radius: 24px;
  }
  .can-img-wrap { min-height: 205px; }
  .can-img { max-height: 220px; }
  .can-info h3 { font-size: clamp(2rem, 3.2vw, 2.6rem); }
  .can-story { margin-top: 8px; font-size: .9rem; line-height: 1.58; }
  .can-benefits { gap: 5px; margin: 12px 0 16px; }
  .can-benefits li { font-size: .88rem; line-height: 1.5; }
  .amb-card { min-height: 360px; border-radius: 22px; }
  .amb-name { margin-top: 8px; font-size: clamp(1.8rem, 3.2vw, 2.35rem); }
  .amb-metrics { margin-top: 8px; line-height: 1.5; }
  .amb-link { margin-top: 10px; }
  .proof-card strong { font-size: clamp(2.8rem, 4.5vw, 3.5rem); }
  .proof-card span { margin: 5px 0 8px; }
  .editorial-module-media { margin-bottom: 15px; }
  .manifesto-card.editorial-module h3,
  .protocol-step.editorial-module h3 { margin-bottom: 7px; }
  .manifesto-card.editorial-module .editorial-module-marker,
  .protocol-step.editorial-module .editorial-module-marker { margin-bottom: 7px; }
  .proof-card.editorial-module .editorial-module-marker {
    margin-bottom: 7px;
    font-size: clamp(2.45rem, 3.7vw, 3.2rem);
  }
  .proof-card.editorial-module span { margin-bottom: 8px; }
  .media-editorial {
    gap: 34px;
    min-height: 560px;
    padding-block: 48px;
  }
  .media-editorial-title { font-size: clamp(4rem, 6.7vw, 5.6rem); }
  .media-editorial-lead { margin-top: 12px; font-size: .9rem; line-height: 1.58; }
  .brand-signature { padding-left: 24px; }
  .brand-signature h3 { font-size: clamp(2rem, 3vw, 2.6rem); }
  .brand-signature-copy { margin-top: 10px; font-size: .88rem; line-height: 1.55; }
}

@media (max-width: 960px) {
  :root { --section-space: clamp(52px, 7vw, 66px); }
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px 14px;
    padding-block: 9px;
  }
  .header-right { grid-column: 2; grid-row: 1; }
  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    padding-block: 4px 2px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav > * { flex: 0 0 auto; }
  .menu-toggle { display: none; }
  .header-cta, .theme-toggle, .locale-picker { display: flex; }
  .header-cta { font-size: .66rem; padding-inline: 14px; }
  .theme-toggle, .locale-trigger { width: 36px; height: 36px; }
  .locale-menu { top: 44px; }
  .hero-columns { inset-block-start: 112px; }
  .hero-grid { height: auto; }
  .hero-narrative {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 28px;
    min-height: calc(100svh - 80px);
    padding-block: 150px 64px;
  }
  .hero-narrative-copy { grid-row: 2; padding-bottom: 0; }
  .hero-narrative-title {
    justify-self: start;
    font-size: clamp(5.2rem, 18vw, 9rem);
    text-align: left;
  }
  .hero-overlay-content { padding-top: 72px; padding-bottom: 64px; min-height: auto; }
  .hero-layout { gap: 26px; }
  .hero-title { font-size: clamp(4rem, 13vw, 6.8rem); }
  .section-title { font-size: clamp(2.35rem, 6.6vw, 3.65rem); }
  .ambassadors-section:has(.ambassadors-grid > .amb-card:nth-child(3)) .ambassadors-swipe-hint {
    display: flex;
  }
  .media-editorial {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 36px;
    min-height: clamp(760px, 112vw, 920px);
    padding-block: 72px;
  }
  .media-editorial-main { max-width: 650px; }
  .media-editorial-title { font-size: clamp(4.2rem, 13vw, 6.7rem); }
  .brand-signature {
    max-width: 620px;
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(203,160,98,.48);
  }
  .brand-signature h3 { font-size: clamp(2.1rem, 6vw, 3rem); }
  .manifesto-card, .protocol-step, .proof-card, .science-card, .amb-card {
    flex-basis: min(44%, 390px);
  }
  .cans-duo {
    display: flex;
    gap: var(--card-gap);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .can-feature { flex: 0 0 min(44%, 390px); min-height: 460px; scroll-snap-align: start; }
  .video-content { min-height: 540px; align-items: end; flex-direction: column; justify-content: end; gap: 28px; }
  .vc-title { text-align: left; }
  .sticky-mobile-cta { display: inline-flex; }
  .luxury-header {
    min-height: 82px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    padding: 10px 18px;
  }
  .luxury-header .brand { grid-column: 2; grid-row: 1; font-size: inherit; }
  .luxury-header .brand-eye { width: 29px; }
  .luxury-header .brand-name { display: block; font-size: .58rem; letter-spacing: .4em; }
  .luxury-header .menu-toggle { grid-column: 1; grid-row: 1; display: flex; }
  .fullscreen-menu {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 116px 24px 34px;
  }
  .fullscreen-menu__index { padding: 0; }
  .fullscreen-menu__links a { font-size: clamp(3.2rem, 12vw, 5.8rem); }
  .fullscreen-menu__tools { grid-column: 1; }
  .editorial-intro { max-width: 600px; }
  .experience-controls { display: flex; }
  .experience-card { flex-basis: calc((100% - 2 * clamp(14px, 1.5vw, 22px)) / 2.55); }
}

@media (min-width: 681px) and (max-width: 960px) and (orientation: portrait) {
  :root {
    --section-space: clamp(46px, 6.2vw, 58px);
    --section-head-space: 18px;
    --card-pad: clamp(19px, 2.1vw, 23px);
  }
  .hero-narrative {
    gap: 24px;
    padding-block: 132px 56px;
  }
  .hero-narrative-title { font-size: clamp(4.8rem, 16vw, 8rem); }
  .hero-narrative .vc-body { font-size: 1.75rem; }
  .section-title { font-size: clamp(2.35rem, 6.6vw, 3.65rem); }
  .manifesto-card, .protocol-step, .proof-card, .science-card, .amb-card {
    flex-basis: 44%;
  }
  .manifesto-card { min-height: 205px; }
  .protocol-step { min-height: 210px; }
  .science-card { min-height: 195px; }
  .amb-card { min-height: clamp(370px, 46vw, 420px); }
  .can-feature { min-height: 430px; }
  .manifesto-grid,
  .protocol-grid,
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .manifesto-card.editorial-module h3,
  .protocol-step.editorial-module h3 {
    font-size: clamp(1.45rem, 3.2vw, 1.9rem);
  }
  .manifesto-card.editorial-module p,
  .protocol-step.editorial-module p,
  .proof-card.editorial-module p {
    font-size: clamp(.79rem, 1.75vw, .92rem);
    line-height: 1.55;
  }
  .proof-card.editorial-module span {
    font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 18px;
    --section-space: clamp(44px, 13vw, 56px);
    --section-head-space: 18px;
    --card-pad: 20px;
    --card-gap: 12px;
  }
  .site-header { gap: 7px 10px; padding-block: 8px; }
  .brand-name { display: none; }
  .brand-eye { width: 34px; }
  .header-right { gap: 6px; }
  .header-cta { height: 34px; padding-inline: 12px; letter-spacing: .1em; }
  .theme-toggle, .locale-trigger { width: 34px; height: 34px; }
  .main-nav { gap: 16px; font-size: .66rem; padding-bottom: 1px; }
  .hero-columns { inset: 104px 0 0 0; }
  .hero-column-bg { top: -6svh; height: calc(100% + 12svh); }
  .hero-overlay-content { padding-top: 58px; padding-bottom: 52px; }
  .hero-title { font-size: clamp(3.7rem, 19vw, 5.5rem); }
  .section-title { font-size: clamp(2.15rem, 10.5vw, 3rem); }
  .hero-lead, .section-sub, .contact-sub, .science-card p, .proof-card p, .protocol-step p, .manifesto-card p {
    font-size: .94rem;
    line-height: 1.65;
  }
  .manifesto-card, .protocol-step, .proof-card, .science-card, .amb-card,
  .can-feature {
    flex-basis: 80%;
  }
  .ambassadors-section:has(.ambassadors-grid > .amb-card:nth-child(2)) .ambassadors-swipe-hint {
    display: flex;
  }
  .manifesto-card, .protocol-step, .science-card { min-height: 210px; }
  .amb-card { min-height: 410px; }
  .can-feature { min-height: 450px; }
  .menu-products { grid-template-columns: 1fr; }
  .mega-menu { width: min(92vw, 420px); }
  .form-row { flex-direction: column; border-radius: 22px; }
  .form-input { border-radius: 20px 20px 0 0; }
  .form-btn { min-height: 54px; border-radius: 0 0 20px 20px; }
  .hero-narrative {
    gap: 22px;
    padding-block: 132px 48px;
  }
  .hero-narrative-title {
    font-size: clamp(4.55rem, 22vw, 6rem);
    line-height: .8;
  }
  .hero-narrative .vc-body { font-size: 1.55rem; }
  .media-editorial {
    gap: 30px;
    min-height: clamp(820px, 220vw, 940px);
    padding-block: 54px;
  }
  .media-editorial-title { font-size: clamp(4rem, 20vw, 5.5rem); }
  .media-editorial-lead { margin-top: 14px; font-size: .94rem; line-height: 1.62; }
  .media-editorial .hero-actions { gap: 10px; margin-top: 22px; }
  .media-editorial .btn-hero { min-height: 46px; padding-inline: 16px; font-size: .67rem; }
  .brand-signature { padding-top: 18px; }
  .brand-signature-copy { margin-top: 12px; font-size: .9rem; line-height: 1.58; }
  .brand-signature-worlds { grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
  .brand-signature-worlds .hdn-item { padding-top: 12px; }
  .modal-backdrop { padding: 8px; }
  .modal-panel {
    width: min(96vw, 980px);
    height: min(600px, calc(100dvh - 16px));
    max-height: calc(100dvh - 16px);
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    border-radius: 20px;
  }
  .modal-body { padding: 48px 14px 18px; }
  .modal-body h3 { margin: 7px 0; font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .modal-kicker { font-size: .58rem; letter-spacing: .15em; }
  .modal-metrics { margin-bottom: 10px; font-size: .62rem; line-height: 1.45; letter-spacing: .1em; }
  .modal-bio { font-size: .78rem; line-height: 1.5; }
  .modal-close { top: 8px; right: 8px; width: 40px; height: 40px; }
  .manifesto-grid,
  .protocol-grid,
  .proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    overflow: visible;
  }
  .manifesto-card.editorial-module,
  .protocol-step.editorial-module,
  .proof-card.editorial-module {
    width: 100%;
    padding-bottom: 24px;
  }
  .editorial-module-media {
    margin-bottom: 18px;
    border-radius: 9px;
  }
  .manifesto-card.editorial-module h3,
  .protocol-step.editorial-module h3 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }
  .proof-card.editorial-module .editorial-module-marker {
    font-size: clamp(3rem, 15vw, 4rem);
  }
  .proof-card.editorial-module span {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }
  .luxury-header { min-height: 76px; padding-inline: 12px; }
  .luxury-header .brand-name { font-size: .52rem; }
  .fullscreen-menu { padding: 100px 20px 25px; }
  .fullscreen-menu__index { display: none; }
  .fullscreen-menu__links { justify-content: center; }
  .fullscreen-menu__links a { padding: 3px 0; font-size: clamp(3.1rem, 15vw, 4.6rem); }
  .editorial-experience { padding: var(--section-space) 0; }
  .editorial-intro h2 { font-size: clamp(2.15rem, 10.5vw, 3rem); }
  .editorial-intro > p:last-child { font-size: .88rem; line-height: 1.5; }
  .experience-toolbar { margin-top: 20px; }
  .editorial-tabs { gap: 24px; }
  .editorial-tab { min-height: 40px; padding-bottom: 11px; font-size: .96rem; }
  .editorial-stage { padding-top: 16px; }
  .experience-controls { display: none; }
  html[data-theme="light"] .experience-carousel {
    scroll-snap-type: x proximity;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }
  .experience-card { flex-basis: 82%; }
  .experience-card__copy { inset: auto 16px 16px; }
  .experience-card__copy strong { font-size: clamp(1.9rem, 10vw, 2.65rem); }
  .experience-card__index { top: 15px; right: 15px; }
}

@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
