/* =========================================================
   Mansfeld — Homepage
   Layered on top of styles/tokens.css
   ========================================================= */

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--mf-ink);
  color: var(--mf-paper);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Thin hairline mixin via pseudo-class */
.hair {
  background: linear-gradient(90deg, transparent, var(--mf-gold) 50%, transparent);
  height: 1px;
  width: 100%;
}

/* ===================== TOP BAR =====================
   Floating capsule (pill) — self-contained dark frosted glass,
   always legible on any background. Zero-JS solution.
   The .is-light / .is-scrolled rules below are preserved so the
   JS-adaptive mode (scripts/nav.js) can still be re-enabled if
   wanted — they are no-op when those classes are never toggled.
   ==================================================== */
.topbar {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 10px 14px;
  gap: 20px;
  background: rgba(12, 10, 8, 0.56);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(176, 138, 62, 0.22);
  border-radius: 64px;
  box-shadow:
    0 14px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--mf-paper);
  --topbar-fg: var(--mf-paper);
  --topbar-fg-dim: var(--mf-paper-3);
  --topbar-accent: var(--mf-gold-light);
  --topbar-hair: rgba(176, 138, 62, 0.3);
  transition:
    background var(--t-med) var(--ease-out),
    border-color var(--t-med) var(--ease-out),
    box-shadow var(--t-med) var(--ease-out),
    color var(--t-med) var(--ease-out);
}
/* Kept for JS-adaptive fallback (scripts/nav.js) — see file header */
.topbar.is-scrolled {
  background: rgba(12, 10, 8, 0.68);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.topbar.is-light {
  background: rgba(245, 241, 234, 0.74);
  border-color: rgba(138, 106, 42, 0.26);
  box-shadow:
    0 14px 42px rgba(10, 8, 6, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  --topbar-fg: var(--mf-ink);
  --topbar-fg-dim: var(--mf-ink-3);
  --topbar-accent: var(--mf-gold-deep);
  --topbar-hair: rgba(138, 106, 42, 0.28);
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--topbar-fg);
  transition: color var(--t-med) var(--ease-out);
}
.topbar__brand img {
  height: 40px;
  width: auto;
}
.topbar__brand-text {
  line-height: 1;
}
.topbar__brand-text .w {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.34em;
  font-weight: 600;
  background: var(--foil-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.topbar__brand-text .s {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--topbar-fg-dim);
  margin-top: 6px;
  transition: color var(--t-med) var(--ease-out);
}

.topbar__nav {
  display: flex;
  gap: 26px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.topbar__link {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--topbar-fg-dim);
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--t-fast);
}
.topbar__link:hover {
  color: var(--topbar-accent);
}
.topbar__link.is-active {
  color: var(--topbar-accent);
}

/* Burger (hidden on desktop) */
.topbar__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--topbar-hair);
  color: var(--topbar-fg);
  cursor: pointer;
  width: 40px;
  height: 36px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition:
    border-color var(--t-fast),
    color var(--t-fast);
}
.topbar__burger:hover {
  border-color: var(--topbar-accent);
  color: var(--topbar-accent);
}

@media (max-width: 1280px) {
  .topbar__nav {
    gap: 18px;
  }
  .topbar__link {
    font-size: 13.5px;
    letter-spacing: 0.2em;
  }
  .topbar__lang {
    display: none;
  }
  .topbar__brand-text .s {
    display: none;
  }
}
@media (max-width: 1120px) {
  .topbar__brand-text { display: none; }
  .topbar__burger { display: inline-flex; margin-left: auto; order: 10; }
  .topbar__nav { display: none; }
}
@media (max-width: 640px) {
  .topbar {
    top: 12px;
    left: 12px;
    right: 12px;
    padding: 8px 10px 8px 12px;
    gap: 10px;
  }
  .topbar__brand img {
    height: 34px;
  }
  .topbar__cta {
    padding: 9px 16px;
    font-size: 11px;
    letter-spacing: 0.28em;
  }
}

.topbar__lang {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--topbar-fg-dim);
  white-space: nowrap;
  transition: color var(--t-med) var(--ease-out);
}
.topbar__lang b {
  color: var(--topbar-accent);
  font-weight: 600;
}
.topbar__icon {
  color: var(--topbar-fg-dim);
  font-size: 22px;
  cursor: pointer;
  transition: color var(--t-fast);
}
.topbar__icon:hover {
  color: var(--topbar-accent);
}
.topbar__cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mf-ink);
  background: var(--foil-gold);
  padding: 9px 18px 9px 14px;
  border: 1px solid var(--mf-gold-light);
  border-radius: 999px;
  cursor: pointer;
  transition: filter var(--t-fast), gap var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.topbar__cta i { font-size: 16px; line-height: 1; }
.topbar__cta:hover {
  filter: brightness(1.08);
  gap: 12px;
}

/* ===================== E-SHOP FAB (floating CTA) =====================
   Injecté par scripts/menu.js sur toutes les pages. Position bas-gauche
   (la stops rail occupe la droite — pas de conflit). Apparaît après
   200px de scroll, se masque au top.
   ===================================================================== */
