/* =========================================================================
   PAIX 118 — feuille de style principale
   Mobile-first. Les couleurs sont surchargées par le Customizer.

   Sommaire
   1.  Variables
   2.  Reset et base
   3.  Utilitaires et grilles
   4.  Typographie
   5.  Boutons
   6.  En-tête et navigation
   7.  Hero
   8.  Sections communes
   9.  Cartes chambres
   10. Fiche chambre
   11. Page maison
   12. Formulaire
   13. Pied de page
   14. Responsive
   ====================================================================== */

/* -------------------------------------------------------------------------
   1. VARIABLES
   ---------------------------------------------------------------------- */
:root {
	--bg: #0c0d0e;
	--accent: #c8ff4d;

	--surface: #141618;
	--surface-2: #1b1e21;
	--line: rgba(255, 255, 255, 0.1);
	--line-strong: rgba(255, 255, 255, 0.2);

	--text: #f2f3f4;
	--muted: #99a0a6;
	--on-accent: #0c0d0e;

	--ok: #4ade80;
	--warn: #fbbf24;
	--off: #6b7280;

	--radius: 14px;
	--radius-lg: 22px;

	--gap: 1.25rem;
	--section-y: 4.5rem;
	--container: 1200px;

	--ease: cubic-bezier(0.2, 0.7, 0.3, 1);
	--font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* -------------------------------------------------------------------------
   2. RESET ET BASE
   ---------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

button {
	font: inherit;
	cursor: pointer;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	margin: 0 0 0.5em;
	line-height: 1.1;
	letter-spacing: -0.02em;
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 4px;
}

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--accent);
	color: var(--on-accent);
	padding: 0.75rem 1.25rem;
	font-weight: 600;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* -------------------------------------------------------------------------
   3. UTILITAIRES ET GRILLES
   ---------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.container--narrow {
	max-width: 720px;
}

.grid {
	display: grid;
	gap: var(--gap);
}

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

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

.img-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
	position: relative;
}

.img-placeholder::after {
	content: "Photo à venir";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--muted);
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.img-placeholder--hero {
	aspect-ratio: auto;
	height: 100%;
	min-height: 70vh;
}

.empty {
	color: var(--muted);
	padding: 3rem 0;
	text-align: center;
}

/* -------------------------------------------------------------------------
   4. TYPOGRAPHIE
   ---------------------------------------------------------------------- */
.eyebrow {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.75rem;
}

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

.section__title {
	font-size: clamp(1.9rem, 5vw, 3rem);
	font-weight: 800;
}

.h3,
.bloc__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: 2rem;
}

.prose {
	max-width: 68ch;
	color: #dcdfe2;
}

.prose--wide {
	max-width: 90ch;
}

.prose h2 {
	font-size: 1.6rem;
	margin-top: 2rem;
}

.prose h3 {
	font-size: 1.2rem;
	margin-top: 1.5rem;
}

.prose a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.prose img {
	border-radius: var(--radius);
	margin-block: 1.5rem;
}

.prose ul {
	list-style: disc;
	padding-left: 1.25rem;
	margin-bottom: 1.25rem;
}

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

/* --- Blocs Gutenberg dans .prose (galeries photos de la page « La maison ») --- */

.prose figure {
	margin: 2rem 0;
}

.prose figcaption,
.prose .wp-element-caption {
	margin-top: 0.6rem;
	font-size: 0.85rem;
	color: var(--muted);
	text-align: left;
}

/* Galerie native WordPress */
.prose .wp-block-gallery {
	gap: 0.75rem !important;
	margin-block: 2rem;
}

.prose .wp-block-gallery img,
.prose .wp-block-image img {
	border-radius: var(--radius);
	width: 100%;
}

.prose .wp-block-gallery .wp-block-image img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* Colonnes */
.prose .wp-block-columns {
	gap: 2rem;
	margin-block: 2.5rem;
}

/* Séparateur */
.prose .wp-block-separator {
	border: 0;
	border-top: 1px solid var(--line);
	margin-block: 3rem;
}

/* Citation / encadré */
.prose .wp-block-quote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	background: var(--surface-2);
	border-left: 3px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
}

.prose .wp-block-quote p:last-child {
	margin-bottom: 0;
}

/* Alignements larges : la galerie déborde de la colonne de texte */
.prose .alignwide {
	width: 100%;
	max-width: min(1100px, 92vw);
	margin-inline: auto;
}

.prose .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
	border-radius: 0;
}

.prose .alignfull img {
	border-radius: 0;
}

