/* =========================================================================
   La Fiesta Condrieu — feuille de style principale
   Direction artistique : nocturne, premium, énergique, sobre dans ses effets.
   Pas de typographie personnalisée pour l'instant (cf. cadrage section 11,
   à valider avec le client) : on s'appuie sur une pile système performante
   et sans dépendance externe (aucun appel à une CDN de polices).
   ========================================================================= */

:root {
	--lfc-bg: #060607;
	--lfc-bg-alt: #0e0e11;
	--lfc-surface: #17171b;
	--lfc-border: rgba(255, 255, 255, 0.1);
	--lfc-text: #f5f5f2;
	--lfc-text-muted: #a4a4ad;
	--lfc-accent: #5b7cfa;
	--lfc-accent-2: #8a5cf6;
	--lfc-accent-hover: #7b97ff;
	--lfc-focus: #ffd166;
	--lfc-btn-primary: #c21d3e;
	--lfc-btn-primary-hover: #e0294c;

	--lfc-font-display: -apple-system, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
	--lfc-font-body: -apple-system, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;

	--lfc-radius: 14px;
	--lfc-container: 1180px;
	--lfc-header-h: 76px;
}

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

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

body {
	margin: 0;
	background: var(--lfc-bg);
	color: var(--lfc-text);
	font-family: var(--lfc-font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
}

h1,
h2,
h3 {
	font-family: var(--lfc-font-display);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
	overflow-wrap: break-word;
}

h1 {
	font-size: clamp(2.4rem, 6vw, 4.5rem);
	text-transform: uppercase;
}

h2 {
	font-size: clamp(1.8rem, 4vw, 2.75rem);
}

h3 {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
	color: var(--lfc-text-muted);
	max-width: 62ch;
}

.lfc-skip-link {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	background: var(--lfc-accent);
	color: #060607;
	padding: 12px 20px;
	z-index: 1000;
	font-weight: 700;
	border-radius: 0 0 8px 0;
}

.lfc-skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid var(--lfc-focus);
	outline-offset: 2px;
}

/* --- Boutons ------------------------------------------------------------ */

.lfc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.9em 1.6em;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	font-size: 0.95rem;
	border: 2px solid transparent;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.lfc-btn:hover {
	transform: translateY(-2px);
}

.lfc-btn--primary {
	background: var(--lfc-btn-primary);
	color: var(--lfc-text);
}

.lfc-btn--primary:hover {
	background: var(--lfc-btn-primary-hover);
}

.lfc-btn--ghost {
	background: transparent;
	border-color: var(--lfc-border);
	color: var(--lfc-text);
}

.lfc-btn--ghost:hover {
	border-color: var(--lfc-text);
}

/* --- En-tête ------------------------------------------------------------- */

.lfc-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--lfc-header-h);
	display: flex;
	align-items: center;
	background: transparent;
	backdrop-filter: blur(0);
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.lfc-header.is-scrolled {
	background: rgba(6, 6, 7, 0.7);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--lfc-border);
}

.lfc-header__inner {
	width: 100%;
	max-width: var(--lfc-container);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.lfc-logo {
	text-decoration: none;
	display: flex;
	align-items: center;
}

.lfc-logo img {
	height: 40px;
	width: auto;
}

.lfc-logo__text {
	font-family: var(--lfc-font-display);
	font-weight: 800;
	letter-spacing: 0.02em;
	font-size: 1.3rem;
	text-transform: uppercase;
}

.lfc-logo__text em {
	font-style: normal;
	font-weight: 400;
	opacity: 0.7;
	margin-left: 0.3em;
}

.lfc-nav {
	display: none;
}

.lfc-nav__list {
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lfc-nav__list a {
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--lfc-text-muted);
	transition: color 0.2s ease;
}

.lfc-nav__list a:hover {
	color: var(--lfc-text);
}

.lfc-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lfc-header__actions .lfc-btn {
	padding: 0.55em 1.3em;
	font-size: 0.82rem;
}

.lfc-social {
	display: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--lfc-border);
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 0.7rem;
	font-weight: 700;
}

