@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

:root {
	--ink: #1C1812;
	--cream: #F8F2E8;
	--sand: #EDE3D0;
	--terra: #B85C38;
	--gold: #C9982A;
	--sage: #6B8C6A;
	--muted: #8A7B68;
	--white: #FDFAF5;
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--white);
	color: var(--ink);
}

aside h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.8rem, 2vw, 4rem);
	font-weight: 700;
	line-height: 0.8em;
	margin-top: 5px;
}

p {
	font-size: 1.05rem;
	line-height: 1.92;
	color: #3A3228;
	font-weight: 300;
}

ol,
ul {
	margin-left: 20px;
	margin-bottom: 20px;
}

ol li,
ul li {

	font-size: 1.05rem;
	line-height: 1.92;
	color: #3A3228;
	font-weight: 300;

}

/* ══ GALERIE ══ */

.slot {
	position: relative;
}


.slot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.double {
	grid-template-columns: repeat(2, 1fr);
	display: grid;
	gap: 10px;
}

.triple-row {
	grid-template-columns: repeat(3, 1fr);
	display: grid;
	gap: 10px;
}

.bento4 {
	grid-template-columns: repeat(2, 1fr);
	display: grid;
	gap: 10px;
}

.bento5 {
	grid-template-columns: repeat(3, 1fr);
	display: grid;
	gap: 10px;
}

.masonry {
	column-count: 2;
	column-gap: 10px;
	display: grid;
	gap: 10px;
}

.masonry .slot {
	break-inside: avoid;
	margin-bottom: 10px;
}

.slot {
	position: relative;
}

.pot {
	width: 100%;
	padding-top: 70%;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}


/* ══ NAVBAR ══ */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 0 3rem;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(253, 250, 245, 0.88);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(184, 92, 56, .12);
	transition: background .3s;
}

.nav-brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: .03em;
	color: var(--ink);
	text-decoration: none;
	display: flex;
	gap: 5px;
	align-items: center;
}

.nav-brand img {
	width: 55px;
	height: auto;
}

.nav-brand span {
	color: var(--terra);
	font-style: italic;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
	text-decoration: none;
	font-weight: 500;
	transition: color .2s;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--terra);
	transform: scaleX(0);
	transition: transform .25s;
	transform-origin: left;
}

.nav-links a:hover {
	color: var(--terra);
}

.nav-links a:hover::after {
	transform: scaleX(1);
}

/* ══ HERO ══ */
.hero {
	position: relative;
	height: 85vh;
	min-height: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

section.hero:after,
section.hero2:after {
	content: "";
	background: #00000085;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	animation: heroZoom 20s ease-in-out infinite alternate;
	background-position: center;
}


@keyframes heroZoom {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.06);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 2rem;
}

.hero-eyebrow {
	font-size: .7rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	margin-bottom: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	animation: fadeUp .9s ease both;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
	content: '';
	display: block;
	width: 2.5rem;
	height: 1px;
	background: rgba(255, 255, 255, .35);
}

.hero-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.8rem, 6vw, 6rem);
	font-weight: 700;
	line-height: 0.8em;
	color: #fff;
	margin-bottom: 1.4rem;
	animation: fadeUp 1s .15s ease both;
}

.hero-title em {
	color: var(--gold);
	font-style: italic;
	display: block;
}

.hero-sub {
	font-size: 1rem;
	color: rgba(255, 255, 255, .7);
	margin: 0 auto 2.5rem;
	font-weight: 300;
	line-height: 1.7;
	animation: fadeUp 1s .3s ease both;
}


.hero-scroll {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	color: rgba(255, 255, 255, .5);
	font-size: .65rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	animation: fadeIn 1.5s 1s ease both;
	text-decoration: none;
	z-index: 1;
}


.scroll-arrow {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, .3);
	position: relative;
	overflow: hidden;
}

.scroll-arrow::after {
	content: '';
	position: absolute;
	top: -100%;
	width: 100%;
	height: 100%;
	background: white;
	animation: scrollLine 1.8s 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
	to {
		top: 200%;
	}
}


.hero-stats {
	position: absolute;
	bottom: 2.5rem;
	right: 3rem;
	display: flex;
	gap: 2.5rem;
	animation: fadeIn 1s .8s ease both;
	z-index: 1;
}


.hstat {
	text-align: right;
}

.hstat-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.2rem;
	font-weight: 600;
	color: #fff;
	line-height: 1;
}

.hstat-label {
	font-size: .62rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
}


.sc-line {
	width: 1px;
	height: 34px;
	background: rgba(255, 255, 255, .2);
	position: relative;
	overflow: hidden
}

.sc-line::after {
	content: '';
	position: absolute;
	top: -100%;
	width: 100%;
	height: 100%;
	background: #fff;
	animation: scAnim 2s 1.2s ease-in-out infinite
}

@keyframes scAnim {
	to {
		top: 200%
	}
}


/* ── hero2 ── */

