/* ════════════════════════════════════════════════════════
   EXPÉRIENCE AUDIO — Design system (v5)
   Swiss / magazine editorial · Outfit only · grid-first
═══════════════════════════════════════════════════════ */

:root {
  --blanc:        #FFFFFF;
  --gris-s:       #F2F1EE;
  --gris-card:   #E8E7E3;
  --gris-border: #DEDCD8;
  --gris-footer: #E4E3DF;
  --noir:        #222222;
  --noir-2:      #111111;
  --texte2:      #666360;
  --texte3:      #9E9B97;
  --or:          #B8904A;
  --font: 'Outfit', system-ui, sans-serif;
  --pad-x: 80px;
  --nav-h: 64px;
  --section-y: 96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--blanc); color: var(--noir);
  font-family: var(--font); font-size: 16px; line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--noir); color: #fff; }

/* Scroll progress bar (top of nav) */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--or); z-index: 101; transition: width .12s linear;
}

/* ═══════════════════════════════
   NAV — burger toujours visible + overlay Leica
═══════════════════════════════ */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; padding: 0 var(--pad-x); height: var(--nav-h);
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
nav.main-nav.scrolled,
nav.main-nav.solid {
  background: var(--blanc);
  border-color: var(--gris-border);
}
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 28px; }

/* Header icons (search / account / location) — style Leica */
.nav-right .nav-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; padding: 0;
  background: transparent; border: 0; cursor: pointer;
  font: inherit; line-height: 0;
  color: rgba(255,255,255,.85); transition: color .2s, opacity .2s;
}
.nav-right .nav-icon::after { display: none !important; }
.nav-right .nav-icon:hover { color: #fff; opacity: .85; }
nav.main-nav.scrolled .nav-right .nav-icon,
nav.main-nav.solid .nav-right .nav-icon { color: var(--texte2); }
nav.main-nav.scrolled .nav-right .nav-icon:hover,
nav.main-nav.solid .nav-right .nav-icon:hover { color: var(--noir); }
.nav-right .nav-icon + .nav-icon { margin-left: -12px; } /* group icons at 16px gap (28 - 12 = 16) */
.nav-right .nav-icon + .nav-cta { margin-left: -12px; }
.nav-right a {
  position: relative;
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,.85);
  letter-spacing: .01em; transition: color .2s;
  padding: 4px 0;
}
.nav-right a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: currentColor;
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.nav-right a:not(.nav-cta):hover::after { right: 0; }
.nav-right a.active:not(.nav-cta)::after { right: 0; background: var(--or); height: 1px; }
.nav-right a.active:not(.nav-cta) { color: #fff; }
nav.main-nav.scrolled .nav-right a,
nav.main-nav.solid .nav-right a { color: var(--texte2); }
nav.main-nav.scrolled .nav-right a.active:not(.nav-cta),
nav.main-nav.solid .nav-right a.active:not(.nav-cta) { color: var(--noir); }

.nav-logo {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; text-align: center; transition: color .3s;
  pointer-events: auto; white-space: nowrap;
}
nav.main-nav.scrolled .nav-logo,
nav.main-nav.solid .nav-logo { color: var(--noir); }

.nav-right a.nav-cta,
.nav-cta {
  font-size: 13px; font-weight: 400; padding: 8px 24px;
  border: 1px solid rgba(255,255,255,.5); border-radius: 40px; color: #fff;
  white-space: nowrap;
  transition: all .25s;
}
nav.main-nav.scrolled .nav-cta,
nav.main-nav.solid .nav-cta { border-color: var(--noir); color: var(--noir); }
.nav-cta:hover { background: #fff; color: var(--noir); }
nav.main-nav.scrolled .nav-cta:hover,
nav.main-nav.solid .nav-cta:hover { background: var(--noir); color: #fff; }
.nav-cta.active,
nav.main-nav.scrolled .nav-cta.active,
nav.main-nav.solid .nav-cta.active { background: var(--noir); color: #fff; border-color: var(--noir); }

/* Burger — toujours visible */
.nav-burger {
  position: relative; width: 32px; height: 32px;
  background: transparent; border: 0; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  margin-left: -6px;
}
.nav-burger span {
  position: absolute; left: 6px; right: 6px; height: 1px;
  background: #fff; transition: transform .3s, opacity .2s, background .3s;
}
.nav-burger span:nth-child(1) { top: 11px; }
.nav-burger span:nth-child(2) { top: 16px; }
.nav-burger span:nth-child(3) { top: 21px; }
nav.main-nav.scrolled .nav-burger span,
nav.main-nav.solid .nav-burger span { background: var(--noir); }
.nav-burger.open span { background: var(--noir); }
.nav-burger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ═══════════════════════════════
   OVERLAY HAMBURGER — style Leica (spec)
═══════════════════════════════ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--gris-s); /* #F2F1EE */
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility 0s linear .25s;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.nav-overlay.open {
  opacity: 1; visibility: visible;
  transition: opacity .25s ease, visibility 0s linear 0s;
}

/* Header de l'overlay — × Close à gauche, même position que ≡ */
.nav-overlay-head {
  display: flex; align-items: center;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  flex-shrink: 0;
}
.nav-close {
  background: transparent; border: 0; cursor: pointer;
  color: var(--noir); font-family: inherit;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 0;
  margin-left: -2px;
}
.nav-close .nav-close-x {
  font-size: 26px; font-weight: 300; line-height: 1;
  display: inline-flex; width: 28px; justify-content: flex-start;
}
.nav-close .nav-close-label {
  font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--texte2); transition: color .2s;
}
.nav-close:hover .nav-close-label { color: var(--noir); }

/* Corps — empile root + sub panes en absolu pour transition slide */
.nav-overlay-body {
  position: relative; flex: 1; overflow: hidden;
}
.nav-pane {
  position: absolute; inset: 0;
  padding: 8px var(--pad-x) 48px;
  overflow-y: auto;
  background: var(--gris-s);
  transition: transform .35s cubic-bezier(.65,0,.35,1), opacity .25s ease;
}
.nav-root-pane { transform: translateX(0); }
.nav-root-pane.pushed { transform: translateX(-12%); opacity: .35; pointer-events: none; }
.nav-sub-pane {
  transform: translateX(100%);
  border-left: 1px solid var(--gris-border);
}
.nav-sub-pane.active { transform: translateX(0); }

/* Liste principale */
.nav-main { list-style: none; }
.nav-main li { display: block; }
.nav-main .nav-main-item {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 0;
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit; text-align: left;
  font-size: 28px; font-weight: 300; line-height: 1.2;
  letter-spacing: -.01em; color: var(--noir);
  transition: color .2s, padding .25s;
}
.nav-main .nav-main-item:hover { color: var(--or); padding-left: 6px; }
.nav-main .nav-arrow {
  font-size: 24px; color: var(--texte3);
  transition: transform .2s, color .2s;
  font-weight: 300;
}
.nav-main .nav-main-item:hover .nav-arrow { transform: translateX(4px); color: var(--or); }

.nav-main .nav-sep {
  height: 1px; background: var(--gris-border);
  margin: 22px 0 18px;
}
.nav-main .secondary a {
  display: inline-block;
  padding: 8px 0;
  font-size: 16px; font-weight: 300;
  color: var(--texte2); /* #666360 */
  transition: color .2s, padding .25s;
}
.nav-main .secondary a:hover { color: var(--noir); padding-left: 6px; }

/* Sub-pane — breadcrumb + items */
.nav-back {
  background: transparent; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit;
  font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--texte2);
  padding: 8px 0;
  margin-bottom: 28px;
  transition: color .2s, gap .2s;
}
.nav-back::before {
  content: '‹'; font-size: 22px; line-height: 1;
  letter-spacing: 0; font-weight: 300; color: var(--texte3);
  transition: color .2s, transform .2s;
}
.nav-back:hover { color: var(--noir); gap: 14px; }
.nav-back:hover::before { color: var(--noir); transform: translateX(-3px); }

.nav-sub-title {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}
.nav-sub { list-style: none; }
.nav-sub li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--gris-border);
  font-size: 22px; font-weight: 300; line-height: 1.25;
  letter-spacing: -.01em; color: var(--noir);
  transition: color .2s, padding .25s;
}
.nav-sub li:first-child a { border-top: 1px solid var(--gris-border); }
.nav-sub li a:hover { color: var(--or); padding-left: 8px; }