@media (min-width: 960px) {
	.lfc-nav {
		display: block;
	}
	.lfc-nav__list {
		gap: 16px;
	}
	.lfc-nav__list a {
		font-size: 0.85rem;
	}
	.lfc-header__actions .lfc-btn {
		padding: 0.5em 1em;
	}
}

/*
 * Entre 960px et 1279px, le menu complet (7 liens + bouton + icônes) est
 * plus large que l'espace disponible avec un espacement confortable :
 * les icônes sociales de l'en-tête (déjà présentes dans le footer et la
 * barre mobile) sont masquées pour laisser la place, plutôt que de risquer
 * un débordement selon la police système exacte du visiteur.
 */
@media (min-width: 960px) and (max-width: 1279px) {
	.lfc-social {
		display: none;
	}
}

@media (min-width: 1280px) {
	.lfc-social {
		display: inline-flex;
	}
	.lfc-nav__list {
		gap: 28px;
	}
	.lfc-nav__list a {
		font-size: 0.95rem;
	}
	.lfc-header__actions .lfc-btn {
		padding: 0.55em 1.3em;
		font-size: 0.82rem;
	}
}

/* --- Intro plein écran — SCOPU V2.1 -------------------------------------- */

/*
 * Intro isolée : les animations ci-dessous ne s'activent que lorsque
 * assets/js/intro-fiesta.js ajoute .is-playing. Le reste du site n'est pas
 * concerné par ces règles.
 */
.lfc-intro {
    position: fixed;
    inset: 0;
    z-index: 100000;
    overflow: hidden;
    isolation: isolate;
    background: transparent;
}

.lfc-intro[hidden] {
    display: none;
}

/* Deux panneaux noirs : ils constituent l'écran d'intro puis s'ouvrent
   verticalement pour révéler directement le hero déjà présent derrière. */
.lfc-intro__panel {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50.2%;
    z-index: 1;
    background: #050506;
    pointer-events: none;
}

.lfc-intro__panel--top {
    top: 0;
    transform-origin: top center;
}

.lfc-intro__panel--bottom {
    bottom: 0;
    transform-origin: bottom center;
}

.lfc-intro__stage {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    overflow: hidden;
    pointer-events: none;
}

.lfc-intro__ambient {
    position: absolute;
    inset: -35%;
    z-index: 2;
    background: radial-gradient(circle at 50% 50%, rgba(194, 29, 62, 0.34), rgba(194, 29, 62, 0.07) 22%, transparent 48%);
    opacity: 0;
    transform: scale(0.45);
    filter: blur(12px);
    pointer-events: none;
}

.lfc-intro__beam {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -22%;
    z-index: 4;
    width: 14%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), rgba(239, 49, 84, 0.55), transparent);
    filter: blur(12px);
    opacity: 0;
    transform: skewX(-12deg);
    pointer-events: none;
}

.lfc-intro__flash,
.lfc-intro__red-flash {
    position: absolute;
    inset: 0;
    z-index: 6;
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
}

.lfc-intro__flash {
    background: #ffffff;
}

.lfc-intro__red-flash {
    background: #c21d3e;
}

.lfc-intro__cut {
    position: absolute;
    left: -15%;
    z-index: 6;
    width: 130%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), rgba(239, 49, 84, 0.85), transparent);
    opacity: 0;
    transform: scaleX(0.15);
    transform-origin: center;
    pointer-events: none;
}

.lfc-intro__cut--1 { top: 36%; }
.lfc-intro__cut--2 { top: 63%; }

/* LF massif, issu directement du fichier Illustrator. */
.lfc-intro__mark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
}

.lfc-intro__icon-svg {
    width: min(54vw, 520px);
    height: auto;
    overflow: visible;
}

.lfc-intro__icon-path--letters {
    fill: #f7f7f5;
}

.lfc-intro__icon-path--arc {
    fill: url(#lfcIntroArcGradient);
}

/* FIESTA exact, lettres séparées depuis le fichier Illustrator source. */
.lfc-intro__fiesta {
    position: relative;
    width: min(82vw, 930px);
}

.lfc-intro__fiesta-main,
.lfc-intro__fiesta-echo {
    position: absolute;
    inset: 0;
}

.lfc-intro__fiesta-main {
    position: relative;
    z-index: 2;
}

.lfc-intro__fiesta-echo {
    z-index: 1;
    opacity: 0;
    transform: translate(11px, 7px);
    mix-blend-mode: screen;
    pointer-events: none;
}

.lfc-intro__fiesta-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    fill: #f7f7f5;
}

