/* ============================================================
   REEFORM — Events
   Dark editorial luxury · Host Grotesk · Wine #7a0019
   Self-contained design system (mirrors homepage) + editorial layer
   ============================================================ */

:root {
    --wine: #7a0019;
    --wine-light: #ff4f75;
    --ink: #060406;
    --hairline: rgba(255, 255, 255, 0.09);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
    background-color: var(--ink);
    color: #fff;
    font-family: "Host Grotesk", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection { background: var(--wine); color: #fff; }

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--wine-light);
    outline-offset: 3px;
    border-radius: 999px;
}

img { display: block; }

/* ---------- Ambient backdrop : aurora + grain ---------- */
.backdrop {
    position: fixed; inset: 0; z-index: -2;
    background:
        radial-gradient(ellipse 60% 45% at 15% -5%, rgba(122, 0, 25, 0.45), transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 25%, rgba(217, 37, 76, 0.12), transparent 65%),
        radial-gradient(ellipse 70% 50% at 50% 110%, rgba(60, 4, 14, 0.55), transparent 70%),
        #060406;
}
.grain {
    position: fixed; inset: 0; z-index: -1;
    opacity: 0.05; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- Liquid glass surfaces ---------- */
.glass {
    background: linear-gradient(150deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.015) 55%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid var(--hairline);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 30px 70px rgba(0,0,0,0.45);
}
.glass-soft {
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--hairline);
}
.glass-wine {
    background: linear-gradient(160deg, rgba(122,0,25,0.40) 0%, rgba(20,2,6,0.65) 70%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(217,37,76,0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 30px 80px rgba(122,0,25,0.25);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
    min-height: 52px; padding: 0 2rem; border-radius: 999px;
    font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: 13px;
    cursor: pointer; text-align: center;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .35s ease;
}
.btn svg { width: 1rem; height: 1rem; }
.btn-primary {
    background: linear-gradient(135deg, #9c0322 0%, var(--wine) 55%, #4d0410 100%);
    border: 1px solid rgba(217,37,76,0.55);
    color: #fff;
    box-shadow: 0 14px 38px rgba(122,0,25,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
    border-color: var(--wine-light);
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(217,37,76,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-ghost {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.btn-ghost:hover { background: #fff; color: #060406; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--wine); border: 1px solid #fff; }
.btn-light:hover { background: var(--wine); color: #fff; border-color: var(--wine); transform: translateY(-2px); }

/* ---------- Typography ---------- */
.display-xl {
    font-size: clamp(2.75rem, 7.5vw, 7rem);
    line-height: 0.92; letter-spacing: -0.045em; font-weight: 800;
    text-wrap: balance;
}
.display-lg {
    font-size: clamp(2.2rem, 4.6vw, 4.4rem);
    line-height: 0.95; letter-spacing: -0.035em; font-weight: 800;
    text-wrap: balance;
}
.eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--wine-light);
}
.text-fade {
    background: linear-gradient(to right, #fff 20%, rgba(255,255,255,0.35));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.accent-italic { font-style: italic; font-weight: 600; color: var(--wine-light); }

/* ============================================================
   NAVIGATION  (mirrors homepage behaviour exactly)
   ============================================================ */
#navbar { pointer-events: none; }
#nav-inner {
    pointer-events: auto;
    width: 100%; max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none;
    padding: 8px 0;
    overflow: hidden;
    transition: max-width .7s var(--ease-expo), background .5s ease, padding .5s ease, box-shadow .5s ease, border-color .5s ease;
}
#nav-links {
    transition: max-width .7s var(--ease-expo), opacity .4s ease, gap .5s ease;
    max-width: 800px; opacity: 1; overflow: hidden; white-space: nowrap;
}
#nav-logo img { transition: width .7s var(--ease-expo); width: 150px; }
#nav-cta {
    transition: max-width .7s var(--ease-expo), opacity .5s ease, padding .5s ease;
    max-width: 250px; opacity: 1; overflow: hidden; white-space: nowrap;
}
#burger {
    transition: max-width .7s var(--ease-expo), opacity .5s ease, padding .5s ease, margin .5s ease;
    max-width: 60px; opacity: 1; overflow: hidden;
}
@media (max-width: 768px) {
    /* Garde le logo et le menu alignés avec le contenu mobile. */
    #navbar { padding-left: 1.5rem; padding-right: 1.5rem; }
    /* Évite l'animation de largeur au chargement sur téléphone. */
    #nav-logo img { width: 128px; transition: none; }
    #nav-cta { max-width: 0; opacity: 0; padding-left: 0; padding-right: 0; }
}
@media (min-width: 769px) {
    #burger { max-width: 0; opacity: 0; padding: 0; margin: 0; border: 0; }
}
/* SCROLLED STATE (the pill) */
#navbar.nav-scrolled #nav-inner {
    max-width: 420px;
    background: rgba(10, 2, 4, 0.75);
    backdrop-filter: blur(32px) saturate(140%);
    -webkit-backdrop-filter: blur(32px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 8px 8px 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
#navbar.nav-scrolled #nav-links { max-width: 0; opacity: 0; gap: 0; pointer-events: none; }
#navbar.nav-scrolled #nav-logo img { width: 120px; }
@media (max-width: 768px) {
    #navbar.nav-scrolled #nav-inner { width: 100%; max-width: none; gap: .625rem; padding: 8px 8px 8px 16px; }
    #navbar.nav-scrolled #nav-logo img { width: 100px; }
    #navbar.nav-scrolled #nav-cta { max-width: 210px; opacity: 1; padding-left: 1.25rem; padding-right: .375rem; letter-spacing: .14em; }
    #navbar.nav-scrolled #burger { max-width: 0; opacity: 0; padding: 0; margin: 0; pointer-events: none; }
}
@media (max-width: 380px) {
    #navbar { padding-left: 1.375rem; padding-right: 1.375rem; }
    #navbar.nav-scrolled #nav-inner { gap: .5rem; padding-left: 14px; }
    #navbar.nav-scrolled #nav-logo img { width: 94px; }
    #navbar.nav-scrolled #nav-cta { max-width: 204px; padding-left: 1rem; letter-spacing: .12em; }
}
.nav-link {
    position: relative; padding: 12px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,0.78);
    transition: color .25s ease, background-color .25s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: #fff; background: rgba(217,37,76,0.18); }

/* Mobile menu */
#mobile-menu { transition: opacity .5s ease; }
#mobile-menu .m-link {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s var(--ease-expo), transform .6s var(--ease-expo);
}
#mobile-menu.open .m-link { opacity: 1; transform: translateY(0); }
#mobile-menu.open .m-link:nth-child(1) { transition-delay: .08s; }
#mobile-menu.open .m-link:nth-child(2) { transition-delay: .14s; }
#mobile-menu.open .m-link:nth-child(3) { transition-delay: .20s; }
#mobile-menu.open .m-link:nth-child(4) { transition-delay: .26s; }
#mobile-menu.open .m-link:nth-child(5) { transition-delay: .32s; }
#mobile-menu.open .m-link:nth-child(6) { transition-delay: .38s; }
.burger-line { transition: transform .3s ease; }

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
    will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
    opacity: 0; transform: translateY(28px);
    transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .3s; }

/* ---------- Cards motion ---------- */
.lift { transition: transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo), border-color .35s ease; }
.lift:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); }
.img-zoom img, .img-zoom .bg-zoom { transition: transform 1.2s var(--ease-expo); }
.img-zoom:hover img, .img-zoom:hover .bg-zoom { transform: scale(1.05); }

/* ---------- Shared scrims ---------- */
.scrim-bottom {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, #060406 4%, rgba(6,4,6,0.82) 26%, rgba(6,4,6,0.30) 52%, transparent 74%);
}
.scrim-left {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to right, rgba(6,4,6,0.92) 0%, rgba(6,4,6,0.45) 42%, transparent 74%);
}
.scrim-wine {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(120% 80% at 82% -8%, rgba(122,0,25,0.34), transparent 60%);
}
.scrim-soft {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, #060406 2%, rgba(6,4,6,0.55) 30%, transparent 68%);
}

