/* ============================================================
   PREVIEW V1 · Brasserie indépendante chic (noir + or sablé)
   Alignée sur le BAT papier officiel avril 2026.
   ============================================================ */

:root {
    --bg:           #0E0E0F;
    --bg-2:         #15161A;
    --bg-3:         #1B1C21;
    --line:         #2A2A2E;
    --ink:          #F4EDE0;
    --ink-mute:     #BDB7AC;
    --ink-dim:      #8A857B;
    --or:           #C9A66B;  /* or sablé · primary accent */
    --or-clair:     #E2C896;
    --or-foncé:     #9D7E47;
    --cuivre:       #B87333;
    --ivoire:       #F4EDE0;
    --noir:         #0E0E0F;

    --font-serif:   'Cormorant Garamond', 'Cormorant', Georgia, serif;
    --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
    --font-script:  'Allura', cursive;

    --maxw:         1240px;
    --r:            2px;       /* coins quasi droits, brasserie classique */
    --shadow-soft:  0 1px 30px rgba(0,0,0,0.5);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden; /* coupe-feu contre tout débordement horizontal */
}

/* Protection anti-overflow sur le contenu long (emails, URLs collées
   ou mots sans espaces). On l'applique sur les blocs de texte plutôt que
   sur a/span pour ne pas casser les boutons ni les libellés courts. */
p, dt, dd, li, address, .v1-content {
    overflow-wrap: anywhere;
    word-wrap: break-word;
}
/* Pour les liens email/téléphone qui peuvent être longs, on coupe au
   besoin. Les autres liens restent normaux. */
a[href^="mailto:"], a[href^="tel:"] {
    overflow-wrap: anywhere;
    word-break: break-word;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* — Tokens de typographie — */
.v1-eyebrow {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 11px;
    font-weight: 500;
    color: var(--or);
}
.v1-script {
    font-family: var(--font-script);
    color: var(--or-clair);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1;
}
.v1-serif {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.005em;
}
.v1-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--or) 50%, transparent);
    border: 0;
    margin: 0;
}
.v1-rule-short {
    width: 60px;
    height: 1px;
    background: var(--or);
    border: 0;
    margin: 0;
}

/* — Accessibilité : skip-link clavier — */
.v1-skip-link {
    position: absolute;
    top: -100px; left: 16px;
    background: var(--or);
    color: var(--noir);
    padding: 12px 20px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 1000;
    transition: top 0.2s;
}
.v1-skip-link:focus { top: 16px; }

/* — Couverts croisés (motif BAT) — */
.v1-cross {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--or);
}
.v1-cross::before, .v1-cross::after {
    content: '';
    width: 18px; height: 1px;
    background: var(--or);
    opacity: 0.6;
}

/* ============================================================
   HEADER
   ============================================================ */
.v1-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(14,14,15,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.v1-header-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.v1-nav-left, .v1-nav-right {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.v1-nav-right { justify-content: flex-end; }
.v1-nav a:hover { color: var(--or); }
.v1-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.v1-logo-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--ivoire);
}
.v1-logo-sub {
    font-family: var(--font-script);
    color: var(--or);
    font-size: 16px;
    line-height: 1;
}
.v1-btn {
    display: inline-block;
    padding: 14px 26px;
    border: 1px solid var(--or);
    color: var(--or);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
    background: transparent;
    cursor: pointer;
}
.v1-btn:hover {
    background: var(--or);
    color: var(--noir);
}
.v1-btn-solid {
    background: var(--or);
    color: var(--noir);
}
.v1-btn-solid:hover {
    background: var(--or-clair);
}

/* — Banner preview — */
.v1-preview-banner {
    background: var(--or);
    color: var(--noir);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}
.v1-preview-banner a {
    text-decoration: underline;
    margin: 0 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.v1-hero {
    padding: 80px 28px 60px;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(201,166,107,0.08), transparent 60%),
        var(--bg);
    border-bottom: 1px solid var(--line);
}
.v1-hero-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.v1-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}
.v1-hero-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 1;
    letter-spacing: -0.012em;
    margin: 0;
    color: var(--ivoire);
}
.v1-hero-title em {
    font-style: italic;
    color: var(--or);
    font-weight: 400;
}
.v1-hero-title .v1-script {
    display: block;
    margin-top: 8px;
    font-size: clamp(36px, 5vw, 64px);
}
.v1-hero-lead {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink-mute);
    margin: 36px 0 40px;
    max-width: 520px;
    font-style: italic;
}
.v1-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.v1-hero-meta {
    margin-top: 56px;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-dim);
}
.v1-hero-meta strong {
    display: block;
    color: var(--or);
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.v1-hero-media {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg-2);
    border: 1px solid var(--line);
    overflow: hidden;
}
.v1-hero-media img,
.v1-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.9);
    display: block;
}