.lfc-intro__fiesta-svg--echo {
    fill: #c21d3e;
}

.lfc-intro__fiesta-letter {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: 50% 50%;
    clip-path: inset(52% 0 48% 0);
}

.lfc-intro__fiesta-svg--echo .lfc-intro__fiesta-letter {
    opacity: 1;
    clip-path: none;
}

.lfc-intro__skip {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(6, 6, 7, 0.55);
    color: var(--lfc-text);
    border: 1px solid var(--lfc-border);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

html.lfc-intro-locked,
html.lfc-intro-locked body {
    overflow: hidden;
    height: 100%;
}

/* Timeline : ~2,9 s. */
.lfc-intro.is-playing .lfc-intro__ambient { animation: lfc-v21-ambient 1.34s ease-out 0.18s both; }
.lfc-intro.is-playing .lfc-intro__beam:not(.lfc-intro__beam--final) { animation: lfc-v21-beam 0.54s cubic-bezier(.2,.8,.2,1) 0.13s both; }
.lfc-intro.is-playing .lfc-intro__mark { animation: lfc-v21-mark 1.02s cubic-bezier(.16,1,.3,1) 0.18s both; }
.lfc-intro.is-playing .lfc-intro__icon-svg { animation: lfc-v21-mark-scale 1.02s cubic-bezier(.16,1,.3,1) 0.18s both; }
.lfc-intro.is-playing .lfc-intro__cut--1 { animation: lfc-v21-cut-1 0.32s ease-out 0.52s both; }
.lfc-intro.is-playing .lfc-intro__cut--2 { animation: lfc-v21-cut-2 0.30s ease-out 0.61s both; }
.lfc-intro.is-playing .lfc-intro__red-flash { animation: lfc-v21-red-flash 0.20s ease-out 0.87s both; }
.lfc-intro.is-playing .lfc-intro__flash:not(.lfc-intro__flash--final) { animation: lfc-v21-white-flash 0.14s ease-out 1.02s both; }

.lfc-intro.is-playing .lfc-intro__fiesta-main .lfc-intro__fiesta-letter--f { animation: lfc-v21-letter-f 0.46s cubic-bezier(.16,1,.3,1) 1.03s both; }
.lfc-intro.is-playing .lfc-intro__fiesta-main .lfc-intro__fiesta-letter--i { animation: lfc-v21-letter-i 0.44s cubic-bezier(.16,1,.3,1) 1.08s both; }
.lfc-intro.is-playing .lfc-intro__fiesta-main .lfc-intro__fiesta-letter--e { animation: lfc-v21-letter-e 0.46s cubic-bezier(.16,1,.3,1) 1.12s both; }
.lfc-intro.is-playing .lfc-intro__fiesta-main .lfc-intro__fiesta-letter--s { animation: lfc-v21-letter-s 0.46s cubic-bezier(.16,1,.3,1) 1.16s both; }
.lfc-intro.is-playing .lfc-intro__fiesta-main .lfc-intro__fiesta-letter--t { animation: lfc-v21-letter-t 0.46s cubic-bezier(.16,1,.3,1) 1.20s both; }
.lfc-intro.is-playing .lfc-intro__fiesta-main .lfc-intro__fiesta-letter--a { animation: lfc-v21-letter-a 0.48s cubic-bezier(.16,1,.3,1) 1.24s both; }

.lfc-intro.is-playing .lfc-intro__fiesta-echo { animation: lfc-v21-shadow-hit 0.28s ease-out 1.45s both; }
.lfc-intro.is-playing .lfc-intro__fiesta { animation: lfc-v21-word-hold 0.88s cubic-bezier(.22,1,.36,1) 1.54s both, lfc-v21-word-exit 0.58s cubic-bezier(.4,0,.2,1) 2.20s both; }
.lfc-intro.is-playing .lfc-intro__beam--final { animation: lfc-v21-beam-final 0.52s ease-out 1.70s both; }
.lfc-intro.is-playing .lfc-intro__flash--final { animation: lfc-v21-final-flash 0.12s ease-out 2.12s both; }
.lfc-intro.is-playing .lfc-intro__panel--top { animation: lfc-v21-open-top 0.62s cubic-bezier(.76,0,.24,1) 2.18s both; }
.lfc-intro.is-playing .lfc-intro__panel--bottom { animation: lfc-v21-open-bottom 0.62s cubic-bezier(.76,0,.24,1) 2.18s both; }

@keyframes lfc-v21-ambient {
    0% { opacity: 0; transform: scale(.45); }
    38% { opacity: .9; }
    100% { opacity: .08; transform: scale(1.22); }
}
@keyframes lfc-v21-beam {
    0% { opacity: 0; transform: translateX(0) skewX(-12deg); }
    18% { opacity: .95; }
    100% { opacity: 0; transform: translateX(1050%) skewX(-12deg); }
}
@keyframes lfc-v21-mark {
    0% { opacity: 0; }
    16% { opacity: 1; }
    72% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes lfc-v21-mark-scale {
    0% { transform: scale(1.72) rotate(-2deg); filter: blur(13px); }
    38% { filter: blur(0); }
    62% { transform: scale(1.03) rotate(0); }
    100% { transform: scale(2.45); filter: blur(8px); }
}
@keyframes lfc-v21-cut-1 {
    0% { opacity: 0; transform: translateX(-18%) scaleX(.12); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translateX(18%) scaleX(.72); }
}
@keyframes lfc-v21-cut-2 {
    0% { opacity: 0; transform: translateX(14%) scaleX(.12); }
    35% { opacity: .9; }
    100% { opacity: 0; transform: translateX(-14%) scaleX(.58); }
}
@keyframes lfc-v21-red-flash { 0% { opacity: 0; } 28% { opacity: .38; } 100% { opacity: 0; } }
@keyframes lfc-v21-white-flash { 0% { opacity: 0; } 35% { opacity: .72; } 100% { opacity: 0; } }

@keyframes lfc-v21-letter-f {
    0% { opacity: 0; transform: translate(-92px,-22px) rotate(-5deg) scale(.9); clip-path: inset(49% 0 51% 0); }
    100% { opacity: 1; transform: none; clip-path: inset(0); }
}
@keyframes lfc-v21-letter-i {
    0% { opacity: 0; transform: translate(0,72px) rotate(5deg) scale(.92); clip-path: inset(53% 0 47% 0); }
    100% { opacity: 1; transform: none; clip-path: inset(0); }
}
@keyframes lfc-v21-letter-e {
    0% { opacity: 0; transform: translate(-18px,-82px) rotate(-4deg) scale(.9); clip-path: inset(46% 0 54% 0); }
    100% { opacity: 1; transform: none; clip-path: inset(0); }
}
@keyframes lfc-v21-letter-s {
    0% { opacity: 0; transform: translate(12px,84px) rotate(5deg) scale(.91); clip-path: inset(55% 0 45% 0); }
    100% { opacity: 1; transform: none; clip-path: inset(0); }
}
@keyframes lfc-v21-letter-t {
    0% { opacity: 0; transform: translate(28px,-78px) rotate(-4deg) scale(.9); clip-path: inset(45% 0 55% 0); }
    100% { opacity: 1; transform: none; clip-path: inset(0); }
}
@keyframes lfc-v21-letter-a {
    0% { opacity: 0; transform: translate(98px,16px) rotate(5deg) scale(.9); clip-path: inset(52% 0 48% 0); }
    100% { opacity: 1; transform: none; clip-path: inset(0); }
}
@keyframes lfc-v21-shadow-hit {
    0% { opacity: 0; transform: translate(18px,10px) scale(1.015); }
    32% { opacity: .55; }
    100% { opacity: 0; transform: translate(3px,1px) scale(1); }
}
@keyframes lfc-v21-word-hold {
    0% { transform: scale(.985); }
    38% { transform: scale(1.018); }
    100% { transform: scale(1); }
}
@keyframes lfc-v21-beam-final {
    0% { opacity: 0; transform: translateX(-100%) skewX(-12deg); }
    20% { opacity: .58; }
    100% { opacity: 0; transform: translateX(900%) skewX(-12deg); }
}
@keyframes lfc-v21-final-flash { 0% { opacity: 0; } 40% { opacity: .26; } 100% { opacity: 0; } }
@keyframes lfc-v21-word-exit {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.055); filter: blur(4px); }
}
@keyframes lfc-v21-open-top { 0% { transform: translateY(0); } 100% { transform: translateY(-101%); } }
@keyframes lfc-v21-open-bottom { 0% { transform: translateY(0); } 100% { transform: translateY(101%); } }

