/* Samuel Bambi */

:root {
	/* Couleurs */
	--cream:        #FAF6ED;
	--cream-warm:   #F4EADA;
	--cream-deep:   #F1E6D3;
	--card:         #FFFCF6;
	--ink:          #14110D;
	--ink-2:        #3C362D;
	--muted:        #6E6558;
	--gold:         #B0853F;
	--gold-dark:    #8E6A2C;
	--gold-light:   #D9BE87;
	--line:         #E5D9C4;
	--dark:         #14110D;

	/* Alias */
	--global-primary-color:   #B0853F;
	--global-secondary-color: #8E6A2C;

	/* Typo */
	--font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
	--font-sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;

	/* Mesures */
	--header-h:     78px;
	--radius:       2px;
	--shell:        1180px;
	--shell-wide:   1340px;
	--ease:         cubic-bezier(.22,.61,.36,1);
}


/* -------------------------------------------------------------
   RESET / BASE
   ------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
	margin: 0;
	padding: 0;
	font-size: 16px;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 10px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	background: var(--cream);
	color: var(--ink-2);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, p, figure, blockquote, ul, ol {
	margin: 0;
	padding: 0;
}

ul, ol { list-style: none; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--ink);
	line-height: 1.08;
}

a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	outline: none;
}

img, video {
	display: block;
	max-width: 100%;
	border: none;
}

button {
	font: inherit;
	color: inherit;
	border: none;
	background: none;
	cursor: pointer;
}

input {
	font: inherit;
	color: inherit;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

::selection {
	color: #FFF;
	background: var(--gold);
}

/* Hors flux plutôt que display:none */
.hp-field {
	position: absolute !important;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* Utilitaires */
.flol { float: left; }
.flor { float: right; }
.alc  { text-align: center; }
.alr  { text-align: right; }
.prel { position: relative; }
.dnone { display: none; }
.m0auto { margin: 0 auto; }
.fin { clear: both; line-height: 0; height: 0; font-size: 1px; }
#strErreur, #strInfo { display: none; }


/* -------------------------------------------------------------
   APPARITIONS
   ------------------------------------------------------------- */

/* La classe est posee par le script : sans JS, tout reste visible */
.js-anim [data-anim] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .6s var(--ease), transform .6s var(--ease);
	transition-delay: var(--delai, 0ms);
	will-change: opacity, transform;
}

.js-anim [data-anim].est-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.js-anim [data-anim] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}


/* -------------------------------------------------------------
   CONTENEURS
   ------------------------------------------------------------- */

.shell {
	width: 100%;
	max-width: var(--shell);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 44px);
}

.shell--wide { max-width: var(--shell-wide); }

.section {
	padding: clamp(34px, 4vw, 58px) 0;
}

.section--tour     { background: var(--cream); }
.section--show     { background: var(--cream); padding-top: clamp(16px, 2vw, 28px); }
.section--press    { background: var(--cream); }
.section--gallery  { background: var(--cream); padding-bottom: 18px; }
.section--social   { background: var(--cream-warm); }
.section--contact  { background: var(--cream); padding-bottom: 24px; }
.section--newsletter { background: var(--cream); padding: 24px 0 clamp(30px, 3.4vw, 48px); }

.section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.section__head + .rule { margin-top: -10px; }

.section__title {
	font-size: clamp(1.75rem, 3vw, 2.4rem);
	letter-spacing: .01em;
	text-transform: uppercase;
}

.section__empty {
	padding: 30px 0;
	color: var(--muted);
	font-size: .95rem;
}

.section__empty a {
	color: var(--gold);
	border-bottom: 1px solid currentColor;
}

.rule {
	display: block;
	width: 62px;
	height: 3px;
	background: var(--gold);
	margin: 0 0 18px;
}

.eyebrow {
	font-family: var(--font-sans);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}

.link-more {
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	transition: color .2s var(--ease);
}

.link-more:hover { color: var(--gold-dark); }
.link-more span  { transition: transform .2s var(--ease); display: inline-block; }
.link-more:hover span { transform: translateX(4px); }


