/* ============================================================
   1. POLICES
   ============================================================ */

/* Cinzel : nom du salon, titres, boutons, menu */
@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* EB Garamond : texte courant */
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Pinyon Script : calligraphie (slogan) */
@font-face {
  font-family: "Pinyon Script";
  src: url("../fonts/pinyon-script-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   2. BASES
   ============================================================ */

/* Le padding et la bordure sont comptés dans la largeur */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Espace sous l'en-tête collant quand on clique sur un lien du menu */
html {
  scroll-padding-top: 80px;
}

/* Cache un élément à l'écran, mais le garde pour Google et les lecteurs d'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Couleurs de la charte */
:root {
  --noir: #000000;
  --or: #c9964f;
  --ivoire: #f2e6d3;
}

body {
  margin: 0;
  background: var(--noir);
  color: var(--ivoire);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Sécurité : rien ne peut dépasser la largeur de l'écran */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Les médias ne dépassent jamais de leur conteneur */
img,
svg,
iframe,
canvas {
  max-width: 100%;
}

a {
  color: var(--or);
  text-decoration: none;
}

/* Texte en or métallique (réutilisable partout) */
.gold-text {
  background: linear-gradient(180deg, #f4d59a, #d6a560 45%, #9a6a35);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   3. BOUTONS
   ============================================================ */

/* Bouton principal : fond doré */
.btn-appeler {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(180deg, #f4d59a, #c9964f 55%, #9a6a35);
  color: #000000;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.btn-appeler svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Bouton secondaire : contour doré */
.btn-contour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--or);
  color: var(--or);
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.btn-contour svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================================
   4. EN-TÊTE
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 150, 79, 0.3);
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 700;
}

/* Monogramme MB à double anneau */
.mono {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--or);
  box-shadow:
    0 0 0 3px var(--noir),
    0 0 0 4px #7a5128;
  display: grid;
  place-items: center;
  font-size: 16px;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.brand-name small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

/* Menu ordinateur */
.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  position: relative;
  padding: 8px 2px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
}

/* Trait doré sous les liens au survol */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

/* Bouton burger (caché sur ordinateur) */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: none;
  border: 1px solid rgba(201, 150, 79, 0.3);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--or);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Burger → croix quand le menu est ouvert */
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Menu mobile déroulant */
.m-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(201, 150, 79, 0.3);
  padding: 14px 0 22px;
}

.m-menu a {
  display: block;
  text-align: center;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 12px;
}

/* Barre d'action mobile (cachée par défaut) */
.m-bar {
  display: none;
}

/* ============================================================
   5. HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

/* Poussière d'or (canvas) */
.dust {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 70%;
  pointer-events: none;
}

/* Cadre art déco */
.deco {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Filets du cadre */
.edge {
  position: absolute;
  background: var(--or);
  opacity: 0.8;
}

.edge-t,
.edge-b {
  height: 1px;
  left: 30px;
  right: 30px;
}

.edge-l,
.edge-r {
  width: 1px;
  top: 30px;
  bottom: 30px;
}

.edge-t {
  top: 0;
}
.edge-b {
  bottom: 0;
}
.edge-l {
  left: 0;
}
.edge-r {
  right: 0;
}

/* Coins en filigrane (un dessin, retourné en miroir) */
.coin {
  position: absolute;
  width: 46px;
  height: 46px;
  color: var(--or);
}

.coin-hg {
  top: -6px;
  left: -6px;
}
.coin-hd {
  top: -6px;
  right: -6px;
  transform: scaleX(-1);
}
.coin-bg {
  bottom: -6px;
  left: -6px;
  transform: scaleY(-1);
}
.coin-bd {
  bottom: -6px;
  right: -6px;
  transform: scale(-1);
}

/* Textes du hero */
.hero-text {
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crown {
  width: 74px;
  height: 37px;
  color: var(--or);
}

.hero .mono {
  width: 84px;
  height: 84px;
  font-size: 32px;
  margin-top: -4px;
}

.wordmark {
  margin-top: 18px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(40px, 11vw, 72px);
  line-height: 1;
  letter-spacing: 0.04em;
}

.wordmark-sub {
  margin-top: 4px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(21px, 5.6vw, 34px);
  letter-spacing: 0.14em;
}

.tagline {
  margin-top: 14px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--ivoire);
  text-wrap: balance;
}

.slogan {
  margin: 22px 0 14px;
  font-family: "Pinyon Script", cursive;
  font-size: clamp(34px, 8vw, 50px);
  line-height: 1.1;
  color: var(--or);
  text-wrap: balance;
}

.hero-intro {
  max-width: 30em;
  margin: 0 auto 26px;
  font-size: 17px;
  color: #bfaf96;
  text-wrap: balance;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Arche photo */
.arch {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  margin: 60px auto 0;
  padding: 8px;
  border: 1px solid var(--or);
  border-radius: 999px 999px 0 0;
}

.arch-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(201, 150, 79, 0.4);
  border-radius: 999px 999px 0 0;
  background: radial-gradient(ellipse at 50% 30%, #3a2a18, #120c06 70%);
  display: grid;
  place-items: center;
  color: #bfaf96;
  font-style: italic;
  filter: saturate(0.55) contrast(1.05) brightness(0.9) sepia(0.25);
}

/* ============================================================
   6. SECTIONS : éléments communs
   ============================================================ */

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
  border-top: 1px solid rgba(201, 150, 79, 0.18);
}

/* Titre de section */
.sec-head {
  text-align: center;
  margin-bottom: 34px;
}

.sec-head h2 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(26px, 6vw, 40px);
  line-height: 1.15;
}

.sec-head p {
  max-width: 34em;
  margin: 10px auto 0;
  color: #bfaf96;
  text-wrap: balance;
}

/* Séparateur doré avec losange */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.divider::before,
.divider::after {
  content: "";
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or));
}

