/* ═══════════════════════════════════════════════
   THE ELITE ROOM — Institut de beauté, Lyon 3e
   ═══════════════════════════════════════════════ */

@font-face { font-family: "Cormorant"; src: url("fonts/cormorant-garamond-latin.woff2") format("woff2"); font-weight: 300 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("fonts/cormorant-garamond-latin-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-300-normal.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-display: swap; }

:root {
  --ivoire: #f6f1ea;
  --sable: #ece3d7;
  --lin: #ddd0bf;
  --taupe: #7f7163;
  --moka: #2b231c;
  --nuit: #16110d;
  --or: #b48c55;
  --or-clair: #d9bd8e;
  --or-pale: #efe0c4;
  --blanc: #fffdf9;

  --serif: "Cormorant", "Cormorant Garamond", Garamond, "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, system-ui, sans-serif;

  --largeur: 1240px;
  --gouttiere: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.2, .7, .1, 1);
  --barre-nav: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--barre-nav); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivoire);
  color: var(--moka);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--or-clair); color: var(--nuit); }
:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }

.evitement { position: absolute; left: -9999px; top: 8px; z-index: 200; background: var(--nuit); color: var(--ivoire); padding: 10px 16px; }
.evitement:focus { left: 8px; }
.lecteur { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: 100%; max-width: var(--largeur); margin-inline: auto; padding-inline: var(--gouttiere); }

/* ─── Typographie ─── */
.surtitre {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 18px;
  font-size: 11px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--or);
}
.surtitre::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.titre {
  margin: 0 0 22px;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5.6vw, 72px); line-height: 1.02; letter-spacing: -.01em;
}
.titre em { font-style: italic; color: var(--or); }
.chapo { margin: 0; max-width: 560px; color: var(--taupe); font-size: 17px; font-weight: 300; }
.centre { text-align: center; }
.centre .chapo { margin-inline: auto; }
.centre .surtitre::after { content: ""; width: 34px; height: 1px; background: currentColor; }

/* ─── Boutons ─── */
.btn {
  --h: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: var(--h); padding: 0 30px;
  border: 1px solid transparent; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; }
.btn:hover { transform: translateY(-2px); }
.btn-or { background: var(--or); color: var(--blanc); }
.btn-or:hover { background: var(--moka); }
.btn-sombre { background: var(--moka); color: var(--ivoire); }
.btn-sombre:hover { background: var(--or); }
.btn-ligne { border-color: currentColor; background: transparent; }
.btn-ligne:hover { background: var(--moka); border-color: var(--moka); color: var(--ivoire); }
.sur-sombre .btn-ligne:hover, .hero .btn-ligne:hover { background: var(--ivoire); border-color: var(--ivoire); color: var(--nuit); }
.sur-sombre .btn-or:hover, .hero .btn-or:hover { background: var(--ivoire); color: var(--nuit); }
.lien-fleche {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  color: var(--moka); background: none; border: 0; padding: 0; cursor: pointer;
}
.lien-fleche::after { content: "→"; font-size: 15px; letter-spacing: 0; transition: transform .35s var(--ease); }
.lien-fleche:hover::after { transform: translateX(6px); }

/* ═══════ NAVIGATION ═══════ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--barre-nav);
  color: var(--ivoire);
  transition: background .5s var(--ease), color .5s var(--ease), box-shadow .5s var(--ease), height .5s var(--ease);
}
.nav.est-solide {
  background: rgba(246, 241, 234, .92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  color: var(--moka);
  box-shadow: 0 1px 0 rgba(43, 35, 28, .08);
}
.nav-in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.marque { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.marque svg { width: 38px; height: 38px; flex: none; }
.marque-nom { font-family: var(--serif); font-size: 23px; font-weight: 400; letter-spacing: .02em; line-height: 1; }
.menu { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.menu a:not(.btn) {
  position: relative; text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
}
.menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.menu a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.menu .btn { --h: 44px; padding: 0 24px; }
.nav:not(.est-solide) .menu .btn-or:hover { background: var(--ivoire); color: var(--nuit); }
.burger { display: none; width: 46px; height: 46px; border: 0; background: none; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 1px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 27px; }
.nav.menu-ouvert .burger span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav.menu-ouvert .burger span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ═══════ HERO ═══════ */
.hero {
  position: relative; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--ivoire); overflow: hidden;
}
.hero-fond { position: absolute; inset: 0; z-index: -2; }
.hero-fond img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 40%; transform: scale(1.08); animation: respire 16s var(--ease) forwards; }
@keyframes respire { to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(22,17,13,.55) 0%, rgba(22,17,13,.15) 35%, rgba(22,17,13,.35) 60%, rgba(22,17,13,.88) 100%),
    linear-gradient(90deg, rgba(22,17,13,.55) 0%, rgba(22,17,13,0) 65%);
}
.hero-contenu { padding-block: calc(var(--barre-nav) + 60px) clamp(56px, 10vh, 110px); }
.hero-lieu { margin: 0 0 26px; font-size: 11px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--or-clair); }
.hero h1 {
  margin: 0;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 11vw, 158px); line-height: .88; letter-spacing: -.02em;
}
.hero h1 span { display: block; }
.hero h1 .ital { font-style: italic; padding-left: .55em; color: var(--or-pale); }
.hero-devise {
  display: flex; align-items: center; gap: 18px;
  margin: 30px 0 0; font-size: 12px; font-weight: 500; letter-spacing: .42em; text-transform: uppercase;
}
.hero-devise::before { content: ""; width: 56px; height: 1px; background: var(--or-clair); }
.hero-bas { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; margin-top: 44px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-notes { display: flex; gap: 34px; }
.note-mini { display: flex; flex-direction: column; gap: 2px; }
.note-mini b { font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1; }
.note-mini b small { font-size: 18px; color: var(--or-clair); margin-left: 4px; }
.note-mini span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .78; }
.etoiles { color: var(--or-clair); letter-spacing: 2px; font-size: 12px; }