/* -------------------------------------------------------------
   BOUTONS
   ------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 30px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-family: var(--font-sans);
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
	transition: background-color .2s var(--ease), color .2s var(--ease),
	            border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}

.btn--gold:hover,
.btn--outline:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px -12px rgba(20, 17, 13, .65);
}

.btn--sm { padding: 10px 20px; font-size: .66rem; letter-spacing: .14em; }

.btn--gold {
	background: var(--gold);
	border-color: var(--gold);
	color: #FFF;
}

.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn--outline {
	background: transparent;
	border-color: var(--gold);
	color: var(--gold);
}

.btn--outline:hover { background: var(--gold); color: #FFF; }

.btn--mute {
	background: transparent;
	border-color: var(--line);
	color: var(--muted);
	cursor: default;
}


/* -------------------------------------------------------------
   HEADER
   ------------------------------------------------------------- */

.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(250, 246, 237, .92);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.site-header.is-stuck {
	border-bottom-color: var(--line);
	box-shadow: 0 6px 24px -18px rgba(20, 17, 13, .5);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	height: var(--header-h);
}

.wordmark {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.02;
	letter-spacing: .03em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--ink);
	display: block;
	flex: 0 0 auto;
}

.wordmark--footer span { display: block; }

.site-nav {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2.2vw, 34px);
	margin-left: auto;
}

.site-nav__link {
	position: relative;
	font-size: .7rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ink-2);
	padding: 6px 0;
	transition: color .2s var(--ease);
}

.site-nav__link::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active { color: var(--gold); }
.site-nav__link.is-active::after { transform: scaleX(1); }

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.burger {
	display: none;
	width: 40px; height: 40px;
	padding: 10px 8px;
	flex-direction: column;
	justify-content: space-between;
}

.burger span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--ink);
	transition: transform .25s var(--ease), opacity .2s var(--ease);
}

.burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.scroll-progress {
	position: absolute;
	left: 0; bottom: -1px;
	height: 2px;
	width: 0;
	background: var(--gold);
	transition: width .1s linear;
}


/* -------------------------------------------------------------
   HERO
   ------------------------------------------------------------- */

.hero {
	position: relative;
	display: grid;
	grid-template-columns: 1.12fr 1fr;
	align-items: stretch;
	min-height: min(640px, calc(100vh - var(--header-h)));
	margin-top: var(--header-h);
	/* Reprend la teinte du fond de la photo pour que le raccord ne se voie pas */
	background: linear-gradient(180deg, #966E3A 0%, #B98F58 38%, #C69D67 72%, #BE9560 100%);
	color: #1C1508;
	/* Meme gouttiere que .shell--wide : le visuel ne depasse pas la verticale */
	padding-right: calc(max(0px, (100vw - var(--shell-wide)) / 2) + clamp(20px, 4vw, 44px));
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .055;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

.hero__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(36px, 4vw, 64px) clamp(20px, 3vw, 40px);
	/* Aligné sur le bord gauche de .shell--wide, comme le logo et les sections */
	padding-left: calc(max(0px, (100vw - var(--shell-wide)) / 2) + clamp(20px, 4vw, 44px));
	width: 100%;
}

.hero .eyebrow,
.hero .hero__kicker { color: #33240D; }

.hero__baseline { color: #2A1E0B; }

.hero__title { color: #16100A; }

.hero .btn--gold {
	background: #1C1508;
	border-color: #1C1508;
	color: #F7F1E4;
}

.hero .btn--gold:hover { background: #000; border-color: #000; }

.hero .btn--outline {
	border-color: rgba(28, 21, 8, .55);
	color: #1C1508;
}

.hero .btn--outline:hover { background: #1C1508; border-color: #1C1508; color: #F7F1E4; }

.hero .social-row__link {
	border-color: rgba(28, 21, 8, .4);
	color: #1C1508;
}

.hero .social-row__link:hover { background: #1C1508; border-color: #1C1508; color: #F7F1E4; }

.hero__title {
	font-size: clamp(3.4rem, 8vw, 6.6rem);
	line-height: .92;
	letter-spacing: -.02em;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.hero__kicker {
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 22px;
}

.hero__kicker em { font-style: normal; }

.hero__baseline {
	font-size: clamp(1rem, 1.3vw, 1.12rem);
	color: var(--ink-2);
	max-width: 30em;
	margin-bottom: 34px;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 38px;
}

.hero__cta .btn {
	padding-left: 18px;
	padding-right: 18px;
	letter-spacing: .1em;
}

.hero__media {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.75) 3%, #000 8%);
	        mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.75) 3%, #000 8%);
}

.hero__visual {
	/* Positionné pour remplir le panneau : en flux, height:100% retomberait
	   sur auto et l'image imposerait son ratio à toute la section. */
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 12%;
}


/* Réseaux sociaux (rangée d'icônes) */

.social-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.social-row__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--ink);
	font-size: 1.05rem;
	transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.social-row__link svg {
	display: block;
	width: 17px;
	height: 17px;
}

.social-row__link:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: #FFF;
}


/* -------------------------------------------------------------
   CARROUSEL (générique)
   ------------------------------------------------------------- */

.carousel {
	position: relative;
	/* Évite le débordement de la piste hors de la grille */
	min-width: 0;
}

.carousel__track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 4px 2px 12px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar { display: none; }

.carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 42px; height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--ink);
	font-size: 1.3rem;
	line-height: 1;
	box-shadow: 0 8px 22px -14px rgba(20, 17, 13, .55);
	transition: background-color .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease);
}

.carousel__nav:hover { background: var(--gold); border-color: var(--gold); color: #FFF; }
.carousel__nav[disabled] { opacity: 0; pointer-events: none; }

.carousel__nav--prev { left: -20px; }
.carousel__nav--next { right: -20px; }

.carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.carousel__dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--line);
	transition: background-color .2s var(--ease), transform .2s var(--ease);
}

