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


/* ─── Variables ─────────────────────────────────────────── */
:root {
  /* Palette principale */
  --gold:      #C9A84C;
  --gold-l:    #E2C97E;
  --gold-d:    #A67C30;
  --beige:     #F5EFE0;
  --beige-d:   #EDE3CC;
  --beige-p:   #F9F4F1;   /* fond pages intérieures */
  --white:     #FAFAF8;
  --dark:      #1A1510;
  --dark-m:    #2C2416;

  /* Palette taupe (accents secondaires) */
  --taupe:     #B69E89;
  --taupe-d:   #9A8370;

  /* Échelle de texte brun chaud */
  --text-body:    #5a4e3a;  /* texte courant */
  --text-muted:   #7a6855;  /* texte secondaire */
  --text-subtle:  #8a7a5e;  /* notes, hints */

  /* Typographies */
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Montserrat', sans-serif;

  /* Layout */
  --nav-h:     72px;
  --r:         50px;        /* border-radius boutons */
  --r-card:    20px;        /* border-radius cartes */
  --ease:      .32s cubic-bezier(.4, 0, .2, 1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--beige);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Supprime le flash bleu iOS/Android sur les éléments interactifs */
a, button, [role="button"], label { -webkit-tap-highlight-color: transparent; }

/* Focus clavier — visible sur tous les éléments interactifs */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Masque l'outline pour la souris, conservé pour le clavier */
:focus:not(:focus-visible) { outline: none; }

/* ─── Shared — logo ─────────────────────────────────────── */
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--dark);
}

.nav__logo-tagline {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* ─── Shared — nav links ────────────────────────────────── */
.nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.nav__links a {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-d);
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(201, 168, 76, .3);
}

/* ═══════════════════════════════════════════════════════════
   PAGE WRAPPER — transition SPA
   ═══════════════════════════════════════════════════════════ */

.page {
  padding-top: var(--nav-h);
  transition: opacity .45s cubic-bezier(.4, 0, .2, 1);
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 2/3 | 1/3 — plein écran
   ═══════════════════════════════════════════════════════════ */

.home {
  display: grid;
  grid-template-columns: 1fr calc(100dvh * 2 / 3);
  height: 100vh;
  height: 100dvh;
  margin-top: calc(-1 * var(--nav-h)); /* remonte derrière la nav */
  overflow: hidden;
}

/* ── Panneau gauche (2/3) ───────────────────── */
.home__left {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--beige);
  overflow: hidden;
  padding-top: var(--nav-h); /* contenu sous la nav */
}

/* Zone de contenu */
.home__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 64px;
  overflow: hidden;
}

/* Logo bas-gauche */
.home__logo-wrap {
  position: absolute;
  bottom: 36px;
  left: 48px;
}

.home__logo {
  max-height: 72px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.home__overline {
  font-size: .62rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.home__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 28px;
}

.home__title em {
  font-style: italic;
  color: var(--gold-d);
}

.home__rule {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.home__desc {
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-body);
  max-width: 420px;
  margin-bottom: 44px;
  margin-left: auto;
  margin-right: auto;
}

.home__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  width: fit-content;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.home__cta:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  box-shadow: 0 8px 28px rgba(166, 124, 48, .38);
  transform: translateY(-2px);
}

.home__cta svg {
  width: 13px;
  height: 13px;
  transition: transform var(--ease);
}

.home__cta:hover svg {
  transform: translateX(4px);
}

.home__stamp {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
}

.home__stamp-line {
  width: 28px;
  height: 1px;
  background: var(--gold-l);
}

.home__stamp-text {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-l);
}

/* ── Liens rapides bas de l'accueil ────────── */
.home__footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.home__footer-links a {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(90, 78, 58, .5);
  text-decoration: none;
  transition: color var(--ease);
}

.home__footer-links a:hover { color: var(--gold-d); }

.home__footer-links span {
  color: rgba(90, 78, 58, .22);
  font-size: .55rem;
}

/* ── Panneau droit (1/3) — bannière ────────── */
.home__banner {
  position: relative;
  overflow: hidden;
  background: var(--beige-d);
}

.home__banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home__banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 21, 16, .12) 0%, rgba(201, 168, 76, .05) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Placeholder sans image */
.home__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(160deg, var(--beige-d) 0%, #D8CDB0 100%);
}

.home__placeholder svg {
  width: 42px;
  height: 42px;
  color: var(--gold-d);
  opacity: .22;
}

.home__placeholder span {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-d);
  opacity: .4;
}

/* ═══════════════════════════════════════════════════════════
   PAGES INTÉRIEURES
   ═══════════════════════════════════════════════════════════ */

/* Nav fixe */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(245, 239, 224, .94);
  /* backdrop-filter sur ::before pour ne pas créer de bloc de référence
     pour les descendants position:fixed (cf. overlay hamburger mobile) */
  border-bottom: 1px solid rgba(201, 168, 76, .2);
  transition: right .22s ease;
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

/* Sur la homepage, la bannière coupe le header */
body.is-home .nav {
  right: calc(100dvh * 2 / 3);
}

/* Contenu centré */
.inner-page {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 72px;
  text-align: center;
}

.inner-page__overline {
  font-size: .62rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.inner-page__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
}

.inner-page__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
}

.inner-page__text {
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-body);
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE FORMULES — Luxe & aérien
   ═══════════════════════════════════════════════════════════ */

.formules-page {
  background: #F9F4F1;
  min-height: calc(100dvh - var(--nav-h));
  padding: 40px 48px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* ── En-tête ── */
.formules-header {
  text-align: center;
  max-width: 560px;
}

.formules-header__overline {
  font-size: .6rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.formules-header__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 14px;
}

.formules-header__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 14px;
  opacity: .6;
}

.formules-header__sub {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
}

/* ── Grille 3 cartes ── */
.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 1160px;
  align-items: start;
}

/* ── Carte ── */
.fcard {
  background: #FEFCF9;
  border: 1px solid rgba(182, 158, 137, .18);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(90, 70, 40, .06), 0 1px 4px rgba(90, 70, 40, .04);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(90, 70, 40, .12), 0 2px 8px rgba(90, 70, 40, .06);
}

/* ── Média ── */
.fcard__media {
  position: relative;
  height: 220px;
  background: linear-gradient(140deg, #EDE3CC 0%, #E0D3BE 100%);
  overflow: hidden;
  flex-shrink: 0;
}

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

.fcard__media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B69E89;
}

.fcard__media-placeholder svg {
  width: 60%;
  height: 60%;
  opacity: .7;
}

.fcard__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #fff;
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ── Corps ── */
.fcard__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 32px 40px;
  gap: 0;
  flex: 1;
}

.fcard__name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  letter-spacing: .02em;
  margin-bottom: 10px;
}

.fcard__subtitle {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.55;
  margin-bottom: 28px;
}

/* ── Prix ── */
.fcard__price-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
}

.fcard__price-rule {
  flex: 1;
  height: 1px;
  background: rgba(182, 158, 137, .35);
}

.fcard__price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-d);
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ── Caractéristiques ── */
.fcard__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  text-align: left;
  margin-bottom: 36px;
  flex: 1;
}

.fcard__feature {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
}

.fcard__feature-bullet {
  font-size: .65rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Bouton CTA ── */
.fcard__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 28px;
  background: transparent;
  border: 1.5px solid #B69E89;
  border-radius: 50px;
  color: #9A8370;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.fcard__cta:hover {
  background: #B69E89;
  color: #fff;
  border-color: #B69E89;
  box-shadow: 0 6px 24px rgba(182, 158, 137, .32);
}

