/* =========================================================
   Domaine Le Petit Fils, feuille de style unique.
   1. Tokens
   2. Socle et accessibilité
   3. Typographie
   4. Boutons
   5. En-tête et navigation
   6. Menu mobile
   7. Sections et mise en page
   8. Composants
   9. Formulaire
   10. Pied de page
   11. Animations
   12. Responsive
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
	--color-black: #000000;
	--color-ink: #121212;
	--color-cream: #f9f8f4;
	--color-white: #ffffff;
	--color-gold: #dcbe84;
	--color-gold-dark: #c2a46b;
	/* Le doré ne passe pas le contraste AA en petit texte sur fond clair :
	   cette variante plus profonde sert uniquement quand le doré est du TEXTE
	   posé sur du clair. Le doré d'origine reste celui des fonds et des filets. */
	--color-gold-text: #8a6a24;
	--color-wine: #7b1515;
	--color-muted: #6a655d;
	--color-line: rgba(0, 0, 0, 0.12);
	--color-line-light: rgba(255, 255, 255, 0.18);

	--font-title: "Prata", "Cormorant Garamond", Georgia, serif;
	--font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

	--fs-base: 1rem;
	--fs-small: 0.875rem;
	--fs-lead: 1.125rem;
	--lh-base: 1.75;
	--lh-title: 1.25;

	--h1: clamp(2.25rem, 1.4rem + 3.4vw, 4rem);
	--h2: clamp(1.75rem, 1.2rem + 2.2vw, 2.5rem);
	--h3: clamp(1.5rem, 1.1rem + 1.5vw, 2rem);
	--h4: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);

	--container: 1360px;
	--container-narrow: 860px;
	--gutter: clamp(20px, 4vw, 48px);
	--section-y: clamp(56px, 7vw, 120px);

	--btn-pad: 1.1em 2.1em;
	--btn-fs: 0.78rem;
	--btn-ls: 0.14em;
	--radius: 2px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--header-h: 132px;

	/* Rythme vertical : trois valeurs pour tout le site, et rien d'autre.
	   space-eyebrow : du surtitre au titre.
	   space-title   : du titre à son texte (de part et d'autre du filet doré).
	   space-block   : d'un bloc au suivant, texte vers bouton, liste, formulaire. */
	--space-eyebrow: 14px;
	--space-title: clamp(18px, 1.8vw, 26px);
	--space-block: clamp(30px, 3.4vw, 46px);
}

/* ---------- 2. Socle et accessibilité ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	overflow-x: hidden;
}

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

body {
	margin: 0;
	background: var(--color-cream);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: var(--lh-base);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.prose a,
.lieux__text a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: var(--color-gold);
	text-underline-offset: 0.25em;
	transition: color 0.25s var(--ease);
}

.prose a:hover,
.lieux__text a:hover {
	color: var(--color-gold-dark);
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	background: var(--color-black);
	color: var(--color-white);
	padding: 12px 20px;
	font-size: var(--fs-small);
}

.skip-link:focus {
	left: 8px;
	top: 8px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--color-gold);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

[hidden] {
	display: none !important;
}

/* ---------- 3. Typographie ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-title);
	font-weight: 400;
	line-height: var(--lh-title);
	margin: 0 0 0.5em;
	text-wrap: balance;
}

p {
	margin: 0 0 1.15em;
}

/* Volontairement limité aux zones de texte : appliqué à tous les p, cette règle
   écrase la marge des blocs de boutons, plus faibles en spécificité. */
.prose p:last-child,
.lead:last-child,
.lieux__text p:last-child,
.showcase__body p:last-child,
.hero__intro p:last-child,
.site-footer__note p:last-child,
.faq__answer p:last-child,
.booking-closed p:last-child,
.step__body p:last-child {
	margin-bottom: 0;
}

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-gold-dark);
	margin: 0 0 1.1em;
}

.eyebrow--light {
	color: var(--color-gold);
}

.eyebrow--ornament {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.eyebrow--ornament::before,
.eyebrow--ornament::after {
	content: "";
	width: 42px;
	height: 1px;
	background: currentColor;
	opacity: 0.6;
}

.rule {
	display: block;
	width: 64px;
	height: 1px;
	background: var(--color-gold);
	margin: 1.4em 0;
}

.rule--center {
	margin-left: auto;
	margin-right: auto;
}

.lead {
	font-size: var(--fs-lead);
	line-height: 1.7;
}

.text-center {
	text-align: center;
}

.prose {
	max-width: 68ch;
}

.prose--page {
	max-width: none;
}

.prose h2 {
	font-size: var(--h3);
	margin-top: 1.6em;
}

.prose h3 {
	font-size: var(--h4);
	margin-top: 1.4em;
}

.prose ul,
.prose ol {
	padding-left: 1.2em;
	margin: 0 0 1.2em;
}

.prose li {
	margin-bottom: 0.4em;
}

.prose strong {
	font-weight: 700;
}

.text-center .prose,
.text-center .lead {
	margin-left: auto;
	margin-right: auto;
}

/* ---------- 4. Boutons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-body);
	font-size: var(--btn-fs);
	font-weight: 700;
	letter-spacing: var(--btn-ls);
	text-transform: uppercase;
	line-height: 1.2;
	padding: var(--btn-pad);
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
		border-color 0.3s var(--ease), transform 0.3s var(--ease);
	position: relative;
	overflow: hidden;
}

.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: currentColor;
	opacity: 0;
	transition: opacity 0.3s var(--ease);
}

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

/* Texte sombre sur le doré : en blanc, le contraste tombe à 1,9 pour 1, très
   loin des 4,5 exigés par le niveau AA sur du texte de cette taille. */
.btn--gold {
	background: var(--color-gold);
	color: var(--color-ink);
}

.btn--gold:hover,
.btn--gold:focus-visible {
	background: var(--color-gold-dark);
	color: var(--color-ink);
}

.btn--outline {
	background: transparent;
	color: var(--color-gold-dark);
	border-color: var(--color-gold);
}

.btn--outline:hover,
.btn--outline:focus-visible {
	background: var(--color-gold);
	color: var(--color-white);
}

.btn--dark {
	background: var(--color-black);
	color: var(--color-white);
}

.btn--dark:hover,
.btn--dark:focus-visible {
	background: var(--color-gold);
	color: var(--color-white);
}

.section--dark .btn--dark,
.showcase .btn--dark {
	background: var(--color-gold);
	color: var(--color-white);
}

.section--dark .btn--dark:hover,
.showcase .btn--dark:hover {
	background: var(--color-gold-dark);
}

.btn--ghost {
	background: transparent;
	color: currentColor;
	border-color: currentColor;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
	background: var(--color-gold);
	border-color: var(--color-gold);
	color: var(--color-white);
}

.btn--small {
	font-size: 0.7rem;
	padding: 0.9em 1.6em;
}

.btn--large {
	padding: 1.25em 2.6em;
}

/* ---------- 5. En-tête ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: var(--color-cream);
	transition: box-shadow 0.3s var(--ease);
}

.site-header.is-stuck {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

.container--narrow {
	max-width: var(--container-narrow);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	max-width: none;
	padding: 14px clamp(20px, 3vw, 44px);
}

.site-header__brand img,
.custom-logo {
	max-height: 62px;
	width: auto;
	transition: max-height 0.3s var(--ease);
}

.site-header.is-stuck .custom-logo {
	max-height: 46px;
}

.brand-text {
	font-family: var(--font-title);
	font-size: 1.3rem;
}

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

.site-header__nav {
	border-top: 1px solid var(--color-line);
}

.site-header__nav-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	position: relative;
}

.main-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2.2vw, 36px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-nav__list a {
	display: block;
	padding: 16px 0;
	font-size: 0.92rem;
	position: relative;
	color: var(--color-ink);
	transition: color 0.25s var(--ease);
}

.main-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	height: 1px;
	background: var(--color-gold);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s var(--ease);
}

.main-nav__list a:hover::after,
.main-nav__list .current-menu-item > a::after,
.main-nav__list .current_page_parent > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.main-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--color-white);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.3s var(--ease);
	z-index: 20;
}

.main-nav__list li:hover > .sub-menu,
.main-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-nav__list .sub-menu a {
	padding: 10px 20px;
}

.lang-switch {
	display: flex;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	font-weight: 700;
}

.lang-switch a {
	opacity: 0.55;
	transition: opacity 0.25s var(--ease);
}

.lang-switch .is-active a,
.lang-switch a:hover {
	opacity: 1;
	color: var(--color-gold-dark);
}

.lang-switch--desktop {
	position: absolute;
	right: 0;
}

.burger {
	display: none;
	width: 46px;
	height: 40px;
	border: 0;
	background: transparent;
	padding: 8px;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
}

.burger span {
	display: block;
	height: 2px;
	background: var(--color-ink);
	transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

html.menu-open .burger span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

html.menu-open .burger span:nth-child(2) {
	opacity: 0;
}

html.menu-open .burger span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

/* ---------- 6. Menu mobile ---------- */
html.menu-open {
	overflow: hidden;
	height: 100%;
}

.menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
	z-index: 998;
}