@media (min-width: 900px) {
	.prose .alignwide {
		margin-left: calc(50% - min(550px, 46vw));
		margin-right: auto;
	}
}

/* Liste avec coche */
.liste-check li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.6rem;
	color: #dcdfe2;
}

.liste-check li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.65rem;
	height: 0.35rem;
	border-left: 2px solid var(--accent);
	border-bottom: 2px solid var(--accent);
	transform: rotate(-45deg);
}

/* -------------------------------------------------------------------------
   5. BOUTONS
   ---------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.8rem 1.4rem;
	border: 1px solid transparent;
	border-radius: 100px;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-align: center;
	transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

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

.btn--accent {
	background: var(--accent);
	color: var(--on-accent);
}

.btn--accent:hover {
	filter: brightness(1.08);
}

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

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

.btn--lg {
	padding: 1rem 1.9rem;
	font-size: 1.02rem;
}

.btn--sm {
	padding: 0.55rem 1rem;
	font-size: 0.86rem;
}

.btn--block {
	display: flex;
	width: 100%;
	margin-top: 0.6rem;
}

/* Badges de statut */
.badge {
	display: inline-block;
	padding: 0.32rem 0.8rem;
	border-radius: 100px;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.badge--libre {
	background: rgba(74, 222, 128, 0.15);
	color: var(--ok);
	border: 1px solid rgba(74, 222, 128, 0.35);
}

.badge--bientot {
	background: rgba(251, 191, 36, 0.14);
	color: var(--warn);
	border: 1px solid rgba(251, 191, 36, 0.35);
}

.badge--occupee {
	background: rgba(255, 255, 255, 0.06);
	color: var(--muted);
	border: 1px solid var(--line);
}

/* -------------------------------------------------------------------------
   6. EN-TÊTE ET NAVIGATION
   ---------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(12, 13, 14, 0.82);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	transition: background 0.3s var(--ease);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 68px;
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.site-brand__name {
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: -0.02em;
}

.site-brand__sub {
	font-size: 0.72rem;
	color: var(--muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.custom-logo {
	max-height: 44px;
	width: auto;
}

.nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 10px;
	align-items: center;
}

.nav-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--text);
	transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
	transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
	transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
	position: fixed;
	inset: 68px 0 auto 0;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
	padding: 1.25rem;
	display: none;
	flex-direction: column;
	gap: 0.5rem;
}

.site-nav.is-open {
	display: flex;
}

.site-nav__list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.site-nav__list a {
	display: block;
	padding: 0.75rem 0;
	font-weight: 500;
	border-bottom: 1px solid var(--line);
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
	color: var(--accent);
}

.site-nav__cta {
	margin-top: 0.75rem;
}

/* -------------------------------------------------------------------------
   7. HERO
   ---------------------------------------------------------------------- */
.hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(88vh, 760px);
	padding-block: 5rem 3rem;
	overflow: hidden;
}

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

.hero__media img,
.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* La vidéo se superpose à la photo une fois chargée (la photo sert de poster). */
.hero__video {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.8s var(--ease);
	pointer-events: none;
}

.hero__video.is-playing {
	opacity: 1;
}

/* Si l'utilisateur demande moins d'animations, on garde la photo fixe. */
@media (prefers-reduced-motion: reduce) {
	.hero__video {
		display: none;
	}
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(12, 13, 14, 0.55) 0%, rgba(12, 13, 14, 0.2) 35%, rgba(12, 13, 14, 0.94) 100%);
}

.hero__inner {
	position: relative;
	z-index: 1;
}