@media (max-width: 640px) {
    .lfc-intro__icon-svg { width: min(66vw, 360px); }
    .lfc-intro__fiesta { width: 88vw; }
}

@media (prefers-reduced-motion: reduce) {
    .lfc-intro { display: none !important; }
}

/* --- Hero ----------------------------------------------------------------- */

.lfc-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	isolation: isolate;
}

.lfc-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.lfc-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(6, 6, 7, 0.35) 0%, rgba(6, 6, 7, 0.55) 55%, #060607 100%);
}

video.lfc-hero__media {
	background: #000;
}

.lfc-hero__content {
	max-width: var(--lfc-container);
	margin: 0 auto;
	padding: 0 24px 96px;
	width: 100%;
}

.lfc-hero__logo img {
	height: 56px;
	width: auto;
	margin-bottom: 24px;
}

.lfc-hero__title {
	margin-bottom: 0.3em;
}

.lfc-hero__subtitle {
	color: var(--lfc-text);
	opacity: 0.85;
	font-size: 1.05rem;
	max-width: 50ch;
}

.lfc-hero__location {
	color: var(--lfc-text);
	opacity: 0.8;
	font-size: 0.92rem;
	max-width: 46ch;
	margin-top: -0.4em;
}

.lfc-hero__geo {
	color: var(--lfc-text-muted);
	font-size: 0.85rem;
	margin-top: -0.4em;
}

