/* ==========================================================================
   CUSTOMIX EVENTS — Feuille de style principale
   Charte : "Champagne & Blush" — exécution couture
   Palette chaude, filets d'or nets, très grandes respirations, typographie
   ample. Aucune ombre portée, aucun arrondi de type application.
   ========================================================================== */

/* --- 1. Jetons de design -------------------------------------------------- */
:root {
  /* Fonds */
  --creme:       #FDF9F3;
  --blush:       #FAEAE3;
  --blush-fort:  #F5D5CA;
  --carte:       #FFFDFA;

  /* Prune — profondeur chaude, appel final et pied de page */
  --prune:       #3E211E;
  --prune-2:     #52302B;

  /* Or */
  --or:          #C69A46;
  --or-clair:    #EBD7A6;
  --or-profond:  #86611D;
  --or-filet:    rgba(198, 154, 70, 0.4);
  --or-filet-nuit: rgba(235, 215, 166, 0.3);

  /* Rose */
  --rose:        #DE968D;
  --rose-profond:#9E4C42;
  --rose-pale:   #F5DDD7;

  /* Textes */
  --encre:       #35211C;
  --gris:        #7B655E;
  --ivoire:      #FBF2EA;
  --gris-nuit:   #C0A399;

  /* Typographies */
  --display: "Bodoni Moda", Georgia, serif;
  --script:  "Pinyon Script", cursive;
  --texte:   "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Échelle — plus ample, le luxe se lit de loin */
  --t-xxl: clamp(3rem, 8.5vw, 7rem);
  --t-xl:  clamp(2.1rem, 5vw, 3.9rem);
  --t-l:   clamp(1.45rem, 2.5vw, 2rem);
  --t-m:   clamp(1rem, 1.25vw, 1.09rem);
  --t-s:   0.95rem;
  --t-xs:  0.7rem;

  /* Mesures — la respiration est le premier signe de luxe */
  --largeur: 1300px;
  --gouttiere: clamp(22px, 6vw, 76px);
  --section-y: clamp(100px, 13vw, 210px);
  --arche: 50% 50% 0 0 / 34% 34% 0 0;
  --transition: 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --- 2. Réinitialisation -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--encre);
  font-family: var(--texte);
  font-size: var(--t-m);
  font-weight: 300;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0;
}

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

::selection { background: var(--blush-fort); color: var(--encre); }
:focus-visible { outline: 1px solid var(--or-profond); outline-offset: 5px; }

/* --- 3. Utilitaires ------------------------------------------------------- */
.contenu {
  width: 100%;
  max-width: var(--largeur);
  margin-inline: auto;
  padding-inline: var(--gouttiere);
}
.contenu--etroit { max-width: 900px; }

.section { padding-block: var(--section-y); position: relative; }
.section--centre { text-align: center; }
.section--blush { background: var(--blush); }
.section--prune { background: var(--prune); color: var(--ivoire); }

/* Petites capitales espacées : la signature typographique du site */
.surtitre {
  font-family: var(--texte);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin: 0 0 2.4rem;
}
.section--prune .surtitre { color: var(--or-clair); }

.titre-section { font-size: var(--t-xl); max-width: 17ch; }
.section--centre .titre-section { margin-inline: auto; max-width: 22ch; }
.titre-section em { font-style: normal; color: var(--rose-profond); }
.section--prune .titre-section em { color: var(--or-clair); }

.texte-doux { color: var(--gris); max-width: 56ch; }
.section--centre .texte-doux { margin-inline: auto; }
.section--prune .texte-doux { color: var(--gris-nuit); }

/* Filet d'or centré, ornement unique du site */
.filet {
  width: 92px;
  height: 1px;
  border: 0;
  margin: 2.6rem 0;
  background: linear-gradient(to right, transparent, var(--or), transparent);
}
.section--centre .filet, .filet--centre { margin-inline: auto; }

