:root {
  --ink: #f2efe8;
  --ink-soft: rgba(242, 239, 232, 0.68);
  --ink-muted: rgba(242, 239, 232, 0.42);
  --bg: #060c16;
  --bg-2: #091321;
  --bg-3: #0d1a30;
  --card: #0e1929;
  --card-border: rgba(255,255,255,0.08);
  --blue: #4a6fff;
  --blue-glow: rgba(74,111,255,0.35);
  --gold: #c9a96e;
  --gold-soft: rgba(201,169,110,0.2);
  --teal: #4ecdc4;
  --teal-soft: rgba(78,205,196,0.2);
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1340px;
  --pad: 28px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html[data-theme="light"] {
  --ink: #101826;
  --ink-soft: rgba(16,24,38,0.72);
  --ink-muted: rgba(16,24,38,0.46);
  --bg: #eff3f8;
  --bg-2: #ffffff;
  --bg-3: #e8eef7;
  --card: #ffffff;
  --card-border: rgba(16,24,38,0.08);
  --blue-glow: rgba(74,111,255,0.16);
  --gold-soft: rgba(201,169,110,0.14);
  --teal-soft: rgba(78,205,196,0.14);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Custom cursor */
.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.5);
  z-index: 9998;
  transition: transform .18s var(--ease), width .3s, height .3s, border-color .3s;
}

.cursor-ring.expanded {
  width: 56px;
  height: 56px;
  border-color: var(--blue);
}

html.has-custom-cursor body {
  cursor: none;
}

.no-custom-cursor body {
  cursor: auto;
}

.no-custom-cursor .cursor,
.no-custom-cursor .cursor-ring {
  display: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  background: rgba(6,12,22,.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .4s ease, border-color .4s ease;
}

html[data-theme="light"] .site-header {
  background: rgba(255,255,255,.82);
  border-color: rgba(16,24,38,.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .15em;
}

.brand-eye {
  width: 36px;
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: 36px;
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  align-items: center;
}

.main-nav a {
  color: var(--ink-soft);
  transition: color .25s;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta,
.theme-toggle,
.locale-trigger {
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,.35);
  background: rgba(6,12,22,.18);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

html[data-theme="light"] .header-cta,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .locale-trigger {
  background: rgba(255,255,255,.55);
}

.header-cta {
  padding: 0 24px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.theme-toggle,
.locale-trigger {
  width: 46px;
}

.theme-toggle:hover,
.locale-trigger:hover,
.header-cta:hover {
  background: var(--gold);
  color: #08111f;
}

.theme-toggle__icon {
  font-size: 1rem;
}

.locale-picker {
  position: relative;
}

.locale-menu {
  position: absolute;
  top: 56px;
  right: 0;
  min-width: 160px;
  padding: 8px;
  background: rgba(6,12,22,.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  display: none;
  box-shadow: 0 16px 32px rgba(0,0,0,.25);
}

html[data-theme="light"] .locale-menu {
  background: rgba(255,255,255,.98);
  border-color: rgba(16,24,38,.08);
}

.locale-picker.open .locale-menu {
  display: block;
}

.locale-option {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--ink);
  font: 600 .82rem var(--font-body);
  cursor: pointer;
}

.locale-option:hover,
.locale-option.is-active {
  background: rgba(74,111,255,.14);
  color: var(--blue);
}

.locale-trigger svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(6,12,22,.98);
  padding: 100px var(--pad) var(--pad);
}

html[data-theme="light"] .mobile-nav {
  background: rgba(255,255,255,.98);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a,
.mobile-nav .mobile-locale {
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid var(--card-border);
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: .05em;
  background: none;
  text-align: left;
  color: var(--ink-soft);
}

.mobile-cta {
  color: var(--gold) !important;
  border-bottom: none !important;
}

/* Hero */
.hero-grid {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  background: var(--bg);
  padding-top: 86px;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6,12,22,.24) 0%, rgba(6,12,22,.1) 34%, rgba(6,12,22,.68) 82%, var(--bg) 100%),
    linear-gradient(90deg, rgba(6,12,22,.52) 0%, rgba(6,12,22,.08) 28%, rgba(6,12,22,.04) 72%, rgba(6,12,22,.38) 100%);
}

html[data-theme="light"] .hero-grid::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.04) 36%, rgba(239,243,248,.42) 82%, var(--bg) 100%),
    linear-gradient(90deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,.04) 28%, rgba(255,255,255,.02) 72%, rgba(255,255,255,.24) 100%);
}