/* ═══════ BANDEAU DÉFILANT ═══════ */
.bandeau { background: var(--nuit); color: var(--or-pale); overflow: hidden; padding-block: 20px; }
.bandeau-piste { display: flex; width: max-content; animation: defile 38s linear infinite; }
.bandeau-piste span {
  display: inline-flex; align-items: center; gap: 36px; padding-right: 36px;
  font-family: var(--serif); font-size: 26px; font-style: italic; font-weight: 300; white-space: nowrap;
}
.bandeau-piste span::after { content: "✦"; font-style: normal; font-size: 11px; color: var(--or); }
@keyframes defile { to { transform: translateX(-50%); } }

/* ═══════ SECTIONS ═══════ */
section { padding-block: clamp(90px, 12vw, 160px); }
.sur-sombre { background: var(--nuit); color: var(--ivoire); }
.sur-sombre .chapo { color: rgba(246, 241, 234, .66); }
.sur-sable { background: var(--sable); }

/* ─── L'institut ─── */
.institut { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.arche {
  position: relative; margin: 0;
  border-radius: 999px 999px 0 0; overflow: hidden;
  aspect-ratio: 4 / 5; max-width: 100%;
  box-shadow: 0 40px 80px -40px rgba(43, 35, 28, .45);
}
.arche img { width: 100%; height: 100%; object-fit: cover; }
.arche-cadre { position: relative; padding: 18px; }
.arche-cadre::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--or); border-radius: 999px 999px 0 0; opacity: .55;
  transform: translate(-18px, 18px); pointer-events: none;
}
.arche-legende {
  position: absolute; right: -8px; bottom: 44px;
  background: var(--blanc); padding: 18px 24px; border-radius: 2px;
  box-shadow: 0 20px 50px -20px rgba(43, 35, 28, .35);
  font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.2;
}
.arche-legende small { display: block; font-family: var(--sans); font-style: normal; font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--or); margin-bottom: 4px; }
.institut-texte p { margin: 0 0 18px; color: var(--taupe); font-weight: 300; font-size: 17px; }
.institut-texte p.lettrine::first-letter { font-family: var(--serif); float: left; font-size: 78px; line-height: .8; padding: 6px 12px 0 0; color: var(--or); }
.atouts { list-style: none; margin: 38px 0 42px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--lin); }
.atouts li { padding: 24px 16px 0 0; }
.atouts b { display: block; font-family: var(--serif); font-size: 40px; font-weight: 400; line-height: 1; color: var(--moka); }
.atouts span { display: block; margin-top: 8px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe); line-height: 1.5; }

/* ─── Expertises ─── */
.entete { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: clamp(48px, 7vw, 84px); }
.entete .titre { margin-bottom: 0; }
.expertises { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.expertise { position: relative; display: flex; flex-direction: column; }
.expertise-img { position: relative; border-radius: 999px 999px 0 0; overflow: hidden; aspect-ratio: 3 / 4; background: var(--lin); }
.expertise-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.expertise:hover .expertise-img img { transform: scale(1.06); }
.expertise-num {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic; font-size: 120px; font-weight: 300; line-height: 1;
  color: var(--ivoire); opacity: 0; transition: opacity .6s var(--ease); pointer-events: none;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.expertise:hover .expertise-num { opacity: .9; }
.expertise-corps { padding-top: 28px; }
.expertise-artiste { font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--or); }
.expertise h3 { margin: 8px 0 12px; font-family: var(--serif); font-size: 36px; font-weight: 400; line-height: 1.05; }
.expertise p { margin: 0 0 22px; color: var(--taupe); font-weight: 300; }
.expertise-prix { display: block; margin-bottom: 18px; font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--moka); }