/* Footer — 2 blocs 50/50, 180px, fond #E8E7E3 — toujours visible */
.nav-overlay-footer {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--gris-card); /* #E8E7E3 */
  flex-shrink: 0;
}
.nav-overlay-footer a {
  height: 180px; padding: 0 var(--pad-x);
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
  color: var(--noir); transition: background .25s;
  border-right: 1px solid rgba(34,34,34,.08);
}
.nav-overlay-footer a:last-child { border-right: none; }
.nav-overlay-footer a:hover { background: #dcdad6; }
.nav-overlay-footer .cta-sub {
  font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--texte2);
}
.nav-overlay-footer .cta-label {
  font-size: clamp(22px, 2.4vw, 32px); font-weight: 300; line-height: 1.1;
  letter-spacing: -.02em; color: var(--noir);
  display: inline-flex; align-items: center; gap: 14px;
}
.nav-overlay-footer .cta-label::after {
  content: '→'; font-size: 22px; color: var(--texte3);
  transition: transform .25s, color .25s;
}
.nav-overlay-footer a:hover .cta-label { color: var(--or); }
.nav-overlay-footer a:hover .cta-label::after { transform: translateX(6px); color: var(--or); }

@media (max-width: 700px) {
  .nav-main .nav-main-item { font-size: 24px; }
  .nav-sub li a { font-size: 19px; }
  .nav-overlay-footer { grid-template-columns: 1fr; }
  .nav-overlay-footer a { height: 130px; border-right: 0; border-bottom: 1px solid rgba(34,34,34,.08); }
  .nav-overlay-footer a:last-child { border-bottom: 0; }
  .nav-overlay-footer .cta-label { font-size: 22px; }
  .nav-right a:not(.nav-cta) { display: none; }
}