html.menu-open .menu-overlay {
	opacity: 1;
	visibility: visible;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: min(88vw, 380px);
	height: 100dvh;
	background: var(--color-cream);
	transform: translateX(100%);
	transition: transform 0.4s var(--ease);
	z-index: 999;
	overflow-y: auto;
	padding: 96px 28px 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

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

.mobile-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.mobile-menu__list a {
	display: block;
	padding: 14px 0;
	font-family: var(--font-title);
	font-size: 1.35rem;
	border-bottom: 1px solid var(--color-line);
}

.mobile-menu__list .sub-menu {
	list-style: none;
	padding-left: 16px;
	margin: 0;
}

.mobile-menu__list .sub-menu a {
	font-family: var(--font-body);
	font-size: 1rem;
}

.mobile-menu__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lang-switch--mobile {
	justify-content: center;
}

/* ---------- 7. Sections ---------- */
.section {
	padding-top: var(--section-y);
	padding-bottom: var(--section-y);
	position: relative;
}

.section--tight {
	padding-top: clamp(36px, 5vw, 72px);
	padding-bottom: clamp(24px, 3vw, 48px);
}

.section--dark {
	background: var(--color-black);
	color: var(--color-white);
}

.section--dark .eyebrow {
	color: var(--color-gold);
}

.section--light {
	background: var(--color-cream);
	color: var(--color-ink);
}

.section__lead {
	max-width: 70ch;
	margin: 0 auto 2.4em;
}

.section__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin: 2em 0;
}

.section__actions--center {
	justify-content: center;
}

.section__or {
	font-size: var(--fs-small);
	opacity: 0.7;
}

.section-heading__title {
	font-size: var(--h2);
	margin: 0;
}

.section-heading__title--small {
	font-size: var(--h3);
}

.section-heading--center {
	text-align: center;
}

.section-heading--center .rule {
	margin-left: auto;
	margin-right: auto;
}

.split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 5vw, 80px);
	align-items: center;
}

.split--reverse .split__col:first-child {
	order: 2;
}

.split__figure {
	margin: 0;
	overflow: hidden;
}

.split__figure img {
	width: 100%;
	transition: transform 1.2s var(--ease);
}

.split__figure:hover img {
	transform: scale(1.05);
}

.split__figure--offset {
	margin-top: 28px;
}

.split__figure--tall img {
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.split__text {
	margin-top: 28px;
}

.split--intro {
	align-items: start;
}

.split--intro .split__col--text,
.terroir__text {
	position: relative;
}

.split--intro .split__col--media {
	padding-top: clamp(20px, 5vw, 90px);
}

.split--oenologue {
	align-items: start;
}

.card-panel {
	background: var(--color-white);
	padding: clamp(28px, 4vw, 56px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.section--dark .card-panel {
	background: var(--color-ink);
	color: var(--color-white);
}

.grape {
	margin: 24px 0 0;
	width: 96px;
	opacity: 0.5;
	pointer-events: none;
}

.grape--behind {
	position: absolute;
	top: -44px;
	left: max(-48px, calc(4px - var(--gutter)));
	width: 130px;
	opacity: 0.18;
	margin: 0;
	z-index: 0;
}

.split__col--text,
.terroir__text,
.split__col:has(.grape--behind) {
	position: relative;
}

.split__col--text > *,
.terroir__text > *,
.split__col:has(.grape--behind) > * {
	position: relative;
	z-index: 1;
}

/* La règle « > * » ci-dessus repositionne tous les enfants : on lui repasse
   devant pour le filigrane, sinon il retombe dans le flux.
   Le décalage à gauche est plafonné par la gouttière du conteneur : le filigrane
   déborde donc de la colonne, jamais de l'écran. */
.split__col--text > .grape--behind,
.terroir__text > .grape--behind,
.split__col:has(.grape--behind) > .grape--behind {
	position: absolute;
	top: -44px;
	left: max(-48px, calc(4px - var(--gutter)));
	z-index: 0;
	margin: 0;
}

.section--dark .grape--behind img {
	filter: invert(1) brightness(1.6);
	opacity: 0.35;
}

.grape--center {
	margin-left: auto;
	margin-right: auto;
}

.section--dark .grape img {
	filter: invert(1) brightness(1.4);
	opacity: 0.5;
}

.terroir {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr 0.8fr;
	gap: clamp(20px, 3vw, 48px);
	align-items: center;
}

.terroir__figure {
	margin: 0;
	overflow: hidden;
}

.terroir__figure img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transition: transform 1.2s var(--ease);
}

.terroir__figure:hover img {
	transform: scale(1.06);
}

/* ---------- 8. Composants ---------- */

/* Bandeau de page */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(340px, 46vw, 560px);
	padding: clamp(64px, 9vw, 140px) 0;
	color: var(--color-white);
	overflow: hidden;
	isolation: isolate;
}

.hero__media {
	position: absolute;
	inset: -8% 0 0;
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	z-index: -2;
	will-change: transform;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, calc(var(--bg-veil, 0.55) * 0.9)) 0%,
		rgba(0, 0, 0, var(--bg-veil, 0.55)) 55%,
		rgba(0, 0, 0, calc(var(--bg-veil, 0.55) * 1.1)) 100%
	);
	z-index: -1;
}

.hero--home {
	min-height: 100vh;
	min-height: 100svh;
}

.hero__slides {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
}

.hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.06);
	transition: opacity 1.6s var(--ease);
}

.hero__slide.is-active {
	opacity: 1;
	animation: heroZoom 9s linear forwards;
}

@keyframes heroZoom {
	from {
		transform: scale(1.06);
	}
	to {
		transform: scale(1.14);
	}
}

.hero__preload {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.hero--tall {
	min-height: min(74vh, 640px);
}

.hero--404 {
	min-height: 60vh;
	text-align: center;
}

.hero__inner {
	text-align: center;
}

.hero__inner--split {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
	text-align: left;
}

.hero__title {
	font-size: var(--h1);
	margin: 0;
	color: var(--color-white);
}

.hero__kicker {
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin: 0 0 1.2em;
	max-width: 46ch;
}

.hero__display {
	font-family: var(--font-title);
	font-size: var(--h1);
	line-height: 1.15;
	margin: 0 0 0.6em;
}

.hero__intro {
	max-width: 56ch;
	margin: 0 auto;
	font-size: var(--fs-lead);
}

.hero__inner--split .hero__intro {
	margin-left: 0;
}

.hero__eyebrow {
	margin-bottom: 0.8em;
}

.hero__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2em;
}

.hero__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hero__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 4px;
	border-bottom: 1px solid var(--color-line-light);
	font-size: 0.8rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 600;
	transition: padding 0.35s var(--ease), border-color 0.35s var(--ease);
}

.hero__links a:hover {
	padding-left: 14px;
	border-color: var(--color-gold);
}

.hero__links-plus {
	position: relative;
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
}

.hero__links-plus::before,
.hero__links-plus::after {
	content: "";
	position: absolute;
	background: var(--color-gold);
	transition: transform 0.35s var(--ease);
}

.hero__links-plus::before {
	left: 0;
	right: 0;
	top: 6px;
	height: 2px;
}