/* ─── Carte des prestations ─── */
.prestations { position: relative; overflow: hidden; }
.onglets {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  margin: clamp(40px, 6vw, 64px) calc(var(--gouttiere) * -1) 44px; padding: 2px var(--gouttiere);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 var(--gouttiere), #000 calc(100% - var(--gouttiere)), transparent);
          mask-image: linear-gradient(90deg, transparent, #000 var(--gouttiere), #000 calc(100% - var(--gouttiere)), transparent);
}
.onglets::-webkit-scrollbar { display: none; }
.onglet {
  flex: none; padding: 13px 22px; border-radius: 999px;
  border: 1px solid rgba(246, 241, 234, .2); background: transparent; color: rgba(246, 241, 234, .75);
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.onglet:hover { border-color: var(--or-clair); color: var(--ivoire); }
.onglet[aria-selected="true"] { background: var(--or); border-color: var(--or); color: var(--blanc); }

.panneau { animation: apparait .6s var(--ease); }
@keyframes apparait { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.panneau-intro { margin: 0 0 30px; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--or-clair); }

.rituels { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.rituel {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 28px 28px; border: 1px solid rgba(217, 189, 142, .22);
  border-radius: 160px 160px 4px 4px;
  background: linear-gradient(180deg, rgba(217, 189, 142, .07), rgba(217, 189, 142, 0));
  text-align: center; text-decoration: none;
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.rituel:hover { border-color: var(--or-clair); transform: translateY(-4px); background: linear-gradient(180deg, rgba(217, 189, 142, .14), rgba(217, 189, 142, 0)); }
.rituel-groupe { margin-top: 22px; font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--or-clair); }
.rituel h4 { margin: 12px 0 6px; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.1; }
.rituel-duree { font-size: 13px; color: rgba(246, 241, 234, .6); }
.rituel-prix { margin-top: auto; padding-top: 20px; font-family: var(--serif); font-size: 44px; font-weight: 300; line-height: 1; color: var(--or-pale); }
.rituel-prix small { font-size: 22px; }
.rituel.vedette { border-color: var(--or); background: linear-gradient(180deg, rgba(180, 140, 85, .28), rgba(180, 140, 85, .04)); }
.rituel.vedette::before {
  content: "Signature"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--or); color: var(--blanc); padding: 3px 14px; border-radius: 999px;
  font-size: 9px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
}

.lignes { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: clamp(40px, 7vw, 100px); }
.ligne { break-inside: avoid; display: flex; align-items: baseline; gap: 14px; padding: 20px 0; border-bottom: 1px solid rgba(246, 241, 234, .1); }
.ligne-nom { font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.2; }
.ligne-duree { display: block; margin-top: 3px; font-family: var(--sans); font-size: 12px; letter-spacing: .06em; color: rgba(246, 241, 234, .5); }
.ligne-pointilles { flex: 1; min-width: 20px; border-bottom: 1px dotted rgba(217, 189, 142, .35); transform: translateY(-6px); }
.ligne-prix { font-family: var(--serif); font-size: 26px; color: var(--or-pale); white-space: nowrap; }

.prestations-pied { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-top: 56px; padding-top: 36px; border-top: 1px solid rgba(246, 241, 234, .12); }
.prestations-pied p { margin: 0; color: rgba(246, 241, 234, .6); font-size: 14px; }

.conditions { margin-top: 40px; border: 1px solid rgba(246, 241, 234, .12); border-radius: 4px; }
.conditions summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; cursor: pointer; list-style: none;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
}
.conditions summary::-webkit-details-marker { display: none; }
.conditions summary::after { content: "+"; font-family: var(--serif); font-size: 28px; font-weight: 300; line-height: 1; color: var(--or-clair); transition: transform .4s var(--ease); }
.conditions[open] summary::after { transform: rotate(45deg); }
.conditions-grille { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 6px 26px 30px; }
.conditions-grille h4 { margin: 0 0 8px; font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--or-pale); }
.conditions-grille p { margin: 0; font-size: 14px; color: rgba(246, 241, 234, .66); line-height: 1.6; }

/* ─── Galerie ─── */
.galerie { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(120px, 14vw, 190px); gap: clamp(10px, 1.4vw, 18px); }
.galerie figure { position: relative; margin: 0; overflow: hidden; background: var(--lin); }
.galerie img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; }
.galerie figure:hover img { transform: scale(1.05); }
.galerie figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px;
  background: linear-gradient(0deg, rgba(22,17,13,.7), transparent);
  color: var(--ivoire); font-family: var(--serif); font-style: italic; font-size: 20px;
  opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.galerie figure:hover figcaption { opacity: 1; transform: none; }
.g1 { grid-column: 1 / 6; grid-row: span 3; border-radius: 999px 999px 0 0; }
.g2 { grid-column: 6 / 10; grid-row: span 2; }
.g3 { grid-column: 10 / 13; grid-row: span 2; }
.g4 { grid-column: 6 / 9; grid-row: span 2; }
.g5 { grid-column: 9 / 13; grid-row: span 2; }
.g6 { grid-column: 1 / 6; grid-row: span 1; }
.galerie-insta { display: flex; justify-content: center; margin-top: 48px; }

/* ─── Équipe ─── */
.equipe { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.equipe-photo { margin: 0; position: relative; }
.equipe-photo img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 20%; }
.equipe-photo::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--or); opacity: .5; z-index: -1; }
.artistes { list-style: none; margin: 34px 0 40px; padding: 0; }
.artistes li { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 18px; padding: 18px 0; border-top: 1px solid var(--lin); }
.artistes li:last-child { border-bottom: 1px solid var(--lin); }
.initiales {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--or); color: var(--or);
  font-family: var(--serif); font-size: 20px; font-style: italic;
}
.artistes b { display: block; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.1; }
.artistes span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); }

/* ─── Avis ─── */
.avis-tete { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; margin-bottom: 60px; }
.scores { display: flex; flex-wrap: wrap; gap: 16px; }
.score {
  min-width: 190px; padding: 26px 30px; border-radius: 4px;
  background: var(--blanc); box-shadow: 0 24px 50px -34px rgba(43, 35, 28, .4);
  text-decoration: none; transition: transform .4s var(--ease);
}
.score:hover { transform: translateY(-3px); }
.score-source { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); }
.score-source svg { width: 16px; height: 16px; }
.score-valeur { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; }
.score-valeur b { font-family: var(--serif); font-size: 58px; font-weight: 400; line-height: .9; }
.score-valeur .etoiles { font-size: 14px; }
.score small { display: block; margin-top: 6px; font-size: 13px; color: var(--taupe); }

.criteres { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 56px; }
.critere-tete { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--taupe); }
.critere-tete b { font-family: var(--serif); font-size: 20px; letter-spacing: 0; color: var(--moka); font-weight: 500; }
.jauge { height: 2px; margin-top: 10px; background: var(--lin); overflow: hidden; }
.jauge i { display: block; height: 100%; width: 0; background: var(--or); transition: width 1.6s var(--ease); }
.est-visible .jauge i { width: var(--v); }