/* Feuille d'or */
.dore {
  background: linear-gradient(103deg,
    #96701F 0%, #E7CE97 25%, #C69A46 43%, #EFDDB0 61%, #96701F 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: feuille-or 14s linear infinite;
}
@keyframes feuille-or { to { background-position: -260% 0; } }

/* Boutons — rectangle net, filet fin, remplissage lent */
.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding: 1.35rem 3.1rem 1.35rem 3.44rem;   /* compense l'interlettrage */
  border: 1px solid var(--or-profond);
  background: transparent;
  color: var(--encre);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--transition), border-color var(--transition);
}
.bouton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--encre);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.bouton span { position: relative; z-index: 1; }
.bouton:hover { color: var(--creme); border-color: var(--encre); }
.bouton:hover::before { transform: scaleY(1); }

.bouton--plein { background: var(--encre); border-color: var(--encre); color: var(--creme); }
.bouton--plein::before { background: var(--rose-profond); }
.bouton--plein:hover { color: var(--creme); border-color: var(--rose-profond); }

.section--prune .bouton { color: var(--ivoire); border-color: var(--or); }
.section--prune .bouton::before { background: var(--or-clair); }
.section--prune .bouton:hover { color: var(--prune); border-color: var(--or-clair); }

/* Lien souligné qui se trace */
.lien-fleche {
  font-size: var(--t-xs);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--encre);
  display: inline-block;
  padding-bottom: 0.45rem;
  position: relative;
  transition: color var(--transition);
}
.lien-fleche::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--or-profond);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform var(--transition);
}
.lien-fleche:hover { color: var(--rose-profond); }
.lien-fleche:hover::after { transform: scaleX(0); }
.section--prune .lien-fleche { color: var(--or-clair); }
.section--prune .lien-fleche::after { background: var(--or-filet-nuit); }
.section--prune .lien-fleche:hover { color: var(--rose); }

/* --- 4. En-tête ----------------------------------------------------------- */
.entete {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding-block: 2rem;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), padding var(--transition),
              border-color var(--transition);
}
.entete--figee {
  background: rgba(253, 249, 243, 0.95);
  backdrop-filter: blur(12px);
  padding-block: 1rem;
  border-bottom-color: var(--or-filet);
}
.entete__interieur {
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
}

.marque {
  font-family: var(--script);
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  line-height: 1;
  white-space: nowrap;
  padding-block: 0.2em;
}

/* --- 5. Navigation -------------------------------------------------------- */
.nav { display: flex; align-items: center; gap: 2.6rem; }
.nav__liste { display: flex; align-items: center; gap: 2.2rem; }

.nav__lien,
.nav__declencheur {
  font-family: var(--texte);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--encre);
  background: none;
  border: 0;
  padding: 0.4rem 0;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}
.nav__lien::after,
.nav__declencheur::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--or-profond);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__lien:hover, .nav__declencheur:hover { color: var(--or-profond); }
.nav__lien:hover::after,
.nav__declencheur:hover::after,
.nav__lien[aria-current="page"]::after { transform: scaleX(1); }

.nav__chevron { font-size: 0.5em; transition: transform var(--transition); }
.nav__declencheur[aria-expanded="true"] .nav__chevron { transform: rotate(180deg); }

.sous-menu-conteneur { position: relative; }
.sous-menu {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: -1.6rem;
  min-width: 278px;
  background: var(--creme);
  border: 1px solid var(--or-filet);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.sous-menu[data-ouvert="true"] { opacity: 1; visibility: visible; transform: none; }
.sous-menu a {
  display: block;
  padding: 0.85rem 1.8rem;
  font-size: var(--t-s);
  color: var(--encre);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.sous-menu a:hover { background: var(--blush); color: var(--rose-profond); padding-left: 2.2rem; }

.nav__bouton { padding: 0.9rem 1.9rem 0.9rem 2.24rem; letter-spacing: 0.24em; }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  z-index: 210; position: relative;
}
.burger span {
  display: block; width: 28px; height: 1px;
  background: var(--encre);
  transition: transform var(--transition), opacity var(--transition);
}

/* --- 6. Hero — composition ouverte, sans encadré ---------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 190px 130px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 78% 60% at 50% 4%, rgba(245, 213, 202, 0.72) 0%, transparent 66%),
    radial-gradient(ellipse 60% 46% at 88% 92%, rgba(235, 215, 166, 0.42) 0%, transparent 62%),
    var(--creme);
}

/* Arche d'or tracée lentement, seul ornement du bloc */
.hero__arche {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 84vw);
  height: min(880px, 92svh);
  pointer-events: none;
}
.hero__arche path {
  fill: none;
  stroke: var(--or);
  stroke-width: 1;
  opacity: 0.5;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: tracer 4.6s cubic-bezier(0.6, 0, 0.3, 1) 0.5s forwards;
}
@keyframes tracer { to { stroke-dashoffset: 0; } }