/* ============================================================
   EDITORIAL EVENTS LAYER
   ============================================================ */

.ev-shell { width: 100%; max-width: 1600px; margin: 0 auto; padding-left: clamp(1rem, 4vw, 2rem); padding-right: clamp(1rem, 4vw, 2rem); position: relative; z-index: 10; }
.ev-section { margin-top: clamp(4.5rem, 9vw, 8.5rem); }
.ev-section--tight { margin-top: clamp(3rem, 6vw, 5rem); }

/* Section heading */
.ev-head-eyebrow { display: inline-flex; align-items: center; gap: .8rem; }
.ev-head-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--wine-light); display: inline-block; }

/* ---------- HERO ---------- */
.ev-hero {
    position: relative; isolate: isolate;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: clamp(1.75rem, 4vw, 2.75rem);
    overflow: hidden;
    min-height: 94svh;
    display: flex; align-items: flex-end;
}
.ev-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.ev-hero__scrim {
    position: absolute; inset: 0; pointer-events: none;
    background:
        linear-gradient(to top, #060406 3%, rgba(6,4,6,0.74) 24%, rgba(6,4,6,0.26) 52%, transparent 76%),
        linear-gradient(to right, rgba(6,4,6,0.78) 0%, rgba(6,4,6,0.30) 42%, transparent 72%),
        radial-gradient(120% 75% at 84% -6%, rgba(122,0,25,0.32), transparent 60%);
}
.ev-hero__topfade { position: absolute; inset-inline: 0; top: 0; height: 11rem; background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent); pointer-events: none; }
.ev-hero__inner {
    position: relative; z-index: 10; width: 100%;
    padding: clamp(1.75rem, 5vw, 4.5rem);
    padding-top: clamp(7rem, 16vh, 10rem);
    display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 1024px) {
    .ev-hero__inner { grid-template-columns: minmax(0,1fr) 280px; align-items: end; }
}