.carrousel { position: relative; }
.piste {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none;
  padding-bottom: 6px;
}
.piste::-webkit-scrollbar { display: none; }
.temoignage {
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  margin: 0; padding: 40px 34px 32px;
  background: var(--blanc); border-radius: 2px;
  border-top: 2px solid var(--or);
}
.temoignage::before { content: "“"; font-family: var(--serif); font-size: 90px; line-height: .5; height: 34px; color: var(--or-clair); }
.temoignage blockquote { margin: 0 0 28px; font-family: var(--serif); font-size: 22px; line-height: 1.4; font-weight: 400; }
.temoignage figcaption { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 20px; border-top: 1px solid var(--sable); }
.temoignage figcaption b { display: block; font-weight: 600; font-size: 14px; }
.temoignage figcaption span { font-size: 12px; color: var(--taupe); }
.temoignage .etoiles { color: var(--or); }
.carrousel-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 34px; }
.fleches { display: flex; gap: 10px; }
.fleche {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--moka); background: transparent; cursor: pointer;
  display: grid; place-items: center; transition: background .35s, color .35s;
}
.fleche:hover { background: var(--moka); color: var(--ivoire); }
.fleche:disabled { opacity: .3; pointer-events: none; }
.fleche svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.progression { flex: 1; max-width: 320px; height: 1px; background: var(--lin); position: relative; }
.progression i { position: absolute; inset: 0 auto 0 0; background: var(--moka); width: 33%; transition: left .4s var(--ease), width .4s var(--ease); }

.laisser-avis {
  position: relative; overflow: hidden;
  margin-top: clamp(60px, 8vw, 100px);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  padding: clamp(36px, 5vw, 64px);
  background: var(--moka); color: var(--ivoire); border-radius: 2px;
}
.laisser-avis h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 300; line-height: 1.05; }
.laisser-avis h3 em { color: var(--or-clair); }
.laisser-avis p { margin: 0; color: rgba(246, 241, 234, .68); max-width: 520px; font-weight: 300; }
.laisser-avis-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.choix-etoiles { display: flex; gap: 6px; margin: 22px 0 0; padding: 0; border: 0; }
.choix-etoiles a {
  font-size: 30px; line-height: 1; text-decoration: none; color: rgba(246, 241, 234, .28);
  transition: color .2s, transform .25s var(--ease);
}
.choix-etoiles:hover a { color: var(--or-clair); }
.choix-etoiles a:hover ~ a { color: rgba(246, 241, 234, .28); }
.choix-etoiles a:hover { transform: scale(1.18); }

/* ─── Accès ─── */
.acces { display: grid; grid-template-columns: 1.35fr 1fr; gap: 0; background: var(--blanc); box-shadow: 0 40px 90px -50px rgba(43, 35, 28, .45); }
.carte { position: relative; min-height: 560px; background: var(--lin); }
.carte iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.85) sepia(.18) contrast(.95); transition: filter .6s; }
.carte:hover iframe { filter: none; }
.carte-epingle {
  position: absolute; left: 20px; top: 20px; z-index: 1;
  display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 12px;
  background: var(--nuit); color: var(--ivoire); border-radius: 999px;
  font-size: 13px; pointer-events: none;
}
.carte-epingle svg { width: 30px; height: 30px; }
.acces-infos { padding: clamp(34px, 4.5vw, 60px); display: flex; flex-direction: column; }
.acces-infos .titre { font-size: clamp(38px, 4vw, 54px); }
.adresse { margin: 0 0 26px; font-style: normal; font-size: 18px; line-height: 1.5; }
.adresse b { font-family: var(--serif); font-size: 26px; font-weight: 400; display: block; }
.itineraire { display: flex; flex-direction: column; gap: 10px; }
.itineraire .btn { width: 100%; }
.apps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.apps .btn { --h: 46px; padding: 0 14px; letter-spacing: .14em; }
.statut { display: inline-flex; align-items: center; gap: 10px; margin: 34px 0 14px; font-size: 13px; font-weight: 500; }
.statut i { width: 8px; height: 8px; border-radius: 50%; background: var(--taupe); box-shadow: 0 0 0 4px rgba(127, 113, 99, .15); }
.statut.ouvert i { background: #5d9b6e; box-shadow: 0 0 0 4px rgba(93, 155, 110, .18); animation: pulse 2.2s infinite; }
.statut.ferme i { background: #b3674f; box-shadow: 0 0 0 4px rgba(179, 103, 79, .15); }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(93, 155, 110, 0); } }
.horaires { width: 100%; border-collapse: collapse; font-size: 15px; }
.horaires th, .horaires td { padding: 9px 0; border-bottom: 1px solid var(--sable); text-align: left; font-weight: 400; }
.horaires td { text-align: right; color: var(--taupe); }
.horaires tr.aujourdhui th, .horaires tr.aujourdhui td { color: var(--moka); font-weight: 600; }
.horaires tr.aujourdhui th::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 10px; border-radius: 50%; background: var(--or); vertical-align: middle; }
.contact-ligne { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px; }
.contact-ligne a { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 500; }
.contact-ligne svg { width: 17px; height: 17px; fill: none; stroke: var(--or); stroke-width: 1.6; }
.contact-ligne a:hover { color: var(--or); }

/* ─── Réservation finale ─── */
.final { position: relative; isolation: isolate; overflow: hidden; color: var(--ivoire); text-align: center; padding-block: clamp(110px, 16vw, 200px); }
.final-fond { position: absolute; inset: 0; z-index: -2; }
.final-fond img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.final::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at center, rgba(22,17,13,.55), rgba(22,17,13,.85)); }
.final .titre { font-size: clamp(46px, 7.5vw, 104px); }
.final .titre em { color: var(--or-pale); }
.final p { margin: 0 auto 40px; max-width: 520px; color: rgba(246, 241, 234, .78); font-weight: 300; font-size: 17px; }
.final .surtitre { color: var(--or-clair); }