.hero__contenu { position: relative; z-index: 1; max-width: 940px; margin-inline: auto; }

.hero__lieu {
  font-size: var(--t-xs);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-bottom: 2.2rem;
}
.hero__logotype {
  font-family: var(--script);
  font-size: clamp(2.9rem, 7.4vw, 5.4rem);
  line-height: 1.08;
  margin-bottom: 2.6rem;
  padding-block: 0.1em;
}
.hero__titre { font-size: var(--t-xxl); margin-bottom: 2.4rem; }
.hero__titre em { font-style: normal; color: var(--rose-profond); }
.hero__texte {
  max-width: 44ch;
  margin-inline: auto;
  color: var(--gris);
  margin-bottom: 3.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem; justify-content: center; align-items: center; }

.hero__defiler {
  position: absolute;
  bottom: 2.4rem; left: 50%;
  transform: translateX(-50%);
  font-size: var(--t-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gris);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.hero__defiler::after {
  content: "";
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--or), transparent);
}

/* --- 7. Bandeau pleine largeur --------------------------------------------- */
.bandeau {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 320px;
  background: linear-gradient(150deg, var(--blush) 0%, var(--blush-fort) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.bandeau img { width: 100%; height: 100%; object-fit: cover; }
.bandeau__attente {
  font-size: var(--t-xs);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rose-profond);
  text-align: center;
  padding: 1.5rem;
}
.bandeau:has(img) .bandeau__attente { display: none; }

/* --- 8. Duo texte / image --------------------------------------------------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.duo--inverse .duo__media { order: 2; }

.signature {
  font-family: var(--script);
  font-size: 2.3rem;
  color: var(--rose-profond);
  margin-top: 2.2rem;
  line-height: 1.2;
}

/* --- 9. Cadres photo — arche, filet d'or, aucune ombre --------------------- */
.photo {
  position: relative;
  background: linear-gradient(150deg, var(--blush) 0%, var(--blush-fort) 100%);
  border: 1px solid var(--or-filet);
  border-radius: var(--arche);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.photo::after {
  content: attr(data-legende);
  font-size: var(--t-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-profond);
  text-align: center;
  padding: 1.4rem;
  max-width: 80%;
}
.photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.photo:has(img)::after { display: none; }
.photo--paysage { aspect-ratio: 4 / 3; }
.photo--carre   { aspect-ratio: 1 / 1; }
.photo--haute   { aspect-ratio: 3 / 4; }
.photo--droite  { border-radius: 0; }

.section--prune .photo { background: var(--prune-2); border-color: var(--or-filet-nuit); }
.section--prune .photo::after { color: var(--gris-nuit); }

/* --- 10. Les quatre univers ------------------------------------------------ */
.univers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 5rem;
  border-top: 1px solid var(--or-filet);
}
.univer {
  padding: clamp(2.6rem, 4vw, 3.6rem) clamp(1.6rem, 2.6vw, 2.4rem);
  border-bottom: 1px solid var(--or-filet);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: background var(--transition);
}
.univer + .univer { border-left: 1px solid var(--or-filet); }
.univer:hover { background: var(--blush); }
.univer__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--or-profond);
  letter-spacing: 0.22em;
}
.univer__titre { font-size: var(--t-l); }
.univer__texte { font-size: var(--t-s); color: var(--gris); }
.univer__lien { margin-top: auto; padding-top: 1.8rem; }