.hero2 {
	height: 50vh;
	min-height: 500px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hero2-bg {
	position: absolute;
	inset: 0;
	animation: hzoom 20s ease-in-out infinite alternate;
	background-size: cover;
	background-position: center;
}

@keyframes hzoom {
	from {
		transform: scale(1)
	}

	to {
		transform: scale(1.05) translateY(-8px)
	}
}

.hero2-body {
	position: relative;
	z-index: 2;
	padding: 0 4rem 4.5rem;
	max-width: 900px;
}

.hero2-breadcrumb {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-family: 'DM Mono', monospace;
	font-size: .82rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
	margin-bottom: 1.4rem;
	animation: fuUp .7s ease both;
}

.hero2-breadcrumb a {
	color: rgba(255, 255, 255, .45);
	text-decoration: none;
	transition: color .2s
}

.hero2-breadcrumb a:hover {
	color: var(--gold)
}

.hero2-breadcrumb svg {
	width: 10px;
	opacity: .4
}

.hero2-tag {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(184, 92, 56, .2);
	border: 1px solid rgba(184, 92, 56, .35);
	backdrop-filter: blur(8px);
	color: rgba(255, 255, 255, .9);
	font-size: .65rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	padding: .3rem .9rem;
	border-radius: 999px;
	margin-bottom: 1.2rem;
	animation: fuUp .8s .05s ease both;
}

.hero2-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(3rem, 6.5vw, 6.5rem);
	font-weight: 700;
	line-height: .95;
	color: #fff;
	margin-bottom: 1.2rem;
	animation: fuUp .9s .1s ease both;
}

.hero2-title em {
	display: block;
	color: var(--gold);
	font-style: italic;
	font-weight: 300;
	font-size: .52em
}

.hero2-intro {
	font-size: 1rem;
	color: rgba(255, 255, 255, .65);
	line-height: 1.75;
	max-width: 48ch;
	font-weight: 300;
	animation: fuUp .9s .18s ease both;
	margin-bottom: 2rem;
}

.hero2-meta {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	animation: fuUp .9s .25s ease both;
}

.hmi {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .8rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5)
}

.hmi svg {
	width: 12px;
	flex-shrink: 0
}

.hms {
	width: 1px;
	height: .9rem;
	background: rgba(255, 255, 255, .18)
}

.hero2-scroll {
	position: absolute;
	bottom: 1.8rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .4rem;
	color: rgba(255, 255, 255, .3);
	font-size: .56rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	text-decoration: none;
	animation: fIn 1.5s 1s ease both;
}


/* ══ BOUTON CARTE HERO ══ */
.btn-map {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .35);
	padding: .75rem 1.6rem;
	border-radius: 999px;
	font-size: .75rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	backdrop-filter: blur(8px);
	transition: all .25s;
	animation: fadeUp 1s .45s ease both;
}

.btn-map:hover {
	background: var(--terra);
	border-color: var(--terra);
	transform: translateY(-2px);
}

.btn-map svg {
	width: 16px;
	flex-shrink: 0;
}

/* ══ MODAL CARTE ══ */
.map-modal {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}

.map-modal.open {
	opacity: 1;
	pointer-events: all;
}

.map-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 14, 10, .82);
	backdrop-filter: blur(6px);
}

.map-modal-box {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	background: #111D14;
	border-radius: 1.5rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .08);
	box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
	transform: translateY(20px) scale(.97);
	transition: transform .35s cubic-bezier(.25, .8, .25, 1);
}

.map-modal.open .map-modal-box {
	transform: none;
}

.map-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.map-modal-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
}

.map-modal-title span {
	color: var(--gold);
	font-style: italic;
}

.map-modal-close {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	border: none;
	color: rgba(255, 255, 255, .6);
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
}

.map-modal-close:hover {
	background: var(--terra);
	color: #fff;
}

#modalMap {
	width: 100%;
	height: 560px;
}

.map-leg {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: .8rem 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .06);
}

.leg-item {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.leg-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.leg-txt {
	font-size: .62rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .35);
}

/* ══ CONTINENTS ══ */


.continents-section {
	padding: 5rem 3rem;
	background: url(/wp-content/themes/apprentis-voyageurs/img/carte.webp);
	position: relative;
	background-size: cover;
	background-attachment: fixed;
}


.continents-section>* {
	position: relative;
	z-index: 1;
}

.continents-section::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	width: 100%;
	background: radial-gradient(circle, rgb(210 181 142 / 80%) 46%, rgb(243 216 199 / 51%) 100%);
	height: 100%;
}

.continent-block {
	margin-bottom: 5rem;
}

.continent-block:last-child {
	margin-bottom: 0;
}

.continent-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid rgb(119 95 59 / 39%);
}

.continent-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	flex-shrink: 0;
}

.continent-header h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--ink);
}

.continent-count {
	margin-left: auto;
	font-size: .65rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #000000;
	padding: .3rem .8rem;
	border: 1px solid rgb(0 0 0 / 44%);
	border-radius: 999px;
	background: #fff;
}

.wp-video {
	max-width: 100%;
	height: auto;
	width: 100% !important;
	display: block;
}

.wp-video-shortcode {
	width: 100% !important;
	object-fit: cover;
	min-height: 400px;
}


/* Vignettes grid */

.voyages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.2rem;
}

.voyage-card {
	border-radius: 1rem;
	overflow: hidden;
	background: var(--sand);
	text-decoration: none;
	color: inherit;
	display: block;
	position: relative;
	transition: transform .35s cubic-bezier(.25, .8, .25, 1), box-shadow .35s;
	cursor: pointer;
}

.voyage-card:hover {
	transform: translateY(-7px) scale(1.01);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
}