.eshop-fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 75;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--foil-gold);
  color: var(--mf-ink);
  border: 1px solid var(--mf-gold-light);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(176,138,62,0.32),
              0 2px 6px rgba(0,0,0,0.18);
  transition: transform var(--t-med) var(--ease-out),
              opacity var(--t-med),
              box-shadow var(--t-med),
              gap var(--t-fast),
              filter var(--t-fast);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
}
.eshop-fab.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.eshop-fab:hover {
  filter: brightness(1.06);
  gap: 16px;
  box-shadow: 0 16px 40px rgba(176,138,62,0.42),
              0 2px 8px rgba(0,0,0,0.22);
}
.eshop-fab__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: rgba(26,22,19,0.12);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  position: relative;
}
.eshop-fab__icon::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(26,22,19,0.18);
  animation: eshop-fab-pulse 2.6s ease-in-out infinite;
}
@keyframes eshop-fab-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.18); opacity: 0; }
}
.eshop-fab__arrow {
  font-size: 14px; line-height: 1;
  transition: transform var(--t-fast);
}
.eshop-fab:hover .eshop-fab__arrow { transform: translateX(2px); }

/* Responsive : un peu plus compact sur mobile, ne pas masquer */
@media (max-width: 680px) {
  .eshop-fab {
    left: 14px; bottom: 14px;
    padding: 12px 18px 12px 14px;
    font-size: 10.5px; letter-spacing: 0.28em; gap: 10px;
  }
  .eshop-fab__icon { width: 26px; height: 26px; font-size: 16px; }
  .eshop-fab__label-long { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .eshop-fab__icon::after { animation: none; }
}

/* ===================== MEGA MENU (full-screen overlay) =====================
   Injected by scripts/menu.js on every page. The standard `.topbar__nav`
   serves as the link source; the overlay renders a richer editorial layout.
   ======================================================================= */
.mega-menu {
  position: fixed; inset: 0; z-index: 100;
  background: radial-gradient(ellipse at 20% 30%, rgba(207,175,102,0.10), transparent 55%),
              radial-gradient(ellipse at 85% 85%, rgba(176,138,62,0.08), transparent 55%),
              linear-gradient(180deg, #1E4A34 0%, #143623 50%, #0E2A1B 100%);
  color: var(--mf-paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms var(--ease-out), visibility 0s linear 420ms;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 38px 48px 40px;
  overflow-y: auto;
}
.mega-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 420ms var(--ease-out), visibility 0s linear 0s;
}
.mega-menu::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay; pointer-events: none; opacity: 0.7;
}
.mega-menu__knight {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  height: 108%; width: auto; max-width: none;
  opacity: 0.15;
  filter: grayscale(0.6) contrast(1.1) brightness(1.15);
  mix-blend-mode: screen;
  mask-image: linear-gradient(270deg, black 0%, black 40%, transparent 95%);
  -webkit-mask-image: linear-gradient(270deg, black 0%, black 40%, transparent 95%);
  pointer-events: none;
}
.mega-menu__close {
  position: absolute; top: 28px; right: 40px;
  background: transparent; border: none;
  color: var(--mf-paper); cursor: pointer;
  width: 52px; height: 52px;
  padding: 0;
  transition: color 220ms ease, transform 360ms var(--ease-out);
  z-index: 2;
}
.mega-menu__close svg {
  width: 100%; height: 100%;
  color: inherit;
  transition: transform 480ms var(--ease-out);
}
.mega-menu__close:hover { color: var(--mf-gold-light); }
.mega-menu__close:hover svg { transform: rotate(90deg); }

.mega-menu__header {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(176,138,62,0.2);
  max-width: 1200px; margin: 0 auto 24px; width: 100%;
}
.mega-menu__logo { height: 46px; width: auto; }
.mega-menu__wordmark {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: 0.38em; line-height: 1;
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mega-menu__est {
  margin-left: 18px; padding-left: 18px;
  border-left: 1px solid rgba(176,138,62,0.3);
  font-family: var(--font-subhead); font-style: italic;
  font-size: 14.5px; color: var(--mf-paper-3);
}

.mega-menu__nav {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  align-self: center;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mega-menu__link {
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: baseline;
  gap: 28px;
  padding: 18px 8px;
  text-decoration: none;
  border-top: 1px solid rgba(176,138,62,0.12);
  transition: background 300ms var(--ease-out), padding 300ms var(--ease-out);
  opacity: 0;
  transform: translateY(14px);
}
.mega-menu__link:last-child { border-bottom: 1px solid rgba(176,138,62,0.12); }
.mega-menu.is-open .mega-menu__link {
  opacity: 1; transform: none;
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out),
              background 300ms var(--ease-out), padding 300ms var(--ease-out);
}
.mega-menu.is-open .mega-menu__link:nth-child(1) { transition-delay: 120ms, 120ms, 0s, 0s; }
.mega-menu.is-open .mega-menu__link:nth-child(2) { transition-delay: 180ms, 180ms, 0s, 0s; }
.mega-menu.is-open .mega-menu__link:nth-child(3) { transition-delay: 240ms, 240ms, 0s, 0s; }
.mega-menu.is-open .mega-menu__link:nth-child(4) { transition-delay: 300ms, 300ms, 0s, 0s; }
.mega-menu.is-open .mega-menu__link:nth-child(5) { transition-delay: 360ms, 360ms, 0s, 0s; }
.mega-menu.is-open .mega-menu__link:nth-child(6) { transition-delay: 420ms, 420ms, 0s, 0s; }
.mega-menu.is-open .mega-menu__link:nth-child(7) { transition-delay: 480ms, 480ms, 0s, 0s; }

.mega-menu__link:hover { background: rgba(176,138,62,0.07); padding-left: 20px; }
.mega-menu__link .n {
  font-family: var(--font-display); font-style: italic;
  font-size: 17px; color: #CFAF66;
  letter-spacing: 0.08em;
}
.mega-menu__link .t {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 5.6vw, 76px); line-height: 1;
  color: var(--mf-paper);
  letter-spacing: -0.005em;
  transition: color 260ms ease, transform 360ms var(--ease-out);
}
.mega-menu__link:hover .t {
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mega-menu__link .d {
  font-family: var(--font-subhead); font-style: italic;
  font-size: 16px; color: var(--mf-paper-3);
  letter-spacing: 0.02em;
  max-width: 26ch; text-align: right;
}
.mega-menu__link.is-current .t {
  background: var(--foil-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}
.mega-menu__link.is-current .n { color: var(--mf-gold-light); }

.mega-menu__footer {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 24px auto 0; width: 100%;
  padding-top: 26px;
  border-top: 1px solid rgba(176,138,62,0.2);
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 32px; align-items: end;
}
.mega-menu__block .k {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: #CFAF66; margin-bottom: 10px;
}
.mega-menu__block .v,
.mega-menu__block a {
  display: block;
  font-family: var(--font-subhead); font-style: italic;
  font-size: 16px; line-height: 1.5;
  color: var(--mf-paper); text-decoration: none;
  transition: color 180ms ease;
}
.mega-menu__block a:hover { color: var(--mf-gold-light); }

.mega-menu__lang {
  display: flex; gap: 14px;
  font-family: var(--font-body); font-size: 13px;
  letter-spacing: 0.32em;
}
.mega-menu__lang span {
  color: var(--mf-paper-3); cursor: pointer;
  transition: color 180ms ease;
}
.mega-menu__lang span:hover { color: var(--mf-gold-light); }
.mega-menu__lang b { color: var(--mf-gold-light); font-weight: 600; }

.mega-menu__socials {
  display: flex; gap: 16px; font-size: 22px;
  color: var(--mf-paper-3);
}
.mega-menu__socials i { cursor: pointer; transition: color 180ms ease; }
.mega-menu__socials i:hover { color: var(--mf-gold-light); }

.mega-menu__motto {
  font-family: var(--font-subhead); font-style: italic;
  font-size: 15px; color: var(--mf-paper-3);
  text-align: right;
}
.mega-menu__motto em { color: var(--mf-gold-light); font-style: italic; }

@media (max-width: 900px) {
  .mega-menu { padding: 28px 24px 32px; }
  .mega-menu__close { top: 22px; right: 20px; width: 44px; height: 44px; }
  .mega-menu__header { padding-bottom: 20px; margin-bottom: 14px; }
  .mega-menu__logo { height: 38px; }
  .mega-menu__wordmark { font-size: 18px; letter-spacing: 0.32em; }
  .mega-menu__est { display: none; }
  .mega-menu__link {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 18px;
    padding: 14px 4px;
  }
  .mega-menu__link .n { grid-row: 1; grid-column: 1; }
  .mega-menu__link .t { grid-row: 1; grid-column: 2; font-size: clamp(30px, 8vw, 48px); }
  .mega-menu__link .d { grid-column: 2; grid-row: 2; text-align: left; max-width: none; font-size: 15px; }
  .mega-menu__footer {
    grid-template-columns: 1fr 1fr; gap: 20px 24px;
    margin-top: 18px; padding-top: 20px;
  }
  .mega-menu__motto {
    grid-column: 1 / -1; text-align: left;
    padding-top: 6px; border-top: 1px dashed rgba(176,138,62,0.2);
  }
}
@media (max-width: 480px) {
  .mega-menu__link .t { font-size: clamp(28px, 9vw, 42px); }
  .mega-menu__footer { grid-template-columns: 1fr; }
}

/* ===================== STOPS RAIL (Sapporo-style) ===================== */
.stops {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 14px;
  --stops-fg: var(--mf-paper-3);
  --stops-fg-active: var(--mf-gold);
  --stops-line: rgba(176, 138, 62, 0.3);
  --stops-dot-bg: var(--mf-ink);
  --stops-dot-border: var(--mf-silver-deep);
  color: var(--stops-fg);
  transition: color var(--t-med);
}
.stops.is-light {
  --stops-fg: var(--mf-ink-3);
  --stops-fg-active: var(--mf-gold-deep);
  --stops-line: rgba(138, 106, 42, 0.35);
  --stops-dot-bg: var(--mf-paper);
  --stops-dot-border: var(--mf-gold-deep);
}
.stops::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--stops-line);
  transform: translateX(-0.5px);
}
.stop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: var(--stops-fg);
  justify-content: flex-end;
}
.stop__label {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(6px);
  transition:
    opacity var(--t-med) var(--ease-out),
    transform var(--t-med) var(--ease-out),
    color var(--t-fast);
  white-space: nowrap;
}
.stop__num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--stops-fg-active);
  opacity: 0.7;
}
.stop__dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--stops-dot-bg);
  border: 1px solid var(--stops-dot-border);
  transition: all var(--t-med) var(--ease-out);
}
.stop:hover .stop__label {
  opacity: 1;
  transform: translateX(0);
  color: var(--stops-fg-active);
}
.stop:hover .stop__dot {
  border-color: var(--stops-fg-active);
}
.stop.is-active .stop__dot {
  background: var(--mf-gold);
  border-color: var(--mf-gold-light);
  box-shadow: 0 0 0 4px rgba(176, 138, 62, 0.18);
}
.stop.is-active .stop__label {
  opacity: 1;
  transform: translateX(0);
  color: var(--stops-fg-active);
}
.stop.is-active .stop__num {
  color: var(--mf-gold);
  opacity: 1;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--mf-ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* The split: left ink / right green */
.hero__split {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 0;
}
.hero__split .pane {
  position: relative;
}
.hero__split .pane--l {
  background: #0f0d0b;
}
.hero__split .pane--r {
  background: linear-gradient(180deg, #1e4a34 0%, #143623 60%, #0e2a1b 100%);
}
.hero__split .pane--l::after,
.hero__split .pane--r::after {
  /* subtle grain */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.55) 95%);
  pointer-events: none;
}
.hero__knight-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.hero__knight {
  height: 92%;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  filter: grayscale(1) contrast(1.05) brightness(1.05);
  opacity: 0.72;
  mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  padding: 0 80px;
  text-align: center;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--mf-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.hero__eyebrow .dot {
  color: var(--mf-gold);
}

.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(80px, 14vw, 230px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--mf-paper);
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.02em;
  text-transform: none;
}
.hero__wordmark .ch {
  display: inline-block;
  background: var(--foil-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 34px rgba(176, 138, 62, 0.22));
}