/* ═══════════════════════════════
   Editorial section markers (Swiss/magazine)
═══════════════════════════════ */
.section-mark {
  display: flex; align-items: baseline; gap: 14px;
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--texte3);
  margin-bottom: 36px;
}
.section-mark::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--noir); align-self: center;
}
.section-mark .sm-num { color: var(--noir); font-weight: 600; }
.section-mark.on-dark { color: rgba(255,255,255,.4); }
.section-mark.on-dark::before { background: rgba(255,255,255,.7); }
.section-mark.on-dark .sm-num { color: rgba(255,255,255,.85); }
.section-mark.center { justify-content: center; }

.section-rule {
  height: 1px; background: var(--gris-border); margin: 0 var(--pad-x);
}

/* Headlines */
.h-display {
  font-size: clamp(46px, 5.5vw, 78px); font-weight: 300; line-height: 1.06;
  letter-spacing: -.02em;
}
.h-display strong { font-weight: 600; }
.h-display em { font-style: italic; color: var(--texte3); font-weight: 300; }
.h-section {
  font-size: clamp(36px, 4vw, 58px); font-weight: 400; line-height: 1.1;
  letter-spacing: -.02em;
}
.h-mid { font-size: clamp(28px, 3vw, 44px); font-weight: 400; line-height: 1.15; letter-spacing: -.01em; }
.eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--or);
}

/* Buttons */
.btn-pill-white {
  font-size: 13px; font-weight: 400; padding: 13px 30px; border-radius: 40px;
  background: #fff; color: var(--noir);
  display: inline-flex; align-items: center; gap: 8px; transition: opacity .2s;
}
.btn-pill-white:hover { opacity: .88; }
.btn-ghost-white {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 3px;
  transition: all .2s; letter-spacing: .01em;
}
.btn-ghost-white:hover { color: #fff; border-color: #fff; }
.btn-pill-outline {
  font-size: 12px; font-weight: 400; padding: 10px 22px; letter-spacing: .04em;
  border: 1px solid var(--gris-border); border-radius: 40px; color: var(--noir);
  display: inline-flex; align-items: center; gap: 6px;
  transition: border-color .2s, background .2s;
  background: transparent;
  cursor: pointer;
}
.btn-pill-outline:hover { border-color: var(--noir); }
.btn-pill-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 400; padding: 13px 28px;
  border: 1px solid var(--noir); border-radius: 40px;
  color: var(--noir); background: transparent;
  cursor: pointer; transition: all .2s;
}
.btn-pill-dark:hover { background: var(--noir); color: #fff; }
.btn-pill-border-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 400; padding: 12px 26px;
  border: 1px solid rgba(255,255,255,.22); border-radius: 40px;
  color: #fff; transition: border-color .25s;
}
.btn-pill-border-white:hover { border-color: rgba(255,255,255,.6); }