/* ──────────────────────────────────────────────────────────
   Variante VIDÉO VERTICALE (Reels 9:16)
   On enveloppe la vidéo dans un cadre style « polaroid de
   pellicule », avec un filet doré et des accents de coins
   en cuivre pour rappeler les couverts croisés du BAT.
   ────────────────────────────────────────────────────────── */
.v1-hero-media-video {
    position: relative;
    aspect-ratio: 9/16;
    width: 100%;
    max-width: 380px;
    justify-self: center;
    margin: 0 auto;
    background: #000;
    border: 1px solid var(--or);
    box-shadow:
        0 0 0 6px var(--bg),
        0 0 0 7px var(--or-foncé),
        0 20px 60px rgba(201,166,107,0.18);
    overflow: visible;
}
.v1-hero-media-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: none;
    background: #000;
}

/* Accents de coins en filet doré (haut-gauche / bas-droit) */
.v1-hero-media-video::before,
.v1-hero-media-video::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1px solid var(--or-clair);
    pointer-events: none;
    z-index: 2;
}
.v1-hero-media-video::before {
    top: -12px; left: -12px;
    border-right: 0; border-bottom: 0;
}
.v1-hero-media-video::after {
    bottom: -12px; right: -12px;
    border-left: 0; border-top: 0;
}

/* Caption manuscrite EN SURIMPRESSION au bas de la vidéo (style sous-titre
   de pellicule). Reste dans le cadre 9:16, n'agrandit pas le figure. */
.v1-hero-media-video .v1-hero-cartouche {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 36px 18px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(14,14,15,0.85) 80%);
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    pointer-events: none;
}
.v1-hero-media-video .v1-hero-cartouche em {
    font-family: var(--font-script);
    color: var(--or-clair);
    font-size: 22px;
    text-transform: none;
    letter-spacing: 0;
    font-style: normal;
}
.v1-hero-media-video .v1-hero-cartouche span {
    color: var(--or);
}

/* Petite pastille « LIVE » discrète en haut à droite */
.v1-hero-media-video .v1-live-dot {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(14,14,15,0.7);
    backdrop-filter: blur(6px);
    color: var(--or-clair);
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid var(--or-foncé);
}
.v1-hero-media-video .v1-live-dot::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--or);
    box-shadow: 0 0 0 3px rgba(201,166,107,0.25);
    animation: v1-live-pulse 2s infinite ease-in-out;
}
@keyframes v1-live-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

/* Bouton play de secours (affiché uniquement si l'autoplay est bloqué). */
.v1-hero-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 78px; height: 78px;
    border-radius: 50%;
    border: 1.5px solid var(--or);
    background: rgba(14,14,15,0.7);
    backdrop-filter: blur(8px);
    color: var(--or);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s, transform 0.2s;
}
.v1-hero-play:hover {
    background: var(--or);
    color: var(--noir);
    transform: translate(-50%, -50%) scale(1.06);
}
.v1-hero-play svg { margin-left: 4px; }
.v1-hero-play[hidden] { display: none; }
.v1-hero-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,14,15,0.4) 100%);
    pointer-events: none;
}
.v1-hero-cartouche {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    padding: 18px 22px;
    background: rgba(14,14,15,0.85);
    border: 1px solid var(--or);
    color: var(--ivoire);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-serif);
    font-style: italic;
}
.v1-hero-cartouche em {
    color: var(--or);
    font-size: 13px;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 0.2em;
}

/* ============================================================
   STRIPE TRUST (chiffres clés)
   ============================================================ */