.carousel__dot.is-active { background: var(--gold); transform: scale(1.25); }


/* -------------------------------------------------------------
   BLOC TOURNÉE
   ------------------------------------------------------------- */

.date-card {
	flex: 0 0 calc((100% - 3 * 18px) / 4);
	scroll-snap-align: start;
	display: flex;
	gap: 18px;
	padding: 22px 22px 24px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}

.date-card {
	position: relative;
}

.date-card::before {
	content: '';
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s var(--ease);
}

.date-card:hover::before { transform: scaleX(1); }

.date-card:hover {
	border-color: var(--gold-light);
	transform: translateY(-3px);
	box-shadow: 0 16px 30px -24px rgba(20, 17, 13, .6);
}

.date-card__when {
	flex: 0 0 auto;
	text-align: center;
	min-width: 54px;
	padding-right: 16px;
	border-right: 1px solid var(--line);
}

.date-card__day {
	display: block;
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	color: var(--gold);
}

.date-card__month {
	display: block;
	margin-top: 4px;
	font-size: .66rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ink);
}

.date-card__year {
	display: block;
	font-size: .66rem;
	letter-spacing: .12em;
	color: var(--muted);
}

.date-card__where {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-width: 0;
}

.date-card__city {
	font-family: var(--font-sans);
	font-size: .88rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink);
}

.date-card__venue,
.date-card__range {
	font-size: .82rem;
	color: var(--muted);
	line-height: 1.4;
}

.date-card__range { margin-bottom: 8px; }

/* Bouton calé en bas : les cartes s'alignent sur la plus haute */
.date-card__where .btn { margin-top: auto; }

/* Liste dépliée */

.dates-full {
	margin-top: 34px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
	animation: fadeUp .35s var(--ease);
}

.dates-table {
	width: 100%;
	border-collapse: collapse;
}

.dates-table tr {
	border-bottom: 1px solid var(--line);
}

.dates-table tr:hover { background: var(--card); }

.dates-table th,
.dates-table td {
	padding: 13px 10px;
	text-align: left;
	font-weight: 400;
	vertical-align: middle;
}

.dates-table th {
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink);
}

.dates-table__dep  { color: var(--muted); font-size: .8rem; width: 90px; }
.dates-table__date { color: var(--ink-2); font-size: .88rem; }
.dates-table__cta  { text-align: right; width: 150px; }

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: none; }
}


/* -------------------------------------------------------------
   BLOC SPECTACLE
   ------------------------------------------------------------- */

.show {
	display: grid;
	grid-template-columns: 1.3fr .7fr;
	gap: clamp(24px, 3.4vw, 46px);
	align-items: center;
}

.show > * { min-width: 0; }

.show__photo,
.show__poster {
	position: relative;
	overflow: hidden;
	background: #E7E2DA;
}

.show__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 22%;
}

.show__body { padding: 8px 0; }

.show__body .section__title { margin-bottom: 18px; }

.show__quote {
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 1.5vw, 1.28rem);
	font-style: italic;
	color: var(--ink);
	margin-bottom: 18px;
}

.show__body p {
	margin-bottom: 14px;
	color: var(--ink-2);
	max-width: 46em;
}

.show__body .btn {
	margin-top: 12px;
	margin-left: auto;
	display: flex;
	width: fit-content;
}

.show__poster--attente {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 5;
	background: var(--cream-deep);
	border: 1px dashed var(--gold);
}

.show__poster--attente span {
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-dark);
}