.divider::after {
  background: linear-gradient(90deg, var(--or), transparent);
}

.divider svg {
  width: 10px;
  height: 10px;
  fill: var(--or);
}

/* ============================================================
   7. SECTION SOINS SIGNATURE
   ============================================================ */

.sig {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  border-top: 1px solid rgba(201, 150, 79, 0.3);
}

.sig li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 150, 79, 0.3);
}

/* Icône ronde */
.p-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--or);
  display: grid;
  place-items: center;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--or);
}

.p-icon svg {
  width: 19px;
  height: 19px;
  fill: url(#goldFill);
}

/* Nom du soin */
.p-name {
  flex: 1;
  min-width: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

/* Prix */
.p-price {
  text-align: right;
  line-height: 1.1;
}

.p-price small {
  display: block;
  margin-bottom: 3px;
  font-style: italic;
  font-size: 13px;
  color: #bfaf96;
}

/* Étiquette dorée du prix */
.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f4d59a, #c9964f 55%, #9a6a35);
  color: #000000;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 700;
  font-size: 19px;
  white-space: nowrap;
}

.pill span {
  font-size: 11px;
}

/* ============================================================
   8. SECTION TARIFS
   ============================================================ */

/* Onglets */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 4px;
  border-bottom: 1px solid rgba(201, 150, 79, 0.3);
}

.tabs button {
  position: relative;
  padding: 12px 14px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #bfaf96;
}

/* Onglet actif */
.tabs button[aria-selected="true"] {
  color: #f4d59a;
}

.tabs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: var(--or);
}

/* Disposition : visuel + listes */
.price-layout {
  display: grid;
  gap: 26px;
  margin-top: 26px;
}

/* Visuel de la catégorie */
.cat-visual {
  aspect-ratio: 16 / 10;
  padding: 7px;
  border: 1px solid rgba(201, 150, 79, 0.3);
}

.cat-visual div {
  height: 100%;
  border: 1px solid rgba(201, 150, 79, 0.2);
  background: radial-gradient(ellipse at 30% 20%, #3a2a18, #0e0905 75%);
  display: grid;
  place-items: center;
  font-family: "Pinyon Script", cursive;
  font-size: 40px;
  color: var(--or);
}

/* Lignes de prix avec pointillés */
.plist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plist li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  break-inside: avoid;
}

.dots {
  flex: 1;
  min-width: 16px;
  border-bottom: 1px dotted #7a5128;
  transform: translateY(-5px);
}

.plist b {
  font-weight: 400;
  color: var(--or);
  white-space: nowrap;
}

.plist em {
  font-size: 14px;
  color: #bfaf96;
}

/* ============================================================
   8 bis. SECTION PACK MARIÉE
   ============================================================ */

.bridal {
  display: grid;
  gap: 22px;
}

/* Carrousel des photos (mobile) */
.bridal-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.bridal-slider::-webkit-scrollbar {
  display: none;
}

.bridal-slider .photo {
  scroll-snap-align: center;
}

/* Points indicateurs du carrousel */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--or);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.dot.is-active {
  background: var(--or);
  transform: scale(1.25);
}

/* Cadres photo */
.photo {
  aspect-ratio: 4 / 3;
  padding: 7px;
  border: 1px solid rgba(201, 150, 79, 0.3);
}

.photo div,
.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(201, 150, 79, 0.2);
  background: radial-gradient(ellipse at 50% 25%, #3d2c1a, #0e0905 72%);
}

/* Carte centrale, façon faire-part */
.card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 34px 24px;
  background: #15110c;
  border: 1px solid rgba(201, 150, 79, 0.4);
  text-align: center;
}