/* --- 11. Étapes ------------------------------------------------------------ */
.etapes { margin-top: 5rem; border-top: 1px solid var(--or-filet); }
.etape {
  display: grid;
  grid-template-columns: 110px 1fr 1.5fr;
  gap: clamp(1.2rem, 3.5vw, 3.2rem);
  padding-block: clamp(2.2rem, 3.6vw, 3.2rem);
  border-bottom: 1px solid var(--or-filet);
  align-items: baseline;
}
.etape__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--or-profond);
  font-variant-numeric: tabular-nums;
}
.etape__titre { font-size: var(--t-l); }
.etape__texte { color: var(--gris); font-size: var(--t-s); }

/* --- 12. Galerie ----------------------------------------------------------- */
.galerie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  margin-top: 5rem;
}
.galerie > *:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galerie > *:nth-child(1).photo { aspect-ratio: 1 / 1; }

/* --- 13. Carnet d'adresses ------------------------------------------------- */
.carnet {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.9rem 2.4rem;
  margin-top: 3.4rem;
  font-size: var(--t-xs);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gris);
}
.carnet__item { position: relative; }
.carnet__item + .carnet__item::before {
  content: "";
  position: absolute;
  left: -1.25rem; top: 50%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--or);
  transform: translateY(-50%);
}

/* --- 14. Témoignages ------------------------------------------------------- */
.temoignages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 5rem;
  text-align: left;
}
.temoignage { padding-top: 2.4rem; border-top: 1px solid var(--or-filet); }
.temoignage__citation {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--encre);
}
.temoignage__auteur {
  font-size: var(--t-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-top: 2rem;
}

/* --- 15. Appel final ------------------------------------------------------- */
.appel__titre { font-size: var(--t-xl); margin-bottom: 2rem; }
.appel__titre em { font-style: normal; color: var(--or-clair); }
.appel__texte { max-width: 48ch; margin-inline: auto; margin-bottom: 3.4rem; }

/* --- 16. Pied de page ------------------------------------------------------ */
.pied {
  background: var(--prune);
  padding-block: clamp(4rem, 8vw, 6.5rem) 2.2rem;
  font-size: var(--t-s);
  color: var(--gris-nuit);
}
.pied__grille {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  padding-bottom: 3.6rem;
  border-bottom: 1px solid var(--or-filet-nuit);
}
.pied__marque {
  font-family: var(--script);
  font-size: 2.3rem;
  display: block;
  margin-bottom: 1.3rem;
  line-height: 1.2;
}
.pied__titre {
  font-size: var(--t-xs);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 1.6rem;
}
.pied__liste li { margin-bottom: 0.75rem; }
.pied__liste a { transition: color var(--transition); }
.pied__liste a:hover { color: var(--rose-pale); }
.pied__bas {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2.4rem;
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(192, 163, 153, 0.75);
}

/* --- 17. Apparition au défilement ------------------------------------------ */
.reveler {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.3s ease, transform 1.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveler.est-visible { opacity: 1; transform: none; }

.hero__contenu > * { opacity: 0; animation: monter 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero__contenu > *:nth-child(1) { animation-delay: 0.25s; }
.hero__contenu > *:nth-child(2) { animation-delay: 0.45s; }
.hero__contenu > *:nth-child(3) { animation-delay: 0.65s; }
.hero__contenu > *:nth-child(4) { animation-delay: 0.85s; }
.hero__contenu > *:nth-child(5) { animation-delay: 1.05s; }
@keyframes monter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* --- 18. Responsive --------------------------------------------------------- */
@media (max-width: 1080px) {
  .duo { grid-template-columns: 1fr; }
  .duo--inverse .duo__media { order: 0; }
  .univer + .univer { border-left: 0; }
  .etape { grid-template-columns: 72px 1fr; }
  .etape__texte { grid-column: 2; }
  .galerie { grid-template-columns: repeat(2, 1fr); }
  .pied__grille { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--creme);
    flex-direction: column;
    justify-content: center;
    gap: 2.6rem;
    padding: 5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 205;
  }
  .nav[data-ouvert="true"] { transform: none; }
  .nav__liste { flex-direction: column; text-align: center; gap: 1.8rem; }
  .nav .nav__lien, .nav .nav__declencheur { font-size: 0.85rem; }

  .sous-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    min-width: 0;
    padding: 0;
    display: none;
    margin-top: 1.1rem;
  }
  .sous-menu[data-ouvert="true"] { display: block; }
  .sous-menu a { padding: 0.55rem; color: var(--rose-profond); }
  .sous-menu a:hover { padding-left: 0.55rem; background: transparent; }

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

  .hero__actions .bouton { width: 100%; }
  .bandeau { aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  .galerie { grid-template-columns: 1fr; }
  .galerie > *:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .pied__grille { grid-template-columns: 1fr; }
}

/* --- 19. Mouvement réduit --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveler { opacity: 1; transform: none; }
  .hero__contenu > * { opacity: 1; }
  .dore { animation: none; background-position: 30% 0; }
  .hero__arche path { stroke-dashoffset: 0; }
}

/* --- 20. Photos réelles ----------------------------------------------------
   Ajouts liés à l'intégration des photographies.
   -------------------------------------------------------------------------- */

/* Léger agrandissement au survol, contenu par le cadre en arche */
.photo img,
.bandeau img {
  transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.photo:hover img { transform: scale(1.045); }

/* Voile d'or très léger : harmonise des clichés d'expositions différentes */
.photo::before,
.bandeau::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(170deg,
    rgba(198, 154, 70, 0.07) 0%, transparent 45%,
    rgba(158, 76, 66, 0.08) 100%);
}
.photo:not(:has(img))::before,
.bandeau:not(:has(img))::before { display: none; }

.bandeau { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .photo:hover img { transform: none; }
}

/* --- 21. Pages intérieures --------------------------------------------------
   En-tête de page, formules tarifaires, encarts.
   -------------------------------------------------------------------------- */

.entete-page {
  padding: clamp(160px, 20vw, 210px) 0 clamp(60px, 8vw, 110px);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(245, 213, 202, 0.8) 0%, transparent 68%),
    var(--creme);
}
.entete-page__titre { font-size: var(--t-xl); margin-inline: auto; max-width: 20ch; }
.entete-page__titre em { font-style: normal; color: var(--rose-profond); }
.entete-page__texte {
  max-width: 54ch;
  margin: 2.4rem auto 0;
  color: var(--gris);
}

/* Fil d'Ariane */
.fil {
  font-size: var(--t-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-bottom: 1.8rem;
}
.fil a { transition: color var(--transition); }
.fil a:hover { color: var(--rose-profond); }
.fil span { opacity: 0.45; margin-inline: 0.5rem; }

/* --- Formules --------------------------------------------------------------- */
.formules { border-top: 1px solid var(--or-filet); }

.formule {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--or-filet);
}

.formule__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--or-profond);
  letter-spacing: 0.22em;
  margin-bottom: 1.2rem;
}
.formule__titre { font-size: var(--t-l); margin-bottom: 1.4rem; }
.formule__prix {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--rose-profond);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.formule__prix small {
  display: block;
  font-family: var(--texte);
  font-style: normal;
  font-size: var(--t-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 0.5rem;
}
.formule__pour {
  font-size: var(--t-s);
  color: var(--gris);
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--or-filet);
}