.lfc-hero__horaires {
	font-weight: 700;
	color: var(--lfc-accent);
	margin-top: -0.4em;
}

.lfc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

/* --- Sections génériques --------------------------------------------------- */

.lfc-section {
	padding: clamp(56px, 8vw, 120px) 0;
}

/* La section qui suit directement le hero (plein écran) n'a pas besoin
   d'autant d'espace : le hero apporte déjà sa propre respiration visuelle. */
.lfc-hero + .lfc-section {
	padding-top: clamp(32px, 4vw, 64px);
}

.lfc-section--alt {
	background: var(--lfc-bg-alt);
}

.lfc-section__inner {
	max-width: var(--lfc-container);
	margin: 0 auto;
	padding: 0 24px;
}

.lfc-tags {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 24px 0 0;
}

.lfc-tags li {
	border: 1px solid var(--lfc-border);
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--lfc-text-muted);
}

.lfc-grid {
	display: grid;
	gap: 24px;
	margin-top: 24px;
}

.lfc-grid--2 {
	grid-template-columns: 1fr;
}

@media (min-width: 760px) {
	.lfc-grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.lfc-grid--3 {
	grid-template-columns: 1fr;
}

@media (min-width: 760px) {
	.lfc-grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Une seule carte (ex. formulaire seul, sans carte Informations pratiques
   à côté) : centrée plutôt que collée à gauche avec du vide à droite. */
.lfc-grid--1 {
	grid-template-columns: 1fr;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* Page Tarifs : mur de petites cartes par catégorie (whisky, vodka...)
   plutôt qu'une longue colonne verticale — chaque carte se redimensionne
   librement selon l'espace disponible (auto-fill), sans nombre de colonnes
   figé. */
.lfc-grid--tarifs {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}

.lfc-card--tarif {
	padding: 20px;
}

.lfc-card--tarif h3 {
	margin-bottom: 10px;
}

.lfc-card {
	background: var(--lfc-surface);
	border: 1px solid var(--lfc-border);
	border-radius: var(--lfc-radius);
	padding: 28px;
}

.lfc-card__note {
	color: var(--lfc-accent);
	font-weight: 600;
}

.lfc-card .lfc-list {
	margin-bottom: 0;
}

.lfc-card__poster {
	width: 100%;
	height: auto;
	border-radius: calc(var(--lfc-radius) - 8px);
	margin-bottom: 16px;
}

.lfc-card--soiree .lfc-btn {
	margin-top: 16px;
}

.lfc-photo-tile {
	padding: 0;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.lfc-photo-tile img,
.lfc-photo-tile video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/*
 * FAQ : accordéon natif (<details>/<summary>), accessible et utilisable au
 * clavier sans JavaScript. Pas d'animation d'ouverture volontairement :
 * <details> ne le permet pas nativement sans script dédié, et un repli
 * instantané reste cohérent avec prefers-reduced-motion dans tous les cas.
 */
.lfc-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.lfc-faq__item {
	background: var(--lfc-surface);
	border: 1px solid var(--lfc-border);
	border-radius: var(--lfc-radius);
	padding: 0 24px;
}

.lfc-faq__question {
	list-style: none;
	cursor: pointer;
	position: relative;
	padding: 20px 32px 20px 0;
	font-weight: 700;
	color: var(--lfc-text);
}

.lfc-faq__question::-webkit-details-marker {
	display: none;
}

.lfc-faq__question::after {
	content: '+';
	position: absolute;
	top: 18px;
	right: 4px;
	font-size: 1.3rem;
	line-height: 1;
	color: var(--lfc-btn-primary);
}

.lfc-faq__item[open] .lfc-faq__question::after {
	content: '\2212';
}

.lfc-faq__answer {
	max-width: 70ch;
	margin: 0;
	padding: 0 0 20px;
	color: var(--lfc-text-muted);
}

.lfc-map-preview {
	min-height: 260px;
	padding: 0;
	overflow: hidden;
}

.lfc-map-preview iframe {
	width: 100%;
	height: 100%;
	min-height: 260px;
	border: 0;
	display: block;
	filter: grayscale(0.2) invert(0.92) contrast(0.9);
}

.lfc-map-preview__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 260px;
	padding: 24px;
	text-align: center;
	background: var(--lfc-bg-alt);
}

.lfc-map-preview__placeholder p {
	color: var(--lfc-text-muted);
	font-size: 0.92rem;
	max-width: 32ch;
}

.lfc-map-preview__placeholder[hidden] {
	display: none;
}

/* --- Bandeau cookies RGPD -------------------------------------------------- */

.lfc-cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	max-width: 560px;
	margin: 0 auto;
	background: var(--lfc-surface);
	border: 1px solid var(--lfc-border);
	border-radius: var(--lfc-radius);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.lfc-cookie-banner[hidden] {
	display: none;
}

@media (max-width: 959px) {
	.lfc-cookie-banner {
		bottom: calc(64px + env(safe-area-inset-bottom, 0px) + 12px);
	}
}

.lfc-cookie-banner__inner {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.lfc-cookie-banner__inner p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--lfc-text-muted);
}

.lfc-cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.lfc-cookie-banner__link {
	align-self: flex-start;
	color: var(--lfc-text-muted);
	font-size: 0.82rem;
	text-decoration: underline;
}

.lfc-footer__cookie-manage {
	background: none;
	border: 0;
	color: var(--lfc-text-muted);
	font-size: 0.82rem;
	text-decoration: underline;
	cursor: pointer;
	padding: 0;
	white-space: nowrap;
}

.lfc-footer__cookie-manage:hover {
	color: var(--lfc-text);
}

/* --- Galerie : défilement continu (marquee), rien de figé ------------------- */

.lfc-marquee {
	overflow: hidden;
	margin-top: 20px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.lfc-marquee__row {
	display: flex;
	gap: 14px;
	width: max-content;
	will-change: transform;
}

.lfc-marquee__row--a {
	animation: lfc-marquee-left 46s linear infinite;
}

.lfc-marquee__row--b {
	animation: lfc-marquee-right 52s linear infinite;
}

.lfc-marquee:hover .lfc-marquee__row,
.lfc-marquee:focus-within .lfc-marquee__row {
	animation-play-state: paused;
}

.lfc-marquee__item {
	flex: 0 0 auto;
	width: 220px;
	aspect-ratio: 1 / 1;
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
}

@media (min-width: 760px) {
	.lfc-marquee__item {
		width: 280px;
	}
}

.lfc-marquee__item img,
.lfc-marquee__item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes lfc-marquee-left {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes lfc-marquee-right {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
	.lfc-marquee {
		overflow-x: auto;
		-webkit-mask-image: none;
		mask-image: none;
	}

	.lfc-marquee__row {
		animation: none;
	}
}

/* --- Formulaires ------------------------------------------------------------ */

.lfc-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 640px;
	margin-top: 24px;
}

.lfc-form__row {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.lfc-form__row {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
}

.lfc-form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--lfc-text-muted);
}

.lfc-form input[type="text"],
.lfc-form input[type="tel"],
.lfc-form input[type="email"],
.lfc-form input[type="date"],
.lfc-form input[type="time"],
.lfc-form input[type="number"],
.lfc-form textarea {
	background: var(--lfc-surface);
	border: 1px solid var(--lfc-border);
	border-radius: 10px;
	padding: 12px 14px;
	color: var(--lfc-text);
	font-size: 1rem;
	font-family: inherit;
}

.lfc-form input:focus,
.lfc-form textarea:focus {
	border-color: var(--lfc-accent);
}

.lfc-form__consent {
	flex-direction: row;
	align-items: flex-start;
	font-weight: 400;
}

.lfc-form__consent input {
	margin-top: 4px;
}

.lfc-form__consent a {
	color: var(--lfc-accent);
}

.lfc-form__privacy {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--lfc-text-muted);
}

.lfc-form__privacy a {
	color: var(--lfc-accent);
}

.lfc-legal-note {
	margin-top: 24px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--lfc-text-muted);
}