.voyage-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
}

.voyage-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #00000012 40%, rgb(28 24 18 / 91%) 100%);
	z-index: 1;
}

.voyage-overlay-name {
	position: absolute;
	bottom: .7rem;
	left: .8rem;
	z-index: 2;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
	transform: translateY(4px);
	transition: transform .3s;
}

.voyage-card:hover .voyage-overlay-name {
	transform: translateY(0);
}

.voyage-meta {
	padding: .7rem .9rem .9rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.voyage-date {
	font-size: .68rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
}

.voyage-arrow {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8rem;
	opacity: 0;
	transform: scale(.7);
	transition: all .25s;
	line-height: 1em;
}

.voyage-card:hover .voyage-arrow {
	opacity: 1;
	transform: scale(1);
}

/* Featured voyage (first in continent) */
.voyage-card.featured {
	grid-row: span 2;
}

.voyage-card.featured .voyage-img {
	aspect-ratio: unset;
	min-height: 300px;
	height: 100%;
	flex-direction: column;
}

.voyage-card.featured .voyage-overlay-name {
	font-size: 1.6rem;
}


.fl-rich-text :is(h2, h3, h4) {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--ink);
	margin-bottom: 1.1rem;
}

.fl-rich-text p:first-child::first-letter {
	font-family: 'Cormorant Garamond', serif;
	font-size: 4.8rem;
	font-weight: 700;
	color: var(--terra);
	float: left;
	line-height: .78;
	margin: .15rem .2rem 0 0;
}


.fl-rich-text p {
	font-size: 1.05rem;
	line-height: 1.92;
	color: #3A3228;
	font-weight: 300;
	margin-bottom: 1.5rem;
}


blockquote {
	position: relative;
	margin: 2.2rem 0;
	padding: 1.2rem 1.8rem 1.2rem 2.2rem;
	background: var(--sand);
	border-radius: 0 .9rem .9rem 0;
	border-left: 4px solid var(--terra);
}

blockquote::before {
	content: '"';
	position: absolute;
	top: -.8rem;
	left: 1.2rem;
	font-family: 'Cormorant Garamond', serif;
	font-size: 4.5rem;
	color: var(--terra);
	opacity: .18;
	line-height: 1;
}

blockquote p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem !important;
	font-style: italic;
	font-weight: 400 !important;
	color: var(--ink);
	line-height: 1.6 !important;
	margin: 0 !important;
}

blockquote p:first-child::first-letter {
	float: none !important;
	margin: 0 !important;
	font-size: 1em !important;
	font-weight: normal !important;
	color: var(--ink) !important;
}


/* ASIDE  */

.sb {
	position: sticky;
	top: 88px;
}

.sb-head {
	font-family: 'DM Mono', monospace;
	font-size: 0.8em;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--muted);
	padding-bottom: .8rem;
	margin-bottom: .8rem;
	border-bottom: 1px solid rgba(28, 24, 18, .08);
}

.sb-a.on {
	color: var(--terra);
	border-left-color: var(--terra);
	font-weight: 400;
}

a.sb-a.sub {
	padding-left: 25px;
}

.sb-a {
	display: flex;
	align-items: center;
	gap: .8rem;
	padding: .5rem 0 .5rem .85rem;
	margin-left: -.85rem;
	text-decoration: none;
	font-size: .9rem;
	color: var(--muted);
	border-left: 2px solid transparent;
	transition: all .2s;
}

.sb-a.on .sb-n {
	color: var(--terra);
	opacity: .5;
}

.sb-n {
	font-family: 'DM Mono', monospace;
	font-size: 0.9em;
	color: rgba(28, 24, 18, .2);
	margin-left: auto;
}

a.sb-a.sub.on {
	color: #000;
	border-left-color: #000;
}

.sb-a.sub.on span.sb-n {
	color: #000;
}

.sb-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	width: 100%;
	padding: .7rem;
	border-radius: .8rem;
	background: var(--ink);
	color: var(--white);
	font-size: .7rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .2s;
	margin-top: 1.2rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
}

.sb-btn:hover {
	background: var(--terra);
	transform: translateY(-2px);
}

.sb-btn svg {
	width: 13px;
}


/* NAV CARNET  */


.rv.in {
	opacity: 1;
	transform: none;
}

.rv {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .65s ease, transform .65s ease;
}

.vnav-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 0rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(28, 24, 18, .07);
}

.vnav {
	padding: 1.4rem 1.6rem;
	border-radius: 1.1rem;
	border: 1px solid rgba(28, 24, 18, .1);
	text-decoration: none;
	color: inherit;
	transition: all .28s;
	display: block;
}

.vnav:hover {
	border-color: var(--terra);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(184, 92, 56, .1);
}

.vn-lbl {
	font-family: 'DM Mono', monospace;
	font-size: .58rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: .4rem;
	margin-bottom: .6rem;
	transition: color .2s;
}

.vn-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--ink);
}

.vn-date {
	font-size: .7rem;
	color: var(--muted);
	margin-top: .2rem;
}


/* ══ AMIS SECTION ══ */
.amis-section {
	background: var(--sand);
	padding: 4rem 3rem;
}

.amis-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.5rem;
	justify-content: center;
}