/* ── Note bas de page ── */
.formules-note {
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
}

.formules-note a {
  color: var(--gold-d);
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 124, 48, .3);
  transition: border-color var(--ease);
}

.formules-note a:hover { border-color: var(--gold-d); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .formules-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .formules-grid .fcard:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
  .formules-page { padding: 36px 20px 64px; gap: 32px; }
  .formules-header { padding: 0 4px; }
  .formules-header__title { font-size: clamp(1.7rem, 8vw, 2rem); }
  .formules-grid { grid-template-columns: 1fr; }
  .formules-grid .fcard:last-child { grid-column: auto; max-width: none; }
  .fcard__body { padding: 28px 24px 32px; }
  .fcard__cta { font-size: .72rem; letter-spacing: .14em; } /* lisibilité mobile */
}

/* ═══════════════════════════════════════════════════════════
   PAGE LOCATION — Formules de location
   ═══════════════════════════════════════════════════════════ */

.location-page {
  background: radial-gradient(ellipse at 30% 20%, #F0E8D8 0%, #F9F4F1 55%, #F2EBE0 100%);
  min-height: calc(100dvh - var(--nav-h));
  padding: 40px 48px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
  overflow-x: clip;
}

/* ── Filigranes floraux aux 4 coins ── */
.loc-floral {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: #C9A84C;
  opacity: 0.07;
}

.loc-floral--tl {
  top: -20px;
  left: -40px;
  width: 300px;
}

.loc-floral--tr {
  top: -20px;
  right: -40px;
  width: 280px;
  transform: scaleX(-1);
}

.loc-floral--bl {
  bottom: 40px;
  left: -40px;
  width: 280px;
  transform: scaleY(-1);
}

.loc-floral--br {
  bottom: 40px;
  right: -40px;
  width: 300px;
  transform: rotate(160deg) scaleX(-1);
}

/* ── En-tête ── */
.location-header {
  text-align: center;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.location-header__overline {
  font-size: .6rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.location-header__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 14px;
}

.location-header__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
  opacity: .6;
}

.location-header__sub {
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
}

/* ── Grille 3 cartes (flexbox) ── */
.loc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

/* ── Carte ── */
.loc-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(182, 158, 137, .2);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 36px rgba(90, 70, 40, .07), 0 1px 4px rgba(90, 70, 40, .04);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
  flex: 1 1 300px;
  max-width: 360px;
  min-width: 0;
}

.loc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(90, 70, 40, .13), 0 2px 8px rgba(90, 70, 40, .06);
}

/* ── Animation entrée au chargement ── */
@keyframes locFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.loc-card--anim,
.mk-anim {
  animation: locFadeUp .75s cubic-bezier(.4,0,.2,1) both;
  animation-delay: var(--delay, 0s);
}

/* ── Média ── */
.loc-card__media {
  position: relative;
  height: 215px;
  background: linear-gradient(140deg, #EDE3CC 0%, #E0D3BE 100%);
  overflow: hidden;
  flex-shrink: 0;
}

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

.loc-card__media-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B69E89;
}

.loc-card__media-ph svg {
  width: 62%;
  height: 62%;
  opacity: .72;
}

/* ── Corps ── */
.loc-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 32px 40px;
  flex: 1;
}

/* ── Prix ── */
.loc-card__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.loc-card__price-from {
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9A8370;
}

.loc-card__price-amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: .02em;
  line-height: 1.15;
}

/* ── Nom de formule ── */
.loc-card__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-d);
  letter-spacing: .02em;
  margin-bottom: 20px;
}

/* ── Séparateur ── */
.loc-card__divider {
  width: 100%;
  height: 1px;
  background: rgba(182, 158, 137, .28);
  margin-bottom: 22px;
}

/* ── Liste des prestations ── */
.loc-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  text-align: left;
  margin-bottom: 32px;
  flex: 1;
}

.loc-card__feature {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
}

.loc-card__feature--main {
  font-weight: 500;
  color: var(--dark-m, #2C2416);
}

.loc-card__bullet {
  font-size: .65rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.loc-card__feature--main .loc-card__bullet {
  font-size: .72rem;
}

/* ── Bouton outlined ── */
.loc-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 28px;
  background: transparent;
  border: 1.5px solid #B69E89;
  border-radius: 50px;
  color: #9A8370;
  font-family: var(--sans);
  font-size: .63rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
  cursor: pointer;
}

.loc-card__cta:hover {
  background: #F5EFE0;
  color: #7A6855;
  border-color: #9A8370;
  box-shadow: 0 4px 18px rgba(182, 158, 137, .22);
}

/* ── Section bas — devis personnalisé ── */
.loc-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 540px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 52px 48px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(182, 158, 137, .18);
  border-radius: 24px;
  box-shadow: 0 4px 28px rgba(90, 70, 40, .06);
}

.loc-custom__overline {
  font-size: .58rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.loc-custom__title {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

.loc-custom__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: .6;
}

.loc-custom__text {
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 28px;
}

.loc-custom__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 36px;
  background: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.loc-custom__cta:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  box-shadow: 0 8px 28px rgba(166, 124, 48, .35);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1060px) {
  .loc-card { flex: 1 1 260px; max-width: 340px; }
}

@media (max-width: 767px) {
  .location-page { padding: 40px 28px 80px; gap: 44px; }
  .loc-custom { padding: 40px 28px; }
}

@media (max-width: 640px) {
  .location-page { padding: 36px 20px 64px; gap: 32px; }
  .location-header__title { font-size: clamp(1.7rem, 8vw, 2rem); }
  .loc-grid { flex-direction: column; align-items: stretch; }
  .loc-card { flex: none; max-width: none; height: auto; }
  .loc-card__body { padding: 28px 20px 32px; }
  .loc-card__price-from { letter-spacing: .1em; }
  .loc-card__cta { font-size: .72rem; letter-spacing: .14em; }
  .loc-custom { padding: 32px 20px; }
  .loc-custom__title { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .loc-floral { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE PARAMÈTRES — Admin layout
   ═══════════════════════════════════════════════════════════ */

.admin {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100dvh - var(--nav-h));
}

/* ── Sidebar ── */
.admin__sidebar {
  position: sticky;
  top: var(--nav-h);
  height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
  background: var(--white);
  border-right: 1px solid rgba(201, 168, 76, .18);
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}

.admin__brand {
  padding: 28px 24px 22px;
  border-bottom: 1px solid rgba(201, 168, 76, .12);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.admin__brand-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .02em;
}

.admin__brand-sub {
  display: block;
  font-size: .52rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.admin__nav {
  flex: 1;
  padding: 0 12px;
  overflow-y: auto;
}

.admin__group {
  margin-bottom: 28px;
}

.admin__group-label {
  display: block;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
  padding: 0 12px;
  margin-bottom: 4px;
}

.admin__link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  border-radius: 6px;
  background: none;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-body);
  cursor: pointer;
  text-align: left;
  transition: background var(--ease), color var(--ease);
  margin-bottom: 2px;
}

.admin__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .5;
  transition: opacity var(--ease);
}

.admin__link:hover {
  background: rgba(201, 168, 76, .07);
  color: var(--dark);
}

.admin__link:hover svg { opacity: .75; }