/* HERO — PARALLAX EN 4 COLONNES */
.hero-columns {
  position: absolute;
  inset: 86px 0 0 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.hero-column {
  position: relative;
  overflow: hidden;
}

.hero-column-bg {
  position: absolute;
  left: 0;
  top: -8vh;
  width: 400%;
  height: calc(100% + 16vh);
  background-image:
    linear-gradient(180deg, rgba(6,12,22,.16) 0%, rgba(6,12,22,.05) 34%, rgba(6,12,22,.32) 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);
}

.hero-column::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 24%, rgba(0,0,0,.14) 100%);
  box-shadow: inset -1px 0 0 rgba(255,255,255,.09), inset 1px 0 0 rgba(255,255,255,.05);
  pointer-events: none;
}

.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%; }

html[data-theme="light"] .hero-column-bg {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 36%, rgba(239,243,248,.22) 100%),
    url('assets/img/hero-2.jpeg');
}

html[data-theme="light"] .hero-column::after {
  background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.03) 24%, rgba(16,24,38,.05) 100%);
  box-shadow: inset -1px 0 0 rgba(16,24,38,.08), inset 1px 0 0 rgba(255,255,255,.18);
}

@media (max-width: 900px) {
  .hero-columns {
    inset: 82px 0 0 0;
  }

  .hero-column-bg {
    top: -6vh;
    height: calc(100% + 12vh);
  }
}

.hero-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 145px var(--pad) 80px;
  max-width: var(--max);
  margin: 0 auto;
  left: 0;
  right: 0;
}

.hero-eyebrow {
  font-size: .74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 13rem);
  line-height: .88;
  letter-spacing: -.01em;
  color: var(--ink);
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--gold);
}

.hero-drinks-nav {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hdn-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-soft);
}

.hdn-item:hover,
.hdn-item.active {
  color: var(--ink);
}

.hdn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mental-dot {
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}

.recovery-dot {
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal-soft);
}

.focus-dot {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-soft);
}

.hero-bottom {
  position: absolute;
  bottom: 60px;
  left: var(--pad);
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 280px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--blue), #2a4fd4);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  box-shadow: 0 12px 32px rgba(74,111,255,.28);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: var(--pad);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.5); opacity: .5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  background: #060d1a;
  border-top: 1px solid rgba(201,169,110,.15);
  border-bottom: 1px solid rgba(201,169,110,.15);
  padding: 14px 0;
}

html[data-theme="light"] .ticker-wrap {
  background: #f6f9fd;
  border-color: rgba(16,24,38,.08);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .12em;
  color: var(--ink-muted);
}

.ticker-sep {
  color: var(--gold);
  opacity: .6;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Video section */
.video-section {
  position: relative;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  min-height: 520px;
  overflow: hidden;
  background: var(--bg-2);
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,12,22,.4) 0%, transparent 30%, transparent 60%, rgba(6,12,22,.9) 100%),
    linear-gradient(90deg, rgba(6,12,22,.5) 0%, transparent 50%);
}

html[data-theme="light"] .video-vignette {
  background:
    linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 34%, transparent 64%, rgba(239,243,248,.44) 100%),
    linear-gradient(90deg, rgba(255,255,255,.18) 0%, transparent 50%);
}

.video-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.vc-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 8px;
}

.vc-body {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

.vc-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .9;
  letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,239,232,.4);
  text-align: right;
}

.audio-toggle {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(201,169,110,.35);
  border-radius: 999px;
  background: rgba(6,12,22,.58);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font: 600 .72rem var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.audio-toggle.is-on {
  background: rgba(74,111,255,.22);
  border-color: rgba(74,111,255,.45);
}

/* Sections */
.brand-section,
.contact-section,
.cans-hero,
.logo-marquee-section {
  padding: 120px var(--pad);
}

.brand-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.brand-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--gold);
  margin-bottom: 20px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 28px;
}

.brand-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.brand-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 480px;
}

.brand-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.bstat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
}

.bstat span {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-muted);
  margin-top: 6px;
  display: block;
}

.brand-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}