.v1-trust {
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 56px 28px;
}
.v1-trust-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.v1-trust-cell {
    background: var(--bg-2);
    padding: 36px 24px;
    text-align: center;
}
.v1-trust-num {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--or);
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1;
    font-weight: 400;
}
.v1-trust-num sup {
    font-size: 0.4em;
    font-style: normal;
    color: var(--ink-mute);
    margin-left: 4px;
}
.v1-trust-label {
    margin-top: 12px;
    color: var(--ink-mute);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* ============================================================
   SECTION SIGNATURES
   ============================================================ */
.v1-section {
    padding: 110px 28px;
    border-bottom: 1px solid var(--line);
}
.v1-section-inner { max-width: var(--maxw); margin: 0 auto; }

.v1-section-head {
    text-align: center;
    margin-bottom: 72px;
}
.v1-section-head .v1-eyebrow { display: block; margin-bottom: 16px; }
.v1-section-head h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(36px, 4.8vw, 56px);
    line-height: 1.1;
    margin: 0;
    color: var(--ivoire);
}
.v1-section-head h2 em { font-style: italic; color: var(--or); font-weight: 400; }
.v1-section-head p {
    margin: 22px auto 0;
    max-width: 580px;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 19px;
    line-height: 1.5;
}
.v1-section-head .v1-rule-short { margin: 28px auto 0; }

.v1-signatures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.v1-signature {
    border: 1px solid var(--line);
    background: var(--bg-2);
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
}
.v1-signature:hover { border-color: var(--or); }
.v1-signature-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-3);
}
.v1-signature-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.95);
    transition: transform 0.8s;
}
.v1-signature:hover .v1-signature-photo img { transform: scale(1.04); }
.v1-signature-body {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.v1-signature-name {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--ivoire);
    margin: 0 0 8px;
    font-weight: 500;
    line-height: 1.1;
}
.v1-signature-desc {
    color: var(--ink-mute);
    font-size: 13px;
    line-height: 1.55;
    flex: 1;
    margin: 0 0 18px;
}
.v1-signature-price {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--or);
    font-size: 22px;
    font-weight: 500;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.v1-signature-price span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-dim);
    font-style: normal;
    font-family: var(--font-sans);
}
.v1-section-foot {
    text-align: center;
    margin-top: 56px;
}

/* ============================================================
   RÉSERVATION
   ============================================================ */
.v1-reserve {
    background:
        linear-gradient(180deg, var(--bg-2), var(--bg-3));
    padding: 110px 28px;
    border-bottom: 1px solid var(--line);
}
.v1-reserve-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.v1-reserve-content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(36px, 4.8vw, 56px);
    line-height: 1.1;
    margin: 24px 0 0;
    color: var(--ivoire);
}
.v1-reserve-content h2 em { font-style: italic; color: var(--or); font-weight: 400; }
.v1-reserve-content p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 20px;
    margin: 24px 0 36px;
}
.v1-reserve-steps {
    border-top: 1px solid var(--line);
}
.v1-reserve-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.v1-reserve-step-num {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--or);
    font-size: 30px;
    font-weight: 400;
    width: 40px;
}
.v1-reserve-step-text {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.5;
}
.v1-reserve-cta { margin-top: 40px; }

.v1-ardoise {
    background: var(--noir);
    border: 1px solid var(--or);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}
.v1-ardoise-head {
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--or-foncé);
    margin-bottom: 22px;
}
.v1-ardoise-head .v1-script { color: var(--or); display: block; }
.v1-ardoise-head .v1-eyebrow { display: block; margin-top: 8px; }
.v1-ardoise h3 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 30px;
    margin: 8px 0 28px;
    text-align: center;
    color: var(--ivoire);
    font-weight: 400;
    line-height: 1.1;
}
.v1-ardoise-list {
    list-style: none;
    margin: 0; padding: 0;
}
.v1-ardoise-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dotted var(--or-foncé);
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--ivoire);
}
.v1-ardoise-list li:last-child { border-bottom: 0; }
.v1-ardoise-list .dots {
    flex: 1;
    border-bottom: 1px dotted var(--or-foncé);
    margin: 0 4px;
    transform: translateY(-4px);
}
.v1-ardoise-list .price {
    color: var(--or);
    font-style: italic;
    font-size: 19px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.v1-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.v1-review {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 34px 32px;
    position: relative;
}
.v1-review::before {
    content: '"';
    position: absolute;
    top: -8px; left: 18px;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--or);
    font-size: 80px;
    line-height: 1;
}
.v1-review-stars { color: var(--or); margin-bottom: 14px; letter-spacing: 0.06em; }
.v1-review-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--ivoire);
    line-height: 1.55;
    margin: 0 0 22px;
}
.v1-review-meta {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.v1-review-meta strong { color: var(--or); font-weight: 500; }

/* ============================================================
   CLICK & COLLECT
   ============================================================ */
.v1-cc {
    background: var(--bg);
    padding: 110px 28px;
    border-bottom: 1px solid var(--line);
}
.v1-cc-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.v1-cc-media {
    aspect-ratio: 4/5;
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--bg-2);
}
.v1-cc-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.9);
}
.v1-cc-content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(36px, 4.8vw, 56px);
    line-height: 1.1;
    margin: 22px 0 0;
    color: var(--ivoire);
}
.v1-cc-content h2 em { font-style: italic; color: var(--or); font-weight: 400; }
.v1-cc-content p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 20px;
    margin: 24px 0 36px;
    max-width: 520px;
}
.v1-cc-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FIDÉLITÉ
   ============================================================ */