.ami-chip {
	padding: .6rem 1.2rem;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid rgba(28, 24, 18, .1);
	font-size: .78rem;
	color: var(--muted);
	text-decoration: none;
	transition: all .2s;
}

.ami-chip:hover {
	background: var(--terra);
	color: #fff;
	border-color: var(--terra);
	transform: translateY(-2px);
}

/* ══ ABOUT BANNER ══ */
.about-banner {
	background: var(--ink);
	color: #fff;
	padding: 4rem 3rem;
	text-align: center;
}

.about-banner .section-label {
	color: var(--gold);
}

.about-banner h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.6rem, 3vw, 2.5rem);
	font-weight: 300;
	line-height: 1.5;
	color: rgba(255, 255, 255, .9);
	max-width: 60ch;
	margin: 1rem auto 0;
}

.about-banner h2 em {
	color: var(--gold);
	font-style: italic;
	font-weight: 600;
}


/* ══ CARNETS  ══ */


.section#carnets {
	padding: 5rem 3rem 6rem;
	max-width: 1280px;
	margin: 0 auto;
}


/* ── SECTION VIGNETTES ── */
.section {
	padding: 5rem 3rem 6rem;
	max-width: 1280px;
	margin: 0 auto
}

.section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 3.5rem;
}

.section-left {}

.s-eye {
	font-family: 'DM Mono', monospace;
	font-size: .9rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--terra);
	display: block;
	margin-bottom: .6rem;
}

.s-ttl {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 600;
	line-height: 1.1;
	color: var(--ink);
}

.s-ttl em {
	color: var(--muted);
	font-style: italic
}

.s-count {
	font-family: 'DM Mono', monospace;
	font-size: .65rem;
	letter-spacing: .1em;
	color: var(--muted);
	padding: .35rem .9rem;
	border: 1px solid rgba(28, 24, 18, .12);
	border-radius: 999px;
	white-space: nowrap;
	margin-bottom: .3rem;
}

#carnets :is(h2, h3, h4, h5) {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 600;
	line-height: 1.1;
	color: var(--ink);
}

#carnets :is(h2, h3, h4, h5) em {
	color: var(--muted);
	font-style: italic;
}


/* 1. passer le container en flex */
.fl-col-group:has(aside.sb) {
	display: flex;
	align-items: stretch;
}

/* 2. virer les floats */
.fl-col-group:has(aside.sb) .fl-col {
	float: none !important;
}

/* 3. IMPORTANT : colonne gauche = même hauteur */
.fl-col-group:has(aside.sb) .fl-col-small {
	display: flex;
}

/* 4. contenu interne prend toute la hauteur */
.fl-col-group:has(aside.sb) .fl-col-small .fl-col-content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* 5. sticky */
aside.sb {
	position: sticky;
	top: 120px;
}

.fl-col-group:has(aside.sb) .fl-col-small .fl-col-content .fl-html {
	height: 100%;
}

.fl-col-group:has(aside.sb) .fl-col-small .fl-module.fl-module-html {
	height: 100%;
}

.fl-col-group:has(aside.sb) .fl-col-small .fl-module.fl-module-html .fl-module-content.fl-node-content {
	height: 100%;
}


/* ── VIDEO + ── */

.video-responsive {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* ratio 16:9 */
	height: 0;
	overflow: hidden;
}

.video-responsive iframe,
.video-responsive embed,
.video-responsive object {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


.wp-caption-text {
	text-align: center;
	font-style: italic;
	color: #999 !important;
}

.wp-caption {
	width: 100% !important;
}

.fl-rich-text img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
	border-radius: 10px;
	max-height: 530px;
}

.gallery {
	display: grid;
	gap: 10px !important;
	overflow: hidden;
	max-height: 220px;
}

.gallery.is-masonry {
	display: block;
}

dl.gallery-item * {
	height: 100% !important;
	object-fit: cover;
	width: 100% !important;
}

.gallery-item a {
	cursor: zoom-in;
}

.gallery img {
	border: none !important;
}

.gallery-item img {
	width: 100%;
	display: block;
}

dl.gallery-item {
    width: 100% !important;
    float: none;
    margin-top: 0 !important;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

dl.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    height: 19px !important;
    background: #000;
    font-size: 0.8em;
    color: #fff !important;
}

.gallery[class*="gallery--"] {
	max-height: none;
}

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

.gallery--3 .gallery-item:first-child {
	grid-row: span 2;
}

.gallery br {
	display: none !important;
}

.gallery[class*="gallery--"] {
	grid-template-columns: repeat(3, 1fr);
}


.gallery--3 dl.gallery-item {
	max-height: 200px !important;
	grid-row: span 2;
}

.gallery--3 {
	grid-template-columns: 2.5fr 1fr 2.5fr !important;
	gap: 5px;
}

.gallery--3 .gallery-item {
	height: 100%;
}

.gallery--3 .gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery--2 {
	display: grid;
	grid-template-columns: 35fr 65fr !important;
	grid-template-rows: 320px;
	gap: 3px;
	width: 100%;
}

.gallery--2.al-2-v2 {
	display: grid;
	grid-template-columns: 65fr 35fr !important;
	grid-template-rows: 320px;
	gap: 3px;
	width: 100%;
}