.hero__links-plus::after {
	top: 0;
	bottom: 0;
	left: 6px;
	width: 2px;
}

.hero__links a:hover .hero__links-plus::after {
	transform: rotate(90deg);
}

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 26px;
	width: 1px;
	height: 46px;
	background: linear-gradient(to bottom, transparent, var(--color-gold));
	transform: translateX(-50%);
	animation: scrollHint 2.4s var(--ease) infinite;
}

@keyframes scrollHint {
	0%,
	100% {
		opacity: 0.2;
		transform: translate(-50%, -6px);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, 6px);
	}
}

/* En-tête de page simple */
.page-head {
	padding: clamp(80px, 12vw, 180px) 0 clamp(48px, 7vw, 96px);
	background: var(--color-black);
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	position: relative;
}

.page-head::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--bg-veil, 0.72));
}

.page-head > * {
	position: relative;
	z-index: 1;
}

.page-head__title {
	font-size: var(--h1);
	margin: 0;
	color: var(--color-white);
}

/* Bandeau d'annonce */
.banner {
	background: var(--color-gold);
	/* Texte sombre sur le doré : le blanc ne passait pas le contraste AA. */
	color: var(--color-ink);
	text-align: center;
	padding: 22px 0;
}

.banner__title {
	font-family: var(--font-title);
	font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.5rem);
	margin: 0;
}

.banner__sub {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin: 6px 0 0;
	opacity: 0.72;
}

/* Bandeau hors saison : même bande dorée, ton plus calme */
.banner--quiet {
	background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
}

/* La colonne de gauche du showcase fait 46 px : l'intitulé doit traverser
   les deux colonnes, sinon il s'écrase sur la pastille des dates. */
.showcase__head {
	grid-column: 1 / -1;
	margin: 0 0 clamp(20px, 3vw, 34px);
}

.showcase__head .eyebrow {
	margin-bottom: 0.7em;
}

.showcase__heading {
	font-size: var(--h3);
	margin: 0;
	color: var(--color-white);
}

/* Hors saison : la guinguette est fermée, on annonce la prochaine ouverture */
.offseason {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: var(--color-ink);
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	padding: clamp(90px, 12vw, 170px) 0 clamp(64px, 8vw, 120px);
	text-align: center;
}

/* Voile sombre pour garder le texte lisible, puis halo doré au centre. */
.offseason::before,
.offseason::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

.offseason::before {
	background: rgba(0, 0, 0, var(--bg-veil, 0.72));
}

.offseason::after {
	background: radial-gradient(ellipse at 50% 32%, rgba(220, 190, 132, 0.18), transparent 62%);
}

/* Guirlande de guinguette, dessinée en CSS pour ne charger aucune image */
.offseason__lights {
	position: absolute;
	top: 0;
	left: -20px;
	right: -20px;
	height: 60px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='60' viewBox='0 0 400 60'%3E%3Cpath d='M0 6 Q100 54 200 6 Q300 54 400 6' fill='none' stroke='%23dcbe84' stroke-opacity='.45' stroke-width='1'/%3E%3Cg fill='%23dcbe84'%3E%3Ccircle cx='50' cy='24' r='3.2'/%3E%3Ccircle cx='100' cy='30' r='3.8'/%3E%3Ccircle cx='150' cy='24' r='3.2'/%3E%3Ccircle cx='250' cy='24' r='3.2'/%3E%3Ccircle cx='300' cy='30' r='3.8'/%3E%3Ccircle cx='350' cy='24' r='3.2'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: repeat-x;
	background-position: center top;
	opacity: 0.75;
	animation: offseason-glow 5s var(--ease) infinite;
}

@keyframes offseason-glow {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 0.9; }
}

.offseason__inner {
	max-width: 720px;
}

.offseason .eyebrow {
	margin-bottom: clamp(24px, 4vw, 44px);
}

.offseason__count {
	display: block;
	margin: 0;
	line-height: 0.9;
}

.offseason__number {
	display: block;
	font-family: var(--font-title);
	font-size: clamp(4.5rem, 3rem + 12vw, 11rem);
	color: var(--color-gold);
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

.offseason__unit {
	display: block;
	margin-top: 10px;
	font-size: 0.72rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.offseason__lead {
	font-family: var(--font-title);
	font-size: var(--h3);
	margin: clamp(28px, 4vw, 44px) 0 0;
	color: var(--color-white);
}

.offseason__lead strong {
	font-weight: 400;
	color: var(--color-gold);
	white-space: nowrap;
}

.offseason__text {
	margin: 1.2em auto 0;
	max-width: 56ch;
	color: rgba(255, 255, 255, 0.78);
}

.offseason__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin: clamp(32px, 4vw, 48px) 0 0;
}

@media (max-width: 600px) {
	.offseason__actions .btn {
		width: 100%;
	}
}

/* Vitrine à onglets, remplace l'ancien slider jQuery */
.showcase {
	position: relative;
	color: var(--color-white);
	background-color: var(--color-ink);
	padding: clamp(64px, 8vw, 130px) 0;
	overflow: hidden;
	isolation: isolate;
	background: var(--color-ink);
}

.showcase__backgrounds {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.showcase__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 1s var(--ease), transform 6s linear;
}

.showcase__bg.is-active {
	opacity: 1;
	transform: scale(1);
}

.showcase::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.68);
	z-index: -1;
}

.showcase__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
}

.showcase__text,
.showcase__cards {
	min-width: 0;
}

.showcase__text {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 24px;
	align-items: start;
}

.showcase__dots {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
}

.showcase__dots::before {
	content: "";
	position: absolute;
	left: 11px;
	top: 4px;
	bottom: 4px;
	width: 1px;
	background: var(--color-line-light);
}

.showcase__dots button {
	position: relative;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid var(--color-line-light);
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.7rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s var(--ease);
	display: flex;
	align-items: center;
	justify-content: center;
}

.showcase__dots button[aria-selected="true"] {
	background: var(--color-gold);
	border-color: var(--color-gold);
	color: var(--color-white);
	transform: scale(1.15);
}

.showcase__panels {
	position: relative;
	min-height: 260px;
}

.showcase__panel {
	animation: panelIn 0.6s var(--ease) both;
}

@keyframes panelIn {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.showcase__title {
	font-size: var(--h2);
	margin: 0 0 0.5em;
	color: var(--color-white);
}

.showcase__body {
	max-width: 52ch;
	margin-bottom: 1.8em;
}

.showcase__body p {
	margin-bottom: 0.7em;
}

/* Carrousel de cartes */
.showcase__cards {
	position: relative;
}

.cards-carousel {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 18px;
	align-items: center;
	min-height: 420px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.cards-carousel::-webkit-scrollbar {
	display: none;
}

.cards-carousel__item {
	scroll-snap-align: center;
}

.cards-carousel__item {
	position: relative;
	flex: 0 0 clamp(180px, 22vw, 260px);
	height: 320px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	transition: height 0.45s var(--ease), flex-basis 0.45s var(--ease);
}

.cards-carousel__item.is-active {
	height: 410px;
}

.cards-carousel__item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cards-carousel__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(20deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 70%);
}

.cards-carousel__caption {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cards-carousel__name {
	font-family: var(--font-title);
	font-size: 1.05rem;
}

.cards-carousel__title {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.8;
}

.cards-carousel__nav {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.carousel-arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--color-line-light);
	background: transparent;
	cursor: pointer;
	position: relative;
	transition: all 0.3s var(--ease);
}

.carousel-arrow:hover {
	background: var(--color-gold);
	border-color: var(--color-gold);
}

.carousel-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-top: 1px solid var(--color-white);
	border-right: 1px solid var(--color-white);
}

.carousel-arrow--next::before {
	transform: translate(-65%, -50%) rotate(45deg);
}

.carousel-arrow--prev::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

/* Pictogrammes de la guinguette */
.pictos {
	list-style: none;
	margin: clamp(40px, 6vw, 80px) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 48px);
	text-align: center;
}

.pictos__icon {
	width: 64px;
	margin: 0 auto 14px;
	transition: transform 0.5s var(--ease);
}

.pictos__item:hover .pictos__icon {
	transform: translateY(-6px);
}