.brand-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-media-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: rgba(6,12,22,.7);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,110,.3);
}

.brand-media-badge svg {
  width: 30px;
  color: var(--gold);
}

.logo-marquee-section {
  padding-top: 64px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}

.logo-marquee-head {
  max-width: var(--max);
  margin: 0 auto 28px;
}

.logo-marquee-copy {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.logo-marquee-wrap {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,.14);
  border-bottom: 1px solid rgba(201,169,110,.14);
  padding: 18px 0;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  animation: logoTicker 42s linear infinite;
}

.logo-marquee-wrap:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-chip {
  height: 64px;
  min-width: 180px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo-chip img {
  max-height: 26px;
  max-width: 118px;
  filter: grayscale(1) brightness(1.65);
  opacity: .95;
}

.logo-chip span {
  display: none;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-soft);
  white-space: nowrap;
}

.logo-chip span[style*="inline-flex"] {
  display: inline-flex;
}

.logo-chip:has(span[style*="inline-flex"]) {
  min-width: 220px;
}

@keyframes logoTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Cans */
.cans-hero {
  position: relative;
  overflow: hidden;
}

.cans-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74,111,255,.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(78,205,196,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}

.cans-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}

.cans-intro {
  margin-bottom: 80px;
}

.section-label.light {
  color: var(--gold);
}

.cans-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .92;
  margin-bottom: 16px;
}

.cans-sub {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}