.gallery--2.al-2-v3 {
	display: grid;
	grid-template-columns: 1fr 1fr !important;
	grid-template-rows: 320px;
	gap: 3px;
	width: 100%;
}

.gallery--4 {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr !important;
	grid-template-rows: auto auto;
	gap: 5px;
}

.gallery--4 .gallery-item:nth-child(1) {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.gallery--4 .gallery-item:nth-child(2) {
	grid-column: 2 / span 2;
	grid-row: 1;
}

.gallery--4 .gallery-item:nth-child(3) {
	grid-column: 2;
	grid-row: 2;
}

.gallery--4 .gallery-item:nth-child(4) {
	grid-column: 3;
	grid-row: 2;
}

.gallery--4.al-4-v2 {
	display: grid;
	grid-template-columns: repeat(5, 1fr) !important;
	grid-template-rows: 280px 280px;
	gap: 3px;
	width: 100%;
	grid-auto-flow: column dense;
}

.gallery--4.al-4-v2 dl:nth-child(1) {
	grid-column: span 3;
	grid-row: auto;
}

.gallery--4.al-4-v2 dl:nth-child(2) {
	grid-column: span 2;
}

.gallery--4.al-4-v2 dl:nth-child(3) {
	grid-column: span 2;
}

.gallery--4.al-4-v2 dl:nth-child(4) {
	grid-column: span 3;
}

.gallery--5 {
	display: grid;
	grid-template-columns: repeat(6, 1fr) !important;
	grid-template-rows: 230px 250px;
	gap: 3px;
	width: 100%;
}

.gallery--5 dl:nth-child(1),
.gallery--5 dl:nth-child(3) {
	grid-column: span 1;
}

.gallery--5 dl:nth-child(2) {
	grid-column: span 4;
}

.gallery--5 dl:nth-child(4),
.gallery--5 dl:nth-child(5) {
	grid-column: span 3;
}

.gallery--6 {
	display: grid;
	grid-template-columns: repeat(7, 1fr) !important;
	grid-template-rows: 230px 250px;
	gap: 3px;
	width: 100%;
}

.gallery--6 dl {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.gallery--6 dl:nth-child(1),
.gallery--6 dl:nth-child(2) {
	grid-column: span 3;
}

.gallery--6 dl:nth-child(3) {
	grid-column: span 1;
}

.gallery--6 dl:nth-child(4),
.gallery--6 dl:nth-child(6) {
	grid-column: span 1;
}

.gallery--6 dl:nth-child(5) {
	grid-column: span 5;
}

.gallery--7 {
	display: grid;
	grid-template-columns: repeat(10, 1fr) !important;
	grid-template-rows: 220px 280px 280px;
	gap: 3px;
	width: 100%;
}

.gallery--7 dl:nth-child(1) {
	grid-column: span 2;
}

.gallery--7 dl:nth-child(2) {
	grid-column: span 4;
}

.gallery--7 dl:nth-child(3) {
	grid-column: span 4;
}

.gallery--7 dl:nth-child(4) {
	grid-column: span 4;
}

.gallery--7 dl:nth-child(5) {
	grid-column: span 6;
}

.gallery--7 dl:nth-child(6) {
	grid-column: span 6;
}

.gallery--7 dl:nth-child(7) {
	grid-column: span 4;
}

.gallery--8 {
	display: grid;
	grid-template-columns: repeat(6, 1fr) !important;
	grid-template-rows: 280px 240px 240px;
	gap: 3px;
	width: 100%;
}

.gallery--8 dl:nth-child(1) {
	grid-column: span 4;
}

.gallery--8 dl:nth-child(2) {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery--8 dl:nth-child(3) {
	grid-column: span 2;
}

.gallery--8 dl:nth-child(4) {
	grid-column: span 2;
}

.gallery--8 dl:nth-child(5) {
	grid-column: span 1;
}

.gallery--8 dl:nth-child(6) {
	grid-column: span 1;
}

.gallery--8 dl:nth-child(7) {
	grid-column: span 2;
}

.gallery--8 dl:nth-child(8) {
	grid-column: span 2;
}

.gallery--8..al-8-v1v2 {
	display: grid;
	grid-template-columns: repeat(5, 1fr) !important;
	grid-template-rows: 160px 160px 160px 200px;
	gap: 3px;
	width: 100%;
}

.gallery--8..al-8-v1v2 dl:nth-child(1) {
	grid-column: span 3;
	grid-row: span 3;
}

.gallery--8..al-8-v1v2 dl:nth-child(2),
.gallery--8..al-8-v1v2 dl:nth-child(3),
.gallery--8..al-8-v1v2 dl:nth-child(4) {
	grid-column: span 2;
}

.gallery--8..al-8-v1v2 dl:nth-child(5),
.gallery--8..al-8-v1v2 dl:nth-child(6),
.gallery--8..al-8-v1v2 dl:nth-child(7),
.gallery--8..al-8-v1v2 dl:nth-child(8) {
	grid-column: span 1;
}

.gallery--9 {
	display: grid;
	grid-template-columns: repeat(20, 1fr) !important;
	grid-template-rows: 260px 260px 260px;
	gap: 3px;
	width: 100%;
}

.gallery--9 dl:nth-child(1) {
	grid-column: span 5;
}

.gallery--9 dl:nth-child(2) {
	grid-column: span 10;
}

.gallery--9 dl:nth-child(3) {
	grid-column: span 5;
}

.gallery--9 dl:nth-child(4) {
	grid-column: span 8;
}

.gallery--9 dl:nth-child(5) {
	grid-column: span 4;
}

.gallery--9 dl:nth-child(6) {
	grid-column: span 8;
}

.gallery--9 dl:nth-child(7) {
	grid-column: span 7;
}

.gallery--9 dl:nth-child(8) {
	grid-column: span 7;
}

.gallery--9 dl:nth-child(9) {
	grid-column: span 6;
}

.gallery--10 {
	display: grid;
	grid-template-columns: repeat(4, 1fr) !important;
	grid-template-rows: 240px 220px 220px;
	gap: 3px;
	width: 100%;
}

.gallery--10 dl:nth-child(1),
.gallery--10 dl:nth-child(2) {
	grid-column: span 2;
}

.gallery--10 dl:nth-child(n+3) {
	grid-column: span 1;
}

.gallery--10.al-10-v2 {
	grid-template-columns: repeat(12, 1fr) !important;
	grid-template-rows: 240px 220px 200px;
}

.gallery--10.al-10-v2 dl:nth-child(-n+3) {
	grid-column: span 4;
}

.gallery--10.al-10-v2 dl:nth-child(n+4):nth-child(-n+6) {
	grid-column: span 4;
}

.gallery--10.al-10-v2 dl:nth-child(n+7) {
	grid-column: span 3;
}

.gallery--11 {
	display: grid;
	grid-template-columns: repeat(20, 1fr) !important;
	grid-template-rows: 260px 220px 200px;
	gap: 3px;
	width: 100%;
}

.gallery--11 dl:nth-child(-n+2) {
	grid-column: span 10;
}

.gallery--11 dl:nth-child(n+3):nth-child(-n+7) {
	grid-column: span 4;
}

.gallery--11 dl:nth-child(n+8) {
	grid-column: span 5;
}

.gallery--11.al-11-v2 {
	grid-template-columns: repeat(12, 1fr) !important;
	grid-template-rows: 220px 260px 220px;
}

.gallery--11.al-11-v2 dl:nth-child(-n+4) {
	grid-column: span 3;
}

.gallery--11.al-11-v2 dl:nth-child(n+5):nth-child(-n+7) {
	grid-column: span 4;
}

.gallery--11.al-11-v2 dl:nth-child(n+8) {
	grid-column: span 3;
}

.gallery--12 {
	display: grid;
	grid-template-columns: repeat(60, 1fr) !important;
	grid-template-rows: 260px 230px 200px;
	gap: 3px;
	width: 100%;
}

.gallery--12 dl:nth-child(-n+3) {
	grid-column: span 20;
}

.gallery--12 dl:nth-child(n+4):nth-child(-n+7) {
	grid-column: span 15;
}

.gallery--12 dl:nth-child(n+8) {
	grid-column: span 12;
}

.gallery--12.al-12-v2 {
	grid-template-rows: 220px 240px 260px;
}

.gallery--12.al-12-v2 dl:nth-child(-n+4) {
	grid-column: span 15;
}

.gallery--12.al-12-v2 dl:nth-child(n+5):nth-child(-n+9) {
	grid-column: span 12;
}

.gallery--12.al-12-v2 dl:nth-child(n+10) {
	grid-column: span 20;
}

.gallery--13 {
	display: grid;
	grid-template-columns: repeat(20, 1fr) !important;
	grid-template-rows: 240px 230px 210px;
	gap: 3px;
	width: 100%;
}

.gallery--13 dl:nth-child(-n+8) {
	grid-column: span 5;
}

.gallery--13 dl:nth-child(n+9) {
	grid-column: span 4;
}

.gallery--13.al-13-v2 {
	grid-template-rows: 210px 240px 230px;
}

.gallery--13.al-13-v2 dl:nth-child(-n+5) {
	grid-column: span 4;
}

.gallery--13.al-13-v2 dl:nth-child(n+6):nth-child(-n+9) {
	grid-column: span 5;
}

.gallery--13.al-13-v2 dl:nth-child(n+10) {
	grid-column: span 5;
}


.gallery--14 {
	display: grid;
	grid-template-columns: repeat(20, 1fr) !important;
	grid-template-rows: 240px 230px 210px;
	gap: 3px;
	width: 100%;
}

/* 7 + 7 */
.gallery--14 dl:nth-child(-n+7) {
	grid-column: span 4;
}

.gallery--14 dl:nth-child(n+8) {
	grid-column: span 4;
}

/* V2 */
.gallery--14.al-14-v2 {
	grid-template-rows: 210px 240px 230px;
}

.gallery--14.al-14-v2 dl:nth-child(-n+4) {
	grid-column: span 5;
}

.gallery--14.al-14-v2 dl:nth-child(n+5):nth-child(-n+9) {
	grid-column: span 4;
}

.gallery--14.al-14-v2 dl:nth-child(n+10) {
	grid-column: span 4;
}


.gallery--15 {
	display: grid;
	grid-template-columns: repeat(20, 1fr) !important;
	grid-template-rows: 250px 220px 200px;
	gap: 3px;
	width: 100%;
}

/* 5 + 5 + 5 */
.gallery--15 dl {
	grid-column: span 4;
}

/* V2 */
.gallery--15.al-15-v2 {
	grid-template-rows: 200px 250px 220px;
}

.gallery--15.al-15-v2 dl:nth-child(-n+3) {
	grid-column: span 5;
}

.gallery--15.al-15-v2 dl:nth-child(n+4):nth-child(-n+8) {
	grid-column: span 4;
}

.gallery--15.al-15-v2 dl:nth-child(n+9) {
	grid-column: span 4;
}

.gallery--16 {
	display: grid;
	grid-template-columns: repeat(20, 1fr) !important;
	grid-template-rows: 240px 240px 200px;
	gap: 3px;
	width: 100%;
}

/* 8 + 8 */
.gallery--16 dl:nth-child(-n+8) {
	grid-column: span 4;
}

.gallery--16 dl:nth-child(n+9) {
	grid-column: span 4;
}

/* V2 */
.gallery--16.al-16-v2 {
	grid-template-rows: 200px 240px 240px;
}

.gallery--16.al-16-v2 dl:nth-child(-n+4) {
	grid-column: span 5;
}

.gallery--16.al-16-v2 dl:nth-child(n+5):nth-child(-n+8) {
	grid-column: span 5;
}

.gallery--16.al-16-v2 dl:nth-child(n+9) {
	grid-column: span 4;
}


.gallery--17,
.gallery--18,
.gallery--19,
.gallery--20,
.gallery--21,
.gallery--22,
.gallery--23,
.gallery--24,
.gallery--25,
.gallery--26,
.gallery--27,
.gallery--28,
.gallery--29,
.gallery--30,
.gallery--31,
.gallery--32,
.gallery--33,
.gallery--34,
.gallery--35,
.gallery--36,
.gallery--37,
.gallery--38,
.gallery--39,
.gallery--40,
.gallery--41,
.gallery--42,
.gallery--43,
.gallery--44,
.gallery--45,
.gallery--46,
.gallery--47,
.gallery--48,
.gallery--49,
.gallery--50 {
	display: grid;
	grid-template-columns: repeat(20, 1fr) !important;
	grid-auto-rows: 180px;
	gap: 3px;
	width: 100%;
}

/* Pattern automatique */
.gallery--17 dl,
.gallery--18 dl,
.gallery--19 dl,
.gallery--20 dl,
.gallery--21 dl,
.gallery--22 dl,
.gallery--23 dl,
.gallery--24 dl,
.gallery--25 dl,
.gallery--26 dl,
.gallery--27 dl,
.gallery--28 dl,
.gallery--29 dl,
.gallery--30 dl,
.gallery--31 dl,
.gallery--32 dl,
.gallery--33 dl,
.gallery--34 dl,
.gallery--35 dl,
.gallery--36 dl,
.gallery--37 dl,
.gallery--38 dl,
.gallery--39 dl,
.gallery--40 dl,
.gallery--41 dl,
.gallery--42 dl,
.gallery--43 dl,
.gallery--44 dl,
.gallery--45 dl,
.gallery--46 dl,
.gallery--47 dl,
.gallery--48 dl,
.gallery--49 dl,
.gallery--50 dl {
	grid-column: span 4;
}

/* Variation sympa */
.gallery--17 dl:nth-child(5n),
.gallery--18 dl:nth-child(5n),
.gallery--19 dl:nth-child(5n),
.gallery--20 dl:nth-child(5n),
.gallery--21 dl:nth-child(5n),
.gallery--22 dl:nth-child(5n),
.gallery--23 dl:nth-child(5n),
.gallery--24 dl:nth-child(5n),
.gallery--25 dl:nth-child(5n),
.gallery--26 dl:nth-child(5n),
.gallery--27 dl:nth-child(5n),
.gallery--28 dl:nth-child(5n),
.gallery--29 dl:nth-child(5n),
.gallery--30 dl:nth-child(5n),
.gallery--31 dl:nth-child(5n),
.gallery--32 dl:nth-child(5n),
.gallery--33 dl:nth-child(5n),
.gallery--34 dl:nth-child(5n),
.gallery--35 dl:nth-child(5n),
.gallery--36 dl:nth-child(5n),
.gallery--37 dl:nth-child(5n),
.gallery--38 dl:nth-child(5n),
.gallery--39 dl:nth-child(5n),
.gallery--40 dl:nth-child(5n),
.gallery--41 dl:nth-child(5n),
.gallery--42 dl:nth-child(5n),
.gallery--43 dl:nth-child(5n),
.gallery--44 dl:nth-child(5n),
.gallery--45 dl:nth-child(5n),
.gallery--46 dl:nth-child(5n),
.gallery--47 dl:nth-child(5n),
.gallery--48 dl:nth-child(5n),
.gallery--49 dl:nth-child(5n),
.gallery--50 dl:nth-child(5n) {
	grid-column: span 8;
}


/* ── GRILLE VIGNETTES ── */
.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
}

/* Carte vignette */
.card {
	border-radius: 1.1rem;
	overflow: hidden;
	background: var(--sand);
	text-decoration: none;
	color: inherit;
	display: block;
	position: relative;
	transition: transform .35s cubic-bezier(.25, .8, .25, 1), box-shadow .35s;
	cursor: pointer;
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, .13)
}

/* Photo */
.card-img {
	position: relative;
	overflow: hidden;
}

.card-img .photo {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
	display: block;
	transition: transform .55s cubic-bezier(.25, .8, .25, 1), filter .4s;
	filter: saturate(.88);
}

/* placeholder gradient si pas de vraie photo */
.card-img .photo-placeholder {
	width: 100%;
	aspect-ratio: 3/2;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	transition: transform .55s cubic-bezier(.25, .8, .25, 1);
}

.card:hover .photo,
.card:hover .photo-placeholder {
	transform: scale(1.07);
	filter: saturate(1.05)
}

.card:hover .photo-placeholder {
	transform: scale(1.07)
}

/* Overlay gradient sur la photo */
.card-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(17, 16, 9, .65) 100%);
	transition: opacity .3s;
}