.pictos__title {
	font-size: var(--h4);
	margin: 0 0 0.3em;
}

.pictos__text {
	font-size: var(--fs-small);
	color: var(--color-muted);
	margin: 0;
}

/* Liste à puces illustrées */
.feature-list {
	list-style: none;
	margin: 1.6em 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.feature-list__item {
	position: relative;
	padding-left: 30px;
	font-size: 0.95rem;
}

.feature-list__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid var(--color-gold);
}

.feature-list__item--wine::before {
	background: var(--color-gold);
}

/* Cartes de lieux (contact) */
.lieux {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lieux__item {
	position: relative;
	min-height: clamp(360px, 42vw, 520px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-white);
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	padding: 40px 28px;
	overflow: hidden;
}

.lieux__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--bg-veil, 0.55));
	transition: background 0.4s var(--ease);
}

.lieux__item:hover::after {
	background: rgba(0, 0, 0, 0.4);
}

.lieux__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.lieux__title {
	font-size: var(--h3);
	margin: 0;
	color: var(--color-white);
}

.lieux__text {
	font-size: 0.92rem;
	max-width: 34ch;
}

.lieux__phone {
	font-family: var(--font-title);
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	transition: color 0.3s var(--ease);
}

.lieux__phone:hover {
	color: var(--color-gold);
}

/* Cartes PDF (restaurant) */
.cartes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cartes__item {
	min-height: clamp(240px, 28vw, 400px);
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.cartes__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--bg-veil, 0.45));
	transition: background 0.4s var(--ease);
}

.cartes__item:hover::after {
	background: rgba(0, 0, 0, 0.28);
}

.cartes__item .btn {
	position: relative;
	z-index: 1;
}

/* Contenu de la carte : un cadre doré posé sur la photo, comme une ardoise. */
.cartes__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	color: var(--color-white);
	padding: clamp(28px, 4vw, 46px) clamp(22px, 4vw, 52px);
	margin: clamp(18px, 3vw, 34px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	/* Fond assez dense pour que le texte reste lisible quelle que soit la
	   photo posée derrière, y compris une photo claire. */
	background: rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(2px);
	transition: border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

.cartes__item:hover .cartes__inner,
.cartes__item:focus-within .cartes__inner {
	border-color: var(--color-gold);
	transform: translateY(-4px);
}

.cartes__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin: 0 0 0.8em;
}

.cartes__title {
	font-family: var(--font-title);
	font-size: var(--h4);
	line-height: 1.3;
	margin: 0;
	max-width: 18ch;
	margin-inline: auto;
}

.cartes__inner .rule {
	margin: clamp(16px, 2vw, 24px) auto;
}

.cartes__inner .btn {
	margin-top: 4px;
}

/* Bandeau de chiffres */
.chiffres {
	padding: clamp(48px, 6vw, 86px) 0;
}

.chiffres--dark {
	background: var(--color-ink);
	color: var(--color-white);
}

.chiffres--light {
	background: var(--color-white);
}

.chiffres__list {
	list-style: none;
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(28px, 3vw, 48px);
	text-align: center;
}

.chiffres__item {
	position: relative;
}

.chiffres__item + .chiffres__item::before {
	content: "";
	position: absolute;
	left: calc(-1 * clamp(14px, 1.5vw, 24px));
	top: 12%;
	bottom: 12%;
	width: 1px;
	background: rgba(255, 255, 255, 0.16);
}

.chiffres--light .chiffres__item + .chiffres__item::before {
	background: var(--color-line);
}

.chiffres__value {
	display: block;
	font-variant-numeric: tabular-nums;
	font-family: var(--font-title);
	font-size: clamp(2.4rem, 1.4rem + 3.4vw, 4.2rem);
	line-height: 1;
	color: var(--color-gold);
}

.chiffres__label {
	display: block;
	margin-top: 0.7em;
	font-size: 0.82rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
	max-width: 22ch;
	margin-inline: auto;
}

.chiffres--light .chiffres__label {
	color: var(--color-muted);
}

/* Informations pratiques en bande */
.facts {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-line);
	padding: clamp(30px, 4vw, 52px) 0;
}

.facts__list {
	list-style: none;
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 48px);
}

.facts__item {
	position: relative;
	padding-left: 22px;
}

.facts__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 2px;
	height: 34px;
	background: var(--color-gold);
}

.facts__label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-gold-dark);
	margin-bottom: 0.5em;
}

.facts__value {
	display: block;
	font-family: var(--font-title);
	font-size: 1.12rem;
	line-height: 1.45;
}

/* Parole mise en avant : œnologue, concept du bar à vin */
.citation {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: var(--color-ink);
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	color: var(--color-white);
	padding: clamp(70px, 9vw, 140px) 0;
	text-align: center;
}

.citation::before,
.citation::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

.citation::before {
	background: rgba(0, 0, 0, var(--bg-veil, 0.86));
}

.citation::after {
	background: radial-gradient(ellipse at 50% 20%, rgba(220, 190, 132, 0.16), transparent 60%);
}

/* Grand guillemet décoratif, purement visuel */
.citation__mark {
	position: absolute;
	top: clamp(-30px, -2vw, 0px);
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-title);
	font-size: clamp(9rem, 22vw, 20rem);
	line-height: 1;
	color: var(--color-gold);
	opacity: 0.09;
	user-select: none;
	z-index: -1;
}

.citation__inner {
	position: relative;
}

.citation__title {
	font-size: var(--h2);
	margin: 0;
	color: var(--color-white);
}

.citation__body {
	margin-top: clamp(24px, 3vw, 38px);
	font-size: var(--fs-lead);
	color: rgba(255, 255, 255, 0.84);
}

.citation__body strong {
	color: var(--color-gold);
	font-weight: 600;
}

.citation__body a {
	color: var(--color-gold);
}

.citation__signature {
	margin: clamp(26px, 3vw, 40px) 0 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-gold);
}

.citation__actions {
	margin: clamp(28px, 3vw, 42px) 0 0;
}

@media (max-width: 900px) {
	.chiffres__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chiffres__item:nth-child(odd)::before {
		display: none;
	}

	.facts__list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.cartes {
		grid-template-columns: 1fr;
	}
}

/* Grille des vins */
.vins-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: clamp(20px, 3vw, 44px);
}

.vin-card {
	position: relative;
}

.vin-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-align: center;
	position: relative;
}

/* Cadre à la couleur de la bouteille : il pivote légèrement au survol,
   comme une étiquette qu'on décollerait. */
.vin-card__frame {
	position: absolute;
	inset: -14px -14px auto -14px;
	height: calc(100% + 28px);
	border: 1px solid var(--vin-color, var(--color-gold));
	opacity: 0;
	transform: rotate(0deg) scale(0.98);
	transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
	pointer-events: none;
	z-index: 0;
}

.vin-card:hover .vin-card__frame,
.vin-card:focus-within .vin-card__frame {
	opacity: 0.85;
	transform: rotate(-3.5deg) scale(1);
}

.vin-card__media,
.vin-card__body {
	position: relative;
	z-index: 1;
}

.vin-card__media {
	transition: transform 0.55s var(--ease);
}

.vin-card:hover .vin-card__media,
.vin-card:focus-within .vin-card__media {
	/* La photo bouge à peine : c'est le cadre coloré qui s'incline. */
	transform: rotate(0.4deg);
}

.vin-card:hover .vin-card__name,
.vin-card:focus-within .vin-card__name {
	color: var(--vin-color, var(--color-gold));
	transition: color 0.4s var(--ease);
}

.vin-card:hover .btn--gold,
.vin-card:focus-within .btn--gold {
	background: var(--vin-color, var(--color-gold));
	border-color: var(--vin-color, var(--color-gold));
}

/* Le rouge du domaine est sombre : on garde un texte lisible dessus. */
.vin-card--rouge:hover .btn--gold,
.vin-card--rouge:focus-within .btn--gold {
	color: #fff;
}

.vin-card__media {
	display: block;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
}

.vin-card__media img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transition: transform 1s var(--ease);
}

.vin-card:hover .vin-card__media img {
	transform: scale(1.06);
}