.ev-vtext {
    position: absolute; top: clamp(7rem, 16vw, 11rem); right: clamp(1rem, 3vw, 2.2rem); z-index: 10;
    writing-mode: vertical-rl; text-orientation: mixed;
    letter-spacing: 0.34em; font-size: 11px; font-weight: 700; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
@media (max-width: 1023px) { .ev-vtext { display: none; } }

.ev-kicker { font-size: clamp(10px, 1vw, 12px); font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

.ev-mega {
    font-weight: 800; letter-spacing: -0.045em; line-height: 0.9;
    font-size: clamp(2.9rem, 8.5vw, 7rem); color: #fff;
    text-wrap: balance;
}
.ev-mega .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.ev-mega .line > span { display: block; transform: translateY(110%); will-change: transform; }
.ev-line-anim .line > span { animation: evLineUp 1.1s var(--ease-expo) forwards; }
.ev-line-anim .line:nth-child(1) > span { animation-delay: .22s; }
.ev-line-anim .line:nth-child(2) > span { animation-delay: .36s; }
.ev-line-anim .line:nth-child(3) > span { animation-delay: .50s; }
@keyframes evLineUp { to { transform: translateY(0); } }

.ev-lede { font-size: clamp(1.05rem, 1.8vw, 1.5rem); font-weight: 300; line-height: 1.4; color: rgba(255,255,255,0.74); max-width: 40ch; }

.ev-tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.ev-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .6rem 1rem; border-radius: 999px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.86); font-size: .78rem; font-weight: 600; letter-spacing: .02em;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.ev-tag .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--wine-light); }
.ev-tag .dot.pulse { animation: evPulse 2.4s ease-in-out infinite; }
@keyframes evPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.ev-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Hero editorial rail (side meta) */
.ev-rail {
    display: flex; flex-direction: column; gap: 0;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.5rem;
    background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}
