/* ═══════════════════════════════════════════════════════════
   VARIABLES & RESET
════════════════════════════════════════════════════════════ */
:root {
    --ink:          #1a1614;
    --ink-soft:     #3d3834;
    --ink-muted:    #7a736d;
    --ink-faint:    #b8b2ac;
    --paper:        #fbfaf7;
    --paper-warm:   #f5f1ea;
    --paper-deep:   #ebe5db;
    --line:         #e4ddd2;
    --line-strong:  #c9c0b2;
    --red:          #ff5a5f;
    --red-dark:     #e0474c;
    --red-soft:     #ffdcdd;
    --red-tint:     rgba(255, 90, 95, 0.08);
    --serif:        'Cormorant Garamond', Georgia, serif;
    --sans:         'Inter', system-ui, sans-serif;
    --mono:         'JetBrains Mono', 'Courier New', monospace;
    --page-max:     1320px;
    --gutter:       clamp(20px, 4vw, 48px);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS — REVEAL
════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Délais en cascade */
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }

.site-main { min-height: 60vh; }

/* ═══════════════════════════════════════════════════════════
   HEADER WRAPPER
════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* ═══════════════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════════════════ */
.top-bar {
    height: 36px;
    background: var(--ink);
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: max-height 0.3s ease-out, transform 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 36px;
}

.top-bar.is-hidden {
    max-height: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar-track {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.top-bar-inner {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--paper-warm);
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    padding-right: 2em;
}

.top-bar-inner .tick { color: var(--red); }

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════════════════════ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: var(--ink-faint);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link:hover { color: var(--ink-muted); }

.breadcrumb-sep {
    color: var(--ink-faint);
    font-size: 9px;
}

.breadcrumb-current {
    color: var(--red);
}

/* ═══════════════════════════════════════════════════════════
   NAV MAIN
════════════════════════════════════════════════════════════ */
.nav-main {
    background: var(--paper);
    position: relative;
    transition: height 0.3s ease-out, background 0.3s ease-out, border-color 0.3s ease-out;
    border-bottom: 1px solid transparent;
}

.nav-main.is-scrolled {
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
}

.nav-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    transition: height 0.3s ease-out;
}

.nav-main.is-scrolled .nav-inner {
    height: 64px;
}

/* ── Brand ───────────────────────────────────────────────── */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--ink);
    overflow: hidden;
}

.brand-logo {
    height: 130px;
    width: auto;
    display: block;
    margin-top: -25px;
    margin-bottom: -25px;
    transition: height 0.3s ease-out, margin 0.3s ease-out;
}

.is-scrolled .brand-logo {
    height: 120px;
    margin-top: -28px;
    margin-bottom: -28px;
}

.brand-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--red);
    line-height: 1;
    transform: translateY(-1px);
    display: inline-block;
}

.brand-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    font-style: normal;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1;
}

.brand-sub {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-muted);
    transform: translateY(-4px);
    display: inline-block;
}

.brand--white .brand-name,
.brand--white .brand-sub { color: var(--paper); }
.brand--white .brand-sub { color: rgba(251,250,247,0.55); }

/* ── Nav links ───────────────────────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-soft);
    letter-spacing: 0.005em;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s ease-out;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--red);
    transition: width 0.3s cubic-bezier(.2,.7,.2,1);
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.nav-link.active {
    color: var(--ink);
    font-weight: 500;
}
.nav-link.active::after { width: 100%; }

/* ── DROPDOWN ────────────────────────────────────────────── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-soft);
    letter-spacing: 0.005em;
    position: relative;
    transition: color 0.2s ease-out;
    line-height: 1.5;
}

.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--red);
    transition: width 0.3s cubic-bezier(.2,.7,.2,1);
}

.nav-dropdown-toggle:hover { color: var(--ink); }
.nav-dropdown-toggle:hover::after { width: 100%; }

.nav-dropdown.active .nav-dropdown-toggle { color: var(--ink); font-weight: 500; }
.nav-dropdown.active .nav-dropdown-toggle::after { width: 100%; }

.nav-dropdown-caret {
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s;
    flex-shrink: 0;
    opacity: 0.5;
    margin-top: 1px;
}

.nav-dropdown.is-open .nav-dropdown-caret {
    transform: rotate(180deg);
    opacity: 0.8;
}

.nav-dropdown.is-open .nav-dropdown-caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
}

.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 20px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
    color: var(--ink);
    background: var(--paper-warm);
}

.nav-sep {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
    color: var(--red);
    pointer-events: none;
    flex-shrink: 0;
}

/* ── Nav CTA ─────────────────────────────────────────────── */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    flex-shrink: 0;
    transition: background 0.25s ease-out;
    white-space: nowrap;
}