.vin-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 22px 12px 0;
}

.vin-card__name {
	font-family: var(--font-title);
	font-size: var(--h4);
	font-weight: 400;
	line-height: 1.25;
	margin: 0;
}

.vin-card__meta {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.75;
}

/* Grille des événements */
.events-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(22px, 3vw, 40px);
}

.events-grid--wide {
	grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
	gap: clamp(24px, 3vw, 40px);
}

.events-grid--wide .event-card__link {
	align-items: stretch;
}

.event-card {
	background: var(--color-white);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.event-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 54px rgba(0, 0, 0, 0.12);
}

.event-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.event-card--row .event-card__link {
	flex-direction: row;
	align-items: stretch;
}

.event-card__media {
	display: block;
	overflow: hidden;
	flex: 0 0 auto;
}

.event-card--row .event-card__media {
	flex: 0 0 40%;
	max-width: 260px;
	background: var(--color-surface, rgba(0, 0, 0, .04));
}

.event-card__media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 1s var(--ease);
}

.event-card--row .event-card__media img {
	aspect-ratio: 2 / 3;
	height: 100%;
	min-height: 260px;
}

.event-card:hover .event-card__media img {
	transform: scale(1.05);
}

.event-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: clamp(20px, 2.4vw, 32px);
}

.section__actions.section__actions--spaced {
	margin-bottom: clamp(36px, 5vw, 64px);
}

.event-card__date {
	font-family: var(--font-body);
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-gold-dark);
	font-weight: 700;
}

.event-card__title {
	font-family: var(--font-title);
	font-size: var(--h4);
	font-weight: 400;
	line-height: 1.3;
	margin: 0;
}

.event-card__excerpt {
	font-size: 0.92rem;
	color: var(--color-muted);
}

.event-card__more {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-gold-dark);
	font-weight: 700;
	margin-top: auto;
}

/* FAQ */
.faq {
	margin-top: clamp(28px, 4vw, 56px);
	border-top: 1px solid var(--color-line);
}

.faq__item {
	border-bottom: 1px solid var(--color-line);
}

.faq__question {
	margin: 0;
	font-family: var(--font-body);
}

.faq__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: transparent;
	border: 0;
	padding: 22px 4px;
	text-align: left;
	cursor: pointer;
	font-family: var(--font-title);
	font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
	color: inherit;
	transition: color 0.3s var(--ease);
}

.faq__trigger:hover {
	color: var(--color-gold-dark);
}

.faq__icon {
	position: relative;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
}

.faq__icon::before,
.faq__icon::after {
	content: "";
	position: absolute;
	background: var(--color-gold);
	transition: transform 0.35s var(--ease);
}

.faq__icon::before {
	left: 0;
	right: 0;
	top: 7px;
	height: 2px;
}

.faq__icon::after {
	top: 0;
	bottom: 0;
	left: 7px;
	width: 2px;
}

.faq__trigger[aria-expanded="true"] .faq__icon::after {
	transform: rotate(90deg);
	opacity: 0;
}

.faq__answer {
	padding: 0 4px 24px;
	animation: panelIn 0.4s var(--ease) both;
}

/* Réservation */
.section--booking {
	background: var(--color-cream);
	text-align: center;
}

.booking-widget {
	margin-top: 2.5em;
	text-align: left;
}

.booking-closed {
	margin-top: 2em;
	padding: clamp(28px, 4vw, 48px);
	background: var(--color-white);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.booking-closed__date {
	font-family: var(--font-title);
	font-size: var(--h4);
	color: var(--color-gold-dark);
}

.section--reserve .prose {
	margin-left: auto;
	margin-right: auto;
}

.section--reserve .prose + p {
	margin-top: clamp(24px, 3vw, 40px);
}

.section--reserve .grape {
	margin-top: clamp(28px, 4vw, 48px);
}

/* Horaires */
.hours {
	margin: clamp(24px, 4vw, 44px) auto 0;
	max-width: 520px;
	text-align: left;
}

.hours__title {
	font-size: var(--h4);
	margin: 0 0 0.6em;
	text-align: center;
}

.hours__list {
	margin: 0;
	border-top: 1px solid var(--color-line);
}

.hours__day {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 4px;
	border-bottom: 1px solid var(--color-line);
}

.hours__day dt {
	font-weight: 600;
	font-size: 0.95rem;
}

.hours__day dd {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 4px 16px;
	font-variant-numeric: tabular-nums;
	font-size: 0.95rem;
}

.hours__day.is-today {
	background: rgba(220, 190, 132, 0.14);
	box-shadow: inset 3px 0 0 var(--color-gold);
	padding-left: 12px;
}

.hours__day.is-closed dd {
	color: var(--color-muted);
}

.hours__closed {
	font-style: italic;
}

.hours__note {
	margin-top: 1.6em;
	font-size: 0.85rem;
	color: var(--color-muted);
	text-align: center;
}

/* Carte et vidéo sous consentement */
.map,
.video {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.map iframe,
.video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s var(--ease);
}

.map.is-loaded iframe,
.video.is-loaded iframe {
	opacity: 1;
	pointer-events: auto;
}

.map__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	text-align: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.05);
}

.map__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
}

.map.is-loaded .map__placeholder,
.video.is-loaded .video__poster {
	display: none;
}

.video__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	border: 0;
	padding: 0;
	cursor: pointer;
	background: var(--color-ink);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
}

.video__poster img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.75;
}

.video__play {
	position: relative;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: var(--color-gold);
	transition: transform 0.4s var(--ease);
}

.video__play::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	border-left: 18px solid var(--color-white);
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
}

.video__poster:hover .video__play {
	transform: scale(1.08);
}

.video__note {
	position: absolute;
	bottom: 14px;
	left: 0;
	right: 0;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Fiche vin */
.vin__head {
	padding-top: clamp(56px, 7vw, 110px);
}

.vin__media img {
	width: 100%;
	object-fit: cover;
}

.vin__title {
	font-size: var(--h1);
	margin: 0;
	color: var(--color-white);
}

.vin__meta {
	list-style: none;
	margin: 1.6em 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 28px;
}

.vin__meta-label {
	display: block;
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 4px;
}

.vin__tasting {
	list-style: none;
	margin: 0 0 clamp(40px, 5vw, 80px);
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: clamp(20px, 3vw, 44px);
}

.vin__tasting-item {
	background: var(--color-white);
	padding: clamp(22px, 3vw, 36px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.vin__tasting-title {
	font-size: var(--h4);
	margin: 0 0 0.4em;
}

.vin__accords dl {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px 40px;
	margin: 1.4em 0 0;
}

.vin__accords dt {
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-gold-dark);
	font-weight: 700;
}

.vin__accords dd {
	margin: 4px 0 0;
}

.specs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(24px, 3vw, 56px);
	margin-top: clamp(32px, 4vw, 60px);
}

.specs__title {
	font-size: var(--h4);
	margin: 0 0 0.8em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid var(--color-line);
}

.specs__list {
	margin: 0;
}

.specs__list dt {
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin-top: 1em;
}

.specs__list dd {
	margin: 2px 0 0;
}

/* Maillage interne */
.section--maillage {
	background: var(--color-cream);
	padding-top: clamp(40px, 5vw, 72px);
	padding-bottom: clamp(16px, 2vw, 28px);
}

.maillage-list {
	list-style: none;
	margin: 1.4em 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 12px 32px;
}

.maillage-list a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid var(--color-line);
	transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.maillage-list a::before {
	content: "";
	width: 18px;
	height: 1px;
	background: var(--color-gold);
	transition: width 0.3s var(--ease);
}

.maillage-list a:hover {
	color: var(--color-gold-dark);
}

.maillage-list a:hover::before {
	width: 28px;
}

/* Fil d'Ariane, pagination, navigation d'articles */
.breadcrumb {
	font-size: 0.78rem;
	color: var(--color-muted);
	margin-bottom: 2em;
}

.breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.breadcrumb li + li::before {
	content: "/";
	margin-right: 10px;
	opacity: 0.5;
}

.pagination ul {
	list-style: none;
	display: flex;
	gap: 8px;
	justify-content: center;
	padding: 0;
	margin: clamp(32px, 4vw, 56px) 0 0;
}

.pagination a,
.pagination span {
	display: block;
	min-width: 42px;
	padding: 10px;
	text-align: center;
	border: 1px solid var(--color-line);
	font-size: 0.85rem;
}

.pagination .current {
	background: var(--color-black);
	color: var(--color-white);
	border-color: var(--color-black);
}

.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: clamp(36px, 4vw, 64px);
	padding-top: 24px;
	border-top: 1px solid var(--color-line);
	font-size: 0.9rem;
}