.hero__title {
	font-size: clamp(2.4rem, 9vw, 4.6rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	max-width: 16ch;
	margin-bottom: 1rem;
}

.hero__text {
	max-width: 46ch;
	color: #d5d8db;
	font-size: 1.05rem;
	margin-bottom: 1.75rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.5rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	font-size: 0.9rem;
	color: var(--muted);
}

.hero__facts strong {
	color: var(--text);
	font-weight: 700;
}

/* -------------------------------------------------------------------------
   8. SECTIONS COMMUNES
   ---------------------------------------------------------------------- */
.section {
	padding-block: var(--section-y);
}

.section--tight {
	padding-block: 2.5rem;
}

/* Contenu libre de la page d'accueil (galeries, vidéo YouTube…) */
.section--libre {
	overflow-x: clip;
}

.section--libre .prose {
	margin-inline: auto;
}

.section--args,
.section--etapes,
.section--conditions {
	background: var(--surface);
	border-block: 1px solid var(--line);
}

.section__head {
	margin-bottom: 2.5rem;
}

.section__head--row {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.section__intro {
	color: var(--muted);
	max-width: 55ch;
}

.page-head {
	padding-block: 3.5rem 2rem;
	border-bottom: 1px solid var(--line);
}

.page-head--center {
	text-align: center;
	padding-block: 6rem;
}

.page-head__title {
	font-size: clamp(2rem, 7vw, 3.4rem);
	font-weight: 800;
}

.page-head__text {
	color: var(--muted);
	max-width: 55ch;
	margin-bottom: 0;
}

.page-head--center .page-head__text {
	margin-inline: auto;
}

.page-head--center .hero__actions {
	justify-content: center;
}

/* Arguments */
.args {
	display: grid;
	gap: 2rem;
}

.arg__num {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
	margin-bottom: 0.6rem;
}

.arg__title {
	font-size: 1.2rem;
	margin-bottom: 0.4rem;
}

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

/* Étapes */
.etapes {
	display: grid;
	gap: 1.5rem;
	counter-reset: etape;
}

.etape {
	position: relative;
	padding: 1.5rem;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.etape__num {
	display: grid;
	place-items: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 50%;
	background: var(--accent);
	color: var(--on-accent);
	font-weight: 800;
	font-size: 0.9rem;
	margin-bottom: 0.9rem;
}

.etape__title {
	font-size: 1.08rem;
	margin-bottom: 0.35rem;
}

.etape p {
	color: var(--muted);
	font-size: 0.94rem;
	margin: 0;
}

/* CTA */
.section--cta {
	text-align: center;
}

.cta-bloc {
	padding: 3rem 1.5rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.cta-bloc p {
	color: var(--muted);
}

.cta-bloc .hero__actions {
	justify-content: center;
}

/* -------------------------------------------------------------------------
   9. CARTES CHAMBRES
   ---------------------------------------------------------------------- */
.card {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card:hover {
	transform: translateY(-4px);
	border-color: var(--line-strong);
}

.card--occupee {
	opacity: 0.62;
}

.card__media {
	position: relative;
	display: block;
	overflow: hidden;
}

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

.card:hover .card__media img {
	transform: scale(1.04);
}

.card__media .badge {
	position: absolute;
	top: 0.9rem;
	left: 0.9rem;
	backdrop-filter: blur(8px);
}

.card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.4rem;
}

.card__title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.card__title a:hover {
	color: var(--accent);
}

.card__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.85rem;
}

.card__specs li {
	padding: 0.2rem 0.65rem;
	border: 1px solid var(--line);
	border-radius: 100px;
	font-size: 0.78rem;
	color: var(--muted);
}

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

.card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

.card__price {
	margin: 0;
	line-height: 1.25;
}

.card__price strong {
	display: block;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.card__price span {
	font-size: 0.76rem;
	color: var(--muted);
}

/* -------------------------------------------------------------------------
   10. FICHE CHAMBRE
   ---------------------------------------------------------------------- */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.82rem;
	color: var(--muted);
	margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
	color: var(--accent);
}

.chambre-head {
	padding-block: 2.5rem 2rem;
	border-bottom: 1px solid var(--line);
}

.chambre-head__inner {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.chambre-head__title {
	font-size: clamp(2rem, 7vw, 3.2rem);
	font-weight: 800;
	margin-top: 0.75rem;
}

.chambre-head__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	color: var(--muted);
}

.chambre-head__specs strong {
	color: var(--text);
}

.chambre-head__price {
	padding: 1.5rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.price {
	font-size: 2.1rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0;
	line-height: 1;
}

.price span {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--muted);
	margin-left: 0.35rem;
}

.price__note {
	font-size: 0.85rem;
	color: var(--muted);
	margin: 0.4rem 0 1rem;
}

/* Galerie */
.galerie {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 1fr;
}

.galerie__item {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--surface);
}

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

.galerie__item:hover .galerie__img {
	transform: scale(1.03);
}

/* Corps */
.chambre-body {
	display: grid;
	gap: 2.5rem;
}

.fiche {
	position: sticky;
	top: 90px;
	padding: 1.5rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.fiche__title {
	font-size: 1.05rem;
	margin-bottom: 1rem;
}

.fiche__list > div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.92rem;
}

.fiche__list dt {
	color: var(--muted);
}

.fiche__list dd {
	margin: 0;
	font-weight: 600;
	text-align: right;
}

/* -------------------------------------------------------------------------
   11. PAGE MAISON
   ---------------------------------------------------------------------- */
.distances {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--line);
}

.distance {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}

.distance__lieu {
	font-weight: 500;
}

.distance__temps {
	color: var(--accent);
	font-weight: 700;
	font-size: 0.92rem;
	white-space: nowrap;
}

.bloc {
	padding: 1.75rem;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.bloc__title {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

/* -------------------------------------------------------------------------
   12. FORMULAIRE
   ---------------------------------------------------------------------- */
.section--form {
	background: var(--surface);
	border-top: 1px solid var(--line);
}

.form {
	display: grid;
	gap: 1.1rem;
}

.form__row {
	display: grid;
	gap: 1.1rem;
}

.form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form__field label {
	font-size: 0.88rem;
	font-weight: 600;
	color: #cfd3d7;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="date"],
.form select,
.form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	background: var(--bg);
	color: var(--text);
	border: 1px solid var(--line-strong);
	border-radius: 10px;
	font: inherit;
	font-size: 0.98rem;
	transition: border-color 0.2s var(--ease);
}

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

.form textarea {
	resize: vertical;
	min-height: 120px;
}

.form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
		linear-gradient(135deg, var(--muted) 50%, transparent 50%);
	background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 2.5rem;
}

.form__field--check {
	flex-direction: row;
	align-items: flex-start;
	gap: 0.65rem;
}

.form__field--check input {
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.25rem;
	accent-color: var(--accent);
	flex-shrink: 0;
}

.form__field--check label {
	font-weight: 400;
	font-size: 0.88rem;
	color: var(--muted);
}

.form__note {
	font-size: 0.82rem;
	color: var(--muted);
	margin: 0;
	text-align: center;
}

/* Honeypot : invisible pour les humains, visible pour les robots. */
.form__hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.form-message {
	padding: 1rem 1.25rem;
	border-radius: var(--radius);
	margin-bottom: 1.75rem;
	font-weight: 500;
}

.form-message--succes {
	background: rgba(74, 222, 128, 0.12);
	border: 1px solid rgba(74, 222, 128, 0.4);
	color: var(--ok);
}

.form-message--erreur {
	background: rgba(248, 113, 113, 0.12);
	border: 1px solid rgba(248, 113, 113, 0.4);
	color: #fca5a5;
}

/* -------------------------------------------------------------------------
   13. PIED DE PAGE
   ---------------------------------------------------------------------- */
.site-footer {
	background: var(--surface);
	border-top: 1px solid var(--line);
	padding-block: 3rem 1.5rem;
	font-size: 0.92rem;
}

.site-footer__grid {
	display: grid;
	gap: 2rem;
	padding-bottom: 2rem;
}

.site-footer__name {
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 0.35rem;
}

.site-footer__addr {
	color: var(--muted);
	margin: 0;
}

.site-footer__title {
	font-size: 0.76rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.85rem;
}

.site-footer__list li {
	margin-bottom: 0.5rem;
}

.site-footer__list a:hover {
	color: var(--accent);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.82rem;
}

.site-footer__bottom p {
	margin: 0;
}

/* -------------------------------------------------------------------------
   14. RESPONSIVE
   ---------------------------------------------------------------------- */

/* Tablette */
@media (min-width: 640px) {
	:root {
		--section-y: 5.5rem;
	}

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

	.args {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}

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

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

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

	.galerie__item--large {
		grid-column: 1 / -1;
	}

	.chambre-head__inner {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.chambre-head__price {
		flex-shrink: 0;
		min-width: 260px;
	}

	.section__head--row {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.site-footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}

/* Bureau */
@media (min-width: 900px) {
	:root {
		--section-y: 7rem;
		--gap: 1.75rem;
	}

	.container {
		padding-inline: 2rem;
	}

	.nav-toggle {
		display: none;
	}

	.site-nav {
		position: static;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 2rem;
		padding: 0;
		border: 0;
		background: transparent;
	}

	.site-nav__list {
		flex-direction: row;
		gap: 1.75rem;
	}

	.site-nav__list a {
		padding: 0;
		border: 0;
		font-size: 0.95rem;
	}

	.site-nav__cta {
		margin-top: 0;
	}

	.grid--cards {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.args {
		grid-template-columns: repeat(4, 1fr);
	}

	.etapes {
		grid-template-columns: repeat(4, 1fr);
	}

	.galerie {
		grid-template-columns: repeat(3, 1fr);
	}

	.galerie__item--large {
		grid-column: span 3;
	}

	.chambre-body {
		grid-template-columns: minmax(0, 1fr) 340px;
		gap: 4rem;
	}

	.distances {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 3rem;
	}

	.hero {
		padding-block: 8rem 4rem;
	}
}

/* Préférence utilisateur : moins d'animations */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.btn:hover,
	.card:hover {
		transform: none;
	}
}