/* ─── Pied de page ─── */
.pied { background: var(--nuit); color: rgba(246, 241, 234, .7); padding-block: 80px 34px; font-size: 14px; }
.pied-grille { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.pied .marque { color: var(--ivoire); }
.pied-devise { margin: 18px 0 0; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--or-clair); }
.pied h4 { margin: 0 0 16px; font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ivoire); }
.pied ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.pied a { text-decoration: none; transition: color .3s; }
.pied a:hover { color: var(--or-clair); }
.pied-bas { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 64px; padding-top: 26px; border-top: 1px solid rgba(246, 241, 234, .1); font-size: 12px; letter-spacing: .06em; }
.reseau { display: inline-flex; align-items: center; gap: 10px; }
.reseau svg { width: 18px; height: 18px; fill: currentColor; }

/* ─── Barre mobile ─── */
.barre-mobile { display: none; }

/* ─── Apparitions ─── */
.revele { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.revele.est-visible { opacity: 1; transform: none; }
.revele.r1 { transition-delay: .12s; }
.revele.r2 { transition-delay: .24s; }
.revele.r3 { transition-delay: .36s; }
.hero .revele { transition-duration: 1.4s; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1080px) {
  .criteres { grid-template-columns: repeat(2, 1fr); }
  .conditions-grille { grid-template-columns: repeat(2, 1fr); }
  .piste { grid-auto-columns: calc((100% - 24px) / 2); }
  .pied-grille { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --barre-nav: 68px; }
  .burger { display: block; z-index: 2; }
  .menu {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; justify-content: center; gap: 26px;
    background: var(--nuit); color: var(--ivoire);
    opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
  }
  .menu a:not(.btn) { font-family: var(--serif); font-size: 38px; font-weight: 300; letter-spacing: 0; text-transform: none; }
  .menu .btn { --h: 54px; margin-top: 12px; }
  .nav.menu-ouvert .menu { opacity: 1; visibility: visible; }
  .nav.menu-ouvert { color: var(--ivoire); }
  .nav.menu-ouvert .marque { position: relative; z-index: 2; }

  .institut, .equipe, .acces { grid-template-columns: 1fr; }
  .arche-cadre { max-width: 460px; margin-inline: auto; }
  .expertises { grid-template-columns: 1fr; gap: 64px; }
  .expertise-img { aspect-ratio: 4 / 4.2; }
  .lignes { columns: 1; }
  .avis-tete { grid-template-columns: 1fr; }
  .laisser-avis { grid-template-columns: 1fr; }
  .carte { min-height: 380px; }
  .galerie { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 46vw; }
  .g1 { grid-column: 1 / 3; grid-row: span 2; }
  .g2, .g3, .g4, .g5 { grid-column: auto; grid-row: span 1; }
  .g6 { grid-column: 1 / 3; grid-row: span 1; }
  .galerie figcaption { opacity: 1; transform: none; font-size: 17px; padding: 30px 14px 12px; }

  body { padding-bottom: 72px; }
  .barre-mobile {
    display: grid; grid-template-columns: 1fr 1fr 1.4fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(22, 17, 13, .96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 8px;
    transform: translateY(110%); transition: transform .5s var(--ease);
  }
  .barre-mobile.est-visible { transform: none; }
  .barre-mobile a {
    display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; border-radius: 999px;
    color: var(--ivoire); text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    border: 1px solid rgba(246, 241, 234, .2);
  }
  .barre-mobile a.principal { background: var(--or); border-color: var(--or); color: var(--blanc); }
  .barre-mobile svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
}

@media (max-width: 620px) {
  .hero h1 .ital { padding-left: .3em; }
  .hero-devise { letter-spacing: .3em; font-size: 11px; }
  .hero-devise::before { width: 34px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-notes { gap: 26px; }
  .atouts b { font-size: 32px; }
  .atouts span { font-size: 10px; letter-spacing: .1em; }
  .arche-legende { right: 0; bottom: 30px; font-size: 17px; padding: 14px 18px; }
  .piste { grid-auto-columns: 86%; gap: 14px; }
  .criteres { gap: 22px 20px; }
  .conditions-grille { grid-template-columns: 1fr; }
  .ligne { gap: 10px; }
  .ligne-nom { font-size: 20px; }
  .ligne-prix { font-size: 23px; }
  .score { flex: 1 1 100%; }
  .apps { grid-template-columns: 1fr 1fr; }
  .pied-grille { grid-template-columns: 1fr; }
  .temoignage { padding: 34px 24px 26px; }
  .temoignage blockquote { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .revele { opacity: 1; transform: none; }
}

/* ─── Utilitaires (remplacent les style="" interdits par la CSP) ─── */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.note-mini { text-decoration: none; }
.entete-serre { margin-bottom: 0; }
.cadre-droite { object-position: 62% 50%; }
.cadre-haut { object-position: 50% 28%; }
.cadre-bas { object-position: 50% 70%; }
.marque svg.or { color: var(--or-clair); }
.laisser-avis .btn-ligne { color: var(--ivoire); }
.laisser-avis .btn-ligne:hover { background: var(--ivoire); border-color: var(--ivoire); color: var(--nuit); }
.jauge .v96 { --v: 96%; }
.jauge .v98 { --v: 98%; }

/* ─── Portfolio Keydee Nails ─── */
.nails { margin-top: clamp(80px, 10vw, 130px); }
.nails-tete { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 34px; }
.nails-tete .surtitre { margin-bottom: 10px; }
.nails-titre { margin: 0; font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.05; }
.nails-titre em { font-style: italic; color: var(--or); }
.nails-piste {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 23vw, 300px); gap: clamp(12px, 1.6vw, 20px);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  margin-inline: calc(var(--gouttiere) * -1); padding-inline: var(--gouttiere); scroll-padding-inline: var(--gouttiere);
}
.nails-piste::-webkit-scrollbar { display: none; }
.nails-piste figure { margin: 0; scroll-snap-align: start; aspect-ratio: 3 / 4.2; overflow: hidden; background: var(--lin); border-radius: 2px; }
.nails-piste figure:nth-child(odd) { border-radius: 999px 999px 2px 2px; }
.nails-piste img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.nails-piste figure:hover img { transform: scale(1.05); }
.artiste-lien { text-decoration: none; background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size .45s var(--ease); }
.artiste-lien:hover { background-size: 100% 1px; }
@media (max-width: 620px) { .nails-piste { grid-auto-columns: 68%; } }
@media (max-width: 620px) {
  .galerie-insta .btn { white-space: normal; text-align: center; line-height: 1.4; padding: 12px 22px; max-width: 100%; }
}
.nails + .nails { margin-top: clamp(64px, 8vw, 100px); }
.contact-ligne a.tiktok svg { fill: var(--or); stroke: none; }
.reseaux { display: inline-flex; flex-wrap: wrap; gap: 22px; }


/* ═══════ MENU & HERO : RÉSEAUX ═══════ */
.menu-reseaux { display: inline-flex; gap: 2px; margin-left: -10px; }
.icone { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; transition: background .3s, color .3s; }
.icone svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.icone svg path { fill: currentColor; stroke: none; }
.icone:hover { background: var(--or); color: var(--blanc); }
.hero-droite { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; }
.hero-reseaux { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-reseaux a {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px 9px 12px; border-radius: 999px;
  border: 1px solid rgba(246, 241, 234, .3); background: rgba(22, 17, 13, .25);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: .06em;
  transition: background .3s, border-color .3s;
}
.hero-reseaux a:hover { background: var(--or); border-color: var(--or); }
.hero-reseaux svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.hero-reseaux svg path { fill: currentColor; stroke: none; }

/* ═══════ CONCEPT : 3 MÉTIERS, 1 LIEU ═══════ */
.concept { padding-block: clamp(90px, 11vw, 150px); }
.concept-tete { text-align: center; max-width: 820px; margin: 0 auto clamp(56px, 7vw, 90px); }
.concept-tete .surtitre::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.concept-tete .chapo { margin-inline: auto; }
.concept-titre { margin: 0 0 24px; font-family: var(--serif); font-weight: 300; font-size: clamp(52px, 9vw, 128px); line-height: .95; letter-spacing: -.02em; }
.concept-titre em { color: var(--or); }
.metiers { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: clamp(10px, 2vw, 26px); }
.metier-plus { align-self: center; margin-top: -120px; font-family: var(--serif); font-size: clamp(40px, 5vw, 70px); font-weight: 300; color: var(--or); line-height: 1; }
.metier { text-align: center; }
.metier-img { position: relative; aspect-ratio: 3 / 4; border-radius: 999px 999px 0 0; overflow: hidden; background: var(--lin); }
.metier-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.metier:hover .metier-img img { transform: scale(1.06); }
.metier-num { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); padding: 4px 14px; border-radius: 999px; background: var(--ivoire); color: var(--moka); font-size: 11px; font-weight: 600; letter-spacing: .2em; }
.metier h3 { margin: 26px 0 2px; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(44px, 4.6vw, 64px); line-height: 1; }
.metier-fr { margin: 0 0 16px; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--taupe); }
.metier-experte { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 18px; }
.metier-experte > span { font-family: var(--serif); font-size: 20px; }
.metier-experte b { font-weight: 500; }
.metier-experte a, .artiste-handle {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px 6px 10px; border-radius: 999px;
  border: 1px solid var(--lin); text-decoration: none; font-size: 13px; font-weight: 500;
  transition: background .3s, color .3s, border-color .3s;
}
.metier-experte a:hover, .artiste-handle:hover { background: var(--moka); border-color: var(--moka); color: var(--ivoire); }
.metier-experte svg, .artiste-handle svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.artiste-handle { margin-top: 8px; font-size: 12px; padding: 4px 12px 4px 8px; }
.artistes li > div { min-width: 0; }

/* ─── Coffee shop ─── */
.coffee {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: clamp(28px, 5vw, 72px);
  margin-top: clamp(60px, 7vw, 96px); padding: clamp(34px, 5vw, 64px) clamp(28px, 6vw, 80px);
  background: var(--nuit); color: var(--ivoire); border-radius: 240px 240px 4px 4px;
}
.coffee-visuel {
  display: grid; place-items: center; width: clamp(130px, 16vw, 200px); aspect-ratio: 1;
  border-radius: 50%; border: 1px solid rgba(217, 189, 142, .35); color: var(--or-clair);
  background: radial-gradient(circle at 50% 40%, rgba(180, 140, 85, .22), transparent 70%);
}
.coffee-visuel svg { width: 58%; }
.coffee-plus { margin: 0 0 6px; font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--or-clair); }
.coffee-plus span { font-family: var(--serif); font-size: 22px; letter-spacing: 0; margin-right: 4px; }
.coffee h3 { margin: 0 0 14px; font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 4.8vw, 64px); line-height: 1; }
.coffee h3 em { color: var(--or-clair); }
.coffee-texte > p:not(.coffee-plus) { margin: 0; max-width: 560px; color: rgba(246, 241, 234, .72); font-weight: 300; font-size: 17px; }
.coffee-carte { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; }
.coffee-carte li { padding: 8px 18px; border-radius: 999px; border: 1px solid rgba(217, 189, 142, .35); font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--or-pale); }