/* ═══════════════════════════════
   FOOTER (shared)
═══════════════════════════════ */
footer.site-footer { background: var(--gris-footer); }
.footer-mark {
  width: 44px; height: 44px; display: block;
  float: left;
  margin: 0 14px 0 0;
  border-radius: 4px;
}
.footer-brand { clear: none; }
.footer-since + .footer-tagline,
.footer-since + .footer-mark,
.footer-mark + .footer-brand + .footer-since + .footer-tagline { clear: left; }
.footer-tagline { clear: left; padding-top: 10px; }
.footer-main {
  padding: 72px var(--pad-x) 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  border-bottom: 1px solid var(--gris-border);
}
.footer-brand { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--noir); margin-bottom: 6px; }
.footer-since { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--or); margin-bottom: 22px; }
.footer-tagline { font-size: 14px; font-weight: 300; color: var(--texte2); line-height: 1.8; margin-bottom: 24px; max-width: 280px; }
.footer-contact { font-size: 13px; font-weight: 300; color: var(--texte3); line-height: 1.9; }
.fcol h4 { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--texte3); margin-bottom: 20px; }
.fcol a { display: block; font-size: 14px; font-weight: 300; color: var(--texte2); margin-bottom: 10px; transition: color .2s; }
.fcol a:hover { color: var(--noir); }
.footer-social {
  padding: 22px var(--pad-x); border-bottom: 1px solid var(--gris-border);
  display: flex; align-items: center; justify-content: space-between;
}
.social-left { display: flex; align-items: center; gap: 16px; }
.social-label { font-size: 13px; font-weight: 400; color: var(--texte2); }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 36px; height: 36px; border: 1px solid var(--gris-border); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--texte2);
  transition: all .2s;
}
.social-icon svg { width: 14px; height: 14px; display: block; }
.social-icon:hover { border-color: var(--noir); color: var(--noir); }
.back-to-top {
  font-size: 13px; font-weight: 400; color: var(--texte2);
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  background: transparent; border: 0;
  transition: color .2s;
}
.back-to-top:hover { color: var(--noir); }
.footer-bottom {
  padding: 20px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 300; color: var(--texte3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom a { color: var(--texte3); transition: color .2s; }
.footer-bottom a:hover { color: var(--texte2); }

/* ═══════════════════════════════
   Newsletter (shared, used on home + others)
═══════════════════════════════ */
.section-newsletter {
  background: var(--noir-2); padding: 96px var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.nl-titre { font-size: clamp(32px, 3.5vw, 48px); font-weight: 400; color: #fff; line-height: 1.2; letter-spacing: -.01em; margin-bottom: 14px; }
.nl-sous { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 420px; }
.nl-form { display: flex; align-items: center; gap: 0; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 12px; margin-bottom: 16px; transition: border-color .25s; }
.nl-form:focus-within { border-color: rgba(255,255,255,.6); }
.nl-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--font); font-size: 16px; font-weight: 300; color: #fff; padding: 4px 0;
}
.nl-input::placeholder { color: rgba(255,255,255,.3); }
.nl-submit {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  background: transparent; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.nl-submit:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.nl-submit svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.nl-legal { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.25); line-height: 1.6; }
.nl-confirm { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; opacity: 0; transition: opacity .25s; }
.nl-confirm.show { opacity: 1; }

/* ═══════════════════════════════
   Pagination (shared)
═══════════════════════════════ */
.j-pagination { padding: 0 var(--pad-x) var(--section-y); display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.j-pagination .pg {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; padding: 4px 2px;
  font-size: 13px; font-weight: 400; color: var(--texte3);
  background: transparent; border: 0;
  cursor: pointer;
  transition: color .2s;
}
.j-pagination .pg:hover { color: var(--noir); }
.j-pagination .pg.active { color: var(--noir); font-weight: 600; }

/* ═══════════════════════════════
   Page hero (used on inner pages)
═══════════════════════════════ */
.page-hero {
  background: var(--blanc);
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 64px;
  border-bottom: 1px solid var(--gris-border);
}
.page-hero .ph-grid {
  display: block;
}
.page-hero .ph-left { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--texte3); }
.page-hero .ph-left .crumb a { color: var(--texte3); }
.page-hero .ph-left .crumb a:hover { color: var(--noir); }
.page-hero h1 {
  font-size: clamp(42px, 5vw, 72px); font-weight: 300; line-height: 1.06;
  letter-spacing: -.02em; color: var(--noir);
}
.page-hero h1 em { font-style: italic; color: var(--texte3); }
.page-hero .ph-lead {
  font-size: 17px; font-weight: 300; color: var(--texte2); line-height: 1.7;
  margin-top: 28px; max-width: 540px;
}
.page-hero .ph-meta { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--texte3); text-align: right; }

/* Shared placeholder (grey labelled box) */
.ph-img {
  background: var(--gris-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 400; color: var(--texte3); letter-spacing: .12em;
  text-transform: uppercase;
}

/* Tweaks panel hooks (theme tokens applied via JS) */
body.dense { --section-y: 64px; --pad-x: 56px; }
body.airy { --section-y: 140px; --pad-x: 110px; }

/* ═══════════════════════════════
   Responsive (modest)
═══════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad-x: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .section-newsletter { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  :root { --pad-x: 22px; }
  .page-hero .ph-grid { grid-template-columns: 1fr; }
  .page-hero .ph-meta { text-align: left; }
  .footer-main { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   SEARCH OVERLAY (injected by nav.js)
═══════════════════════════════ */
.search-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
.search-overlay.open {
  opacity: 1; visibility: visible;
  transition: opacity .25s ease, visibility 0s linear 0s;
}
.search-close {
  position: absolute; top: 28px; right: 36px;
  width: 40px; height: 40px;
  background: transparent; border: 0; cursor: pointer;
  color: #fff; font-size: 32px; font-weight: 300; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: opacity .2s;
}
.search-close:hover { opacity: .7; }
.search-form {
  width: min(640px, 80vw);
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.6);
  padding-bottom: 14px; margin: 0 24px;
}
.search-form > svg { color: rgba(255,255,255,.7); flex-shrink: 0; }
.search-input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  font-family: var(--font); font-size: 32px; font-weight: 300; color: #fff;
  padding: 4px 0;
}
.search-input::placeholder { color: rgba(255,255,255,.45); }
@media (max-width: 700px) {
  .search-input { font-size: 22px; }
  .search-close { top: 18px; right: 18px; }
}