.admin__link.active {
  background: rgba(201, 168, 76, .13);
  color: var(--gold-d);
  font-weight: 500;
}

.admin__link.active svg {
  opacity: 1;
  color: var(--gold-d);
}

/* ═══════════════════════════════════════════════════════════
   ADMIN — Listes dynamiques (formulaire contact)
   ═══════════════════════════════════════════════════════════ */

.cf-admin-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.cf-admin-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* field__input en flex : annule width:100%, évite l'overflow */
.cf-admin-item .field__input {
  flex: 1;
  width: auto;
  min-width: 0;
}

/* Packs — nom ~32 %, description ~68 % */
.cf-admin-item--pack .field__input:nth-of-type(1) { flex: 0 0 32%; }
.cf-admin-item--pack .field__input:nth-of-type(2) { flex: 1; }

/* Bouton supprimer */
.cf-admin-remove {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: none;
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 4px;
  color: #9a8a6e;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.cf-admin-remove svg {
  width: 13px;
  height: 13px;
  pointer-events: none;
}

.cf-admin-remove:hover {
  border-color: rgba(180, 60, 60, .4);
  background: rgba(180, 60, 60, .06);
  color: #c0392b;
}

/* Bouton ajouter — discret, cohérent avec le reste de l'admin */
.cf-admin-add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: none;
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--gold-d);
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.cf-admin-add svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: .7;
}

.cf-admin-add:hover {
  background: rgba(201, 168, 76, .07);
  border-color: var(--gold);
  color: var(--gold-d);
}

/* En-têtes colonnes packs */
.cf-admin-pack-header {
  display: flex;
  gap: 8px;
  padding-right: 42px;
  margin-bottom: 6px;
}

.cf-admin-pack-header span {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-d);
  opacity: .6;
}

.cf-admin-pack-header span:first-child { flex: 0 0 32%; }
.cf-admin-pack-header span:last-child  { flex: 1; }

/* Voir le site */
.admin__view-site {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 12px;
  padding: 12px 16px;
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 6px;
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-d);
  flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.admin__view-site svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.admin__view-site:hover {
  background: rgba(201, 168, 76, .06);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Main content ── */
.admin__main {
  padding: 52px 56px;
  max-width: 920px;
}

.admin__section { display: none; }
.admin__section.active { display: block; }

/* Section header */
.admin__header { margin-bottom: 40px; }

.admin__over {
  font-size: .56rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.admin__title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 14px;
}

.admin__divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
}

.admin__desc {
  font-size: .78rem;
  color: var(--text-subtle);
  line-height: 1.75;
}

/* Cards dans les sections */
.admin__section .param-card {
  max-width: none;
  margin-bottom: 24px;
}

.admin__section .param-card:last-child { margin-bottom: 0; }

/* ── Champ deux colonnes ── */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Hint / note de champ ── */
.field__hint {
  font-weight: 300;
  font-size: .58rem;
  color: var(--text-subtle);
  letter-spacing: .04em;
  text-transform: none;
}

.field__note {
  font-size: .67rem;
  color: var(--text-subtle);
  margin-top: 6px;
  line-height: 1.55;
}

/* ── Séparateur de section dans une card ── */
.param-card__section-label {
  font-size: .56rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-d);
  padding-bottom: 10px;
  margin-bottom: 18px;
  margin-top: 28px;
  border-bottom: 1px solid rgba(201, 168, 76, .14);
}

.param-card__section-label:first-child { margin-top: 0; }

/* ── Champs texte ── */
.field { margin-bottom: 20px; }

.field__label {
  display: block;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 8px;
}

.field__req { color: var(--gold); }

.field__input {
  width: 100%;
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .28);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 300;
  color: var(--dark);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}

.field__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}

.field__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}

.param-card {
  width: 100%;
  max-width: 520px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .28);
  border-radius: 4px;
  padding: 44px;
  box-shadow: 0 4px 40px rgba(26, 21, 16, .06);
}

.param-card__badge {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--gold-l);
  border-radius: var(--r);
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 22px;
}

.param-card__title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.param-card__sub {
  font-size: .75rem;
  color: var(--text-subtle);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Zone d'upload */
.upload-zone {
  border: 1.5px dashed rgba(201, 168, 76, .4);
  border-radius: 4px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  margin-top: 24px;
  margin-bottom: 20px;
  transition: border-color var(--ease), background var(--ease);
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .04);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-zone__icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  color: var(--gold);
  opacity: .65;
}

.upload-zone__label {
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--dark-m);
  margin-bottom: 4px;
}

.upload-zone__hint {
  font-size: .68rem;
  color: #9a8a6e;
  letter-spacing: .05em;
}

.upload-preview {
  display: none;
  width: auto;
  max-height: 200px;
  border-radius: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 168, 76, .2);
  object-fit: cover;
}

.upload-preview.visible { display: block; }

/* Bouton */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.btn-gold:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  box-shadow: 0 6px 22px rgba(166, 124, 48, .36);
  transform: translateY(-1px);
}

.btn-gold:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 32px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, .08);
  box-shadow: 0 6px 22px rgba(166, 124, 48, .18);
  transform: translateY(-1px);
}

.btn-outline:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.smtp-actions {
  display: flex;
  gap: 12px;
}

.smtp-actions .btn-gold,
.smtp-actions .btn-outline {
  width: auto;
  flex: 1;
}

.smtp-test-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(182, 158, 137, .18);
}

.smtp-test-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.smtp-test-email {
  flex: 1;
  min-width: 0;
}

.smtp-test-row .btn-outline {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Message */
.param-msg {
  margin-top: 16px;
  padding: 11px 18px;
  border-radius: 4px;
  font-size: .75rem;
  text-align: center;
  display: none;
}

.param-msg.success {
  display: block;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .28);
  color: var(--gold-d);
}

.param-msg.error {
  display: block;
  background: rgba(180, 60, 60, .07);
  border: 1px solid rgba(180, 60, 60, .18);
  color: #8B3030;
}

/* Bannière active */
.current-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  background: rgba(245, 239, 224, .6);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 4px;
  margin-bottom: 18px;
  font-size: .7rem;
  color: #6a5c42;
}

.current-banner__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   ÉDITEUR DE TEXTE RICHE (RTE)
   ═══════════════════════════════════════════════════════════ */

.rte {
  border: 1px solid rgba(201, 168, 76, .28);
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--ease);
}

.rte:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
}

/* ── Barre d'outils ── */
.rte__bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1px;
  padding: 6px 10px;
  background: rgba(245, 239, 224, .75);
  border-bottom: 1px solid rgba(201, 168, 76, .16);
  user-select: none;
}

.rte__group {
  display: flex;
  align-items: center;
  gap: 1px;
}

.rte__sep {
  width: 1px;
  height: 18px;
  background: rgba(201, 168, 76, .22);
  margin: 0 5px;
  flex-shrink: 0;
}

/* Boutons de la toolbar */
.rte__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: none;
  color: var(--text-body);
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
  flex-shrink: 0;
}

.rte__btn svg {
  width: 13px;
  height: 13px;
  pointer-events: none;
}

.rte__btn:hover {
  background: rgba(201, 168, 76, .12);
  color: var(--dark);
}

.rte__btn.active {
  background: rgba(201, 168, 76, .22);
  color: var(--gold-d);
}