.concept-egal {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(20px, 3vw, 40px);
  margin-top: 18px; padding: clamp(24px, 3vw, 34px) clamp(26px, 4vw, 48px);
  border: 1px solid var(--or); border-radius: 999px;
}
.concept-egal-signe { font-family: var(--serif); font-size: 64px; line-height: .6; color: var(--or); }
.concept-egal p { margin: 0; font-size: 17px; font-weight: 300; color: var(--taupe); }
.concept-egal b { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--moka); }

/* ═══════ RÉSEAUX ═══════ */
.reseaux-grille { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.reseau-carte {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px;
  border-radius: 4px; text-decoration: none; color: var(--ivoire);
}
.reseau-carte.principal { grid-row: span 2; min-height: 616px; border-radius: 999px 999px 4px 4px; }
.reseau-photo { position: absolute; inset: 0; z-index: -2; }
.reseau-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.reseau-carte::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,17,13,.05) 30%, rgba(22,17,13,.88)); }
.reseau-carte:hover .reseau-photo img { transform: scale(1.06); }
.reseau-info { display: flex; flex-direction: column; gap: 2px; padding: 24px 24px 22px; }
.reseau-type { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--or-clair); }
.reseau-type svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.reseau-type svg path { fill: currentColor; stroke: none; }
.reseau-info b { font-family: var(--serif); font-size: clamp(26px, 2.4vw, 34px); font-weight: 400; line-height: 1.15; }
.principal .reseau-info b { font-size: clamp(34px, 3.4vw, 48px); }
.reseau-qui { font-size: 13px; color: rgba(246, 241, 234, .72); }
.reseau-suivre {
  position: absolute; top: 18px; right: 18px; padding: 8px 16px; border-radius: 999px;
  background: rgba(246, 241, 234, .92); color: var(--nuit);
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.reseau-carte:hover .reseau-suivre { background: var(--or); color: var(--blanc); }
.principal .reseau-suivre { top: auto; bottom: 26px; right: 24px; }

@media (max-width: 1180px) { .menu-reseaux { display: none; } }
@media (max-width: 900px) {
  .menu-reseaux { display: inline-flex; margin: 6px 0 0; gap: 10px; }
  .menu-reseaux .icone { width: 48px; height: 48px; border: 1px solid rgba(246, 241, 234, .25); }
  .metiers { grid-template-columns: 1fr; gap: 0; }
  .metier-plus { margin: 18px 0; text-align: center; }
  .metier-img { max-width: 420px; margin-inline: auto; }
  .coffee { grid-template-columns: 1fr; text-align: center; justify-items: center; border-radius: 160px 160px 4px 4px; }
  .coffee-texte > p:not(.coffee-plus) { margin-inline: auto; }
  .coffee-carte { justify-content: center; }
  .concept-egal { grid-template-columns: 1fr; text-align: center; border-radius: 28px; justify-items: center; }
  .reseaux-grille { grid-template-columns: 1fr 1fr; }
  .reseau-carte.principal { grid-column: 1 / 3; grid-row: auto; min-height: 420px; }
  .hero-droite { align-items: flex-start; }
}
@media (max-width: 620px) {
  .reseaux-grille { grid-template-columns: 1fr; }
  .reseau-carte.principal { grid-column: auto; min-height: 380px; }
  .reseau-carte { min-height: 240px; }
  .hero-devise { font-size: 10px; letter-spacing: .22em; }
  .coffee { padding-inline: 22px; }
}


/* ═══════ VIDÉO D'ACCUEIL ═══════ */
[hidden] { display: none !important; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero::before {
  background:
    linear-gradient(180deg, rgba(22,17,13,.62) 0%, rgba(22,17,13,.3) 32%, rgba(22,17,13,.45) 58%, rgba(22,17,13,.92) 100%),
    linear-gradient(90deg, rgba(22,17,13,.6) 0%, rgba(22,17,13,.1) 70%);
}
.hero-arche { display: none; }
@media (min-width: 1100px) {
  .hero-video { filter: blur(26px) saturate(1.1) brightness(.8); transform: scale(1.15); }
  .hero-contenu { display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: clamp(40px, 5vw, 80px); align-items: end; }
  .hero-contenu > :not(.hero-arche) { grid-column: 1; }
  .hero-arche {
    display: block; position: relative; grid-column: 2; grid-row: 1 / span 4; align-self: end;
    height: min(72vh, 660px); aspect-ratio: 9 / 16; max-width: 100%; margin: 0;
    border-radius: 999px 999px 6px 6px; overflow: hidden;
    box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .7);
  }
  .hero-arche::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(239, 224, 196, .45); border-radius: 999px 999px 2px 2px; pointer-events: none; }
  .hero-arche video { width: 100%; height: 100%; object-fit: cover; }
  .hero-arche figcaption {
    position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); white-space: nowrap;
    padding: 6px 16px; border-radius: 999px; background: rgba(22, 17, 13, .6);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--or-pale);
  }
  .hero h1 { font-size: clamp(64px, 8.4vw, 136px); }
  .hero-bas { margin-top: 36px; }
  .hero-droite { align-items: flex-start; }
}