.hero__attrib {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
}
.hero__attrib .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.02em;
  color: var(--mf-paper);
}
.hero__attrib .desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mf-gold-light);
}

.hero__motto {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 54px;
  text-align: center;
  z-index: 4;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--mf-paper-3);
}
.hero__motto em {
  font-style: normal;
  color: var(--mf-gold-light);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 130px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--mf-gold-light);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.hero__scroll .line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent 0%, var(--mf-gold) 100%);
}

/* Heritage dates strip — now sits above the eyebrow, inside hero__content */
.hero__dates {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5em;
  color: var(--mf-gold-light);
  opacity: 0.75;
}
.hero__dates .sep {
  color: var(--mf-gold);
  opacity: 0.6;
}

/* Side-brackets */
.hero__brackets {
  position: absolute;
  inset: 40px;
  z-index: 4;
  pointer-events: none;
}
.hero__brackets::before,
.hero__brackets::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(176, 138, 62, 0.55);
}
.hero__brackets::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.hero__brackets::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
.hero__brackets .bt-tr,
.hero__brackets .bt-bl {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(176, 138, 62, 0.55);
}
.hero__brackets .bt-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
.hero__brackets .bt-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

/* ===================== SECTION CHROME ===================== */
.sec {
  position: relative;
  padding: 140px 80px;
}
.sec--paper {
  background: var(--mf-paper);
  color: var(--mf-ink);
}
.sec--ink {
  background: var(--mf-ink);
  color: var(--mf-paper);
}
.sec--green {
  background: linear-gradient(180deg, #143623 0%, #0e2a1b 100%);
  color: var(--mf-paper);
}

.sec__wrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.sec__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--mf-gold);
  margin-bottom: 26px;
}
.sec__eyebrow::before,
.sec__eyebrow::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--mf-gold);
  opacity: 0.6;
}