.v1-loyalty {
    background: var(--bg-2);
    padding: 110px 28px;
    border-bottom: 1px solid var(--line);
}
.v1-loyalty-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.v1-ticket {
    background: var(--bg);
    border: 1px solid var(--or);
    padding: 44px 40px;
    position: relative;
}
.v1-ticket::before, .v1-ticket::after {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    background: var(--bg-2);
    border-radius: 50%;
    top: 50%; transform: translateY(-50%);
}
.v1-ticket::before { left: -9px; }
.v1-ticket::after  { right: -9px; }
.v1-ticket-head {
    text-align: center;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--or-foncé);
    margin-bottom: 28px;
}
.v1-ticket-head .v1-eyebrow { display: block; margin-bottom: 4px; }
.v1-ticket-head .v1-script { color: var(--or); display: block; }
.v1-stamps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.v1-stamp {
    aspect-ratio: 1;
    border: 1px dashed var(--or-foncé);
    color: var(--or-foncé);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    border-radius: 50%;
}
.v1-stamp.is-filled {
    background: var(--or);
    color: var(--noir);
    border-style: solid;
    border-color: var(--or);
}
.v1-loyalty-content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(36px, 4.8vw, 56px);
    line-height: 1.1;
    margin: 22px 0 0;
    color: var(--ivoire);
}
.v1-loyalty-content h2 em { font-style: italic; color: var(--or); font-weight: 400; }
.v1-loyalty-content p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 20px;
    margin: 24px 0 32px;
}
.v1-rewards { list-style: none; margin: 0 0 36px; padding: 0; }
.v1-rewards li {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    gap: 16px;
}
.v1-rewards li strong {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--or);
    font-weight: 400;
    font-size: 18px;
}
.v1-rewards li span {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */
.v1-faq {
    background: var(--bg);
    padding: 110px 28px;
    border-bottom: 1px solid var(--line);
}
.v1-faq-inner {
    max-width: 880px;
    margin: 0 auto;
}
.v1-faq-list { margin-top: 56px; }
.v1-faq-item {
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
}
.v1-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-family: var(--font-serif);
    font-size: 21px;
    color: var(--ivoire);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.v1-faq-item summary::-webkit-details-marker { display: none; }
.v1-faq-item summary::after {
    content: '+';
    color: var(--or);
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: italic;
    line-height: 1;
    transition: transform 0.3s;
}
.v1-faq-item[open] summary::after { content: '–'; }
.v1-faq-item summary:hover { color: var(--or); }
.v1-faq-answer {
    padding: 0 0 24px;
    color: var(--ink-mute);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    line-height: 1.65;
    max-width: 680px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.v1-footer {
    background: var(--bg-2);
    padding: 80px 28px 40px;
    color: var(--ink-mute);
}
.v1-footer-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line);
}
.v1-footer-brand .v1-logo-name {
    font-size: 24px;
    letter-spacing: 0.18em;
    color: var(--ivoire);
}
.v1-footer-brand .v1-logo-sub {
    color: var(--or);
    font-size: 18px;
    margin-bottom: 18px;
}
.v1-footer-brand p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    margin: 14px 0 0;
}
.v1-footer-col h4 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    color: var(--or);
    margin: 0 0 18px;
    font-weight: 500;
}
.v1-footer-col ul { list-style: none; margin: 0; padding: 0; }
.v1-footer-col li { margin-bottom: 12px; font-size: 14px; }
.v1-footer-col li a:hover { color: var(--or); }
.v1-footer-bottom {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .v1-hero-inner,
    .v1-reserve-inner,
    .v1-cc-inner,
    .v1-loyalty-inner { grid-template-columns: 1fr; gap: 56px; }
    .v1-signatures-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .v1-reviews-grid { grid-template-columns: 1fr; }
    .v1-trust-grid { grid-template-columns: 1fr; }
    .v1-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .v1-header-inner { grid-template-columns: 1fr auto; }
    .v1-nav-left { display: none; }
    .v1-section, .v1-cc, .v1-loyalty, .v1-faq, .v1-reserve { padding: 72px 22px; }
    .v1-hero { padding: 60px 22px 40px; }
    .v1-rewards li { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 560px) {
    .v1-signatures-grid { grid-template-columns: 1fr; }
    .v1-footer-grid { grid-template-columns: 1fr; }
    .v1-stamps { grid-template-columns: repeat(5, 1fr); gap: 6px; }
}

/* ============================================================
   MOBILE · HERO VIDÉO PLEIN ÉCRAN (≤ 960px)
   La vidéo prend le first-screen, en pleine largeur, sous le
   header. Un indicateur de défilement doré pulse en bas pour
   inviter à scroller. Tout le reste reste inchangé.
   ============================================================ */
@media (max-width: 960px) {
    /* Le hero passe en flex column inversée : on supprime les paddings
       et on remonte la vidéo tout en haut. */
    .v1-hero {
        padding: 0;
        background: var(--bg);
    }
    .v1-hero-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    /* Le bloc texte vient APRÈS la vidéo, avec son padding propre. */
    .v1-hero-inner > div:not(.v1-hero-media-video) {
        order: 2;
        padding: 56px 22px 40px;
    }

    /* La vidéo : first-screen, pleine largeur, cadrage cinéma. */
    .v1-hero-media-video {
        order: 1;
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);   /* casse le padding du parent */
        margin-right: calc(50% - 50vw);
        margin-top: 0;
        aspect-ratio: auto;
        height: calc(100svh - 64px);     /* viewport - header sticky */
        height: calc(100vh - 64px);      /* fallback */
        border: 0;
        box-shadow: none;
        background: #000;
    }
    .v1-hero-media-video video {
        object-fit: cover;               /* remplit l'écran sans bandes */
        height: 100%;
        width: 100%;
    }
    /* Sur mobile, on retire les corners hors-cadre (le bord d'écran fait office) */
    .v1-hero-media-video::before,
    .v1-hero-media-video::after { display: none; }

    /* Pastille EN SALLE déplacée côté safe area iPhone */
    .v1-hero-media-video .v1-live-dot {
        top: 18px;
        right: 18px;
    }

    /* La caption manuscrite reste en surimpression mais plus haute pour
       laisser la place à l'indicateur de scroll. */
    .v1-hero-media-video .v1-hero-cartouche {
        padding: 56px 22px 78px;
    }

    /* Indicateur de scroll : flèche dorée + libellé manuscrit, qui bouge
       doucement de haut en bas pour signaler qu'il y a du contenu en-dessous. */
    .v1-hero-media-video::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: auto; height: auto;
        border: 0;
        z-index: 3;
    }
    /* On reconstruit un indicateur custom via le pseudo-element du bouton play
       caché : plus simple, on ajoute un élément réel dans le HTML. Variante :
       on stylise un .v1-scroll-hint qu'on injecte côté view. */
    .v1-scroll-hint {
        position: absolute;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: var(--or-clair);
        font-family: var(--font-sans);
        font-size: 10.5px;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        pointer-events: none;
        animation: v1-scroll-bounce 2.4s infinite ease-in-out;
        text-shadow: 0 1px 8px rgba(0,0,0,0.7);
    }
    .v1-scroll-hint svg {
        width: 18px; height: 18px;
        color: var(--or);
    }
    @keyframes v1-scroll-bounce {
        0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
        50%      { transform: translate(-50%, 8px); opacity: 1; }
    }

    /* Le bouton play (si autoplay bloqué) reste centré et plus visible */
    .v1-hero-play {
        width: 92px; height: 92px;
        background: rgba(14,14,15,0.55);
    }
}