.ev-rail__row { padding: 1.05rem 1.25rem; }
.ev-rail__row + .ev-rail__row { border-top: 1px solid rgba(255,255,255,0.1); }
.ev-rail__k { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wine-light); margin-bottom: .35rem; }
.ev-rail__v { font-size: .98rem; font-weight: 600; color: #fff; line-height: 1.25; }
.ev-rail__v small { display: block; font-weight: 400; color: rgba(255,255,255,0.55); font-size: .8rem; margin-top: .2rem; }

/* Scroll cue */
.ev-scrollcue { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.ev-scrollcue span { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 700; }
.ev-scrollcue .cue { width: 26px; height: 42px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.32); display: flex; justify-content: center; padding-top: 7px; }
.ev-scrollcue .cue::after { content: ""; width: 4px; height: 8px; border-radius: 99px; background: var(--wine-light); animation: evCue 2s var(--ease-expo) infinite; }
@keyframes evCue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(15px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }
@media (max-width: 1023px) { .ev-scrollcue { display: none; } }

/* ---------- Marquee ---------- */
.ev-marquee { overflow: hidden; white-space: nowrap; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 1.15rem 0; margin-top: clamp(2.5rem,5vw,4rem); }
.ev-marquee-track { display: inline-flex; align-items: center; gap: 3rem; padding-right: 3rem; animation: evMarquee 40s linear infinite; will-change: transform; }
.ev-marquee-track span { font-size: .82rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ev-marquee-track .star { color: var(--wine-light); }
@keyframes evMarquee { to { transform: translateX(-50%); } }

/* ---------- Bientôt disponible ---------- */
.ev-coming {
    position: relative; overflow: hidden;
    border-radius: clamp(1.75rem, 4vw, 2.75rem);
    border: 1px solid rgba(217,37,76,0.24);
    background: linear-gradient(155deg, rgba(122,0,25,0.34) 0%, rgba(12,3,7,0.86) 58%);
    display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 1024px) { .ev-coming { grid-template-columns: 1.15fr 1fr; } }
.ev-coming__body { padding: clamp(2rem, 5vw, 4rem); position: relative; z-index: 2; }
.ev-coming__index { font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 800; line-height: 1; letter-spacing: -0.05em; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.22); margin-bottom: 1.5rem; }
.ev-coming__title { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.95; text-transform: uppercase; margin: .5rem 0 1.4rem; }
.ev-coming__veil {
    background: linear-gradient(110deg, rgba(255,255,255,0.4), rgba(255,255,255,0.95) 45%, rgba(255,255,255,0.4));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% 100%; animation: evShimmer 6s linear infinite;
}
@keyframes evShimmer { to { background-position: -200% 0; } }
.ev-coming__line { width: 64px; height: 2px; background: var(--wine-light); margin-bottom: 1.4rem; }
.ev-coming__media { position: relative; overflow: hidden; min-height: 280px; }
.ev-coming__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.ev-coming__dots { display: inline-flex; gap: .5rem; margin-bottom: 1.5rem; }
.ev-coming__dots i { width: 8px; height: 8px; border-radius: 999px; background: var(--wine-light); opacity: .35; animation: evDot 1.8s ease-in-out infinite; }
.ev-coming__dots i:nth-child(2) { animation-delay: .25s; }
.ev-coming__dots i:nth-child(3) { animation-delay: .5s; }
@keyframes evDot { 0%,100% { opacity: .25; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }

/* ---------- Past events / editions ---------- */
.ev-editions { display: grid; grid-template-columns: 1fr; gap: clamp(1.1rem, 2vw, 1.6rem); }
@media (min-width: 900px) {
    .ev-editions { grid-template-columns: repeat(12, 1fr); }
    .ev-edition--feature { grid-column: span 12; }
    .ev-edition--half { grid-column: span 6; }
}

.ev-edition {
    position: relative; overflow: hidden; display: flex; align-items: flex-end;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: clamp(1.5rem, 3vw, 2.25rem);
    min-height: 460px; text-decoration: none; color: #fff;
    transition: border-color .4s ease, transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo);
}
.ev-edition--feature { min-height: 540px; }
@media (min-width: 1024px) { .ev-edition--feature { min-height: 620px; } }
.ev-edition--banner { min-height: 380px; }
@media (min-width: 900px) { .ev-edition--banner { grid-column: span 12; min-height: 400px; } }
.ev-edition:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-4px); box-shadow: 0 40px 90px rgba(0,0,0,0.5); }
.ev-edition__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .68; transition: transform 1.3s var(--ease-expo), opacity .4s ease; }
.ev-edition:hover .ev-edition__img { transform: scale(1.06); opacity: .8; }
.ev-edition__num {
    position: absolute; top: clamp(1.2rem,3vw,2rem); left: clamp(1.5rem,3vw,2.5rem); z-index: 3;
    font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -0.04em;
    color: transparent; -webkit-text-stroke: 1.3px rgba(255,255,255,0.4);
}
.ev-edition__body { position: relative; z-index: 3; padding: clamp(1.75rem, 4vw, 3rem); width: 100%; }
.ev-edition__meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; align-items: center; margin-bottom: 1rem; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.62); }
.ev-edition__meta b { color: var(--wine-light); font-weight: 700; }
.ev-edition__title { font-size: clamp(2.1rem, 4.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; line-height: .96; text-transform: uppercase; margin-bottom: .9rem; }
.ev-edition--feature .ev-edition__title { font-size: clamp(2.6rem, 6vw, 5rem); }
.ev-edition__text { color: rgba(255,255,255,0.74); font-weight: 300; line-height: 1.5; max-width: 46ch; margin-bottom: 1.4rem; }
.ev-edition__cta { display: inline-flex; align-items: center; gap: .6rem; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; }
.ev-edition__cta svg { width: 1rem; height: 1rem; transition: transform .35s var(--ease-expo); }
.ev-edition:hover .ev-edition__cta svg { transform: translateX(5px); }

/* ---------- Brand / community ---------- */
.ev-manifesto {
    position: relative; overflow: hidden;
    border-radius: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid rgba(255,255,255,0.10);
    display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 1024px) { .ev-manifesto { grid-template-columns: 1.05fr .95fr; } }
.ev-manifesto__media { position: relative; min-height: 320px; overflow: hidden; }
.ev-manifesto__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.ev-manifesto__body { padding: clamp(2rem, 5vw, 4.5rem); }
.ev-quote { font-size: clamp(1.6rem, 3.2vw, 2.7rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; text-wrap: balance; }
.ev-quote em { font-style: italic; color: var(--wine-light); font-weight: 600; }

/* Piliers : liste éditoriale (la colonne de texte est trop étroite pour 3 cartes) */
.ev-pillars { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.12); }
.ev-pillar {
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ev-pillar__t { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: .35rem; }
.ev-pillar__p { color: rgba(255,255,255,0.62); font-weight: 300; line-height: 1.6; font-size: .95rem; text-wrap: pretty; }

/* ---------- CTA band ---------- */
.ev-cta-band {
    position: relative; overflow: hidden; text-align: center;
    border-radius: clamp(1.75rem, 4vw, 3rem); border: 1px solid rgba(255,255,255,0.1);
    padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem);
}
.ev-cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.ev-cta-band__scrim { position: absolute; inset: 0; background: linear-gradient(135deg, var(--ink), rgba(26,5,10,0.86) 50%, var(--ink)); pointer-events: none; }

/* ---------- FAQ ---------- */
.ev-faq { display: flex; flex-direction: column; gap: 0; }
.ev-faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.ev-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.ev-faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.65rem 0; text-align: left; cursor: pointer; background: none; border: 0; color: #fff; }
.ev-faq-q h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; text-transform: uppercase; letter-spacing: -0.01em; }
.ev-faq-ic { width: 42px; height: 42px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--wine-light); font-size: 1.25rem; background: rgba(255,255,255,0.035); border: 1px solid var(--hairline); transition: transform .35s var(--ease-expo); }
.ev-faq-item.open .ev-faq-ic { transform: rotate(45deg); }
.ev-faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-expo); }
.ev-faq-a p { padding: 0 3rem 1.75rem 0; color: rgba(255,255,255,0.62); font-weight: 300; line-height: 1.6; }