.single-post__figure {
	margin: 0 0 2em;
	overflow: hidden;
}

.single-post__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 2.4em;
}

.sitemap__list {
	list-style: none;
	padding: 0;
	margin: 0 0 2.5em;
	columns: 2;
	column-gap: 40px;
}

.sitemap__list li {
	margin-bottom: 8px;
	break-inside: avoid;
}

.sitemap__list a {
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease);
}

.sitemap__list a:hover {
	border-color: var(--color-gold);
}

.search-results {
	list-style: none;
	padding: 0;
	margin: 2em 0 0;
}

.search-results__item {
	padding: 20px 0;
	border-bottom: 1px solid var(--color-line);
}

.search-results__item a {
	font-family: var(--font-title);
	font-size: var(--h4);
}

.search-form {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.search-form input {
	flex: 1 1 240px;
	padding: 14px 16px;
	border: 1px solid var(--color-line);
	background: var(--color-white);
	font-family: inherit;
	font-size: 1rem;
}

/* ---------- 9. Formulaire ---------- */
.form-panel {
	background: var(--color-white);
	padding: clamp(28px, 5vw, 72px);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.07);
}

.form {
	margin-top: 2.4em;
	display: grid;
	gap: 20px;
}

.form__field {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form__field label {
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
}

.form__field input,
.form__field textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(0, 0, 0, 0.17);
	background: var(--color-white);
	font-family: inherit;
	font-size: 1rem;
	color: inherit;
	transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form__field input:focus,
.form__field textarea:focus {
	border-color: var(--color-gold);
	box-shadow: 0 0 0 3px rgba(220, 190, 132, 0.18);
	outline: none;
}

.form__honeypot {
	position: absolute;
	left: -9999px;
}

.form__consent {
	margin: 0;
	font-size: 0.85rem;
}

.form__consent label {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.form__consent input {
	margin-top: 5px;
	accent-color: var(--color-gold);
}

.form__submit {
	margin: 0;
}

.form-message {
	margin-top: 1.6em;
	padding: 16px 20px;
	font-size: 0.92rem;
	border-left: 3px solid var(--color-gold);
	background: rgba(220, 190, 132, 0.12);
}

.form-message--error {
	border-color: var(--color-wine);
	background: rgba(123, 21, 21, 0.08);
}

/* ---------- 10. Pied de page ---------- */
.site-footer {
	position: relative;
	background-color: var(--color-black);
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	padding: clamp(90px, 10vw, 150px) 0 clamp(40px, 5vw, 70px);
	text-align: center;
	overflow: hidden;
}

.site-footer::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--bg-veil, 0.82));
}

.site-footer__edge {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: clamp(40px, 5vw, 64px);
	z-index: 2;
	transform: rotate(180deg);
}

.site-footer__edge path {
	fill: var(--color-cream);
}

main:has(> .cartes:last-child) + .site-footer .site-footer__edge,
main:has(.cartes:last-child) + .site-footer .site-footer__edge,
main:has(.lieux:last-child) + .site-footer .site-footer__edge {
	display: none;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
}

.site-footer__logo {
	max-width: 220px;
	/* Le logo est passé en blanc par filtre : une seule image sert au site entier. */
	filter: brightness(0) invert(1);
}

.site-footer__legal-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 24px;
	padding: 0;
	margin: 0;
	font-size: 0.82rem;
}

.site-footer__legal-list a {
	opacity: 0.85;
	transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}

.site-footer__legal-list a:hover {
	opacity: 1;
	color: var(--color-gold);
}

.site-footer__note {
	font-size: 0.74rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.75;
	line-height: 2;
}

.site-footer__note p {
	margin: 0;
}

.lang-switch--footer {
	justify-content: center;
	margin-top: 8px;
}

/* Bandeau de consentement */
.consent {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 1200;
	background: var(--color-white);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
	padding: 22px 24px;
	animation: consentIn 0.5s var(--ease) both;
}