/* Sur desktop on cache le scroll-hint (utile seulement en plein-écran mobile). */
@media (min-width: 961px) {
    .v1-scroll-hint { display: none !important; }
}

/* ============================================================
   V1 · COMPOSANTS PAGES SECONDAIRES
   Page hero, sommaires, listes type carte, formulaires,
   articles longs. Réutilise les tokens D1.
   ============================================================ */

/* — PAGE HERO (intro de page interne) — */
.v1-page-hero {
    padding: 90px 28px 60px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.v1-page-hero-inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.v1-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-dim);
    flex-wrap: wrap;
}
.v1-breadcrumb a { color: var(--ink-mute); }
.v1-breadcrumb a:hover { color: var(--or); }
.v1-breadcrumb-sep { color: var(--or-foncé); }
.v1-page-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(48px, 6.8vw, 84px);
    line-height: 1;
    letter-spacing: -0.012em;
    margin: 0;
    color: var(--ivoire);
}
.v1-page-title em { font-style: italic; color: var(--or); font-weight: 400; }
.v1-page-lead {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 20px;
    line-height: 1.55;
    margin: 28px 0 0;
    max-width: 640px;
}

/* — CARTE (menu) — */
.v1-menu-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    padding: 70px 28px 110px;
    max-width: var(--maxw);
    margin: 0 auto;
}
.v1-menu-toc {
    position: sticky;
    top: 88px;
    height: max-content;
    border-left: 1px solid var(--line);
    padding-left: 22px;
    align-self: start;
}
.v1-menu-toc h3 {
    font-size: 11px;
    color: var(--or);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin: 0 0 18px;
    font-weight: 500;
    font-family: var(--font-sans);
}
.v1-menu-toc ul { list-style: none; margin: 0; padding: 0; }
.v1-menu-toc li { margin-bottom: 10px; }
.v1-menu-toc a {
    color: var(--ink-mute);
    font-size: 14px;
    transition: color 0.2s;
}
.v1-menu-toc a:hover, .v1-menu-toc a.is-active { color: var(--or); }
.v1-menu-categories {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.v1-menu-category-head {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--or-foncé);
    margin-bottom: 26px;
}
.v1-menu-chapter {
    display: block;
    font-size: 11px;
    color: var(--or);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 500;
    margin-bottom: 10px;
}
.v1-menu-category-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.05;
    color: var(--ivoire);
    margin: 0;
    font-style: italic;
}
.v1-menu-category-desc {
    margin: 14px 0 0;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 17px;
    line-height: 1.5;
}
.v1-menu-items {
    display: flex;
    flex-direction: column;
}
.v1-menu-item {
    padding: 22px 0;
    border-bottom: 1px dashed var(--line);
}
.v1-menu-item:last-child { border-bottom: 0; }
.v1-menu-item-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: baseline;
}
.v1-menu-item-name {
    font-family: var(--font-serif);
    color: var(--ivoire);
    font-size: 19px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}