/* ============================================================
   PAGE FAQ
   ============================================================ */
.faq-hero .ev-hero__inner { grid-template-columns: minmax(0, 1fr); }
/* La planche est claire (papier) : voile plus dense que sur les héros photo,
   sinon le titre et le chapô passent mal. */
.faq-hero .ev-hero__img { opacity: .38; }
.faq-hero .ev-hero__scrim {
    background:
        linear-gradient(to top, #060406 6%, rgba(6,4,6,0.88) 34%, rgba(6,4,6,0.55) 62%, rgba(6,4,6,0.35) 100%),
        radial-gradient(120% 80% at 80% -10%, rgba(122,0,25,0.38), transparent 62%);
}

/* Sommaire : pastilles d'ancrage */
.faq-toc {
    display: flex; flex-wrap: wrap; gap: .6rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: .25rem;
}
.faq-toc a {
    display: inline-flex; align-items: center;
    padding: .6rem 1.1rem; border-radius: 999px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.78);
    font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.faq-toc a:hover { background: var(--wine); border-color: rgba(217,37,76,0.5); color: #fff; }

.faq-block { scroll-margin-top: 120px; }
.faq-title { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.faq-link { color: var(--wine-light); text-decoration: underline; text-underline-offset: 3px; }
.faq-link:hover { color: #fff; }

/* La page FAQ empile beaucoup de questions : on resserre le rythme */
.faq-block .ev-faq-q { padding: 1.35rem 0; }
.faq-block .ev-faq-a p { padding-right: 2rem; }
@media (max-width: 767px) {
    .faq-toc { gap: .45rem; }
    .faq-toc a { padding: .5rem .85rem; font-size: 11px; letter-spacing: .06em; }
    .faq-block .ev-faq-a p { padding-right: 0; }
}


/* Réponses riches : listes et tableau comparatif */
.faq-block .ev-faq-a ul { margin: 0 0 1.25rem; padding: 0 0 0 1.1rem; list-style: none; }
.faq-block .ev-faq-a ul li {
    position: relative; padding-left: .95rem; margin-bottom: .5rem;
    color: rgba(255,255,255,0.62); font-weight: 300; line-height: 1.6; font-size: .95rem;
}
.faq-block .ev-faq-a ul li::before {
    content: ""; position: absolute; left: 0; top: .62em;
    width: 5px; height: 5px; border-radius: 999px; background: var(--wine-light);
}
.faq-block .ev-faq-a p + ul { margin-top: -.35rem; }
.faq-tablewrap { overflow-x: auto; margin: 0 0 1.4rem; -webkit-overflow-scrolling: touch; }
.faq-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .9rem; }
.faq-table th, .faq-table td {
    text-align: left; padding: .75rem .9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1); vertical-align: top;
}
.faq-table th {
    font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--wine-light); border-bottom-color: rgba(217,37,76,0.35);
}
.faq-table td { color: rgba(255,255,255,0.66); font-weight: 300; line-height: 1.5; }
.faq-table td:first-child { color: #fff; font-weight: 600; white-space: nowrap; }


/* Liste « La Capsule en résumé » */
.capsule-check {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: .85rem 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.capsule-check li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.82);
    font-weight: 300;
    line-height: 1.45;
}
.capsule-check li span {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: .05rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122,0,25,0.5);
    border: 1px solid rgba(255,79,117,0.4);
    color: var(--wine-light);
    font-size: 11px;
    font-weight: 700;
}