.sec__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.06;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.sec__title em {
  font-style: italic;
}
.sec--paper .sec__title em {
  color: #b08a3e;
  -webkit-text-fill-color: #b08a3e;
  background: none;
}
.sec--ink .sec__title,
.sec--green .sec__title {
  color: var(--mf-paper);
}
.sec--ink .sec__eyebrow,
.sec--green .sec__eyebrow {
  color: var(--mf-gold-light);
}
.sec--ink .sec__eyebrow::before,
.sec--ink .sec__eyebrow::after,
.sec--green .sec__eyebrow::before,
.sec--green .sec__eyebrow::after {
  background: var(--mf-gold-light);
}
.sec__title .foil {
  font-style: italic;
  background: var(--foil-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sec__lede {
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: var(--mf-ink-3);
  text-align: center;
  max-width: 62ch;
  margin: 32px auto 0;
}
.sec--ink .sec__lede,
.sec--green .sec__lede {
  color: var(--mf-paper-3);
}

/* ===================== MANIFESTO ===================== */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 90px;
}
.manifesto__figure {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--mf-ink);
  overflow: hidden;
  border: 1px solid rgba(176, 138, 62, 0.3);
}
.manifesto__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) contrast(1.02);
}
.manifesto__figure::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245, 241, 234, 0.14);
  pointer-events: none;
}
.manifesto__cap {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mf-paper-3);
  display: flex;
  justify-content: space-between;
}
.manifesto__cap em {
  color: var(--mf-gold-light);
  font-style: normal;
}