.formule__inclus li {
  font-size: var(--t-s);
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.7rem;
  line-height: 1.65;
}
.formule__inclus li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.8em;
  width: 10px; height: 1px;
  background: var(--or);
}
.formule__sous-titre {
  font-size: var(--t-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin: 2rem 0 1.2rem;
}
.formule__sous-titre:first-child { margin-top: 0; }

/* --- Encart --------------------------------------------------------------- */
.encart {
  border: 1px solid var(--or-filet);
  padding: clamp(2rem, 4vw, 3.2rem);
  margin-top: 4rem;
  background: var(--carte);
}
.encart__titre { font-size: var(--t-l); margin-bottom: 1.4rem; }
.encart p { font-size: var(--t-s); color: var(--gris); }
.encart ul { margin-top: 1rem; }
.encart li {
  font-size: var(--t-s);
  color: var(--gris);
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.6rem;
}
.encart li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.8em;
  width: 10px; height: 1px;
  background: var(--rose);
}

.note {
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  color: var(--gris);
  margin-top: 2.4rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .formule { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- 22. Témoignage unique mis en valeur ------------------------------------ */
.temoignages--seul {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.temoignages--seul .temoignage {
  border-top: 0;
  padding-top: 0;
  position: relative;
}
.temoignages--seul .temoignage__citation {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.45;
}
.temoignages--seul .temoignage__auteur { margin-top: 2.4rem; }
.temoignages--seul .temoignage__auteur::before {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--or), transparent);
  margin: 0 auto 1.6rem;
}

/* --- 23. Deux témoignages --------------------------------------------------- */
.temoignages--duo {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1000px;
  margin-inline: auto;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.temoignages--duo .temoignage__citation { font-size: 1.24rem; }

/* --- 24. Formulaires --------------------------------------------------------
   Champs à filet unique, dans l'esprit couture du reste du site.
   -------------------------------------------------------------------------- */

.formulaire { display: grid; gap: 2.4rem; }

.champs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 2.6rem;
}
.champ--large { grid-column: 1 / -1; }

.champ { display: flex; flex-direction: column; }

.champ label {
  font-size: var(--t-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-bottom: 0.8rem;
}
.champ label .requis { color: var(--rose-profond); }

.champ input,
.champ select,
.champ textarea {
  font-family: var(--texte);
  font-size: var(--t-m);
  font-weight: 300;
  color: var(--encre);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--or-filet);
  padding: 0.7rem 0;
  width: 100%;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.champ textarea { resize: vertical; min-height: 130px; line-height: 1.75; }

.champ select {
  background-image: linear-gradient(45deg, transparent 50%, var(--or-profond) 50%),
                    linear-gradient(135deg, var(--or-profond) 50%, transparent 50%);
  background-position: calc(100% - 12px) center, calc(100% - 6px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: none;
  border-bottom-color: var(--rose-profond);
  border-bottom-width: 1px;
}
.champ input::placeholder,
.champ textarea::placeholder { color: var(--gris); opacity: 0.6; }

/* Case à cocher */
.consentement {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: var(--t-s);
  color: var(--gris);
  line-height: 1.7;
  cursor: pointer;
}
.consentement input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 17px;
  width: 17px; height: 17px;
  margin-top: 0.42em;
  border: 1px solid var(--or-profond);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.consentement input:checked { background: var(--rose-profond); border-color: var(--rose-profond); }
.consentement input:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid var(--creme);
  border-width: 0 1px 1px 0;
  transform: rotate(42deg);
}
.consentement a { border-bottom: 1px solid var(--or-filet); }

/* Bloc coordonnées */
.coordonnees { margin-top: 3rem; }
.coordonnees dt {
  font-size: var(--t-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-bottom: 0.5rem;
}
.coordonnees dd {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  font-family: var(--display);
  font-style: italic;
}
.coordonnees dd a { transition: color var(--transition); }
.coordonnees dd a:hover { color: var(--rose-profond); }
.coordonnees dd small {
  display: block;
  font-family: var(--texte);
  font-style: normal;
  font-size: var(--t-s);
  color: var(--gris);
  margin-top: 0.3rem;
}

@media (max-width: 700px) {
  .champs { grid-template-columns: 1fr; gap: 1.9rem; }
}

/* --- 25. Galerie de réalisations -------------------------------------------- */
.galerie--paire {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.4vw, 2.2rem);
}
.galerie--paire > *:nth-child(1) { grid-column: auto; grid-row: auto; }
.galerie--paire > *:nth-child(1).photo { aspect-ratio: 1 / 1; }

.legende {
  font-size: var(--t-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-top: 1rem;
}

.bandeau--haut { aspect-ratio: 16 / 7; }

@media (max-width: 620px) {
  .galerie--paire { grid-template-columns: 1fr; }
}

/* --- 26. Index des univers -------------------------------------------------- */
.univers-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  margin-top: 4rem;
}

.vignette { display: block; }
.vignette__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--or-filet);
  border-radius: var(--arche);
  background: var(--blush);
}
.vignette__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vignette:hover .vignette__image img { transform: scale(1.05); }
.vignette__titre {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  margin-top: 1.2rem;
  transition: color var(--transition);
}
.vignette:hover .vignette__titre { color: var(--rose-profond); }
.vignette__note {
  font-size: var(--t-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-top: 0.5rem;
}

/* Ancrage sous l'en-tête fixe */
.univers-section { scroll-margin-top: 96px; }

.accroche {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.45;
  color: var(--encre);
  max-width: 30ch;
  margin-bottom: 1.8rem;
}
.section--prune .accroche { color: var(--ivoire); }

.retour-index {
  font-size: var(--t-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-profond);
  display: inline-block;
  margin-top: 3rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--or-filet);
  transition: color var(--transition);
}
.retour-index:hover { color: var(--rose-profond); }