@keyframes consentIn {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.consent__inner {
	max-width: var(--container);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.consent__text {
	margin: 0;
	font-size: 0.86rem;
	max-width: 70ch;
}

.consent__text a {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.consent__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.consent .section--dark .btn--dark,
.showcase .btn--dark {
	background: var(--color-gold);
	color: var(--color-white);
}

.section--dark .btn--dark:hover,
.showcase .btn--dark:hover {
	background: var(--color-gold-dark);
}

.btn--ghost {
	color: var(--color-ink);
	border-color: var(--color-line);
}

/* Sur fond sombre, le bouton fantôme repasse en blanc. */
.offseason .btn--ghost,
.section--dark .btn--ghost,
.showcase .btn--ghost {
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.42);
}

.offseason .btn--ghost:hover,
.offseason .btn--ghost:focus-visible,
.section--dark .btn--ghost:hover,
.section--dark .btn--ghost:focus-visible,
.showcase .btn--ghost:hover,
.showcase .btn--ghost:focus-visible {
	background: var(--color-gold);
	border-color: var(--color-gold);
	color: var(--color-white);
}

/* Retour en haut */
.to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 800;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 0;
	background: var(--color-black);
	color: var(--color-white);
	cursor: pointer;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
}

.to-top.is-visible {
	opacity: 1;
	transform: none;
}

.to-top:hover {
	background: var(--color-gold);
}

.to-top span {
	position: absolute;
	top: 52%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------- 11. Animations ---------- */
/* Rien n'est masqué tant que « seesmile-js » n'est pas posée sur <html>, ce que
   le script ne fait qu'après avoir révélé le premier écran. Sans script, la page
   s'affiche entière : un contenu ne peut pas rester invisible faute de JS. */
.reveal,
.reveal-left,
.reveal-right {
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

html.seesmile-js .reveal:not(.is-visible),
html.seesmile-js .reveal-left:not(.is-visible),
html.seesmile-js .reveal-right:not(.is-visible) {
	opacity: 0;
	transform: translateY(28px);
	will-change: opacity, transform;
}

html.seesmile-js .reveal-left:not(.is-visible) {
	transform: translateX(-36px);
}

html.seesmile-js .reveal-right:not(.is-visible) {
	transform: translateX(36px);
}

.vin-card.reveal,
.event-card.reveal,
.pictos__item.reveal {
	transition-delay: calc(var(--i, 0) * 90ms);
}

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

	.reveal,
	.reveal-left,
	.reveal-right,
	.reveal-mask,
	.reveal-mask img {
		opacity: 1 !important;
		transform: none !important;
	}

	.hero__scroll {
		display: none;
	}
}

/* ---------- 12. Responsive ---------- */
@media (max-width: 1200px) {
	.terroir {
		grid-template-columns: 1fr 1fr;
	}

	.terroir__text {
		grid-column: 1 / -1;
		order: -1;
	}
}

@media (max-width: 1024px) {
	.site-header__nav {
		display: none;
	}

	.site-header__actions {
		display: none;
	}

	.burger {
		display: flex;
	}

	.site-header__inner {
		height: 72px;
		padding-top: 0;
		padding-bottom: 0;
	}

	.site-header__brand img,
	.custom-logo {
		max-height: 48px;
	}

	.hero__inner--split {
		grid-template-columns: 1fr;
	}

	.showcase__inner {
		grid-template-columns: 1fr;
	}

	.cards-carousel {
		min-height: 300px;
	}

	.cards-carousel__item {
		height: 220px;
		flex-basis: 180px;
	}

	.cards-carousel__item.is-active {
		height: 280px;
	}

	.split,
	.lieux,
	.cartes {
		grid-template-columns: 1fr;
	}

	.split--reverse .split__col:first-child {
		order: 0;
	}

	.pictos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.events-grid--wide {
		grid-template-columns: 1fr;
	}
}

/* Cibles tactiles : la recommandation est 44 px de haut minimum. */
@media (hover: none), (max-width: 1024px) {
	.btn,
	.btn--small {
		min-height: 44px;
	}

	.showcase__dots button {
		width: 40px;
		height: 40px;
	}

	.showcase__dots {
		gap: 10px;
	}

	.showcase__dots::before {
		left: 19px;
	}

	.carousel-arrow {
		width: 48px;
		height: 48px;
	}

	.faq__trigger {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.main-nav__list a,
	.mobile-menu__list a {
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.lang-switch a {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
		padding: 0 6px;
	}
}

@media (max-width: 768px) {
	:root {
		--section-y: 52px;
	}

	/* Le filigrane ne doit jamais dépasser du bord de l'écran. */
	.grape--behind,
	.split__col--text > .grape--behind,
	.terroir__text > .grape--behind,
	.split__col:has(.grape--behind) > .grape--behind {
		top: -18px;
		width: 84px;
		opacity: 0.12;
	}

	.btn {
		width: 100%;
	}

	.btn--small,
	.hero__links .btn,
	.lang-switch .btn {
		width: auto;
	}

	.section__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.event-card--row .event-card__link {
		flex-direction: column;
	}

	.event-card--row .event-card__media {
		max-width: none;
		flex: 0 0 auto;
	}

	.event-card--row .event-card__media img {
		aspect-ratio: 16 / 10;
	}

	.vin__meta {
		grid-template-columns: 1fr;
	}

	.sitemap__list {
		columns: 1;
	}

	.showcase__text {
		grid-template-columns: 1fr;
	}

	.showcase__dots {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.showcase__dots::before {
		display: none;
	}

	.cards-carousel {
		min-height: 240px;
	}

	.consent__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
	}

	.consent__actions .btn {
		flex: 1;
	}
}

@media (max-width: 380px) {
	:root {
		--fs-base: 0.95rem;
	}

	.pictos {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   13. Rythme vertical unifié
   Une seule échelle d'espacement pour tout le site : surtitre, titre, texte,
   bouton. Ce bloc vient en dernier pour l'emporter sans avoir à empiler
   des sélecteurs plus lourds ailleurs.
   ========================================================= */

.eyebrow {
	margin: 0 0 var(--space-eyebrow);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 var(--space-title);
}

/* Le filet doré porte l'espace de part et d'autre : le titre lui-même n'en a pas. */
.section-heading__title,
.page-head__title,
.hero__kicker,
.citation__title,
.section__title,
.showcase__heading {
	margin-bottom: 0;
}

.rule {
	margin: var(--space-title) 0;
}

.rule--center {
	margin-left: auto;
	margin-right: auto;
}

/* Dans un contenu rédigé, les titres respirent aussi par le haut. */
.prose h2,
.prose h3,
.prose h4 {
	margin-top: var(--space-block);
}

.prose > :first-child {
	margin-top: 0;
}

/* Texte vers ce qui suit : bouton, liste, formulaire, tableau d'horaires.
   C'est ici que se réglait le bouton collé au paragraphe. */
.prose + p,
.prose + ul,
.prose + ol,
.prose + form,
.prose + figure,
.prose + .hours,
.prose + .feature-list,
.prose + .section__actions,
.prose + .merci__actions,
.section__lead + ul,
.section__lead + p,
.lead + p {
	margin-top: var(--space-block);
}

/* Un paragraphe qui ne porte qu'un ou deux boutons est un bloc d'action :
   il prend l'espace de bloc au-dessus, jamais la marge d'un paragraphe. */
p:has(> .btn) {
	margin-top: var(--space-block);
	margin-bottom: 0;
}

.section__actions {
	margin: var(--space-block) 0 0;
}

/* Un bloc de boutons suivi d'autre chose reprend l'espace de bloc en dessous :
   sans lui, la grille des événements venait se coller aux boutons. */
.section__actions:not(:last-child),
.section__actions.section__actions--spaced {
	margin-bottom: var(--space-block);
}

/* Le « ou » entre deux boutons : au milieu en ligne comme en colonne. Sur mobile
   les boutons passent en pleine largeur, le mot doit rester centré avec eux. */
.section__or {
	text-align: center;
}

/* Blocs de contenu enchaînés dans une colonne de texte. */
.split__col > .prose + .prose,
.card-panel > .prose + p,
.lieux__text + p {
	margin-top: var(--space-block);
}

/* Grilles et carrousels après un titre de section. */
.section-heading + .vins-grid,
.section-heading + .events-grid,
.section-heading + .section__lead,
.section__lead + .vins-grid,
.section__lead + .events-grid,
.faq,
.hours {
	margin-top: var(--space-block);
}

/* Pictogrammes et listes de cartes : même respiration que le reste. */
.pictos {
	margin-top: var(--space-block);
}

/* ---------- Croix de fermeture du menu mobile ---------- */
.mobile-menu__close {
	position: absolute;
	top: 18px;
	right: 20px;
	width: 48px;
	height: 48px;
	border: 1px solid var(--color-line);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
		transform 0.3s var(--ease);
}

.mobile-menu__close span,
.mobile-menu__close span::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 1.5px;
	background: var(--color-ink);
	content: "";
	transition: background-color 0.3s var(--ease);
}

.mobile-menu__close span {
	transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span::before {
	top: 0;
	left: 0;
	transform: rotate(-90deg);
	transform-origin: center;
}

.mobile-menu__close:hover,
.mobile-menu__close:focus-visible {
	background: var(--color-ink);
	border-color: var(--color-ink);
	transform: rotate(90deg);
}

.mobile-menu__close:hover span,
.mobile-menu__close:hover span::before,
.mobile-menu__close:focus-visible span,
.mobile-menu__close:focus-visible span::before {
	background: var(--color-white);
}

/* ---------- Remerciement après l'envoi du formulaire ---------- */
.merci {
	text-align: center;
	margin-top: var(--space-block);
	padding: clamp(30px, 4vw, 52px) clamp(22px, 4vw, 48px);
	background: var(--color-white);
	border: 1px solid var(--color-line);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.merci__seal {
	display: block;
	width: 62px;
	height: 62px;
	margin: 0 auto var(--space-title);
	border: 1px solid var(--color-gold);
	border-radius: 50%;
	position: relative;
	animation: merciSeal 0.7s var(--ease) both;
}

/* Coche dessinée en CSS : deux bords d'un carré pivoté à 45 degrés. */
.merci__seal::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 25px;
	width: 12px;
	height: 21px;
	border-right: 2px solid var(--color-gold-dark);
	border-bottom: 2px solid var(--color-gold-dark);
	transform: rotate(45deg);
	transform-origin: center;
	animation: merciCheck 0.5s var(--ease) 0.3s both;
}

@keyframes merciSeal {
	from { opacity: 0; transform: scale(0.6); }
	to { opacity: 1; transform: scale(1); }
}

@keyframes merciCheck {
	from { opacity: 0; transform: rotate(45deg) scale(0.4); }
	to { opacity: 1; transform: rotate(45deg) scale(1); }
}

.merci__title {
	font-size: var(--h3);
	margin-bottom: var(--space-title);
}

.merci__text {
	max-width: 54ch;
	margin: 0 auto;
	color: var(--color-muted);
}

.merci__urgent {
	margin: var(--space-title) auto 0;
	max-width: 54ch;
	font-size: var(--fs-small);
}

.merci__urgent a {
	color: var(--color-gold-dark);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.merci__urgent a:hover {
	text-decoration: underline;
}

.merci__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin: var(--space-block) 0 0;
}

/* ---------- Réservation d'un événement, par téléphone ---------- */
.single-post__reserve {
	margin-top: var(--space-block);
	padding: clamp(24px, 3vw, 38px);
	background: var(--color-white);
	border-left: 3px solid var(--color-gold);
	text-align: center;
}

.single-post__reserve-note {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-gold-dark);
}

.single-post__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin: var(--space-title) 0 0;
}

@media (max-width: 600px) {
	.merci__actions .btn,
	.single-post__actions .btn {
		width: 100%;
	}
}

/* ---------- Vidéo d'ambiance : elle tourne en boucle, on n'y touche pas ---------- */
/* Spécificité alignée sur « .video.is-loaded iframe », qui rétablit sinon
   les clics une fois la vidéo chargée. */
.video--loop.is-loaded iframe,
.video--loop iframe {
	pointer-events: none;
}

/* Voile très léger pour que la vidéo se fonde dans la page plutôt que de
   ressembler à un lecteur posé au milieu du texte. */
.video--loop::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.14));
	pointer-events: none;
	z-index: 1;
}

/* Le lecteur ne doit jamais reprendre le clavier : la vidéo est décorative. */
.video--loop iframe {
	user-select: none;
}

/* ---------- Pastille « ouvert en ce moment » ---------- */
.open-now {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: var(--space-title) 0 0;
	padding: 9px 18px 9px 14px;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: var(--color-white);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--color-muted);
	line-height: 1.2;
}