.card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 150, 79, 0.2);
  pointer-events: none;
}

.card h2 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(28px, 6vw, 38px);
  line-height: 1.15;
}

.script {
  margin: 4px 0 10px;
  font-family: "Pinyon Script", cursive;
  font-size: 34px;
  line-height: 1.2;
  color: var(--or);
}

/* Liste des 2 prix */
.bridal-prices {
  list-style: none;
  width: 100%;
  max-width: 320px;
  margin: 6px 0 22px;
  padding: 0;
}

.bridal-prices li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 150, 79, 0.2);
}

.bridal-prices li:last-child {
  border-bottom: 0;
}

.bridal-prices b {
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  color: var(--or);
  white-space: nowrap;
}

/* ============================================================
   8 ter. SECTION GALERIE
   ============================================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 28px;
}

/* Une vignette */
.g-item {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(201, 150, 79, 0.2);
}

/* La photo (provisoire ou vraie image) */
.g-photo,
.g-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: radial-gradient(ellipse at 40% 30%, #3a2a18, #0c0804 75%);
  transition: transform 0.6s ease;
}

/* Légende en bas de la vignette */
.g-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 10px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #f4d59a;
}

/* Sur ordinateur (souris) : légende et zoom au survol */
@media (hover: hover) {
  .g-item figcaption {
    opacity: 0;
    transform: translateY(6px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .g-item:hover figcaption {
    opacity: 1;
    transform: none;
  }

  .g-item:hover .g-photo,
  .g-item:hover img {
    transform: scale(1.05);
  }
}

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

/* ============================================================
   8 quater. SECTION CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  gap: 18px;
}

/* Liste des moyens de contact */
.c-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #15110c;
  border: 1px solid rgba(201, 150, 79, 0.3);
  color: var(--ivoire);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.c-item:hover,
.c-item:focus-visible {
  border-color: var(--or);
  transform: translateY(-1px);
}

.c-item .p-icon {
  width: 46px;
  height: 46px;
}

.c-item svg {
  width: 20px;
  height: 20px;
  fill: var(--or);
}

.c-item strong {
  display: block;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--or);
}

/* Horaires et adresse */
.hours,
.map {
  padding: 22px;
  background: #15110c;
  border: 1px solid rgba(201, 150, 79, 0.3);
}

.hours h3,
.map h3 {
  margin: 0 0 10px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--or);
}

.hours dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  margin: 0;
}

.hours dd {
  margin: 0;
  text-align: right;
}

.hours-note {
  margin: 10px 0 0;
  font-style: italic;
  color: #bfaf96;
}

.hours address {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 150, 79, 0.2);
  font-style: normal;
}

.hours address strong {
  display: block;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--or);
}

/* Informations encore manquantes */
.todo {
  color: #f4d59a;
  font-style: italic;
}

/* Plan d'accès */
.map-box {
  width: 100%;
  min-height: 200px;
  height: calc(100% - 40px);
  display: grid;
  place-items: center;
  border: 0;
  border: 1px solid rgba(201, 150, 79, 0.2);
  background: #0e0905;
  filter: grayscale(0.3) brightness(0.85);
}

/* ============================================================
   8 quinquies. PIED DE PAGE
   ============================================================ */

.site-footer {
  padding: 44px 0 34px;
  border-top: 1px solid rgba(201, 150, 79, 0.3);
  text-align: center;
}

.f-grid {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.f-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}

.f-links a {
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #bfaf96;
  transition: color 0.3s ease;
}

.f-links a:hover,
.f-links a:focus-visible {
  color: var(--or);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--or);
  display: grid;
  place-items: center;
  transition: background 0.3s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: rgba(201, 150, 79, 0.15);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: var(--or);
}

.copy {
  margin: 26px 0 0;
  font-size: 15px;
  color: #bfaf96;
}

/* ============================================================
   8 sexies. PAGE 404
   ============================================================ */

.page-404 {
  min-height: 100svh;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 40px 20px;
  text-align: center;
}

.page-404 .mono {
  width: 84px;
  height: 84px;
  font-size: 32px;
  margin-top: -4px;
}

.page-404 h1 {
  margin: 10px 0 0;
}

/* ============================================================
   9. RESPONSIVE : TÉLÉPHONE (759px et moins)
   ============================================================ */