.lfc-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.lfc-form__feedback {
	font-weight: 600;
	min-height: 1.4em;
}

.lfc-form__feedback[data-state="success"] {
	color: #4ade80;
}

.lfc-form__feedback[data-state="error"] {
	color: #f87171;
}

.lfc-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 24px;
}

/* --- Pied de page ------------------------------------------------------------ */

.lfc-footer {
	background: var(--lfc-bg-alt);
	border-top: 1px solid var(--lfc-border);
	padding: 64px 0 32px;
}

.lfc-footer__inner {
	max-width: var(--lfc-container);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

@media (min-width: 760px) {
	.lfc-footer__inner {
		grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
	}
}

.lfc-footer__brand img {
	height: 44px;
	width: auto;
}

.lfc-footer h2 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lfc-text);
}

.lfc-footer p {
	margin: 0 0 8px;
}

.lfc-link {
	color: var(--lfc-accent);
	text-decoration: none;
	font-weight: 600;
}

.lfc-footer__social {
	display: flex;
	gap: 16px;
}

.lfc-social--footer {
	display: inline-flex;
}

.lfc-footer__legal {
	max-width: var(--lfc-container);
	margin: 48px auto 0;
	padding: 24px 24px 0;
	border-top: 1px solid var(--lfc-border);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px 24px;
	color: var(--lfc-text-muted);
	font-size: 0.8rem;
}