/* ---------- Back link ---------- */
.ev-back { display: inline-flex; align-items: center; gap: .65rem; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color .25s ease; }
.ev-back:hover { color: #fff; }
.ev-back svg { width: 1.05rem; height: 1.05rem; transition: transform .3s var(--ease-expo); }
.ev-back:hover svg { transform: translateX(-4px); }

/* ============================================================
   DETAIL PAGE (event article)
   ============================================================ */
.ev-article-hero {
    position: relative; overflow: hidden; display: flex; align-items: flex-end;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: clamp(1.75rem, 4vw, 2.75rem);
    min-height: 88svh;
}
.ev-article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ev-article-hero__body { position: relative; z-index: 4; padding: clamp(1.75rem, 5vw, 4.5rem); width: 100%; max-width: 60rem; }
.ev-article-title { font-size: clamp(2.8rem, 9vw, 7rem); font-weight: 800; letter-spacing: -0.045em; line-height: 0.9; text-transform: uppercase; text-wrap: balance; }

/* Story */
.ev-story { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 1024px) { .ev-story { grid-template-columns: 1fr 320px; align-items: start; } }
.ev-story__lead { font-size: clamp(1.35rem, 2.6vw, 2rem); font-weight: 300; line-height: 1.35; letter-spacing: -0.01em; color: #fff; margin-bottom: 1.6rem; text-wrap: balance; }
.ev-story__lead strong { font-weight: 600; }
.ev-story__p { color: rgba(255,255,255,0.66); font-weight: 300; line-height: 1.7; font-size: 1.05rem; margin-bottom: 1.2rem; }
.ev-story__p:last-child { margin-bottom: 0; }

/* Info panel */
.ev-info { position: relative; border: 1px solid rgba(255,255,255,0.12); border-radius: 1.75rem; overflow: hidden; background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); }
@media (min-width: 1024px) { .ev-info { position: sticky; top: 120px; } }
.ev-info__row { padding: 1.2rem 1.4rem; }
.ev-info__row + .ev-info__row { border-top: 1px solid rgba(255,255,255,0.1); }
.ev-info__k { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wine-light); margin-bottom: .4rem; }
.ev-info__v { font-size: 1.02rem; font-weight: 600; color: #fff; line-height: 1.3; }

/* Programme / highlights */
.ev-prog { display: grid; grid-template-columns: 1fr; gap: clamp(.9rem, 2vw, 1.25rem); }
@media (min-width: 640px) { .ev-prog { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ev-prog { grid-template-columns: repeat(3, 1fr); } }
.ev-prog__item { position: relative; border: 1px solid rgba(255,255,255,0.1); border-radius: 1.4rem; padding: 1.6rem; background: rgba(255,255,255,0.025); transition: border-color .35s ease, background .35s ease, transform .4s var(--ease-expo); }
.ev-prog__item:hover { border-color: rgba(217,37,76,0.4); background: rgba(122,0,25,0.12); transform: translateY(-4px); }
.ev-prog__n { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--wine-light); margin-bottom: .9rem; }
.ev-prog__t { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: .5rem; }
.ev-prog__p { color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.5; font-size: .92rem; }

/* Gallery rhythm */
.ev-gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(150px, 24vw, 300px); gap: clamp(.7rem, 1.6vw, 1.1rem); }
@media (min-width: 768px) { .ev-gallery { grid-template-columns: repeat(4, 1fr); } }
.ev-gtile { position: relative; overflow: hidden; border-radius: 1.25rem; border: 1px solid rgba(255,255,255,0.08); }
.ev-gtile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-expo); }
.ev-gtile:hover img { transform: scale(1.07); }
.ev-gtile--wide { grid-column: span 2; }
.ev-gtile--tall { grid-row: span 2; }

/* ---------- Footer ---------- */
/* Identique au footer de l'accueil : mt-20 / pt-12 / pb-12 / border-t white/10 */
.ev-footer { margin-top: 5rem; padding: 3rem 0 3rem; border-top: 1px solid rgba(255,255,255,0.1); }
/* Le .ev-shell fait 1600px alors que l'accueil et les pages légales sont
   cadrés à 1320px : sans cette limite le pied de page s'étalait plus large
   que le reste du site et paraissait décentré. */