/* --- 27. Catalogue de location ---------------------------------------------- */
.catalogue { margin-top: 3rem; border-top: 1px solid var(--or-filet); }

.rayon { padding-block: clamp(2.4rem, 4.5vw, 3.6rem); border-bottom: 1px solid var(--or-filet); }
.rayon__titre { font-size: var(--t-l); margin-bottom: 0.9rem; }
.rayon__texte { font-size: var(--t-s); color: var(--gris); max-width: 62ch; }

.pieces {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px;
  background: var(--or-filet);
  border: 1px solid var(--or-filet);
  margin-top: 2.2rem;
}
.piece {
  background: var(--creme);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: background var(--transition);
}
.piece:hover { background: var(--blush); }
.piece__nom { font-size: var(--t-s); line-height: 1.5; }
.piece__prix {
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-top: auto;
  padding-top: 0.6rem;
}
.section--blush .piece { background: var(--carte); }
.section--blush .piece:hover { background: var(--blush); }

/* --- 28. Cartes d'animation -------------------------------------------------- */
.anims {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--or-filet);
  border: 1px solid var(--or-filet);
  margin-top: 3rem;
}
.anim {
  background: var(--creme);
  padding: 1.9rem 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background var(--transition);
}
.anim:hover { background: var(--blush); }
.section--blush .anim { background: var(--carte); }
.section--blush .anim:hover { background: var(--blush); }