.nav-cta:hover { background: var(--red); }

.nav-cta .arrow {
    font-size: 14px;
    display: inline-block;
}

.nav-cta:hover .arrow {
    animation: bounceArrow 1.2s ease-in-out infinite;
}

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

/* ── Scroll progress ─────────────────────────────────────── */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--red);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    pointer-events: none;
}

/* ── Mobile toggle ───────────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 9px;
    height: 36px;
    padding: 0 14px 0 10px;
    background: none;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.nav-toggle:hover { border-color: var(--ink-muted); }

.nav-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 16px;
    flex-shrink: 0;
}

.nav-toggle-icon span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.nav-toggle-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    transition: opacity 0.2s;
}

.nav-toggle.is-open { border-color: transparent; }
.nav-toggle.is-open .nav-toggle-label { opacity: 0; }
.nav-toggle.is-open .nav-toggle-icon span:nth-child(1) {
    transform: translateY(3.25px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-icon span:nth-child(2) {
    transform: translateY(-3.25px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════════════════════════════ */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--ink);
    color: var(--paper);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Déco — grand "M" serif en fond */
.mobile-drawer::before {
    content: 'M';
    position: fixed;
    right: -40px;
    bottom: -60px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 420px;
    line-height: 1;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    user-select: none;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

/* ── Header du drawer ─── */
.drawer-top {
    position: static;
    padding: 0 var(--gutter);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(251,250,247,0.08);
    flex-shrink: 0;
}

/* ── Bouton fermer ─── */
.drawer-close {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 9px;
    height: 36px;
    padding: 0 14px 0 10px;
    background: none;
    border: 1px solid rgba(251,250,247,0.2);
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.drawer-close:hover { border-color: rgba(251,250,247,0.5); }

.drawer-close-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
}

.drawer-close-icon span {
    display: block;
    position: absolute;
    width: 14px;
    height: 1.5px;
    background: rgba(251,250,247,0.8);
}
.drawer-close-icon span:nth-child(1) { transform: rotate(45deg); }
.drawer-close-icon span:nth-child(2) { transform: rotate(-45deg); }

.drawer-close-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(251,250,247,0.6);
}

/* ── Navigation ─── */
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0 var(--gutter);
    flex: 1;
}

.drawer-nav-main {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(251,250,247,0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.drawer-nav-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 24px;
}

/* Liens principaux */
.drawer-link {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    color: rgba(251,250,247,0.85);
    line-height: 1.25;
    display: block;
    padding: 6px 0;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.45s ease, transform 0.45s ease, color 0.2s ease;
}

.drawer-link.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.drawer-link:hover { color: #ffffff; }

/* Liens secondaires */
.drawer-link-sm {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    color: rgba(251,250,247,0.45);
    letter-spacing: 0.01em;
    padding: 4px 0;
    transition: color 0.2s;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.45s ease, transform 0.45s ease, color 0.2s ease;
}

.drawer-link-sm.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.drawer-link-sm:hover { color: rgba(251,250,247,0.8); }

/* ── Divider ─── */
.drawer-divider {
    height: 1px;
    background: rgba(251,250,247,0.08);
    margin: 0 var(--gutter) 20px;
}

/* ── Contact ─── */
.drawer-contact {
    padding: 20px var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(251,250,247,0.08);
    margin: 0;
}

.drawer-contact-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(251,250,247,0.4);
    margin-bottom: 4px;
}

.drawer-contact-line {
    font-family: var(--sans);
    font-size: 14px;
    color: rgba(251,250,247,0.7);
    transition: color 0.2s;
}

.drawer-contact-line:hover { color: #ffffff; }

/* ── CTAs ─── */
.drawer-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px var(--gutter) 36px;
    margin: 0;
}

.drawer-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.drawer-btn--primary {
    background: var(--red);
    color: #ffffff;
}

.drawer-btn--ghost {
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--ink);
    color: rgba(251,250,247,0.7);
}