/* Select de type de bloc */
.rte__select {
  height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 3px;
  background: var(--white);
  font-family: var(--sans);
  font-size: .63rem;
  color: var(--dark);
  cursor: pointer;
  outline: none;
  transition: border-color var(--ease);
}

.rte__select:focus { border-color: var(--gold); }

/* ── Zone éditable ── */
.rte__content {
  padding: 18px 20px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.8;
  outline: none;
  caret-color: var(--gold-d);
}

.rte__content:empty::before {
  content: attr(data-placeholder);
  color: #b8a888;
  pointer-events: none;
  font-style: italic;
}

/* Typographie dans l'éditeur */
.rte__content h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin: .6em 0 .25em;
}

.rte__content h3 {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--dark-m);
  margin: .5em 0 .2em;
}

.rte__content p {
  margin: 0 0 .55em;
}

.rte__content p:last-child { margin-bottom: 0; }

.rte__content ul,
.rte__content ol {
  padding-left: 1.6em;
  margin: 0 0 .6em;
}

.rte__content li { margin-bottom: .15em; }

.rte__content a {
  color: var(--gold-d);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.rte__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  margin: .7em 0;
}

/* ── Dialogs ── */
.rte-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 16, .45);
  z-index: 500;
  padding: 20px;
}

.rte-overlay:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rte-dialog {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 6px;
  padding: 28px 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 64px rgba(26, 21, 16, .22);
}

.rte-dialog__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 22px;
}

.rte-dialog__title svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.rte-dialog__or {
  font-size: .56rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-l);
  text-align: center;
  margin: 14px 0;
}

.rte-dialog__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.rte-dialog__footer .btn-gold {
  flex: 1;
  padding: 11px 20px;
}

.rte-cancel {
  padding: 10px 18px;
  border: 1px solid rgba(201, 168, 76, .26);
  border-radius: var(--r);
  background: none;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}

.rte-cancel:hover {
  background: rgba(201, 168, 76, .07);
  color: var(--dark);
}

/* Zone d'upload compacte dans le dialog */
.rte-upload-zone {
  padding: 18px 14px;
  margin-top: 0;
  margin-bottom: 10px;
}

.rte-upload-zone .upload-zone__icon {
  width: 26px;
  height: 26px;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════════
   CONTENU RICHE — rendu sur les pages du site
   ═══════════════════════════════════════════════════════════ */

.page-content h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin: .9em 0 .35em;
}

.page-content h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark-m);
  margin: .7em 0 .28em;
}

.page-content p { margin: 0 0 .75em; }
.page-content p:last-child { margin-bottom: 0; }

.page-content ul,
.page-content ol {
  padding-left: 1.6em;
  margin: 0 0 .75em;
  text-align: left;
}

.page-content li { margin-bottom: .22em; }

.page-content a {
  color: var(--gold-d);
  text-decoration: underline;
}

.page-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  margin: 1em auto;
}

.inner-page__cta {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
  border-bottom: 1px solid rgba(201, 168, 76, .35);
  padding-bottom: 2px;
  transition: color var(--ease), border-color var(--ease);
}

.inner-page__cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   TOGGLE SWITCH — En ligne / Hors ligne
   ═══════════════════════════════════════════════════════════ */

.site-status-toggle { margin-top: 8px; }

.sw-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Conteneur du switch : dimensions fixes obligatoires */
.sw {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}

/* Input invisible mais fonctionnel */
.sw__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Piste — remplit exactement le .sw */
.sw__track {
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, .12);
  border: 1.5px solid rgba(26, 21, 16, .15);
  border-radius: 14px;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

/* Knob */
.sw__track::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  box-shadow: 0 1px 5px rgba(0,0,0,.22);
  transition: transform .28s ease;
}

/* État ON */
.sw__input:checked + .sw__track {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .18);
}

.sw__input:checked + .sw__track::after {
  transform: translateX(26px);
}

/* Focus clavier */
.sw__input:focus-visible + .sw__track {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Texte */
.sw__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sw__state {
  font-size: .82rem;
  font-weight: 500;
  color: #8a7a5e;
  transition: color .28s ease;
}

.sw__hint {
  font-size: .65rem;
  color: #b0a08a;
}

/* ═══════════════════════════════════════════════════════════
   PAGE MAINTENANCE
   ═══════════════════════════════════════════════════════════ */

.maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  padding: 48px 32px;
}

.maintenance__inner {
  text-align: center;
  max-width: 540px;
}

.maintenance__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 52px;
}

.maintenance__logo {
  max-height: 96px;
  width: auto;
  max-width: 224px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.maintenance__name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--dark);
  display: block;
}

.maintenance__tagline {
  display: block;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

.maintenance__stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.maintenance__stamp-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.maintenance__stamp-text {
  font-size: .58rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-d);
  white-space: nowrap;
}

.maintenance__text {
  font-size: .88rem;
  font-weight: 300;
  line-height: 2;
  color: #6a5c42;
}

/* ═══════════════════════════════════════════════════════════
   NAV — Bouton admin
   ═══════════════════════════════════════════════════════════ */

.nav__links .nav__admin-link {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  display: inline-flex;
  align-items: center;
}

.nav__links .nav__admin-link:hover,
.nav__links .nav__admin-link.active {
  background: var(--gold-d);
  border-color: var(--gold-d);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(166, 124, 48, .32);
}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR — Déconnexion
   ═══════════════════════════════════════════════════════════ */

.admin__logout {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  margin: 0 12px 20px;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a8a6e;
  border-radius: var(--r);
  transition: color var(--ease), background var(--ease);
}

.admin__logout svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: .5;
  transition: opacity var(--ease);
}

.admin__logout:hover {
  color: #8B3030;
  background: rgba(180, 60, 60, .05);
}

.admin__logout:hover svg { opacity: .7; }

/* ═══════════════════════════════════════════════════════════
   PAGE CONNEXION
   ═══════════════════════════════════════════════════════════ */

.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  padding: 40px 20px;
}

.login-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  text-decoration: none;
}

.login-brand__name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--dark);
}

.login-brand__tagline {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.login-card {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .28);
  border-radius: 4px;
  padding: 48px 44px;
  box-shadow: 0 4px 40px rgba(26, 21, 16, .07);
}

.login-card__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin-bottom: 18px;
}

.login-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.login-error {
  background: rgba(180, 60, 60, .07);
  border: 1px solid rgba(180, 60, 60, .18);
  color: #8B3030;
  font-size: .72rem;
  text-align: center;
  padding: 10px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.login-back {
  display: inline-block;
  margin-top: 32px;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
  opacity: .55;
  transition: opacity var(--ease);
}

.login-back:hover { opacity: 1; }

.login-card__sub {
  font-size: .75rem;
  color: #8a7a5e;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.login-code-input {
  font-size: 1.4rem;
  letter-spacing: .4em;
  text-align: center;
}

.login-back-step {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-d);
  opacity: .5;
  cursor: pointer;
  transition: opacity var(--ease);
  padding: 8px 0;
}
.login-back-step:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   SECTION SÉCURITÉ
   ═══════════════════════════════════════════════════════════ */

.security-url-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 239, 224, .7);
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 4px;
  padding: 11px 14px;
}

.security-url-text {
  flex: 1;
  font-family: monospace;
  font-size: .72rem;
  color: var(--dark-m);
  word-break: break-all;
}

.security-url-copy {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: none;
  border: 1px solid rgba(201, 168, 76, .28);
  border-radius: 4px;
  color: var(--gold-d);
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
}