.cans-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.can-feature {
  position: relative;
  padding: 48px 40px;
  border-radius: 32px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.can-feature:hover {
  transform: translateY(-6px);
}

.mental-can {
  background: linear-gradient(135deg, rgba(14,25,41,.9) 0%, rgba(10,18,35,.95) 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(74,111,255,.15);
}

.calm-can {
  background: linear-gradient(135deg, rgba(14,25,41,.9) 0%, rgba(10,20,30,.95) 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(78,205,196,.12);
}

.can-aura {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.mental-aura {
  background: radial-gradient(circle, rgba(74,111,255,.25) 0%, transparent 75%);
}

.calm-aura {
  background: radial-gradient(circle, rgba(78,205,196,.2) 0%, transparent 72%);
}

.can-img-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.can-img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
}

.can-info {
  position: relative;
  z-index: 2;
  flex: 1;
}

.can-badge {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}

.mental-badge {
  background: rgba(74,111,255,.18);
  color: #a0b3ff;
}

.calm-badge {
  background: rgba(78,205,196,.18);
  color: #a0e8e4;
}

.can-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: .95;
  margin-bottom: 8px;
}

.can-info > p {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.can-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.can-benefits li {
  font-size: .88rem;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}

.can-benefits li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .72rem;
}

.can-cta {
  display: inline-flex;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 11px 22px;
  border-radius: 999px;
  color: #fff;
}

.mental-cta {
  background: linear-gradient(135deg, var(--blue), #2a4fd4);
}

.calm-cta {
  background: linear-gradient(135deg, var(--teal), #2aa9a2);
  color: #091321;
}

/* Contact */
.contact-section {
  text-align: center;
  border-top: 1px solid var(--card-border);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .9;
  margin-bottom: 20px;
}

.contact-sub {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-row {
  display: flex;
  width: 100%;
  max-width: 500px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.form-input {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--ink);
}

.form-btn {
  padding: 16px 28px;
  background: var(--gold);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #091321;
  cursor: pointer;
}

.form-note {
  font-size: .72rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* Footer */
.site-footer {
  background: #040810;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 64px var(--pad);
}

html[data-theme="light"] .site-footer {
  background: #f6f9fd;
  border-color: rgba(16,24,38,.08);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-eye {
  width: 44px;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-brand > span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .15em;
}

.footer-brand p,
.footer-legal {
  font-size: .72rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-nav a {
  color: var(--ink-muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .14s; }
.delay-2 { transition-delay: .26s; }
.delay-3 { transition-delay: .38s; }

/* Responsive */
@media (max-width: 1100px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .cans-duo {
    grid-template-columns: 1fr;
  }

  .hero-drinks-nav {
    position: static;
    transform: none;
    flex-direction: row;
    margin-top: 24px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .main-nav,
  .header-cta,
  .locale-picker,
  .theme-toggle {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 5rem;
  }

  .video-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .can-feature {
    flex-direction: column;
    text-align: center;
  }

  .can-benefits {
    align-items: center;
  }

  .can-benefits li {
    padding-left: 0;
  }

  .can-benefits li::before {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 18px;
  }

  .hero-grid {
    min-height: 680px;
    height: auto;
  }

  .hero-split-perfect {
    inset: 86px 0 0 0;
  }

  .hero-title {
    font-size: 3.9rem;
  }

  .hero-overlay-content {
    padding-top: 132px;
  }

  .audio-toggle {
    right: 18px;
    top: 18px;
    padding: 10px 14px;
    font-size: .66rem;
  }

  .logo-chip {
    min-width: 160px;
    height: 56px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  .menu-toggle,
  .form-btn,
  .theme-toggle,
  .locale-trigger,
  .audio-toggle,
  .locale-option {
    cursor: pointer;
  }
}

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

/* =========================
   DESIGN DU MEGA MENU (OVERLAY)
========================= */
.nav-item-dropdown {
  position: relative; /* Référence pour le positionnement du menu */
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.6em;
  transition: transform 0.3s var(--ease);
}

/* Le menu "flotte" par-dessus le site */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 420px;
  margin-top: 30px;
  padding: 30px;
  
  /* Transparence et flou (Glassmorphism) */
  background: rgba(6, 12, 22, 0.85); 
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  
  /* État caché */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 1000;
}

/* Affichage quand actif */
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu.active ~ .nav-dropdown-trigger .dropdown-arrow,
.nav-item-dropdown:has(.mega-menu.active) .dropdown-arrow {
  transform: rotate(180deg);
}

/* Layout des boissons */
.menu-products {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.menu-product {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  transition: transform 0.3s var(--ease);
}

.menu-product:hover {
  transform: translateY(-8px);
}

.menu-product img {
  height: 160px; /* Taille des canettes dans le menu */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.menu-product span {
  font-family: var(--font-display); /* Bebas Neue */
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--ink) !important;
  text-transform: uppercase;
}

/* Adaptation mode clair */
html[data-theme="light"] .mega-menu {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ==========================================================================
   SECTION MARQUE (PHOTO) & AMBASSADEURS (FULL WIDTH)
   ========================================================================== */

/* 1. MISE À JOUR PHOTO DE LA MARQUE */
.brand-image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  /* Optionnel : petit effet premium */
  filter: saturate(0.9) contrast(1.05);
}

/* 2. SECTION AMBASSADEURS */
.ambassadors-section {
  width: 100%;
  background: var(--bg);
  padding: 0; /* On veut toucher les bords de l'écran */
}

.ambassador-row {
  display: flex;
  width: 100%;
  min-height: 42vh;
  border-bottom: 1px solid var(--card-border);
}

/* On inverse l'ordre Photo/Texte un rang sur deux */
.ambassador-row:nth-child(even) {
  flex-direction: row-reverse;
}

.amb-image {
  flex: 1;
  overflow: hidden;
}

.amb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.ambassador-row:hover .amb-image img {
  transform: scale(1.05);
}

.amb-content {
  flex: 1;
  padding: 34px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}

.amb-name {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 0.85;
  margin: 14px 0 18px;
  color: var(--ink);
}

.amb-bio {
  max-width: 540px;
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--ink-soft);
}

/* Responsive Tablettes / Mobiles */
@media (max-width: 900px) {
  .ambassador-row, .ambassador-row:nth-child(even) {
    flex-direction: column; /* On empile la photo et le texte sur mobile */
  }
  .amb-image { 
    height: 34vh; 
    width: 100%; 
  }
  .amb-content {
    padding: 34px var(--pad);
  }
}


/* ===== FIXES PREMIUM ===== */
.calm-dot {
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal-soft);
}

.logo-chip.has-logo {
  padding-left: 20px;
  padding-right: 20px;
}

.logo-chip.has-logo span {
  display: inline-flex;
}

.science-section {
  padding: 68px var(--pad);
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.science-inner,
.order-anchor-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.science-copy {
  max-width: 620px;
  margin-bottom: 22px;
}

.science-title,
.order-anchor-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: .92;
  margin-bottom: 16px;
}

.science-title em,
.order-anchor-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.science-text,
.order-anchor-text {
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.72;
  max-width: 660px;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.science-card {
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 22px;
  min-height: 210px;
}

html[data-theme="light"] .science-card {
  background: rgba(255,255,255,.72);
}

.science-card-kicker {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 18px;
}

.science-card h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1;
  margin-bottom: 10px;
}

.science-card p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.68;
}

.order-anchor-section {
  padding: 100px var(--pad);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.order-anchor-inner {
  text-align: center;
}

.order-anchor-title {
  margin-bottom: 18px;
}

.order-anchor-text {
  margin: 0 auto 28px;
}

.order-anchor-cta {
  min-width: 180px;
}

.mobile-nav .mobile-locale {
  cursor: pointer;
}

@media (max-width: 1100px) {
  .science-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header.menu-open {
    background: rgba(6,12,22,.98);
  }

  html[data-theme="light"] .site-header.menu-open {
    background: rgba(255,255,255,.98);
  }
}

@media (max-width: 640px) {
  .science-section,
  .order-anchor-section {
    padding: 84px var(--pad);
  }

  .science-card {
    min-height: unset;
    padding: 24px;
  }
}


/* ===== V11 FIX — colonnes droites + tailles réduites ===== */
.hero-grid { isolation: isolate; }
.hero-columns { z-index: 1; }
.hero-overlay-content, .scroll-indicator { z-index: 3; }
.amb-content .section-label { margin-bottom: 10px; }
.science-card-kicker { margin-bottom: 12px; }
@media (max-width: 900px) {
  .amb-name { font-size: clamp(1.8rem, 8vw, 3rem); }
  .science-grid { grid-template-columns: 1fr; }
  .science-title, .order-anchor-title { font-size: clamp(2rem, 9vw, 3rem); }
}


/* ===== COHERENCE FIXES APRIL 2026 ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  gap: 20px;
}

.brand {
  justify-self: start;
  min-width: 0;
}

.main-nav {
  justify-self: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.header-right {
  justify-self: end;
}

.hero-grid {
  min-height: 100svh;
}

.hero-overlay-content {
  width: min(100%, var(--max));
}

.hero-title {
  max-width: 8.5ch;
}

.amb-content {
  padding: 28px var(--pad);
}

.amb-content .section-label {
  font-size: .64rem;
  letter-spacing: .22em;
}

.amb-name {
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: .95;
  margin: 10px 0 14px;
}

.amb-bio {
  max-width: 560px;
  font-size: .84rem;
  line-height: 1.62;
}

.science-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

.science-title,
.order-anchor-title {
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: .96;
}

.science-text,
.order-anchor-text {
  font-size: .84rem;
  line-height: 1.64;
}

.science-card {
  min-height: 0;
  padding: 20px;
}

.science-card-kicker {
  font-size: .62rem;
}

.science-card h3 {
  font-size: 1.12rem;
  line-height: 1.04;
}

.science-card p {
  font-size: .84rem;
  line-height: 1.56;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(160px,1fr) auto minmax(160px,1fr);
    gap: 14px;
    padding-inline: 18px;
  }

  .main-nav {
    gap: 22px;
    font-size: .72rem;
    letter-spacing: .14em;
  }

  .brand {
    font-size: 1.18rem;
    letter-spacing: .11em;
  }

  .brand-eye {
    width: 30px;
  }

  .header-right {
    gap: 10px;
  }

  .header-cta,
  .theme-toggle,
  .locale-trigger {
    height: 42px;
  }

  .theme-toggle,
  .locale-trigger {
    width: 42px;
  }

  .header-cta {
    padding: 0 18px;
    font-size: .72rem;
  }

  .hero-title {
    font-size: clamp(5rem, 11vw, 8.2rem);
  }

  .hero-drinks-nav {
    right: 18px;
  }

  .hero-tagline {
    font-size: 1.12rem;
    max-width: 240px;
  }
}

@media (max-width: 1024px) {
  .hero-overlay-content {
    padding-top: 128px;
  }

  .hero-drinks-nav {
    gap: 14px;
  }

  .hdn-item {
    font-size: .7rem;
    letter-spacing: .12em;
  }
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .hero-overlay-content {
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .hero-title {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .amb-name {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .amb-bio,
  .science-card p,
  .science-text,
  .order-anchor-text {
    font-size: .9rem;
  }
}