.v1-menu-item-mark {
    color: var(--or);
    font-size: 13px;
    margin-left: 6px;
    vertical-align: middle;
}
.v1-menu-item-price {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--or);
    font-size: 19px;
    font-weight: 500;
    white-space: nowrap;
}
.v1-menu-item-desc {
    margin: 8px 0 0;
    color: var(--ink-mute);
    font-size: 14px;
    line-height: 1.55;
    max-width: 92%;
}
.v1-menu-item-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.v1-badge {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid var(--or-foncé);
    color: var(--or-clair);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.v1-badge-veg   { border-color: #6F8E5A; color: #A8C99A; }
.v1-badge-gf    { border-color: #8A6F47; color: #C9A66B; }

/* — FILTRES — */
.v1-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.v1-filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink-mute);
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}
.v1-filter-btn:hover { color: var(--or); border-color: var(--or-foncé); }
.v1-filter-btn.is-active { background: var(--or); color: var(--noir); border-color: var(--or); }

/* — FORMULAIRES (réservation, contact, fidélité, légales) — */
.v1-form {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 48px;
    max-width: 720px;
    margin: 0 auto;
}
.v1-form h2, .v1-form-section h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--ivoire);
    font-size: 24px;
    margin: 0 0 24px;
    font-style: italic;
}
.v1-form-row { display: grid; gap: 22px; margin-bottom: 22px; }
.v1-form-row-2 { grid-template-columns: 1fr 1fr; }
.v1-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.v1-form-field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--or);
    font-weight: 500;
}
.v1-form-field input,
.v1-form-field select,
.v1-form-field textarea {
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--ivoire);
    font-family: var(--font-sans);
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 0;
    transition: border-color 0.2s;
    width: 100%;
}
.v1-form-field input:focus,
.v1-form-field select:focus,
.v1-form-field textarea:focus {
    outline: 0;
    border-color: var(--or);
}
.v1-form-field textarea { min-height: 140px; resize: vertical; font-family: var(--font-serif); }
.v1-form-field small {
    color: var(--ink-dim);
    font-size: 12px;
    font-style: italic;
}
.v1-form-error {
    background: rgba(155,60,40,0.15);
    border: 1px solid #9B3C28;
    padding: 14px 18px;
    color: #E8B2A2;
    margin-bottom: 24px;
    font-size: 14px;
}
.v1-form-success {
    background: rgba(154,128,68,0.15);
    border: 1px solid var(--or);
    padding: 18px 22px;
    color: var(--or-clair);
    margin-bottom: 24px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
}