.lfc-footer__legal p {
	margin: 0;
}

.lfc-footer__legal p a {
	color: var(--lfc-accent);
	text-decoration: none;
}

.lfc-footer__scopu a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	vertical-align: middle;
}

.lfc-footer__scopu img {
	display: inline-block;
	vertical-align: middle;
}

@media (min-width: 700px) {
	.lfc-footer__legal {
		flex-wrap: nowrap;
	}
}

.lfc-footer__legal nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.lfc-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	list-style: none;
	padding: 0;
	margin: 0;
	white-space: nowrap;
}

.lfc-footer__legal-links a {
	color: var(--lfc-text-muted);
	text-decoration: none;
}

/* --- Barre d'actions mobile fixe ---------------------------------------------- */

.lfc-mobile-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 90;
	display: flex;
	background: rgba(14, 14, 17, 0.92);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--lfc-border);
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.lfc-mobile-bar a {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 10px 0;
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--lfc-text);
}

@media (min-width: 960px) {
	.lfc-mobile-bar {
		display: none;
	}
}

body {
	padding-bottom: 64px;
}

@media (min-width: 960px) {
	body {
		padding-bottom: 0;
	}
}

/* --- Pages simples (contact, légales, locale) ---------------------------------- */

.lfc-page {
	padding: clamp(48px, 8vw, 96px) 0 96px;
}