@media (max-width: 759px) {
  /* En-tête : menu caché, burger visible */
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  /* Le bouton Appeler passe dans la barre du bas */
  .site-header .btn-appeler {
    display: none;
  }

  /* Barre d'action fixée en bas de l'écran */
  .m-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.94);
    border-top: 1px solid var(--or);
  }

  .m-bar a {
    justify-content: center;
    min-height: 48px;
    padding: 0 10px;
  }

  /* Espace en bas pour que la barre ne cache pas la fin de la page */
  body {
    padding-bottom: 76px;
  }

  /* Hero plus compact */
  .hero {
    padding: 28px 12px 56px;
  }

  .deco {
    padding: 34px 16px;
  }

  .arch {
    margin: 100px auto 0;
  }

  /* Tarifs : ajuster les lignes de prix sur petit écran */
  .plist li {
    font-size: 16px;
  }

  .plist b {
    flex: none;
  }

  .plist li > span:first-child {
    flex: 0 1 auto;
    min-width: 0;
  }

  .dots {
    flex: 1 1 10px;
    min-width: 10px;
  }

  .plist {
    columns: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .plist li {
    max-width: 100%;
  }

  /* Empêche les colonnes de la grille de s'élargir au-delà de l'écran */
  .price-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-layout > * {
    min-width: 0;
  }
}

/* ============================================================
   10. RESPONSIVE : ORDINATEUR (900px et plus)
   ============================================================ */

@media (min-width: 900px) {
  /* Hero : photo à gauche, texte à droite */
  .hero {
    padding: 80px 40px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 60px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
  }

  .arch {
    order: -1;
    margin: 0;
  }

  .deco {
    padding: 70px;
  }

  /* Soins : 2 colonnes */
  .sig {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }

  /* Tarifs : listes sur 2 colonnes */
  .plist {
    columns: 2;
    column-gap: 40px;
  }

  /* Pack Mariée : photo + carte */
  .bridal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bridal-slider .photo {
    aspect-ratio: auto;
    min-height: 320px;
  }

  /* Galerie : 4 colonnes */
  .gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  /* Contact : 2 colonnes */
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid .map {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   11. RESPONSIVE : GRAND ÉCRAN (1100px et plus)
   ============================================================ */

@media (min-width: 1100px) {
  /* Soins : 3 colonnes */
  .sig {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Tarifs : visuel à gauche, prix à droite */
  .price-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 50px;
    align-items: start;
  }

  .cat-visual {
    aspect-ratio: 3 / 4;
  }

  /* Pack Mariée : photo + carte + photo */
  .bridal {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 28px;
  }

  /* Le carrousel redevient deux photos séparées */
  .bridal-slider {
    display: contents;
  }

  .bridal-slider .photo:last-child {
    order: 1;
  }

  .slider-dots {
    display: none;
  }

  /* Contact : 3 colonnes */
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  }

  .contact-grid .map {
    grid-column: auto;
  }

  /* Pied de page : logo, liens, réseaux sur une ligne */
  .f-grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }
}

/* ============================================================
   12. ANIMATIONS (si la visiteuse ne les a pas désactivées)
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  /* Défilement doux vers les sections */
  html {
    scroll-behavior: smooth;
  }

  /* Entrée du hero : le cadre se dessine */
  .edge-t,
  .edge-b {
    animation: dessinerX 1.1s cubic-bezier(0.6, 0, 0.2, 1) both;
  }

  .edge-l,
  .edge-r {
    animation: dessinerY 1.1s cubic-bezier(0.6, 0, 0.2, 1) 0.15s both;
  }

  .coin {
    animation: apparaitre 0.6s ease 0.9s both;
  }

  /* Entrée du hero : l'arche monte, la couronne se pose */
  .arch {
    animation: monter 1s ease 0.5s both;
  }

  .hero .crown {
    animation: poser 0.8s cubic-bezier(0.3, 1.4, 0.5, 1) 1s both;
  }

  .hero .mono {
    animation: apparaitre 0.7s ease 1.1s both;
  }

  /* Entrée du hero : les textes apparaissent en cascade */
  .tagline,
  .slogan,
  .hero-intro,
  .hero-btns {
    animation: apparaitre 0.8s ease both;
  }

  .tagline {
    animation-delay: 1.7s;
  }
  .slogan {
    animation-delay: 1.95s;
  }
  .hero-intro {
    animation-delay: 2.1s;
  }
  .hero-btns {
    animation-delay: 2.25s;
  }

  /* Reflet de lumière sur le nom du salon */
  .shimmer {
    background:
      linear-gradient(
        110deg,
        transparent 35%,
        rgba(255, 243, 209, 0.9) 50%,
        transparent 65%
      ),
      linear-gradient(180deg, #f4d59a, #d6a560 45%, #9a6a35);
    background-size:
      260% 100%,
      100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    animation: reflet 2.2s ease 1.3s both;
  }
}

/* ============================================================
   13. RECETTES D'ANIMATION (@keyframes)
   ============================================================ */

@keyframes dessinerX {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes dessinerY {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes apparaitre {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes poser {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes reflet {
  from {
    background-position:
      100% 0,
      0 0;
  }
  to {
    background-position:
      0 0,
      0 0;
  }
}