.show__poster img {
	position: static;
	width: 100%;
	height: auto;
}


/* -------------------------------------------------------------
   BLOC PRESSE
   ------------------------------------------------------------- */

.press-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.press-card {
	display: flex;
	flex-direction: column;
	padding: 26px 24px 24px;
	background: var(--cream-deep);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.press-card__mark {
	font-family: var(--font-display);
	font-size: 2.8rem;
	line-height: .6;
	color: var(--gold);
	margin-bottom: 16px;
}

.press-card__text {
	flex: 1 1 auto;
	font-size: .92rem;
	color: var(--ink-2);
	margin-bottom: 18px;
}

.press-card__source {
	padding-top: 14px;
	border-top: 1px solid var(--gold-light);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
}


/* -------------------------------------------------------------
   BLOC GALERIE
   ------------------------------------------------------------- */

.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	background: var(--line);
}

.gallery__item {
	overflow: hidden;
	background: #E7E2DA;
	aspect-ratio: 1 / 1;
}

.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ease);
}

.gallery__item:hover img { transform: scale(1.05); }

.credit {
	margin-top: 16px;
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
}


/* -------------------------------------------------------------
   BLOC SUIVEZ SAMUEL
   ------------------------------------------------------------- */

.social {
	display: grid;
	grid-template-columns: .8fr 1.6fr;
	gap: clamp(28px, 4vw, 60px);
	align-items: center;
}

.social > * { min-width: 0; }

.social__intro .section__title { margin-bottom: 18px; }

.social__intro p {
	color: var(--ink-2);
	margin-bottom: 26px;
}

.carousel--insta .carousel__track { gap: 12px; }

.insta-card {
	position: relative;
	flex: 0 0 calc((100% - 3 * 12px) / 4);
	scroll-snap-align: start;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	background: var(--dark);
	border-radius: var(--radius);
}

.insta-card__link {
	display: block;
	width: 100%;
	height: 100%;
}

.insta-card img,
.insta-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ease);
}

.insta-card:hover img,
.insta-card:hover video { transform: scale(1.05); }

.insta-card__play {
	position: absolute;
	left: 10px; bottom: 10px;
	width: 24px; height: 24px;
	border-radius: 50%;
	background: rgba(20, 17, 13, .55);
	pointer-events: none;
	transition: opacity .2s var(--ease);
}

.insta-card__play::after {
	content: '';
	position: absolute;
	top: 50%; left: 55%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent #FFF;
}

.insta-card.is-playing .insta-card__play { opacity: 0; }


/* -------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------- */

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.contact-card {
	padding: 26px 28px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.contact-card__role {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 10px;
}

.contact-card__nom {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}

.contact-card__mail a {
	font-size: .92rem;
	color: var(--ink-2);
	border-bottom: 1px solid var(--line);
	transition: color .2s var(--ease), border-color .2s var(--ease);
}

.contact-card__mail a:hover { color: var(--gold); border-color: var(--gold); }


/* -------------------------------------------------------------
   NEWSLETTER
   ------------------------------------------------------------- */

.newsletter {
	display: flex;
	align-items: center;
	gap: clamp(18px, 3vw, 34px);
	flex-wrap: wrap;
	padding: clamp(24px, 3.4vw, 38px) clamp(24px, 4vw, 44px);
	background: var(--cream-warm);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.newsletter__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 52px; height: 52px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	font-size: 1.2rem;
}

.newsletter__body { flex: 1 1 260px; }

.newsletter__title {
	font-family: var(--font-sans);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 4px;
}

.newsletter__body p {
	font-size: .9rem;
	color: var(--muted);
}

.newsletter__form {
	display: flex;
	gap: 10px;
	flex: 1 1 380px;
}

.newsletter__form input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 14px 16px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: .9rem;
	color: var(--ink);
}