/* ═══════ RETOUCHES ═══════ */
.concept-titre span, .concept-titre em { display: inline-block; white-space: nowrap; }
.artiste-handle { display: flex; width: fit-content; }
.pied-legal { display: inline-flex; flex-wrap: wrap; gap: 18px; }
.lien-discret { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; letter-spacing: inherit; color: inherit; }
.lien-discret:hover { color: var(--or-clair); }

/* ═══════ BANDEAU DE CONSENTEMENT ═══════ */
.consentement {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  display: flex; justify-content: center; pointer-events: none;
  opacity: 0; transform: translateY(24px); transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.consentement.est-visible { opacity: 1; transform: none; }
.consentement-in {
  pointer-events: auto; width: 100%; max-width: 720px; max-height: calc(100vh - 32px); overflow-y: auto;
  padding: 26px 28px; border-radius: 18px;
  background: var(--nuit); color: var(--ivoire); border: 1px solid rgba(217, 189, 142, .3);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .65);
}
.consentement-titre { margin: 0 0 8px; font-family: var(--serif); font-size: 28px; font-weight: 300; line-height: 1.1; }
.consentement-titre em { color: var(--or-clair); }
.consentement-texte { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(246, 241, 234, .72); }
.consentement-texte a { color: var(--or-clair); }
.consentement-options { display: grid; gap: 10px; margin-top: 18px; }
.consentement-options label { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border: 1px solid rgba(246, 241, 234, .14); border-radius: 12px; cursor: pointer; font-size: 13px; line-height: 1.5; color: rgba(246, 241, 234, .66); }
.consentement-options input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--or); }
.consentement-options b { display: block; font-size: 14px; font-weight: 600; color: var(--ivoire); }
.consentement-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; margin-top: 20px; }
.consentement-actions .btn { --h: 46px; padding: 0 22px; font-size: 11px; }
.consentement-actions .btn-ligne { color: var(--ivoire); }
.consentement-actions .btn-ligne:hover { background: var(--ivoire); border-color: var(--ivoire); color: var(--nuit); }
.consentement-actions .btn-or:hover { background: var(--ivoire); color: var(--nuit); }
@media (max-width: 620px) {
  .consentement { left: 10px; right: 10px; bottom: 10px; }
  .consentement-in { padding: 22px 20px; }
  .consentement-actions .btn { flex: 1 1 auto; }
}