.lfc-page--legal .lfc-page__content,
.lfc-page--contact .lfc-page__content {
	color: var(--lfc-text-muted);
}

/* Texte de présentation de la page Privatisation : pleine largeur du
   conteneur et centré, plutôt que limité à une colonne de lecture
   (62ch) alignée à gauche comme le reste du site. */
.lfc-page--privatisation .lfc-page__content {
	max-width: none;
	text-align: center;
}

.lfc-page--privatisation .lfc-page__content p {
	max-width: none;
}

.lfc-page__section {
	margin: 40px 0;
}

.lfc-page__section h2 {
	margin-bottom: 12px;
}

.lfc-list {
	margin: 0;
	padding-left: 20px;
	color: var(--lfc-text-muted);
}

.lfc-list li {
	margin-bottom: 6px;
}

.lfc-page__back-link {
	margin-top: 48px;
	text-align: center;
}

.lfc-page--tarifs .lfc-page__back-link {
	text-align: left;
}

/* Page Tarifs — cartes Vendredi / Samedi : même hauteur sur une même ligne
   pour un alignement visuel propre, quel que soit le volume de contenu. */
.lfc-grid--entrees {
	align-items: stretch;
}

.lfc-grid--entrees > .lfc-card {
	height: 100%;
}

.lfc-page__content a {
	color: var(--lfc-accent);
}

/* GSAP/Lenis : classe ajoutée par JS une fois initialisé (voir main.js) */
html.lfc-lenis-init {
	scroll-behavior: auto;
}

/*
 * [data-lfc-reveal] n'a volontairement aucun style d'état initial ici :
 * le contenu doit rester visible si le JavaScript ne s'exécute pas.
 * C'est main.js (GSAP) qui applique l'état "avant apparition" au runtime,
 * uniquement quand prefers-reduced-motion l'autorise.
 */

/* --- Page Tarifs : bandeau photo éditable ------------------------------- */

.lfc-tarifs-banner {
	margin: clamp(36px, 5vw, 64px) 0;
	width: 100%;
	height: clamp(220px, 28vw, 360px);
	overflow: hidden;
	border-radius: var(--lfc-radius);
	border: 1px solid var(--lfc-border);
	background: var(--lfc-surface);
}

.lfc-tarifs-banner__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lfc-tarifs-banner--top .lfc-tarifs-banner__image {
	object-position: center top;
}

.lfc-tarifs-banner--center .lfc-tarifs-banner__image {
	object-position: center center;
}

.lfc-tarifs-banner--bottom .lfc-tarifs-banner__image {
	object-position: center bottom;
}

@media (max-width: 639px) {
	.lfc-tarifs-banner {
		height: 220px;
		margin: 32px 0;
		border-radius: 10px;
	}
}



/* --- Page Privatisation : bandeau photo éditable ------------------------ */

.lfc-privatisation-banner {
	margin: 0 0 clamp(32px, 4vw, 52px);
	width: 100%;
	height: clamp(220px, 28vw, 360px);
	overflow: hidden;
	border-radius: var(--lfc-radius);
	border: 1px solid var(--lfc-border);
	background: var(--lfc-surface);
}

.lfc-privatisation-banner__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lfc-privatisation-banner--top .lfc-privatisation-banner__image {
	object-position: center top;
}

.lfc-privatisation-banner--center .lfc-privatisation-banner__image {
	object-position: center center;
}

.lfc-privatisation-banner--bottom .lfc-privatisation-banner__image {
	object-position: center bottom;
}

@media (max-width: 639px) {
	.lfc-privatisation-banner {
		height: 220px;
		margin-bottom: 28px;
		border-radius: 10px;
	}
}