.manifesto__body .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mf-gold);
  margin-bottom: 28px;
}
.manifesto__body .eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--mf-gold);
}
.manifesto__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.12;
  margin: 0 0 28px;
  color: #000;
}
.manifesto__body h3 em {
  font-style: italic;
  color: #b08a3e;
  -webkit-text-fill-color: #b08a3e;
  background: none;
}
.manifesto__body p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--mf-ink-3);
  max-width: 56ch;
  margin: 0 0 18px;
}
.manifesto__pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.manifesto__pillar .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--mf-gold);
  margin-bottom: 6px;
}
.manifesto__pillar .t {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--mf-ink);
  margin-bottom: 6px;
}
.manifesto__pillar .d {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--mf-ink-3);
}

/* ===================== MAISONS (5 brands, editorial grid) ===================== */
.maisons {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  border-top: 1px solid rgba(176, 138, 62, 0.3);
  border-bottom: 1px solid rgba(176, 138, 62, 0.3);
}
.maison {
  grid-column: span 4;
  padding: 48px 32px;
  position: relative;
  cursor: pointer;
  transition: background var(--t-med) var(--ease-out);
}
.maison:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  right: 0;
  width: 1px;
  background: rgba(176, 138, 62, 0.25);
}
.maison:hover {
  background: rgba(176, 138, 62, 0.06);
}
.maison.is-feature {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  padding: 64px 40px;
}
.maison__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--mf-gold);
  letter-spacing: 0.1em;
}
.maison__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--mf-ink);
  margin: 14px 0 6px;
  line-height: 1;
}
.maison__cat {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mf-ink-3);
  margin-bottom: 22px;
}
.maison__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--mf-copper);
  line-height: 1.5;
  max-width: 30ch;
}
.maison__link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mf-ink);
  border-bottom: 1px solid var(--mf-gold);
  padding-bottom: 4px;
}
.maison.is-feature .maison__figure {
  aspect-ratio: 3/2;
  background: var(--mf-ink);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.maison.is-feature .maison__figure img {
  max-height: 85%;
  max-width: 80%;
  object-fit: contain;
}
.maison.is-feature .maison__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.maison.is-feature .maison__name {
  font-size: 64px;
  margin-top: 10px;
}
.maison.is-feature .maison__tag {
  font-size: 22px;
  max-width: 40ch;
}

/* ===================== COLLECTION ===================== */
.collection__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.collection__head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.04;
  margin: 0;
  color: var(--mf-paper);
  letter-spacing: -0.005em;
}
.collection__head h2 em {
  font-style: italic;
  background: var(--foil-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.collection__head p {
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--mf-paper-3);
  max-width: 50ch;
  margin: 0;
}
.collection__filters {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mf-paper-3);
  border-bottom: 1px solid rgba(176, 138, 62, 0.2);
  padding-bottom: 20px;
}
.collection__filters .f {
  cursor: pointer;
  padding: 8px 0;
  position: relative;
  transition: color var(--t-fast);
}
.collection__filters .f.is-active {
  color: var(--mf-gold-light);
}
.collection__filters .f.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  height: 1px;
  background: var(--mf-gold);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid rgba(176, 138, 62, 0.2);
}
.bottle.is-hidden { display: none; }
.bottle {
  position: relative;
  padding: 40px 28px 34px;
  background: rgba(30, 26, 22, 0.6);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-med) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.bottle:hover {
  background: rgba(30, 26, 22, 0.9);
  border-color: rgba(176, 138, 62, 0.6);
}
.bottle__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--mf-gold);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.bottle__cat {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mf-silver);
  margin-bottom: 28px;
}
.bottle__media {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -8px 20px;
  position: relative;
}
.bottle__media::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 72%;
  height: 14px;
  background: radial-gradient(ellipse, rgba(176, 138, 62, 0.25) 0%, transparent 70%);
  filter: blur(4px);
}
.bottle__media img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.6));
  transition: transform var(--t-slow) var(--ease-out);
}
.bottle:hover .bottle__media img {
  transform: translateY(-6px) scale(1.02);
}
.bottle__name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--mf-paper);
  line-height: 1.05;
  margin: 0 0 6px;
}
.bottle__desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--mf-paper-3);
  margin: 0 0 20px;
  min-height: 3em;
}
.bottle__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid rgba(176, 138, 62, 0.2);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mf-silver);
}
.bottle__meta .abv {
  color: var(--mf-gold-light);
}

/* ===================== HERITAGE TIMELINE ===================== */
.heritage {
  position: relative;
}
.heritage-teaser {
  position: relative;
  overflow: hidden;
  padding: 140px 32px;
}
.heritage-teaser .heritage__knight {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  opacity: 0.08;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}
.heritage-teaser__wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}
.heritage-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.heritage-teaser__lede {
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 21px;
  line-height: 1.6;
  color: var(--mf-paper-3);
  margin: 28px 0 40px;
  max-width: 48ch;
}
.heritage-teaser__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.heritage-teaser__years {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(176, 138, 62, 0.25);
}
.hty {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(176, 138, 62, 0.2);
  transition: background 300ms;
}
.hty:hover {
  background: rgba(176, 138, 62, 0.05);
}
.hty__y {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  color: #cfaf66;
  letter-spacing: 0.12em;
  line-height: 1;
}
.hty__l {
  font-family: var(--font-body);
  font-size: 16.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mf-paper-3);
}
.hty--more .hty__y {
  color: #b08a3e;
  opacity: 0.7;
}
.hty--more .hty__l {
  color: #b08a3e;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
  font-family: var(--font-subhead);
  font-size: 16px;
}