.anim__nom {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.2;
}
.anim__baseline {
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-profond);
  line-height: 1.6;
}
.anim__detail {
  font-size: var(--t-s);
  color: var(--gris);
  line-height: 1.65;
  margin-top: 0.4rem;
}
.anim__prix {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--or-profond);
  margin-top: auto;
  padding-top: 1.2rem;
}
.anim__prix small {
  display: block;
  font-family: var(--texte);
  font-style: normal;
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: 0.35rem;
}

/* --- 29. Espace devis -------------------------------------------------------- */
.devis-grille {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.etape-devis { padding-block: clamp(2.2rem, 4vw, 3.2rem); border-bottom: 1px solid var(--or-filet); }
.etape-devis:first-child { padding-top: 0; }
.etape-devis__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--or-profond);
  letter-spacing: 0.22em;
  margin-bottom: 0.7rem;
}
.etape-devis__titre { font-size: var(--t-l); margin-bottom: 0.8rem; }
.etape-devis__texte { font-size: var(--t-s); color: var(--gris); margin-bottom: 1.8rem; }

/* Choix en cartes */
.choix { display: grid; gap: 0.9rem; }
.choix--paire { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.option {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  border: 1px solid var(--or-filet);
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.option:hover { background: var(--blush); }
.option:has(input:checked) { border-color: var(--rose-profond); background: var(--blush); }

.option input {
  appearance: none; -webkit-appearance: none;
  flex: 0 0 15px; width: 15px; height: 15px;
  margin-top: 0.42em;
  border: 1px solid var(--or-profond);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.option input[type="radio"] { border-radius: 50%; }
.option input:checked { background: var(--rose-profond); border-color: var(--rose-profond); }
.option input[type="radio"]:checked::after {
  content: ""; position: absolute; inset: 3px;
  background: var(--creme); border-radius: 50%;
}
.option input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 4px; top: 0;
  width: 5px; height: 9px;
  border: solid var(--creme); border-width: 0 1px 1px 0;
  transform: rotate(42deg);
}

.option__corps { flex: 1; }
.option__nom { font-size: var(--t-s); line-height: 1.5; }
.option__note { font-size: var(--t-xs); color: var(--gris); letter-spacing: 0.04em; margin-top: 0.25rem; }
.option__prix {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--or-profond);
  white-space: nowrap;
  margin-left: 0.8rem;
}

/* Récapitulatif */
.recap {
  position: sticky;
  top: 100px;
  border: 1px solid var(--or-filet);
  background: var(--carte);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.recap__titre {
  font-size: var(--t-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-bottom: 1.6rem;
}
.recap__lignes { min-height: 60px; }
.recap__ligne {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--t-s);
  padding-block: 0.5rem;
  border-bottom: 1px solid rgba(198, 154, 70, 0.2);
}
.recap__ligne span:last-child { white-space: nowrap; color: var(--or-profond); }
.recap__vide { font-size: var(--t-s); color: var(--gris); font-style: italic; }
.recap__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--or-filet);
}
.recap__total span:first-child {
  font-size: var(--t-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gris);
}
.recap__somme { font-family: var(--display); font-style: italic; font-size: 2rem; color: var(--rose-profond); }
.recap__mention { font-size: var(--t-xs); color: var(--gris); line-height: 1.7; margin-top: 1.2rem; }