.card:hover .card-img::after {
	opacity: .8
}

/* Année badge */
.card-badge {
	position: absolute;
	top: .85rem;
	left: .85rem;
	z-index: 2;
	font-family: 'DM Mono', monospace;
	font-size: .6rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	background: rgba(17, 16, 9, .55);
	backdrop-filter: blur(6px);
	color: rgba(255, 255, 255, .85);
	padding: .25rem .65rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .12);
}


/* ── ANIMATIONS ── */
@keyframes fuUp {
	from {
		opacity: 0;
		transform: translateY(26px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes fIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.rv {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s ease, transform .6s ease
}

.rv.in {
	opacity: 1;
	transform: none
}

.rv[data-d="1"] {
	transition-delay: .07s
}

.rv[data-d="2"] {
	transition-delay: .14s
}

.rv[data-d="3"] {
	transition-delay: .21s
}

.rv[data-d="4"] {
	transition-delay: .28s
}

.rv[data-d="5"] {
	transition-delay: .35s
}

.rv[data-d="6"] {
	transition-delay: .42s
}


/* ── ENCART "BON VOYAGE" ── */
.bon-voyage {
	margin: 0rem 3rem 0;
	border-radius: 1.5rem;
	overflow: hidden;
	position: relative;
	background: var(--ink);
	padding: 4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}

.bon-voyage::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(184, 92, 56, .18) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 50%, rgba(201, 152, 42, .12) 0%, transparent 60%);
	pointer-events: none;
}

.bv-text {
	position: relative;
	z-index: 1
}

.bv-eye {
	font-family: 'DM Mono', monospace;
	font-size: .6rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--terra);
	display: block;
	margin-bottom: .8rem;
}