.security-url-copy svg { width: 13px; height: 13px; }

.security-url-copy:hover {
  background: rgba(201, 168, 76, .1);
  border-color: var(--gold);
}

/* Statut 2FA */
.tfa-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: .75rem;
  margin-bottom: 20px;
}

.tfa-status svg { width: 15px; height: 15px; flex-shrink: 0; }

.tfa-status--on {
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .28);
  color: var(--gold-d);
}

.tfa-status--off {
  background: rgba(26, 21, 16, .04);
  border: 1px solid rgba(26, 21, 16, .1);
  color: #8a7a5e;
}

.tfa-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Boutons outline */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: none;
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-d);
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.btn-outline-gold:hover {
  background: rgba(201, 168, 76, .1);
}

.btn-danger-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: none;
  border: 1.5px solid rgba(180, 60, 60, .35);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8B3030;
  cursor: pointer;
  transition: background var(--ease);
}
.btn-danger-outline:hover { background: rgba(180, 60, 60, .07); }

.btn-danger-sm {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: none;
  border: 1px solid rgba(180, 60, 60, .3);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8B3030;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn-danger-sm:hover { background: rgba(180, 60, 60, .07); border-color: rgba(180, 60, 60, .5); }
.btn-danger-sm:disabled { opacity: .5; cursor: not-allowed; }

/* ─── Section Google ──────────────────────────────── */

/* Bouton "Se connecter avec Google" */
.google-connect-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.google-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 14px;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: #3c4043;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, box-shadow .15s ease;
  box-shadow: 0 1px 2px rgba(60,64,67,.15);
}

.google-connect-btn:hover { background: #f8f9fa; box-shadow: 0 2px 6px rgba(60,64,67,.2); }
.google-connect-btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.google-connect-btn__logo { width: 20px; height: 20px; flex-shrink: 0; }

.google-connect-hint {
  font-size: .72rem;
  color: var(--text-muted);
  margin: 0;
}

/* Compte connecté */
.google-account-status {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(52, 168, 83, .05);
  border: 1px solid rgba(52, 168, 83, .25);
  border-radius: 10px;
}

.google-account-status__avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(66, 133, 244, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4285F4;
}

.google-account-status__avatar svg { width: 20px; height: 20px; }

.google-account-status__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.google-account-status__email {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  color: var(--dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-account-status__hint {
  font-size: .68rem;
  color: var(--text-muted);
}

.google-account-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34A853;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(52, 168, 83, .2);
}

/* Badge nav connecté */
.admin__link-badge {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
}
.admin__link-badge--green { background: #34A853; }

/* Lien externe */
.google-ext-link {
  font-family: var(--sans);
  font-size: .7rem;
  color: #4285F4;
  text-decoration: none;
  white-space: nowrap;
}
.google-ext-link:hover { text-decoration: underline; }

/* Inactif */
.google-inactive-hint {
  font-size: .8rem;
  color: var(--text-muted);
  padding: 10px 0;
  margin-bottom: 8px;
}

/* Instructions */
.google-instructions {
  background: rgba(201, 168, 76, .05);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 12px;
}

.google-instructions__list {
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--text-body);
  line-height: 1.9;
  padding-left: 18px;
  margin: 0;
}

.google-instructions__list li { margin-bottom: 2px; }
.google-instructions__list strong { color: var(--dark); }
.google-instructions__list code, .google-instructions code {
  font-size: .75rem;
  background: rgba(201, 168, 76, .1);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--gold-d);
}

/* Config OAuth collapse */
.google-oauth-config { margin-top: 8px; }

/* Flash banner */
.param-msg--banner {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .82rem;
  margin-bottom: 16px;
}
.param-msg--banner.success { background: rgba(52,168,83,.08); color: #1e6f35; border: 1px solid rgba(52,168,83,.25); }
.param-msg--banner.error   { background: rgba(180,60,60,.07); color: #8B3030; border: 1px solid rgba(180,60,60,.2); }

/* Étapes 2FA */
.tfa-step-label {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
  display: block;
}

.tfa-qr {
  display: block;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 4px;
  margin-bottom: 16px;
}

.tfa-secret-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.tfa-secret-code {
  flex: 1;
  font-family: monospace;
  font-size: .8rem;
  letter-spacing: .15em;
  background: rgba(245, 239, 224, .7);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 3px;
  padding: 6px 10px;
  word-break: break-all;
}

.tfa-confirm-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 12px;
}

.tfa-code-input {
  flex: 1;
  font-size: 1.1rem;
  letter-spacing: .3em;
  text-align: center;
}

.tfa-confirm-btn {
  flex-shrink: 0;
  width: auto;
  padding: 11px 22px;
}

/* Codes de secours */
.tfa-backup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}

.tfa-backup-header svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.backup-codes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}

.backup-code-item {
  font-family: monospace;
  font-size: .85rem;
  letter-spacing: .1em;
  background: rgba(245, 239, 224, .7);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 3px;
  padding: 8px 12px;
  text-align: center;
  color: var(--dark);
}

.backup-code-item.used {
  opacity: .35;
  text-decoration: line-through;
}

/* ═══════════════════════════════════════════════════════════
   BARRE DE PROGRESSION — Transitions SPA
   ═══════════════════════════════════════════════════════════ */

.nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--gold-d)  0%,
    var(--gold)   55%,
    var(--gold-l) 100%
  );
  box-shadow: 0 0 10px rgba(201, 168, 76, .55), 0 1px 4px rgba(201, 168, 76, .35);
  z-index: 600;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════════════
   PANNEAU DÉTAIL FORMULE
   ═══════════════════════════════════════════════════════════ */

.fdetail {
  width: 100%;
  max-width: 1160px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .44s cubic-bezier(.4, 0, .2, 1);
}

.fdetail.open {
  grid-template-rows: 1fr;
}

.fdetail__inner {
  min-height: 0;
  overflow: hidden;
}

.fdetail__content {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 20px;
  padding: 48px 52px 56px;
  margin-bottom: 2px; /* évite le clip de box-shadow */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .32s ease .18s, transform .32s ease .18s;
}

.fdetail.open .fdetail__content {
  opacity: 1;
  transform: translateY(0);
}

/* ── En-tête ── */
.fdetail__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.fdetail__overline {
  font-size: .6rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.fdetail__name {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 8px;
}

.fdetail__sub {
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fdetail__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(201, 168, 76, .3);
  border-radius: 50%;
  background: none;
  color: var(--gold-d);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}

.fdetail__close svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.fdetail__close:hover {
  background: rgba(201, 168, 76, .08);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* ── Séparateur ── */
.fdetail__rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
  opacity: .35;
  margin-bottom: 40px;
}

/* ── Corps ── */
.fdetail__body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* ── Texte riche ── */
.fdetail__text {
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--dark);
}

.fdetail__text--empty {
  color: var(--text-subtle);
  font-style: italic;
  font-size: .85rem;
}

/* ── Sidebar ── */
.fdetail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Prix */
.fdetail__price-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px 24px;
  background: rgba(201, 168, 76, .06);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 12px;
}

.fdetail__price-label {
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-d);
}

.fdetail__price-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .02em;
}

/* Features */
.fdetail__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fdetail__feature {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.6;
}

.fdetail__feature-bullet {
  font-size: .65rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* CTA "Prendre contact" */
.fdetail__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.fdetail__cta-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.fdetail__cta-link:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  box-shadow: 0 8px 28px rgba(166, 124, 48, .35);
  transform: translateY(-2px);
}