@media (max-width: 980px) {
  .devis-grille { grid-template-columns: 1fr; }
  .recap { position: static; }
}

/* --- 30. Questions fréquentes ------------------------------------------------ */
.faq { border-top: 1px solid var(--or-filet); margin-top: 3rem; }

.question {
  border-bottom: 1px solid var(--or-filet);
  padding-block: 0.4rem;
}
.question > summary {
  list-style: none;
  cursor: pointer;
  padding-block: 1.5rem;
  padding-right: 2.5rem;
  position: relative;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.4;
  transition: color var(--transition);
}
.question > summary::-webkit-details-marker { display: none; }
.question > summary:hover { color: var(--rose-profond); }
.question > summary::after {
  content: "";
  position: absolute;
  right: 0.4rem; top: 50%;
  width: 11px; height: 1px;
  background: var(--or-profond);
  transform: translateY(-50%);
}
.question > summary::before {
  content: "";
  position: absolute;
  right: 0.9rem; top: 50%;
  width: 1px; height: 11px;
  background: var(--or-profond);
  transform: translateY(-50%);
  transition: opacity var(--transition), transform var(--transition);
}
.question[open] > summary::before { opacity: 0; transform: translateY(-50%) rotate(90deg); }
.question[open] > summary { color: var(--rose-profond); }

.question__reponse {
  font-size: var(--t-s);
  color: var(--gris);
  line-height: 1.85;
  padding-bottom: 1.7rem;
  padding-right: 2.5rem;
  max-width: 74ch;
}
.question__reponse p + p { margin-top: 0.9rem; }
.question__reponse a { color: var(--or-profond); border-bottom: 1px solid var(--or-filet); }
.question__reponse a:hover { color: var(--rose-profond); }

/* Conseils */
.conseils {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.6rem);
  margin-top: 3.5rem;
}
.conseil { border-top: 1px solid var(--or-filet); padding-top: 1.8rem; }
.conseil__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-profond);
  margin-bottom: 0.9rem;
}
.conseil__titre { font-size: var(--t-l); margin-bottom: 1rem; }
.conseil__texte { font-size: var(--t-s); color: var(--gris); line-height: 1.8; }

/* --- 31. Pages légales -------------------------------------------------------- */
.legal { max-width: 74ch; }
.legal h2 {
  font-size: var(--t-l);
  margin-top: 3.4rem;
  margin-bottom: 1.1rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--or-filet);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 {
  font-size: var(--t-xs);
  font-family: var(--texte);
  font-style: normal;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-profond);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.legal p, .legal li { font-size: var(--t-s); color: var(--gris); line-height: 1.9; }
.legal p + p { margin-top: 0.9rem; }
.legal ul { margin-top: 0.8rem; }
.legal li {
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.55rem;
}
.legal li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95em;
  width: 10px; height: 1px;
  background: var(--or);
}
.legal strong { color: var(--encre); font-weight: 400; }
.legal a { color: var(--or-profond); border-bottom: 1px solid var(--or-filet); }
.legal a:hover { color: var(--rose-profond); }
.legal__maj {
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--or-filet);
}