.newsletter__form input::placeholder { color: #A69C8C; }
.newsletter__form input:focus { border-color: var(--gold); outline: none; }

.newsletter.is-done .newsletter__form { display: none; }

.newsletter__done {
	flex: 1 1 380px;
	font-size: .92rem;
	font-weight: 600;
	color: var(--gold-dark);
}


/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */

.site-footer {
	background: var(--cream-deep);
	border-top: 1px solid var(--line);
	padding: clamp(34px, 4vw, 54px) 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr .8fr;
	gap: clamp(24px, 3vw, 48px);
	padding-bottom: 40px;
}

.wordmark--footer {
	font-size: 1.15rem;
	margin-bottom: 16px;
}

.footer-col p {
	font-size: .88rem;
	color: var(--muted);
	line-height: 1.8;
}

.footer-col em { font-style: italic; color: var(--ink-2); }

.footer-col__title {
	font-family: var(--font-sans);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 9px; }

.footer-col ul a {
	font-size: .88rem;
	color: var(--muted);
	transition: color .2s var(--ease);
}

.footer-col ul a:hover { color: var(--gold); }

.footer-contact {
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
}

.footer-contact strong {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 2px;
}

.footer-contact .email a { color: var(--muted); transition: color .2s var(--ease); }
.footer-contact .email a:hover { color: var(--gold); }

.footer-col .social-row { flex-wrap: wrap; gap: 10px; }
.footer-col .social-row__link { width: 38px; height: 38px; font-size: .95rem; }

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 20px 0 26px;
	border-top: 1px solid var(--line);
	font-size: .76rem;
	color: var(--muted);
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-dark); }


/* -------------------------------------------------------------
   PAGE DE TEXTE
   ------------------------------------------------------------- */

.page-texte {
	margin-top: var(--header-h);
	padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 96px);
	background: var(--cream);
}

.page-texte h1 { margin-bottom: 18px; }

.page-texte h2 {
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	text-transform: uppercase;
	letter-spacing: .04em;
	margin: 40px 0 14px;
}

.page-texte p {
	max-width: 68ch;
	margin-bottom: 14px;
	color: var(--ink-2);
}

.page-texte a:not(.btn) { color: var(--gold); border-bottom: 1px solid currentColor; }
.page-texte a:not(.btn):hover { color: var(--gold-dark); }

.a-completer {
	font-style: normal;
	padding: 1px 8px;
	background: var(--cream-deep);
	border: 1px dashed var(--gold);
	border-radius: var(--radius);
	font-size: .82rem;
	color: var(--gold-dark);
}

.table-scroll { overflow-x: auto; margin: 18px 0 24px; }

.table-info {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
	font-size: .86rem;
}

.table-info th,
.table-info td {
	padding: 11px 14px;
	text-align: left;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}

.table-info thead th {
	font-family: var(--font-sans);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom-color: var(--gold-light);
}

.table-info td { color: var(--ink-2); }

.page-texte__retour { margin-top: 40px; }


/* -------------------------------------------------------------
   COOKIES
   ------------------------------------------------------------- */

.cookies {
	position: fixed;
	left: clamp(12px, 2vw, 24px);
	bottom: clamp(12px, 2vw, 24px);
	z-index: 200;
	width: min(420px, calc(100vw - 24px));
	padding: 22px 24px 20px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 22px 44px -26px rgba(20, 17, 13, .75);
	animation: fadeUp .3s var(--ease);
}

.cookies[hidden] { display: none; }

.cookies__title {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 8px;
}

.cookies__text {
	font-size: .86rem;
	line-height: 1.6;
	color: var(--ink-2);
	margin-bottom: 18px;
}

.cookies__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.cookies__actions .btn { flex: 1 1 auto; }


/* -------------------------------------------------------------
   RETOUR EN HAUT
   ------------------------------------------------------------- */

#returnOnTop {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 90;
	width: 44px; height: 44px;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--gold);
	border-radius: 50%;
	color: #FFF;
	box-shadow: 0 10px 26px -14px rgba(20, 17, 13, .8);
	transition: background-color .2s var(--ease);
}

#returnOnTop::after {
	content: '';
	width: 9px; height: 9px;
	margin-top: 3px;
	border-left: 2px solid #FFF;
	border-top: 2px solid #FFF;
	transform: rotate(45deg);
}

#returnOnTop:hover { background: var(--gold-dark); }


/* -------------------------------------------------------------
   PAGE 404
   ------------------------------------------------------------- */

#page404 {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: var(--header-h);
	padding: 60px 0;
}

#page404 h1 {
	font-size: clamp(2.4rem, 6vw, 4rem);
	margin-bottom: 12px;
}

#page404 h1 strong { color: var(--gold); }

#page404 h2 {
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 400;
	color: var(--muted);
	margin-bottom: 28px;
}


/* -------------------------------------------------------------
   MODALES
   ------------------------------------------------------------- */

.swal2-popup { border-radius: var(--radius) !important; }
.swal2-title  { font-family: var(--font-display) !important; }
.swal2-styled.swal2-confirm { background-color: var(--gold) !important; }


/* =============================================================
   RESPONSIVE
   ============================================================= */