.fdetail__cta-link:hover svg {
  transform: translateX(4px);
}

/* ── État actif du bouton carte ── */
.fcard__cta--active {
  background: #B69E89;
  color: var(--white);
  border-color: #B69E89;
}

/* ── Responsive panneau ── */
@media (max-width: 960px) {
  .fdetail__body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fdetail__sidebar {
    order: -1;
  }
}

@media (max-width: 640px) {
  .fdetail__content {
    padding: 28px 24px 36px;
    border-radius: 14px;
  }

  .fdetail__head {
    flex-direction: row;
    align-items: flex-start;
  }

  .fdetail__rule {
    margin-bottom: 24px;
  }

  .fdetail__body {
    gap: 28px;
  }
}

@media (max-width: 400px) {
  .fdetail__content {
    padding: 22px 16px 28px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Adaptations mobile & tablette
   ═══════════════════════════════════════════════════════════ */

/* ── Burger — toujours défini, caché sur desktop ─────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;       /* cible touch WCAG 2.5.5 */
  height: 44px;
  padding: 0;
  background: none;
  border: 1.5px solid rgba(201, 168, 76, .35);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--ease), background var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.nav__burger:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .06);
}

.nav__burger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold-d);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .28s ease, opacity .28s ease;
}

/* ─────────────────────────────────────────────────────────
   ≤ 1100px — Tablette paysage / petits laptops
   ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  /* Homepage : ajuste la proportion de la bannière */
  .home {
    grid-template-columns: 1fr 38%;
  }

  body.is-home .nav {
    right: 38%;
  }
}

/* ─────────────────────────────────────────────────────────
   ≤ 960px — Tablette portrait / navigation hamburger
   ───────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root {
    --nav-h: 62px;
  }

  /* Nav toujours pleine largeur */
  .nav {
    padding: 0 20px;
    right: 0 !important; /* annule le clip homepage */
  }

  /* Burger visible */
  .nav__burger {
    display: flex;
  }

  /* Liens → overlay plein écran (position:fixed fonctionne car .nav
     n'a plus de backdrop-filter direct, uniquement sur ::before) */
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 48px 24px;
    background: rgba(245, 239, 224, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    /* Caché : visibility change APRÈS la transition opacity (delay .28s) */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    /* Visible : visibility change IMMÉDIATEMENT (delay 0s) */
    transition: opacity .28s ease, transform .28s ease, visibility 0s linear 0s;
  }

  .nav__links li {
    width: 100%;
    max-width: 280px;
  }

  .nav__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;          /* cible touch WCAG 2.5.5 */
    padding: 0 28px;
    font-size: .8rem;          /* ≥ 13px — lisible sur mobile */
    letter-spacing: .12em;
    white-space: nowrap;
  }

  /* Burger → X quand ouvert */
  .nav__burger.open .nav__burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav__burger.open .nav__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav__burger.open .nav__burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* Bloque le scroll du body quand le menu est ouvert */
  body.nav-open {
    overflow: hidden;
  }

  /* Homepage : stacked sur tablette portrait */
  .home {
    grid-template-columns: 1fr 42%;
  }
}