.footer-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 120px var(--gutter) 40px;
}

/* ── 1. Déclaration ──────────────────────────────────────── */
.footer-declaration {
    max-width: 1100px;
    margin-bottom: 96px;
}

.footer-eyebrow {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-headline {
    font-family: var(--serif);
    font-size: clamp(56px, 9vw, 128px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.footer-headline em {
    font-style: italic;
}

.footer-rule {
    width: 80px;
    height: 2px;
    background: var(--red);
    margin: 40px 0 32px;
}

.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--paper);
    border-bottom: 1px solid var(--paper);
    padding-bottom: 6px;
    padding-right: 8px;
    transition: color 0.25s ease-out, border-color 0.25s ease-out;
}

.footer-cta-link:hover { color: var(--red); border-bottom-color: var(--red); }

.footer-cta-link .footer-arrow {
    display: inline-block;
    transition: transform 0.25s ease-out;
}

.footer-cta-link:hover .footer-arrow {
    transform: translateX(6px);
}

/* ── 2. Newsletter ───────────────────────────────────────── */
.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(251,250,247,0.1);
    margin-bottom: 64px;
    align-items: center;
}

.newsletter-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
}

.newsletter-desc {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(251,250,247,0.65);
    max-width: 380px;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(251,250,247,0.25);
    padding-bottom: 2px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 0;
    font-family: var(--sans);
    font-size: 15px;
    color: #ffffff;
}

.newsletter-input::placeholder { color: rgba(251,250,247,0.4); }

.newsletter-submit {
    background: transparent;
    border: none;
    padding: 14px 24px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--red);
    cursor: pointer;
    transition: color 0.2s ease-out;
    white-space: nowrap;
}

.newsletter-submit:hover { color: #ffffff; }

.newsletter-success {
    display: none;
    opacity: 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--red);
    transition: opacity 0.4s ease-out;
}

/* ── 3. Grille 4 colonnes ────────────────────────────────── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 80px;
}

.footer-col-title {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-col--brand {
    overflow: hidden;
}

.footer-col-rule {
    width: 24px;
    height: 1px;
    background: var(--red);
    margin-bottom: 24px;
}

.footer-brand-logo {
    height: 160px;
    width: auto;
    display: block;
    margin-top: -32px;
    margin-bottom: -20px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(60%) saturate(800%) hue-rotate(314deg) brightness(115%);
}

.footer-logo {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-dot { color: var(--red); }

.footer-manifesto {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(251,250,247,0.7);
    max-width: 300px;
    margin-bottom: 24px;
}

.footer-signature {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: rgba(251,250,247,0.55);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-nav-list li { margin-bottom: 12px; }


.footer-nav-link {
    font-family: var(--sans);
    font-size: 14px;
    color: rgba(251,250,247,0.7);
    display: block;
    transition: color 0.2s ease-out, transform 0.2s ease-out;
}

.footer-nav-link:hover {
    color: var(--red);
    transform: translateX(3px);
}

.footer-address {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(251,250,247,0.7);
    margin-bottom: 20px;
}

.footer-hours {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(251,250,247,0.5);
    margin-bottom: 24px;
}

.footer-map {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.footer-map svg { width: 100%; height: auto; }

.map-halo {
    transform-origin: 108px 64px;
    animation: mapPulse 2s ease-out infinite;
}

@keyframes mapPulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ── 4. Ornement ─────────────────────────────────────────── */
.footer-ornament {
    overflow: hidden;
    height: 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
}

.footer-ornament-track {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--red);
    letter-spacing: 1.2em;
    white-space: nowrap;
    animation: ornamentScroll 60s linear infinite;
}