.ev-footer > div { width: min(100%, 1320px); margin-left: auto; margin-right: auto; }
.ev-footer a { transition: color .2s ease; }
.ev-footer .f-legal { color: rgba(255,255,255,0.66); }
.ev-footer .f-legal:hover { color: #fff; }
.ev-foot-social { display: inline-flex; gap: .35rem; padding: .65rem 1.25rem; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.ev-foot-social:hover { background: #fff; color: var(--ink); }

/* ============================================================
   MOBILE / PERF
   ============================================================ */
@media (max-width: 767px) {
    html { scroll-behavior: auto; }
    /* Héros plus courts et plus lisibles sur téléphone. */
    .ev-hero { min-height: 82svh; height: auto; }
    .ev-hero__inner { padding-top: 6.5rem; padding-bottom: 2rem; }
    .ev-rail { display: none; }
    .ev-mega { font-size: clamp(2.4rem, 11vw, 3.2rem); }
    .ev-lede { font-size: 1rem; }
    .ev-article-hero { min-height: 80svh; height: auto; }
    .ev-article-hero__body { padding-top: 6.5rem; padding-bottom: 2rem; }
    .ev-article-title { font-size: clamp(2.4rem, 12vw, 3.4rem); }
    .glass, .glass-soft, .glass-wine, .ev-rail, .ev-info, .ev-tag { backdrop-filter: none; -webkit-backdrop-filter: none; }
    #navbar.nav-scrolled #nav-inner { backdrop-filter: blur(12px) saturate(120%); -webkit-backdrop-filter: blur(12px) saturate(120%); }
    .reveal { transform: translateY(18px); transition-duration: .55s; will-change: auto; }
    .reveal-stagger > * { transform: translateY(14px); transition-duration: .5s; }
    .ev-edition { min-height: 380px; }
    .ev-edition--feature { min-height: 440px; }
    .btn { width: 100%; }
    .ev-cta-row .btn, .ev-coming .btn { width: 100%; }
}
@media (max-width: 420px) {
    .ev-tags { gap: .45rem; }
    .ev-tag { padding: .5rem .8rem; font-size: .72rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
    .ev-mega .line > span { transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Événements à venir ---------- */
.ev-upcard { cursor: default; }
.ev-upcard .ev-cta-row { margin-top: .4rem; }
.ev-upcard .ev-cta-row .btn { width: auto; }
@media (max-width: 767px) {
    .ev-upcard .ev-cta-row { flex-direction: column; }
    .ev-upcard .ev-cta-row .btn { width: 100%; }
}
/* Aligné sur la pastille « glass-wine » de la page d'accueil : même dégradé,
   même flou et même bordure, pour un rendu identique d'une page à l'autre. */
.ev-status-pill {
    display: inline-flex; align-items: center; gap: .625rem;
    padding: .5rem 1rem; border-radius: 999px;
    background: linear-gradient(160deg, rgba(122,0,25,0.40) 0%, rgba(20,2,6,0.65) 70%);
    border: 1px solid rgba(217,37,76,0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 30px 80px rgba(122,0,25,0.25);
    color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
}
.ev-status-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--wine-light); animation: evPulse 2.4s ease-in-out infinite; }

@media (max-width: 767px) {
    .ev-status-pill { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* ---------- Galerie : en-tête + bouton « voir toutes les photos » ---------- */
.ev-gallery-head {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.5rem;
}
.ev-gallery-head .eyebrow { margin: 0; }
.ev-gtile { cursor: zoom-in; }

/* ---------- Reels Instagram intégrés ---------- */
.ev-reels-wrap {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}
@media (min-width: 1024px) {
    /* texte à gauche, reels à droite : la largeur du desktop est utilisée */
    .ev-reels-wrap { grid-template-columns: minmax(0, 1fr) auto; gap: clamp(2.5rem, 5vw, 5rem); }
}
.ev-reels-intro .display-lg { margin: 1.25rem 0 1.1rem; }
.ev-reels-lede {
    color: rgba(255,255,255,0.62); font-weight: 300; line-height: 1.65;
    max-width: 40ch; margin-bottom: 2rem; text-wrap: pretty;
}
.ev-reels { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.5rem); justify-items: center; }
@media (min-width: 640px) { .ev-reels--two { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ev-reel-item { margin: 0; width: 100%; max-width: 360px; }
.ev-reel {
    position: relative;
    height: clamp(520px, 66svh, 620px);
    border-radius: clamp(1rem, 2.5vw, 1.5rem);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.ev-reel iframe { display: block; width: 100%; height: 100%; border: 0; }
.ev-reel-item figcaption { margin-top: .8rem; text-align: center; }
.ev-reel-item figcaption a {
    font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,0.62); transition: color .25s ease;
}
.ev-reel-item figcaption a:hover { color: #fff; }

/* ---------- Visionneuse plein écran ---------- */
.ev-lightbox {
    position: fixed; inset: 0; z-index: 300;
    display: flex; align-items: center; justify-content: center;
    background: rgba(4, 2, 3, 0.94);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.ev-lightbox.show { opacity: 1; pointer-events: auto; }
.ev-lb__stage {
    margin: 0; position: relative;
    width: min(94vw, 1200px); height: min(84svh, 900px);
    display: flex; align-items: center; justify-content: center;
}
.ev-lb__stage img {
    max-width: 100%; max-height: 100%;
    width: auto; height: auto; object-fit: contain;
    border-radius: .75rem;
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
    opacity: 0; transition: opacity .25s ease;
}
.ev-lb__stage img.loaded { opacity: 1; }
.ev-lb__btn {
    position: absolute; z-index: 5; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 999px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff;
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.ev-lb__btn:hover { background: var(--wine); border-color: var(--wine-light); }
.ev-lb__btn svg { width: 1.35rem; height: 1.35rem; }
.ev-lb__close { top: clamp(.9rem, 3vw, 1.75rem); right: clamp(.9rem, 3vw, 1.75rem); }
.ev-lb__close:hover { transform: rotate(90deg); }
.ev-lb__prev { left: clamp(.6rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.ev-lb__next { right: clamp(.6rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.ev-lb__prev:hover, .ev-lb__next:hover { transform: translateY(-50%) scale(1.06); }
.ev-lb__counter {
    position: absolute; bottom: clamp(.9rem, 3vw, 1.75rem); left: 50%; transform: translateX(-50%);
    font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    background: rgba(6,4,6,0.6); border: 1px solid rgba(255,255,255,0.14);
    padding: .5rem 1.1rem; border-radius: 999px;
}
@media (max-width: 640px) {
    .ev-lb__btn { width: 44px; height: 44px; }
    .ev-lb__prev { left: .5rem; } .ev-lb__next { right: .5rem; }
    .ev-lb__stage { width: 96vw; height: 76svh; }
}
@media (prefers-reduced-motion: reduce) {
    .ev-lightbox, .ev-lb__stage img { transition: none; }
}

/* ---------- Barre d'inscription mobile (pages événement à venir) ---------- */
.ev-sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    display: none; align-items: center; justify-content: space-between; gap: 1rem;
    padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
    background: rgba(10, 2, 4, 0.88);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border-top: 1px solid rgba(255,255,255,0.12);
}
.ev-sticky-cta__t { font-size: .85rem; font-weight: 700; letter-spacing: .02em; }
.ev-sticky-cta__d { font-size: .72rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: .1rem; }
@media (max-width: 767px) {
    .ev-sticky-cta { display: flex; }
    body:has(.ev-sticky-cta) .ev-footer { padding-bottom: 6.5rem; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #060406; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.35); }

/* ---------- Formulaire réutilisable (.rf-form) ----------
   Utilisé par contact.html. Même grammaire visuelle que les cartes du site :
   bord clair à 10 %, fond blanc à 2.5 %, rayon large. */
.rf-form { padding: clamp(1.5rem,3vw,2.2rem); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.8rem; background: rgba(255,255,255,0.025); display: flex;
    flex-direction: column; gap: 1rem; }
.rf-form__row { display: flex; flex-direction: column; gap: .45rem; }
.rf-form__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 520px) { .rf-form__grid { grid-template-columns: 1fr 1fr; } }
.rf-form label { font-size: 10px; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: rgba(255,255,255,0.6); }
.rf-form label span { color: var(--wine-light); }
.rf-form input, .rf-form textarea, .rf-form select {
    width: 100%; padding: .85rem 1rem; border-radius: 1rem; font-family: inherit;
    font-size: .95rem; font-weight: 300; color: #fff;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14);
    transition: border-color .25s ease, background .25s ease; }
.rf-form textarea { resize: vertical; min-height: 6.5rem; line-height: 1.5; }
/* Flèche dessinée en CSS : les navigateurs ne stylent pas la flèche native. */
.rf-form select { appearance: none; -webkit-appearance: none; cursor: pointer;
    padding-right: 2.6rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.55'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.05rem; }
.rf-form select option { background: #171215; color: #fff; }
.rf-form input::placeholder, .rf-form textarea::placeholder { color: rgba(255,255,255,0.32); }
.rf-form input:focus, .rf-form textarea:focus, .rf-form select:focus {
    outline: none; border-color: var(--wine-light); background: rgba(255,255,255,0.06); }
.rf-form [aria-invalid="true"] { border-color: #ff6b6b; }
.rf-form__err { font-size: .8rem; color: #ff8a8a; font-weight: 300; }
.rf-form__pot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rf-form__send { width: 100%; margin-top: .4rem; }
.rf-form__send[disabled] { opacity: .6; pointer-events: none; }
.rf-form__note { font-size: .78rem; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.45); }
.rf-form__msg { padding: .9rem 1.1rem; border-radius: 1rem; font-size: .9rem;
    font-weight: 300; line-height: 1.5; }
.rf-form__msg.ok { background: rgba(122,0,25,0.35); border: 1px solid rgba(255,79,117,0.45); color: #fff; }
.rf-form__msg.ko { background: rgba(255,107,107,0.12); border: 1px solid rgba(255,107,107,0.4); color: #ffdada; }