@media (max-width: 900px) {
  .heritage-teaser__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hty {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .hty__y {
    font-size: 28px;
  }
}

.heritage__knight {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 120%;
  width: auto;
  max-width: none;
  opacity: 0.06;
  filter: grayscale(1) brightness(1.3);
  pointer-events: none;
  z-index: 0;
}
.heritage .sec__wrap {
  position: relative;
  z-index: 1;
}
.heritage__spine {
  margin-top: 100px;
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
}
.heritage__spine::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(176, 138, 62, 0.6), rgba(176, 138, 62, 0.6), transparent);
  transform: translateX(-0.5px);
}
.era {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  position: relative;
}
.era__year {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0.18em;
  background: var(--foil-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: inline-block;
}
.era__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--mf-gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(176, 138, 62, 0.15);
  z-index: 2;
}
.era__center {
  position: relative;
  height: 100%;
}
.era__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--mf-paper);
  margin: 0 0 8px;
  line-height: 1.2;
}
.era__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--mf-paper-3);
  margin: 0;
  max-width: 42ch;
}
.era__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mf-gold);
  margin-bottom: 10px;
}
/* Left entry: year sits on right edge of LEFT column next to dot; content above */
.era--left .era__left-content {
  text-align: right;
  padding-right: 8px;
}
.era--left .era__left-content .era__body {
  margin-left: auto;
}
.era--left .era__year-slot {
  text-align: right;
  align-self: center;
}
.era--right .era__year-slot {
  text-align: left;
  align-self: center;
}
.era__year-slot {
  display: flex;
  align-items: center;
}
.era--left .era__year-slot {
  justify-content: flex-start;
  padding-left: 18px;
}
.era--right .era__year-slot {
  justify-content: flex-end;
  padding-right: 18px;
}
.era--right .era__right-content {
  padding-left: 8px;
}

/* ===================== QUOTE ===================== */
.quote-sec {
  background: var(--mf-paper);
  padding: 140px 80px;
  text-align: center;
  position: relative;
}
.quote-sec::before,
.quote-sec::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 60px;
  background: var(--mf-gold);
  transform: translateX(-0.5px);
}
.quote-sec::before {
  top: 0;
}
.quote-sec::after {
  bottom: 0;
}
.quote-sec__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 120px;
  color: var(--mf-gold);
  line-height: 0.5;
  margin-bottom: 30px;
}
.quote-sec blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.32;
  color: var(--mf-ink);
  margin: 0 auto;
  max-width: 28ch;
  text-wrap: balance;
}
.quote-sec__cite {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}
.quote-sec__cite .dash {
  width: 30px;
  height: 1px;
  background: var(--mf-gold);
}
.quote-sec__cite .names {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--mf-ink);
  font-style: italic;
}
.quote-sec__cite .role {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mf-ink-3);
  margin-top: 4px;
}

/* ===================== VISIT ===================== */
.visit {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 640px;
  background: var(--mf-ink);
  color: var(--mf-paper);
  position: relative;
}
.visit__media {
  background-image: url("../assets/ambiance-bar.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.visit__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 8, 6, 0) 40%, rgba(10, 8, 6, 0.9) 100%);
}
.visit__panel {
  padding: 110px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.visit__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mf-gold);
  margin-bottom: 24px;
}
.visit h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.06;
  margin: 0 0 28px;
  color: #ffffff;
}
.visit h2 em {
  font-style: italic;
  color: #cfaf66;
}
.visit p {
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 19px;
  color: var(--mf-paper-3);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 48ch;
}
.visit__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px 0;
  margin-bottom: 40px;
  border-top: 1px solid rgba(176, 138, 62, 0.25);
  border-bottom: 1px solid rgba(176, 138, 62, 0.25);
}
.visit__meta .k {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mf-gold);
  margin-bottom: 10px;
}
.visit__meta .v {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--mf-paper);
  line-height: 1.4;
}
.visit__ctas {
  display: flex;
  gap: 14px;
  align-items: center;
}
.btn-gold {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: var(--foil-gold);
  color: var(--mf-ink);
  padding: 17px 30px;
  border: none;
  cursor: pointer;
  transition: filter var(--t-fast);
}
.btn-gold:hover {
  filter: brightness(1.08);
}
.btn-ghost {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mf-paper);
  background: transparent;
  border: 1px solid var(--mf-gold);
  padding: 16px 28px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.btn-ghost:hover {
  background: var(--mf-gold);
  color: var(--mf-ink);
}