.bv-ttl {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	font-weight: 300;
	color: #fff;
	line-height: 1.3;
}

.bv-ttl em {
	color: var(--gold);
	font-style: italic;
	font-weight: 600
}

.bv-link {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	background: var(--terra);
	color: #fff;
	padding: .85rem 1.8rem;
	border-radius: 999px;
	font-size: .75rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	transition: all .25s;
	white-space: nowrap;
}

.bv-link:hover {
	background: var(--gold);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(201, 152, 42, .3)
}

.bv-link svg {
	width: 14px
}


/* ══ FOOTER ══ */

footer {
	padding: 2.5rem 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(28, 24, 18, .08);
	background: #f5f2ee;
}

.footer-brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--muted);
}

.footer-brand span {
	color: var(--terra);
	font-style: italic;
}

.footer-copy {
	font-size: .72rem;
	color: var(--muted);
}

/* ══ TOOLTIP ══ */
.tooltip {
	position: fixed;
	z-index: 500;
	pointer-events: none;
	background: var(--white);
	color: var(--ink);
	padding: .5rem 1rem;
	border-radius: .5rem;
	font-size: .85rem;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
	opacity: 0;
	transition: opacity .15s;
	white-space: nowrap;
}

.tooltip.show {
	opacity: 1;
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fade-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
}