/* ═══════ PAGE CONFIDENTIALITÉ ═══════ */
.page-legale { padding-bottom: 0; }
.legale-tete { border-bottom: 1px solid var(--lin); }
.legale-tete-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.legale { max-width: 860px; padding-block: clamp(56px, 8vw, 100px); }
.legale h2 { margin: 48px 0 12px; font-family: var(--serif); font-size: clamp(28px, 3.2vw, 38px); font-weight: 400; line-height: 1.15; }
.legale p { margin: 0 0 14px; color: var(--taupe); font-weight: 300; }
.legale a:not(.btn) { color: var(--moka); text-decoration-color: var(--or); text-underline-offset: 3px; }
.legale-tableau { overflow-x: auto; margin: 8px 0 16px; }
.legale table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 15px; }
.legale th, .legale td { padding: 12px 14px 12px 0; border-bottom: 1px solid var(--lin); text-align: left; vertical-align: top; }
.legale th { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--or); }
.pied-court { padding-block: 26px; }
.pied-court .pied-bas { margin-top: 0; padding-top: 0; border-top: 0; }


/* ═══════ INTRO DE MARQUE ═══════ */
.intro { display: none; }
.avec-intro .intro {
  position: fixed; inset: 0; z-index: 500;
  display: grid; place-items: center;
  background: var(--nuit); color: var(--ivoire);
  animation: intro-rideau 1s cubic-bezier(.76, 0, .24, 1) 2.3s forwards;
  pointer-events: none;
}
.intro-in { display: flex; flex-direction: column; align-items: center; text-align: center; padding-inline: 24px; }
.intro-mono { width: clamp(70px, 10vw, 104px); height: auto; color: var(--or-clair); opacity: 0; animation: intro-mono 1.1s var(--ease) .15s forwards; }
.intro-nom { margin: 18px 0 0; font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 7vw, 84px); line-height: 1; letter-spacing: .02em; }
.intro-nom span { display: inline-block; opacity: 0; transform: translateY(40%); filter: blur(8px); animation: intro-mot .9s var(--ease) forwards; }
.intro-nom span:nth-child(1) { animation-delay: .55s; }
.intro-nom span:nth-child(2) { animation-delay: .7s; font-style: italic; color: var(--or-pale); }
.intro-nom span:nth-child(3) { animation-delay: .85s; }
.intro-ligne { width: 0; height: 1px; margin: 26px 0 18px; background: var(--or); animation: intro-ligne 1s var(--ease) 1.1s forwards; }
.intro-devise { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--or-clair); opacity: 0; animation: intro-fondu .8s var(--ease) 1.35s forwards; }
@keyframes intro-mono { from { opacity: 0; transform: scale(.7) rotate(-8deg); } to { opacity: 1; transform: none; } }
@keyframes intro-mot { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes intro-ligne { to { width: min(220px, 50vw); } }
@keyframes intro-fondu { to { opacity: 1; } }
@keyframes intro-rideau { to { clip-path: inset(0 0 100% 0); visibility: hidden; } }
.avec-intro .intro { clip-path: inset(0 0 0 0); }

/* Le contenu de l'accueil apparaît au lever du rideau */
.avec-intro .hero .revele { transition-delay: 2.55s; }
.avec-intro .hero .revele.r1 { transition-delay: 2.7s; }
.avec-intro .hero .revele.r2 { transition-delay: 2.85s; }
.avec-intro .hero .revele.r3 { transition-delay: 3s; }
.avec-intro .hero-fond img, .avec-intro .hero-video { animation: hero-zoom 3.6s var(--ease) both; }
@keyframes hero-zoom { 0%, 60% { transform: scale(1.18); } 100% { transform: scale(1); } }
@media (min-width: 1100px) {
  .avec-intro .hero-video { animation: none; }
  .avec-intro .hero-arche { animation: arche-monte 1.4s var(--ease) 2.5s both; }
  @keyframes arche-monte { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: none; } }
}
@media (prefers-reduced-motion: reduce) { .intro { display: none !important; } }
@media (max-width: 620px) {
  .intro-devise { font-size: 10px; letter-spacing: .2em; white-space: nowrap; }
  .intro-nom { font-size: 40px; }
}