/* ─────────────────────────────────────────────────────────
   ≤ 767px — Smartphones (layout vertical)
   ───────────────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* ── Homepage mobile ─────────────────────────────────── */
  .home {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    margin-top: 0; /* annule le -nav-h desktop */
  }

  /* Bannière en haut, sous la nav fixe */
  .home__banner {
    order: -1;
    height: 50dvh;
    min-height: 220px;
    max-height: 420px;
    flex-shrink: 0;
    position: relative;
  }

  /* Panneau gauche : flux normal, pas de padding-top (bannière d'abord) */
  .home__left {
    flex: 1;
    overflow: visible;
    padding-top: 0;
  }

  /* Corps centré → aligné en haut sur mobile */
  .home__body {
    flex: 1;
    justify-content: flex-start;
    padding: 36px 24px 28px;
    overflow: visible;
  }

  .home__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 20px;
  }

  .home__rule {
    margin-bottom: 20px;
  }

  .home__desc {
    font-size: .82rem;
    max-width: 100%;
    margin-bottom: 32px;
  }

  /* CTA pleine largeur sur mobile */
  .home__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .home__stamp {
    margin-top: 32px;
  }

  /* Logo : repositionné, centré en bas */
  .home__logo-wrap {
    position: static;
    display: flex;
    justify-content: center;
    padding: 4px 24px 36px;
  }

  /* Footer quick-links : cohérence avec desktop */
  .home__footer-links a {
    color: rgba(90, 78, 58, .5);
  }

  .home__footer-links span {
    color: rgba(90, 78, 58, .22);
  }

  /* ── Pages intérieures mobile ────────────────────────── */
  .inner-page {
    padding: 44px 24px;
    min-height: calc(100dvh - var(--nav-h));
    justify-content: flex-start;
  }

  .inner-page__title {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }

  .inner-page__text {
    font-size: .82rem;
  }

  /* ── À propos — narrative plus compacte sur mobile ──────── */
  .ap-story__narrative {
    font-size: 1rem;
    line-height: 1.85;
  }

  .ap-hero__intro {
    font-size: clamp(.9rem, 4.5vw, 1.1rem);
  }

  /* ── Contact : labels plus lisibles sur mobile ────────── */
  .cf-label {
    font-size: .78rem;
    letter-spacing: .12em;
  }

  .cf-legend {
    font-size: 1.2rem;
  }

  /* ── Checkbox / radio : cible touch 44px ────────────── */
  .cf-check,
  .cf-radio {
    min-height: 44px;
  }

  /* ── Overlines : plancher lisible ───────────────────────── */
  .home__overline,
  .inner-page__overline,
  .formules-header__overline,
  .location-header__overline,
  .contact-hero__overline,
  .ap-hero__overline {
    font-size: .72rem;
    letter-spacing: .26em;
  }

  /* ── Titres de pages intérieures ────────────────────────── */
  .formules-header__title,
  .location-header__title,
  .contact-hero__title,
  .ap-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  /* ── Hero À propos (section désormais peuplée) ───────────── */
  .ap-hero {
    padding: 40px 24px 28px;
  }

  .ap-hero__logo {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }

  .ap-hero__logo-placeholder {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }

  .ap-hero__intro {
    font-size: clamp(.95rem, 4vw, 1.1rem);
  }

  /* ── Card CTAs : cible touch 44px ───────────────────────── */
  .fcard__cta {
    min-height: 44px;
    padding: 14px 24px;
  }

  .loc-card__cta {
    min-height: 44px;
    padding: 14px 24px;
  }

  /* ── Bouton section sur-mesure (location) ── */
  .loc-custom__cta {
    width: 100%;
    justify-content: center;
  }

  /* ── Formulaire contact : submit pleine largeur ────────── */
  .cf-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }

  /* ── Quick-links homepage : zone de touch suffisante ──── */
  .home__footer-links a {
    padding: 10px 6px;
  }

  /* ── Stamp homepage : légèrement plus lisible ─────────── */
  .home__stamp-text {
    font-size: .6rem;
    letter-spacing: .22em;
  }

  /* ── Footer ── */
  .site-footer__inner {
    gap: 20px;
  }

  .site-footer__nav {
    gap: 18px;
  }

  /* Tap targets footer nav — voir aussi le bloc @media footer dédié */
  .site-footer__nav a {
    padding: 8px 0;
    display: inline-block;
  }

  /* ── Admin — layout mobile ───────────────────────────── */
  .admin {
    grid-template-columns: 1fr;
  }

  .admin__sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, .18);
  }

  .admin__brand {
    padding: 18px 16px 14px;
  }

  .admin__brand-title {
    font-size: 1.1rem;
  }

  /* Nav sidebar → bandeaux d'onglets horizontaux scrollables */
  .admin__nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 0 8px 10px;
    gap: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .admin__nav::-webkit-scrollbar {
    display: none;
  }

  .admin__group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
    margin-bottom: 0;
    padding: 0 4px;
  }

  .admin__group + .admin__group {
    border-left: 1px solid rgba(201, 168, 76, .18);
    margin-left: 4px;
    padding-left: 8px;
  }

  .admin__group-label {
    display: none;
  }

  .admin__link {
    flex-shrink: 0;
    white-space: nowrap;
    border-radius: 20px;
    padding: 7px 13px;
    font-size: .63rem;
    margin-bottom: 0;
  }

  .admin__link svg {
    display: none; /* icônes masquées pour gagner de la place */
  }

  .admin__view-site {
    display: none; /* accessible via bouton retour ou onglet séparé */
  }

  .admin__logout {
    margin: 0 12px 16px;
    padding: 8px 12px;
  }

  /* Zone de contenu admin */
  .admin__main {
    padding: 32px 20px;
    max-width: 100%;
  }

  /* Card admin : réduit le padding */
  .param-card {
    padding: 28px 24px;
  }

  /* Deux colonnes → une colonne */
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Codes de backup */
  .backup-codes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  /* Login card */
  .login-card {
    padding: 36px 28px;
  }

  /* Sécurité — URL */
  .security-url-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .security-url-text {
    width: 100%;
  }

  /* 2FA actions */
  .tfa-actions {
    flex-direction: column;
  }

  .tfa-confirm-row {
    flex-direction: column;
    gap: 12px;
  }

  .tfa-confirm-btn {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────
   ≤ 400px — Très petits écrans (iPhone SE, etc.)
   ───────────────────────────────────────────────────────── */
@media (max-width: 400px) {
  .nav__logo-tagline {
    display: none; /* gagne de la place */
  }

  .nav__logo-name {
    font-size: 1.35rem;
  }

  .home__body {
    padding: 28px 18px 24px;
  }

  .home__title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .home__desc {
    font-size: .8rem;
    margin-bottom: 28px;
  }

  .home__stamp-text {
    font-size: .52rem;
    letter-spacing: .2em;
  }

  /* CTA pleine largeur & centré */
  .home__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Footer quick-links encore plus discrets */
  .home__footer-links {
    gap: 10px;
    margin-top: 28px;
  }

  .inner-page {
    padding: 36px 18px;
  }

  /* Formules — encore plus compact */
  .formules-page {
    padding: 32px 14px 56px;
    gap: 32px;
  }

  .fcard__body {
    padding: 22px 18px 28px;
  }

  .fcard__name {
    font-size: 1.65rem;
  }

  /* Titres pages intérieures sur très petits écrans */
  .formules-header__title,
  .location-header__title,
  .contact-hero__title,
  .ap-hero__title {
    font-size: clamp(1.6rem, 9vw, 1.9rem);
  }

  /* À propos */
  .ap-hero {
    padding: 32px 18px 24px;
  }

  .ap-hero__logo,
  .ap-hero__logo-placeholder {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .ap-hero__intro {
    font-size: .95rem;
  }

  .ap-story {
    padding: 36px 18px;
  }

  .ap-lists {
    padding: 12px 18px 40px;
    gap: 28px;
  }

  .ap-cta {
    padding: 4px 18px 40px;
  }

  .ap-cta__btn {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
  }

  /* Footer */
  .site-footer__nav {
    flex-direction: column;
    gap: 10px;
  }

  .site-footer__inner {
    padding: 28px 18px;
  }

  .site-footer__bottom {
    padding: 12px 18px;
    font-size: .55rem;
  }

  /* Contact */
  .contact-wrap {
    padding: 40px 18px 56px;
  }

  .admin__main {
    padding: 24px 14px;
  }

  .param-card {
    padding: 22px 16px;
  }

  .login-page {
    padding: 32px 16px;
  }

  .login-card {
    padding: 28px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PAGE CONTACT — Fine Art Form
   ═══════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.contact-wrap {
  min-height: calc(100dvh - var(--nav-h));
  background: var(--beige-p);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 64px 96px;
  gap: 48px;
}

/* ── Hero ── */
.contact-hero {
  text-align: center;
  max-width: 620px;
}

.contact-hero__overline {
  font-size: .62rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-hero__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 14px;
}

.contact-hero__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
  opacity: .6;
}

.contact-hero__subtitle {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
}

/* ── Form grid — deux colonnes ── */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 72px;
  width: 100%;
  max-width: 1100px;
  align-items: start;
}

/* ── Colonnes ── */
.cf-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ── Groupes (fieldsets) ── */
.cf-group {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Titres de section ── */
.cf-legend {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .02em;
  padding: 0;
  margin-bottom: 10px;
}

.cf-legend--sub {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/* ── Labels ── */
.cf-label {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 9px;
}

.cf-label span { color: var(--taupe); }

/* ── Champs de saisie (rounded-full) ── */
.cf-field {
  display: flex;
  flex-direction: column;
}

.cf-input {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1.5px solid rgba(182, 158, 137, .38);
  border-radius: 50px;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.cf-input::placeholder { color: rgba(90, 78, 58, .35); }

.cf-input:focus {
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(182, 158, 137, .13);
}

.cf-input[type="date"] { color-scheme: light; }

/* ── Zone de texte ── */
.cf-textarea {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1.5px solid rgba(182, 158, 137, .38);
  border-radius: 18px;
  padding: 18px 24px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  resize: vertical;
  min-height: 170px;
  width: 100%;
  line-height: 1.75;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.cf-textarea::placeholder { color: rgba(90, 78, 58, .35); }

.cf-textarea:focus {
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(182, 158, 137, .13);
}

/* ── Cases à cocher ── */
.cf-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.cf-check {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  user-select: none;
}

.cf-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cf-check__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(182, 158, 137, .5);
  border-radius: 5px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease), background var(--ease);
  position: relative;
}

.cf-check__box::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--beige-p);
  border-bottom: 1.5px solid var(--beige-p);
  transform: rotate(45deg) scale(0) translateY(-1px);
  transform-origin: center;
  transition: transform .15s ease;
}

.cf-check input:checked ~ .cf-check__box {
  background: var(--taupe);
  border-color: var(--taupe);
}

.cf-check input:checked ~ .cf-check__box::after {
  transform: rotate(45deg) scale(1) translateY(-1px);
}

.cf-check:hover .cf-check__box { border-color: var(--taupe); }

.cf-check__label {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.6;
}

/* ── Sélecteurs radio (circulaires) ── */
.cf-radios {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 14px;
}

.cf-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.cf-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cf-radio__disc {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(182, 158, 137, .5);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease);
  position: relative;
}

.cf-radio__disc::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--taupe);
  transform: scale(0);
  transition: transform .18s cubic-bezier(.4, 0, .2, 1);
}