.fade-up.in {
	opacity: 1;
	transform: none;
}

/* Stagger children */
.voyages-grid .voyage-card {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .5s ease, transform .5s ease, box-shadow .35s, scale .35s;
}

.voyages-grid.in .voyage-card {
	opacity: 1;
	transform: translateY(0);
}

.voyages-grid.in .voyage-card:nth-child(1) {
	transition-delay: 0s;
}

.voyages-grid.in .voyage-card:nth-child(2) {
	transition-delay: .07s;
}

.voyages-grid.in .voyage-card:nth-child(3) {
	transition-delay: .14s;
}

.voyages-grid.in .voyage-card:nth-child(4) {
	transition-delay: .21s;
}

.voyages-grid.in .voyage-card:nth-child(5) {
	transition-delay: .28s;
}

.voyages-grid.in .voyage-card:nth-child(6) {
	transition-delay: .35s;
}

.voyages-grid.in .voyage-card:nth-child(7) {
	transition-delay: .42s;
}

.voyages-grid.in .voyage-card:nth-child(8) {
	transition-delay: .49s;
}

@media (max-width: 768px) {
	.navbar {
		padding: 0 1.2rem;
	}

	.nav-links {
		display: none;
	}

	.hero-stats {
		display: none;
	}

	.map-section,
	.continents-section,
	.amis-section,
	.about-banner {
		padding: 3rem 1.2rem;
	}

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

	.voyage-card.featured {
		grid-row: span 1;
	}

	footer {
		flex-direction: column;
		gap: .8rem;
		text-align: center;
	}
}