@keyframes ornamentScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── 5. Barre de bas ─────────────────────────────────────── */
.footer-bottom {
    border-top: 1px solid rgba(251,250,247,0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-family: var(--sans);
    font-size: 12px;
    color: rgba(251,250,247,0.45);
}

.footer-copy { flex-shrink: 0; }
.footer-made-by { font-size: 0.8rem; opacity: 0.75; margin-top: 6px; letter-spacing: 0.03em; }
.footer-made-by-link { color: var(--red); text-decoration: none; font-weight: 600; }

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal-link {
    color: rgba(251,250,247,0.45);
    transition: color 0.2s ease-out;
}
.footer-legal-link:hover { color: var(--red); }

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(251,250,247,0.2);
    color: rgba(251,250,247,0.6);
    transition: border-color 0.2s ease-out, color 0.2s ease-out;
}

.footer-social-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ── 6. Easter egg ───────────────────────────────────────── */
.footer-egg {
    margin-top: 24px;
    text-align: center;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(251,250,247,0.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .nav-links,
    .nav-cta { display: none; }

    .nav-toggle { display: inline-flex; }

    .nav-inner {
        gap: 0;
        height: 60px;
        transition: none;
    }

    .nav-main.is-scrolled .nav-inner { height: 60px; }
    .nav-main { transition: background 0.3s ease-out, border-color 0.3s ease-out; }

    .brand-sub { display: none; }
    .brand-name { font-size: 22px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col--brand {
        grid-column: span 2;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .top-bar-inner { font-size: 10px; }

    /* ── Footer mobile ── */
    .footer-inner {
        padding-top: 56px;
        padding-bottom: 32px;
    }

    /* Brand : logo compact + tagline */
    .footer-col--brand {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(251,250,247,0.1);
    }

    .footer-logo {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .footer-manifesto {
        font-size: 13px;
        max-width: 280px;
        margin: 0 auto 12px;
    }

    .footer-signature { font-size: 13px; }

    /* Grille : brand pleine largeur, nav + contact côte à côte, adresse en dessous */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .footer-col--brand {
        grid-column: span 2;
    }

    /* Cacher la carte SVG sur mobile */
    .footer-map { display: none; }

    /* Adresse sous les 2 colonnes */
    .footer-col:last-child {
        grid-column: span 2;
        border-top: 1px solid rgba(251,250,247,0.1);
        padding-top: 24px;
        text-align: center;
    }

    .footer-col:last-child .footer-col-rule {
        margin: 0 auto 24px;
    }

    .footer-address,
    .footer-hours {
        display: inline;
        margin: 0;
    }

    .footer-address {
        font-size: 13px;
        line-height: 1.6;
        display: block;
        margin-bottom: 4px;
    }

    .footer-hours { font-size: 10px; }

    /* Nav links */
    .footer-nav-list li { margin-bottom: 10px; }
    .footer-nav-link { font-size: 13px; }
    .footer-col-title { font-size: 10px; }

    /* Barre de bas */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-top: 32px;
    }

    .footer-copy { font-size: 11px; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 11px; }
    .footer-social { justify-content: center; }
}

/* ── SCROLL TO TOP ───────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
    pointer-events: none;
    z-index: 40;
}

.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover { background: var(--red); }

.scroll-top.on-dark { background: var(--red); }
.scroll-top.on-dark:hover { background: var(--red-dark); }

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════════════════════════ */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--ink);
    color: var(--paper-warm);
    padding: 24px var(--gutter);
    border-top: 1px solid rgba(251,250,247,0.08);
}

.cookie-banner.is-visible {
    display: block;
    animation: cookieSlide 0.45s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes cookieSlide {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.cookie-banner-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 240px;
}

.cookie-banner-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 6px;
}

.cookie-banner-msg {
    font-family: var(--sans);
    font-size: 13px;
    color: rgba(251,250,247,0.7);
    line-height: 1.55;
}

.cookie-banner-msg a {
    color: var(--paper-warm);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.cookie-banner-msg a:hover {
    color: var(--red);
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    padding: 10px 22px;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
    white-space: nowrap;
}

.cookie-btn--accept {
    background: var(--red);
    color: #fff;
}

.cookie-btn--accept:hover {
    background: var(--red-dark);
}

.cookie-btn--refuse {
    background: rgba(251,250,247,0.08);
    color: rgba(251,250,247,0.6);
}

.cookie-btn--refuse:hover {
    background: rgba(251,250,247,0.14);
    color: var(--paper-warm);
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .cookie-banner-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