@media screen and (max-width: 1180px) {

	.press-grid { grid-template-columns: repeat(2, 1fr); }

	.footer-grid { grid-template-columns: 1fr 1fr; }

	.date-card  { flex-basis: calc((100% - 2 * 18px) / 3); }
	.insta-card { flex-basis: calc((100% - 2 * 12px) / 3); }
}


@media screen and (max-width: 1024px) {

	.hero {
		grid-template-columns: 1fr;
		min-height: 0;
		padding-right: 0;
	}

	.hero__text {
		max-width: none;
		padding: clamp(36px, 6vw, 56px) clamp(20px, 4vw, 44px) clamp(32px, 5vw, 48px);
	}

	.hero__media {
		min-height: 0;
		height: clamp(320px, 62vw, 520px);
		order: 2;
		-webkit-mask-image: none;
		        mask-image: none;
	}

	.site-nav {
		position: fixed;
		top: var(--header-h);
		left: 0; right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin: 0;
		padding: 6px 0 18px;
		background: var(--cream);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 18px 30px -26px rgba(20, 17, 13, .8);
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.site-nav__link {
		padding: 14px clamp(20px, 4vw, 44px);
		border-bottom: 1px solid var(--line);
		font-size: .78rem;
	}

	.site-nav__link::after { display: none; }

	.burger { display: flex; }

	.social {
		grid-template-columns: 1fr;
	}

	.social__intro { max-width: 46em; }
}


@media screen and (max-width: 860px) {

	:root { --header-h: 68px; }

	.show {
		grid-template-columns: 1fr;
	}

	.show__poster { max-width: 340px; }

	.show__body .btn { margin-left: 0; }
	.show__body { order: 1; }

	.gallery { grid-template-columns: repeat(2, 1fr); }

	.date-card  { flex-basis: calc((100% - 18px) / 2); }
	.insta-card { flex-basis: calc((100% - 12px) / 2); }

	.carousel__nav--prev { left: -10px; }
	.carousel__nav--next { right: -10px; }

	.contact-grid { grid-template-columns: 1fr; }

	.newsletter { flex-direction: column; align-items: flex-start; text-align: left; }
	/* base flex prévue pour la largeur : en colonne elle vaudrait une hauteur */
	.newsletter__body,
	.newsletter__form { flex: 0 0 auto; }
	.newsletter__form { width: 100%; }

	.footer-grid { grid-template-columns: 1fr; gap: 30px; }
}


@media screen and (max-width: 560px) {

	body { font-size: .95rem; }

	.wordmark { font-size: 1.15rem; }

	.section { padding: 48px 0; }

	.section__head { margin-bottom: 22px; }

	.hero .eyebrow,
.hero .hero__kicker { color: #33240D; }

.hero__baseline { color: #2A1E0B; }

.hero__title { color: #16100A; }

.hero .btn--gold {
	background: #1C1508;
	border-color: #1C1508;
	color: #F7F1E4;
}

.hero .btn--gold:hover { background: #000; border-color: #000; }

.hero .btn--outline {
	border-color: rgba(28, 21, 8, .55);
	color: #1C1508;
}

.hero .btn--outline:hover { background: #1C1508; border-color: #1C1508; color: #F7F1E4; }

.hero .social-row__link {
	border-color: rgba(28, 21, 8, .4);
	color: #1C1508;
}

.hero .social-row__link:hover { background: #1C1508; border-color: #1C1508; color: #F7F1E4; }

.hero__title { font-size: clamp(2.8rem, 15vw, 4rem); }


	.date-card  { flex-basis: 84%; }
	.insta-card { flex-basis: calc((100% - 12px) / 2); }

	.press-grid { grid-template-columns: 1fr; }

	.carousel__nav { display: none; }

	.dates-table th,
	.dates-table td { padding: 10px 6px; font-size: .8rem; }

	.dates-table__dep { display: none; }
	.dates-table__cta { width: auto; }

	.gallery { grid-template-columns: repeat(2, 1fr); }

	.insta-card { flex: 0 0 46vw; }

	.newsletter__form { flex-direction: column; }
	.newsletter__form input { flex: 0 0 auto; }
	.newsletter__form .btn { width: 100%; }

	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}


/* Réduction des animations */

@media screen and (max-width: 480px) {

	.hero__cta { flex-direction: column; align-items: stretch; }
	.hero__cta .btn { width: 100%; }
}


@media (prefers-reduced-motion: reduce) {

	html { scroll-behavior: auto; }

	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}