/* ===================== FOOTER ===================== */
.footer {
  background: #0a0806;
  color: var(--mf-paper-3);
  padding: 100px 80px 36px;
  border-top: 1px solid rgba(176, 138, 62, 0.22);
}
.footer__header {
  max-width: 1280px;
  margin: 0 auto 52px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(176, 138, 62, 0.16);
}
.footer__logo {
  height: 52px;
  width: auto;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4em;
  line-height: 1;
  background: var(--foil-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding-bottom: 80px;
}
.footer__col--intro p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
  color: var(--mf-paper-3);
}
/* Legacy brand block (pages still using .footer__brand) — kept legible */
.footer__brand img { width: 68px; margin-bottom: 22px; }
.footer__brand .w {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.32em;
  background: var(--foil-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.footer__brand p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
  color: var(--mf-paper-3);
  max-width: 24ch;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mf-gold-light);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--mf-paper-3);
  padding: 6px 0;
  cursor: pointer;
  transition: color var(--t-fast);
}
.footer__col a:hover {
  color: var(--mf-gold-light);
}
.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  font-size: 22px;
}
.footer__socials i {
  cursor: pointer;
  color: var(--mf-paper-3);
  transition: color var(--t-fast);
}
.footer__socials i:hover {
  color: var(--mf-gold-light);
}
.footer__base {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(176, 138, 62, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mf-silver-deep);
}
.footer__base em {
  font-style: normal;
  color: var(--mf-gold-light);
}
.footer__legal {
  display: flex;
  gap: 22px;
}
.footer__legal a {
  color: var(--mf-silver-deep);
  cursor: pointer;
}
.footer__legal a:hover {
  color: var(--mf-gold-light);
}

/* ===================== REVEAL ANIM ===================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ===================== FOUC PREVENTION =====================
   Pré-masque les cibles des intro-timelines GSAP dès le premier paint.
   Révélées par gsap.set + gsap.to dans scripts/motion.js.
   La classe `.has-motion` est ajoutée synchrone dans <head> si
   prefers-reduced-motion est off. motion.js la retire si GSAP est absent
   ou si reduced-motion est on (fallback : tout visible).
   ========================================================== */
.has-motion .hero__eyebrow,
.has-motion .hero__wordmark .ch,
.has-motion .hero__attrib .name,
.has-motion .hero__attrib .desc,
.has-motion .hero__attrib .dash,
.has-motion .hero__scroll,
.has-motion .hero__motto,
.has-motion .hero__brackets,
.has-motion .mh-hero__rail > *,
.has-motion .mh-hero__eyebrow,
.has-motion .mh-hero__title,
.has-motion .mh-hero__lede,
.has-motion .mh-hero__meta > *,
.has-motion .mh-hero__blason,
.has-motion .mh-hero__motto,
.has-motion .dh-hero__rail,
.has-motion .dh-hero__title .small,
.has-motion .dh-hero__title .big,
.has-motion .dh-hero__lede,
.has-motion .dh-hero__invite-overline,
.has-motion .dh-ticket--hero,
.has-motion .dh-hero-skip,
.has-motion .dh-hero__stats > div,
.has-motion .dh-hero__bottles {
  visibility: hidden;
}