/* ═══════════════════════════════
   NAV DROPDOWNS (account / location)
═══════════════════════════════ */
.nav-dropdown {
  position: fixed; z-index: 9998;
  background: #fff; border: 1px solid var(--gris-border); border-radius: 4px;
  padding: 20px; width: 240px;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  opacity: 0; transform: translateY(-4px);
  visibility: hidden; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
}
.nav-dropdown.open {
  opacity: 1; transform: translateY(0);
  visibility: visible; pointer-events: auto;
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear 0s;
}
.nav-dropdown[data-dd="location"] { width: 280px; }

.dd-title {
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--texte3); margin-bottom: 14px;
}
.dd-title.gold { color: var(--or); }

.dd-btn-primary {
  display: block; width: 100%; padding: 12px 16px; text-align: center;
  background: var(--noir); color: #fff;
  border-radius: 40px; border: 0; cursor: pointer;
  font-family: var(--font); font-size: 13px; font-weight: 400;
  text-decoration: none;
  transition: opacity .2s;
}
.dd-btn-primary:hover { opacity: .85; color: #fff; }

.dd-link-center {
  display: block; text-align: center; padding: 12px 0 4px;
  font-size: 13px; font-weight: 300; color: var(--texte2);
  transition: color .2s;
}
.dd-link-center:hover { color: var(--noir); }

.dd-sep { height: 1px; background: var(--gris-border); margin: 14px 0; }

.dd-link {
  display: block; padding: 8px 0;
  font-size: 14px; font-weight: 300; color: var(--texte2);
  transition: color .2s, padding-left .2s;
}
.dd-link:hover { color: var(--noir); padding-left: 4px; }

.dd-tagline {
  font-size: 15px; font-weight: 300; font-style: italic;
  color: #9E9B97; line-height: 1.55;
}