.section--hours .open-now {
	margin-bottom: var(--space-title);
}

.facts__item .open-now {
	margin-top: 12px;
	padding: 6px 14px 6px 11px;
	font-size: 0.7rem;
}

.open-now__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-muted);
	flex: none;
}

.open-now[data-state="open"] {
	color: #2f6b3c;
	border-color: rgba(47, 107, 60, 0.3);
}

.open-now[data-state="open"] .open-now__dot {
	background: #3f9152;
	box-shadow: 0 0 0 0 rgba(63, 145, 82, 0.5);
	animation: openPulse 2.4s ease-out infinite;
}

.open-now[data-state="closing"] {
	color: #9a6a15;
	border-color: rgba(154, 106, 21, 0.3);
}

.open-now[data-state="closing"] .open-now__dot {
	background: #c78a1e;
}

@keyframes openPulse {
	0% { box-shadow: 0 0 0 0 rgba(63, 145, 82, 0.45); }
	70% { box-shadow: 0 0 0 8px rgba(63, 145, 82, 0); }
	100% { box-shadow: 0 0 0 0 rgba(63, 145, 82, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.open-now[data-state="open"] .open-now__dot {
		animation: none;
	}
}

/* ---------- Barre d'action collante, mobile ---------- */
.action-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	display: none;
	background: var(--color-white);
	border-top: 1px solid var(--color-line);
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
	padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
	transform: translateY(110%);
	transition: transform 0.35s var(--ease);
}

.action-bar__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-height: 52px;
	padding: 6px 4px;
	border-radius: 2px;
	text-decoration: none;
	color: var(--color-ink);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
}

.action-bar__item svg {
	color: var(--color-gold-dark);
}

.action-bar__item--primary {
	background: var(--color-gold);
	color: var(--color-ink);
}

.action-bar__item--primary svg {
	color: currentColor;
}

@media (max-width: 900px) {
	.action-bar {
		display: flex;
		gap: 6px;
	}

	html.action-bar-visible .action-bar {
		transform: translateY(0);
	}

	/* On rend au pied de page la hauteur que la barre lui prend. */
	html.action-bar-visible body {
		padding-bottom: 76px;
	}

	/* Deux boutons flottants au même endroit, c'est un de trop. */
	html.action-bar-visible .to-top {
		display: none;
	}
}

/* ---------- Révélation par masque sur les grandes photos ---------- */
/* La photo remonte derrière son cadre au lieu d'apparaître en fondu.
   ATTENTION : c'est le contenu qui bouge, jamais le cadre lui-même. Un
   clip-path posé sur le cadre le rendrait invisible pour l'observateur
   d'intersection, qui ne le signalerait donc jamais à l'écran : la photo
   resterait masquée pour toujours. */
.reveal-mask {
	overflow: hidden;
}

.reveal-mask img {
	transition: transform 1.2s var(--ease);
}

html.seesmile-js .reveal-mask:not(.is-visible) img {
	transform: translateY(100%) scale(1.08);
}

/* Le survol garde la main une fois la révélation terminée. */
.split__figure.reveal-mask:hover img,
.terroir__figure.reveal-mask:hover img {
	transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
	.reveal-mask img {
		transform: none !important;
	}
}

/* ---------- Points de vente ---------- */
/* La liste prolonge le texte d'introduction : deux paddings de section
   empilés creuseraient un trou au milieu de la page. */
.section--points {
	padding-top: 0;
}

.points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(18px, 2.4vw, 30px);
}

.points__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--space-title);
	padding: clamp(24px, 3vw, 36px);
	background: var(--color-white);
	border: 1px solid var(--color-line);
	transition: border-color 0.4s var(--ease), transform 0.4s var(--ease),
		box-shadow 0.4s var(--ease);
}

.points__item:hover {
	border-color: var(--color-gold);
	transform: translateY(-4px);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.07);
}

.points__kind {
	margin: 0 0 0.6em;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-gold-dark);
}

.points__name {
	font-size: var(--h4);
	margin: 0 0 0.5em;
}

.points__address {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.92rem;
}

.points__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

@media (max-width: 480px) {
	.points__actions .btn {
		width: 100%;
	}
}

/* =========================================================
   14. Contraste des boutons dorés
   Le doré du domaine (#dcbe84) est une couleur claire : du texte blanc dessus
   plafonne à 1,9 pour 1, alors que le niveau AA demande 4,5 pour 1 sur du texte
   de cette taille. Partout où un fond doré apparaît, le texte passe en encre,
   ce qui monte le contraste à près de 14 pour 1 sans rien changer à la couleur.
   Ce bloc arrive en dernier pour couvrir aussi les états au survol déclarés
   plus haut avec une spécificité plus forte.
   ========================================================= */
.btn--gold,
.btn--gold:hover,
.btn--gold:focus-visible,
.btn--outline:hover,
.btn--outline:focus-visible,
.btn--dark:hover,
.btn--dark:focus-visible,
.section--dark .btn--dark,
.showcase .btn--dark,
.section--dark .btn--dark:hover,
.showcase .btn--dark:hover,
.btn--ghost:hover,
.btn--ghost:focus-visible,
.offseason .btn--ghost:hover,
.offseason .btn--ghost:focus-visible,
.section--dark .btn--ghost:hover,
.section--dark .btn--ghost:focus-visible,
.showcase .btn--ghost:hover,
.showcase .btn--ghost:focus-visible,
.site-header .btn--gold,
.site-footer .btn--gold,
.showcase__dots button[aria-selected="true"],
.action-bar__item--primary {
	color: var(--color-ink);
}

/* Seule exception : le rouge du domaine est une couleur sombre, le blanc y
   reste le bon choix. */
.vin-card--rouge:hover .btn--gold,
.vin-card--rouge:focus-within .btn--gold {
	color: #fff;
}

/* =========================================================
   15. Doré lisible en petit texte
   Partout où le doré sert de TEXTE sur un fond clair, il passe à sa variante
   profonde : 4,7 pour 1 au lieu de 2,2, sans quitter la famille de couleur.
   Sur fond sombre, le doré d'origine reste en place, il y est déjà lisible.
   ========================================================= */
.eyebrow:not(.eyebrow--light),
.btn--outline,
.prose a:hover,
.lieux__text a:hover,
.lang-switch a:hover,
.facts__label,
.event-card__date,
.event-card__more,
.faq__trigger:hover,
.booking-closed__date,
.vin__accords dt,
.maillage-list a:hover,
.merci__urgent a,
.single-post__reserve-note,
.points__kind,
.hours__note strong {
	color: var(--color-gold-text);
}

/* Pictogrammes de la barre mobile : un dessin doit tenir 3 pour 1. */
.action-bar__item svg {
	color: var(--color-gold-text);
}

/* ---------- Anti-robots du formulaire ---------- */
.form__antispam {
	margin-top: var(--space-title);
}

/* Mention légale imposée par Google dès que son badge est masqué. */
.form__antispam-note {
	margin: var(--space-title) 0 0;
	font-size: 0.72rem;
	line-height: 1.6;
	color: var(--color-muted);
	text-align: center;
}

.form__antispam-note a {
	color: var(--color-gold-dark);
}