/* ===================== RESPONSIVE (site-wide) ===================== */
@media (max-width: 1120px) {
  .stops {
    display: none;
  }
  .sec {
    padding: 110px 48px;
  }
  .hero__content {
    padding: 0 48px;
  }
  .heritage-teaser {
    padding: 110px 32px;
  }
  .quote-sec {
    padding: 110px 48px;
  }
  .visit__panel {
    padding: 90px 48px;
  }
  .footer {
    padding: 80px 48px 36px;
  }
  .footer__top {
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
  }
  .maison.is-feature .maison__name {
    font-size: 48px;
  }
  .collection__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .sec {
    padding: 90px 32px;
  }
  .hero__content {
    padding: 0 32px;
  }
  .hero__eyebrow {
    font-size: 11.5px;
    letter-spacing: 0.3em;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero__dates {
    gap: 18px;
    font-size: 12.5px;
    margin-bottom: 14px;
  }
  .hero__attrib {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .hero__attrib .dash {
    display: none;
  }
  .hero__motto {
    bottom: 30px;
    font-size: 11.5px;
    letter-spacing: 0.32em;
    padding: 0 16px;
  }
  .hero__scroll {
    bottom: 90px;
  }
  .hero__brackets {
    inset: 20px;
  }

  .sec__title {
    font-size: clamp(34px, 6.4vw, 56px);
  }
  .sec__lede {
    font-size: 20px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 56px;
  }
  .manifesto__figure {
    aspect-ratio: 3/4;
    max-width: 520px;
    margin: 0 auto;
  }
  .manifesto__body h3 {
    font-size: clamp(28px, 5vw, 40px);
  }
  .manifesto__pillars {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 26px;
    margin-top: 32px;
  }

  .maisons {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }
  .maison {
    grid-column: span 1;
    padding: 36px 28px;
  }
  .maison:not(:last-child)::after {
    display: none;
  }
  .maison:not(:last-child) {
    border-bottom: 1px solid rgba(176, 138, 62, 0.25);
  }
  .maison.is-feature {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 28px;
  }
  .maison.is-feature .maison__figure {
    aspect-ratio: 4/3;
  }
  .maison.is-feature .maison__name {
    font-size: 38px;
  }
  .maison.is-feature .maison__tag {
    font-size: 19px;
    max-width: none;
  }

  .collection__head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .collection__head h2 {
    font-size: clamp(36px, 6.4vw, 56px);
  }
  .collection__head p {
    font-size: 17.5px;
  }
  .collection__filters {
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-bottom: 36px;
    padding-bottom: 16px;
  }
  .collection__filters .f.is-active::after {
    bottom: -17px;
  }
  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottle {
    padding: 32px 22px 28px;
  }
  .bottle__media {
    height: 220px;
    margin: 0 0 18px;
  }
  .bottle__name {
    font-size: 22px;
  }

  .heritage-teaser {
    padding: 90px 24px;
  }
  .heritage-teaser__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .heritage-teaser__lede {
    font-size: 19px;
    margin: 22px 0 32px;
  }
  .heritage-teaser__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .era {
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .heritage__spine::before {
    left: 16px;
    transform: none;
  }
  .era__dot {
    left: 16px;
    transform: translate(-50%, -50%);
  }
  .era__year {
    font-size: 26px;
  }
  .era__title {
    font-size: 22px;
  }
  .era__body {
    font-size: 17px;
  }
  .era--left .era__left-content,
  .era--right .era__right-content {
    grid-column: 2;
    text-align: left;
    padding: 0;
  }
  .era--left .era__left-content .era__body {
    margin-left: 0;
  }
  .era--left .era__year-slot,
  .era--right .era__year-slot {
    grid-column: 2;
    padding: 0;
    justify-content: flex-start;
    margin-bottom: 8px;
  }

  .quote-sec {
    padding: 100px 32px;
  }
  .quote-sec__mark {
    font-size: 90px;
    margin-bottom: 24px;
  }
  .quote-sec blockquote {
    font-size: clamp(24px, 5vw, 36px);
  }
  .quote-sec__cite {
    margin-top: 40px;
    flex-direction: column;
    gap: 10px;
  }
  .quote-sec__cite .dash {
    width: 40px;
  }

  .visit {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .visit__media {
    min-height: 280px;
  }
  .visit__media::after {
    background: linear-gradient(180deg, rgba(10, 8, 6, 0) 40%, rgba(10, 8, 6, 0.92) 100%);
  }
  .visit__panel {
    padding: 72px 32px;
    max-width: none;
  }
  .visit h2 {
    font-size: clamp(32px, 6vw, 48px);
  }
  .visit p {
    font-size: 18px;
  }
  .visit__meta {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .visit__ctas {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer {
    padding: 72px 32px 32px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 48px;
  }
  .footer__col--intro { grid-column: 1 / -1; }
  .footer__header { margin-bottom: 40px; padding-bottom: 28px; }
  .footer__logo { height: 44px; }
  .footer__wordmark { font-size: 20px; letter-spacing: 0.34em; }
  .footer__base {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }
}

@media (max-width: 640px) {
  .sec {
    padding: 72px 20px;
  }
  .hero__content {
    padding: 0 20px;
  }
  .hero__wordmark {
    font-size: clamp(40px, 12vw, 80px);
    letter-spacing: -0.025em;
  }
  .hero__eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.28em;
  }
  .hero__eyebrow span:nth-child(2) {
    max-width: 20ch;
    line-height: 1.4;
    text-align: center;
  }
  .hero__dates {
    gap: 12px;
    font-size: 11.5px;
    letter-spacing: 0.3em;
  }
  .hero__attrib .name {
    font-size: 17px;
    text-align: center;
  }
  .hero__attrib .desc {
    font-size: 10.5px;
    letter-spacing: 0.26em;
    text-align: center;
  }
  .hero__motto {
    bottom: 20px;
    font-size: 10.5px;
    letter-spacing: 0.26em;
  }
  .hero__scroll {
    bottom: 64px;
    font-size: 10px;
    letter-spacing: 0.32em;
  }
  .hero__scroll .line {
    height: 28px;
  }

  .sec__title {
    font-size: clamp(28px, 7.6vw, 40px);
  }
  .sec__lede {
    font-size: 18px;
    margin-top: 22px;
  }
  .sec__eyebrow {
    font-size: 12px;
    letter-spacing: 0.36em;
  }
  .sec__eyebrow::before,
  .sec__eyebrow::after {
    width: 24px;
  }

  .manifesto__body h3 {
    font-size: clamp(24px, 6.4vw, 32px);
  }
  .manifesto__body p {
    font-size: 16.5px;
    line-height: 1.6;
  }

  .maison__name {
    font-size: 26px;
  }
  .maison.is-feature .maison__name {
    font-size: 32px;
  }
  .maison.is-feature .maison__tag {
    font-size: 18px;
  }

  .collection__grid {
    grid-template-columns: 1fr;
  }
  .bottle {
    padding: 36px 24px 28px;
  }
  .bottle__media {
    height: 240px;
  }

  .heritage-teaser {
    padding: 72px 20px;
  }

  .quote-sec {
    padding: 80px 20px;
  }
  .quote-sec__mark {
    font-size: 64px;
    margin-bottom: 18px;
  }
  .quote-sec blockquote {
    font-size: clamp(22px, 6vw, 28px);
  }
  .quote-sec::before,
  .quote-sec::after {
    height: 40px;
  }

  .visit__panel {
    padding: 56px 20px;
  }
  .visit__meta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0;
  }
  .visit h2 {
    font-size: clamp(28px, 7.5vw, 40px);
  }
  .visit p {
    font-size: 17px;
  }
  .btn-gold,
  .btn-ghost {
    padding: 14px 22px;
    font-size: 11.5px;
    letter-spacing: 0.28em;
    width: 100%;
    text-align: center;
  }

  .footer {
    padding: 60px 20px 24px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer__brand p {
    font-size: 15px;
  }
  .footer__col a {
    font-size: 15px;
  }
}