.cf-radio input:checked ~ .cf-radio__disc { border-color: var(--taupe); }
.cf-radio input:checked ~ .cf-radio__disc::after { transform: scale(1); }
.cf-radio:hover .cf-radio__disc { border-color: var(--taupe); }

.cf-radio__label {
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.55;
}

/* ── Packs — radio cards verticales ── */
.cf-radios--packs {
  grid-template-columns: 1fr;
  gap: 12px;
}

.cf-radio--pack {
  align-items: flex-start;
  border: 1.5px solid rgba(182, 158, 137, .28);
  border-radius: 14px;
  padding: 16px 18px;
  gap: 14px;
  transition: border-color var(--ease), background var(--ease);
}

.cf-radio--pack:has(input:checked) {
  border-color: var(--taupe);
  background: rgba(182, 158, 137, .07);
}

.cf-radio--pack:hover { border-color: rgba(182, 158, 137, .6); }

.cf-radio__pack-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cf-radio__pack-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
}

.cf-radio__pack-desc {
  font-size: .72rem;
  font-weight: 300;
  color: #8a7a63;
}

/* ── Bouton de soumission pleine largeur ── */
.cf-submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(182, 158, 137, .2);
  margin-top: 4px;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 64px;
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.cf-submit svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.cf-submit:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  box-shadow: 0 8px 32px rgba(166, 124, 48, .38);
  transform: translateY(-2px);
}

.cf-submit:hover svg { transform: translate(3px, -3px); }

/* ── Message de succès ── */
.contact-success {
  text-align: center;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.contact-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(182, 158, 137, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
}

.contact-success__icon svg { width: 28px; height: 28px; }

.contact-success__title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--dark);
}

.contact-success__text {
  font-size: .85rem;
  font-weight: 300;
  color: var(--text-body);
  max-width: 380px;
  line-height: 1.85;
}

/* ── Message d'erreur ── */
.contact-error {
  background: rgba(182, 80, 80, .06);
  border: 1px solid rgba(182, 80, 80, .22);
  border-radius: 12px;
  padding: 14px 28px;
  font-size: .8rem;
  color: #8b2b2b;
  max-width: 700px;
  width: 100%;
  text-align: center;
}

/* ── Ligne d'icônes de contact ── */
.contact-info {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(182, 158, 137, .2);
  width: 100%;
  max-width: 1100px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #8a7a63;
  transition: color var(--ease);
}

a.contact-info__item:hover { color: var(--taupe); }

.contact-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(182, 158, 137, .35);
  flex-shrink: 0;
  transition: border-color var(--ease), background var(--ease);
}

.contact-info__icon svg { width: 14px; height: 14px; }

a.contact-info__item:hover .contact-info__icon {
  border-color: var(--taupe);
  background: rgba(182, 158, 137, .08);
}

.contact-info__text {
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .04em;
}

.contact-info__sep {
  width: 1px;
  height: 30px;
  background: rgba(182, 158, 137, .25);
}

/* ── Responsive contact ── */
@media (max-width: 900px) {
  .contact-wrap {
    padding: 64px 40px 80px;
    gap: 52px;
  }

  .contact-form {
    gap: 0 48px;
  }

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

@media (max-width: 767px) {
  .contact-wrap {
    padding: 40px 24px 56px;
    gap: 36px;
  }

  .contact-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cf-submit-row {
    grid-column: 1;
    padding-top: 16px;
  }

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

  .contact-info {
    gap: 16px;
    padding-top: 16px;
  }

  .contact-info__sep {
    display: none;
  }

  /* Info items en grille 2x2 */
  .contact-info__item {
    gap: 9px;
  }
}

@media (max-width: 480px) {
  .contact-wrap {
    padding: 36px 18px 52px;
    gap: 28px;
  }

  .contact-hero__title {
    font-size: clamp(1.65rem, 9vw, 2rem);
  }

  .cf-radios {
    grid-template-columns: 1fr;
  }

  .cf-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PAGE À PROPOS — Fine Art
   ═══════════════════════════════════════════════════════════ */

.apropos-page {
  background: var(--beige-p);
  min-height: calc(100dvh - var(--nav-h));
  position: relative;
  padding-bottom: 60px;
}

/* ── Filigrane floral ── */
.ap-floral {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: #8B7355;
  opacity: 0.07;
}

.ap-floral--tl {
  top: -20px;
  left: -50px;
  width: 300px;
}

.ap-floral--br {
  bottom: 40px;
  right: -40px;
  width: 320px;
  transform: rotate(155deg) scaleX(-1);
}

/* ── Hero ── */
.ap-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 44px 40px 40px;
}

.ap-hero__logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: 50%;
  opacity: 0.88;
}

.ap-hero__logo-placeholder {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--taupe);
  opacity: 0.55;
}

.ap-hero__logo-placeholder svg { width: 100%; height: 100%; }

.ap-hero__overline {
  font-family: var(--sans);
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.ap-hero__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin: 0 0 18px;
}

.ap-hero__intro {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-style: italic;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.88;
}

.ap-hero__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto 0;
  opacity: .6;
}

/* ── Courbes ── */
.ap-wave {
  position: relative;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
  margin: 0;
}

.ap-wave svg { width: 100%; display: block; }

/* ── Story ── */
.ap-story {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
}

.ap-story__heading {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--taupe);
  letter-spacing: .06em;
  margin: 0 0 20px;
}

.ap-story__narrative {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: var(--dark);
}

.ap-story__narrative p { margin: 0 0 1.2em; }
.ap-story__narrative p:last-child { margin-bottom: 0; }

/* ── Listes ── */
.ap-lists {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.ap-list__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 20px;
}

.ap-list__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: var(--taupe);
}

.ap-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ap-list__item {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}

.ap-list__item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--taupe);
  opacity: .6;
}

/* ── CTA ── */
.ap-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8px 40px 48px;
}

.ap-cta__btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  padding: 14px 52px;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.ap-cta__btn:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(166, 124, 48, .35);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .ap-hero__title {
    font-size: clamp(1.7rem, 8vw, 2rem);
  }
}

@media (max-width: 767px) {
  .ap-hero  { padding: 40px 24px 28px; }
  .ap-story { padding: 44px 24px; }
  .ap-lists { grid-template-columns: 1fr; gap: 36px; padding: 16px 24px 44px; }
  .ap-floral { display: none; }
  .ap-cta   { padding: 4px 24px 48px; }
}

/* ─── Footer global ───────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 64px;
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-l);
  letter-spacing: .06em;
}

.site-footer__tagline {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.site-footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer__nav a {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color var(--ease);
}

.site-footer__nav a:hover { color: var(--gold-l); }

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.site-footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-size: .72rem;
  transition: color var(--ease);
}

.site-footer__contact a:hover { color: var(--gold-l); }

.site-footer__contact svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: .7;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  text-align: center;
  padding: 14px 64px;
  font-size: .6rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .25);
}

@media (max-width: 900px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
  }
  .site-footer__contact { align-items: flex-start; }
  .site-footer__bottom  { padding: 14px 24px; }
}

@media (max-width: 767px) {
  .site-footer__nav {
    gap: 4px;
    flex-direction: column;
  }

  /* Tap targets 44px minimum sur les liens footer */
  .site-footer__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    font-size: .72rem;
  }

  /* Liens contact footer : zone de touch */
  .site-footer__contact a {
    min-height: 44px;
    font-size: .78rem;
  }
}