/* — CONTENU LONG (articles, légal, à propos, FAQ texte) — */
.v1-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 28px 110px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.7;
}
.v1-content h2 {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--or);
    font-size: 30px;
    margin: 56px 0 18px;
    font-weight: 500;
}
.v1-content h3 {
    font-family: var(--font-serif);
    color: var(--ivoire);
    font-size: 22px;
    margin: 40px 0 14px;
    font-weight: 500;
}
.v1-content p { margin: 0 0 22px; color: var(--ink); }
.v1-content a { color: var(--or); text-decoration: underline; text-underline-offset: 3px; }
.v1-content a:hover { color: var(--or-clair); }
.v1-content ul, .v1-content ol { padding-left: 22px; margin: 0 0 22px; }
.v1-content li { margin-bottom: 10px; }
.v1-content strong { color: var(--ivoire); font-weight: 500; }
.v1-content em     { color: var(--or-clair); font-style: italic; }
.v1-content blockquote {
    margin: 28px 0;
    padding: 22px 26px;
    background: var(--bg-2);
    border-left: 2px solid var(--or);
    font-style: italic;
    color: var(--ink-mute);
}

/* — TIMELINE (about page) — */
.v1-timeline {
    list-style: none;
    margin: 56px 0;
    padding: 0;
    border-left: 1px solid var(--line);
    padding-left: 32px;
}
.v1-timeline li { margin-bottom: 36px; position: relative; }
.v1-timeline li::before {
    content: '';
    position: absolute;
    left: -39px; top: 6px;
    width: 14px; height: 14px;
    background: var(--bg);
    border: 2px solid var(--or);
    border-radius: 50%;
}
.v1-timeline-year {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--or);
    font-size: 24px;
    margin-bottom: 6px;
    font-weight: 500;
}
.v1-timeline h2 { color: var(--ivoire); font-style: normal; margin: 0 0 12px; font-size: 22px; }

/* — CARTES SECONDAIRES (blog, local landing, etc.) — */
.v1-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}
.v1-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.3s;
}
.v1-card:hover { border-color: var(--or); }
.v1-card-media {
    aspect-ratio: 16/10;
    background: var(--bg-3);
    overflow: hidden;
}
.v1-card-media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04); }
.v1-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.v1-card-tag {
    font-size: 11px;
    color: var(--or);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 10px;
    font-weight: 500;
}
.v1-card-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ivoire);
    margin: 0 0 12px;
}
.v1-card-excerpt {
    color: var(--ink-mute);
    font-size: 14.5px;
    line-height: 1.55;
    flex: 1;
    margin: 0 0 16px;
}
.v1-card-foot {
    font-size: 12px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-top: 1px dashed var(--line);
    padding-top: 14px;
}

/* — RÉSERVATION : étapes simples — */
.v1-steps-block { max-width: 760px; margin: 0 auto 56px; }
.v1-step-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 22px 24px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    margin-bottom: 14px;
    align-items: baseline;
}
.v1-step-card strong {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--or);
    font-size: 30px;
    font-weight: 500;
}

/* — Responsive — */
@media (max-width: 900px) {
    .v1-menu-layout { grid-template-columns: 1fr; gap: 32px; padding: 50px 22px 80px; }
    .v1-menu-toc { position: static; border-left: 0; padding-left: 0; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
    .v1-menu-toc ul { display: flex; flex-wrap: wrap; gap: 8px 16px; }
    .v1-form-row-2 { grid-template-columns: 1fr; }
    .v1-form { padding: 32px 22px; }
    .v1-cards-grid { grid-template-columns: 1fr; padding: 0 22px; }
    .v1-page-hero { padding: 60px 22px 40px; }
    .v1-content { padding: 50px 22px 80px; font-size: 16.5px; }
}
