/* =========================================================
   AURA · CANNES — Salon de coiffure
   Stylesheet
   ========================================================= */

/* =========================================================
   Tokens
   ========================================================= */
:root {
  --ivory:      #F5EEE2;
  --ivory-2:    #ECE2D1;
  --sand:       #D9C9B2;
  --sand-deep:  #BFA983;
  --taupe:      #8A7457;
  --cocoa:      #5C4530;
  --espresso:   #3B2A1B;
  --ink:        #261A10;
  --warm-glow:  #F8E9C8;
  --line:       rgba(60, 42, 27, 0.18);

  --serif:  "DM Serif Display", "Times New Roman", serif;
  --script: "Italianno", cursive;
  --sans:   "Jost", -apple-system, BlinkMacSystemFont, sans-serif;

  --max:    1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease:   cubic-bezier(.2,.7,.2,1);
}

/* =========================================================
   Reset
   ========================================================= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--cocoa);
  background: var(--ivory);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--cocoa); color: var(--ivory); }

/* Texture de fond globale supprimée */

/* =========================================================
   Boutons / utilitaires
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 17px 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .5s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--cocoa);
  color: var(--ivory);
  box-shadow: 0 14px 36px -16px rgba(60, 42, 27, .55);
}
.btn-primary:hover {
  background: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -16px rgba(60, 42, 27, .7);
}
.btn-ghost {
  border: 1px solid var(--cocoa);
  color: var(--cocoa);
}
.btn-ghost:hover {
  background: var(--cocoa);
  color: var(--ivory);
}
.btn .arrow {
  display: inline-block;
  transition: transform .5s var(--ease);
}
.btn:hover .arrow { transform: translateX(6px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--taupe);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--taupe);
}
.eyebrow-spaced { margin-bottom: 24px; }
.eyebrow-centered { justify-content: center; margin-bottom: 28px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--espresso); line-height: 1; }
.script { font-family: var(--script); font-weight: 400; font-size: 1.6em; line-height: .8; color: var(--cocoa); font-style: normal; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(245, 238, 226, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;   /* pour que le dropdown se positionne par rapport à la nav */
}
.nav-logo {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--espresso);
}
.nav-logo small {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  display: block;
  color: var(--taupe);
  margin-top: 2px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cocoa);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--cocoa);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { padding: 12px 22px; font-size: 11px; }





/* =========================================================
   HERO — fond CSS original
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 14vh, 160px) 0 clamp(80px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, var(--warm-glow) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 100%, rgba(217,201,178,.7) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 100%, rgba(217,201,178,.5) 0%, transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
  z-index: -2;
}
/* Bandes héro supprimées */

/* Layout centré */
.hero-inner-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

/* Hero logo image */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(24px, 4vh, 48px);
  animation: fadeUp 1.2s var(--ease) .35s both;
}
.hero-logo-img {
  width: clamp(220px, 42vw, 420px);
  max-width: 90%;
  height: auto;
  display: block;
}

/* Cadre vidéo de présentation dans le hero */
.hero-video-frame {
  width: 100%;
  max-width: 760px;
  margin: 0 auto clamp(28px, 5vh, 56px);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px -25px rgba(60, 42, 27, .45);
  border: 1px solid rgba(140, 110, 80, .18);
  aspect-ratio: 16 / 9;
  background: var(--ivory-2);
}
.hero-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-eyebrow {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .2s forwards;
}

.hero-title {
  font-size: clamp(82px, 14vw, 220px);
  letter-spacing: -0.02em;
  color: var(--espresso);
  line-height: .82;
}
.hero-title .a-overlap { display: inline-block; }
.hero-title .script {
  display: block;
  font-size: clamp(56px, 9vw, 140px);
  color: var(--cocoa);
  margin-top: -.05em;
  margin-left: clamp(40px, 6vw, 100px);
  letter-spacing: 0;
}
.hero-title span { display: inline-block; opacity: 0; transform: translateY(40px); }
.hero-title span:nth-child(1) { animation: fadeUp 1.2s var(--ease) .35s forwards; }
.hero-title span:nth-child(2) { animation: fadeUp 1.2s var(--ease) .55s forwards; }

.hero-meta {
  margin-top: 42px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 36px;
  opacity: 0; animation: fadeUp 1s var(--ease) .9s forwards;
}
.hero-meta .city {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--taupe);
  letter-spacing: 0.05em;
}
.hero-meta .sep { width: 60px; height: 1px; background: var(--taupe); }

.hero-aside {
  opacity: 0; animation: fadeUp 1s var(--ease) 1.1s forwards;
}
.hero-aside p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cocoa);
  max-width: 360px;
  margin-bottom: 32px;
}
.hero-aside p::first-letter {
  font-family: var(--serif);
  font-size: 2.4em;
  float: left;
  line-height: 1;
  padding: 4px 10px 0 0;
  color: var(--espresso);
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero-stamp {
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  bottom: 60px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex; align-items: center; gap: 18px;
  opacity: 0; animation: fadeIn 1s var(--ease) 1.4s forwards;
}
.hero-stamp::before {
  content: ""; width: 1px; height: 80px; background: var(--taupe);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-stamp { display: none; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* =========================================================
   NAV — logo image
   ========================================================= */
/* Logo nav — AURA seul, compact */
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--espresso);
  line-height: 1;
  transition: color .3s;
}
.nav-logo:hover .nav-logo-text { color: var(--cocoa); }
.nav-logo-img {
  height: 84px;
  width: auto;
  display: block;
  transition: transform .3s var(--ease);
}
.nav.scrolled .nav-logo-img { height: 68px; }
.nav-logo:hover .nav-logo-img { transform: scale(1.04); }
@media (max-width: 700px) {
  .nav-logo-img { height: 64px; }
  .nav.scrolled .nav-logo-img { height: 54px; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--cocoa);
  color: var(--ivory);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ivory);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--sand-deep);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION GENERIQUES
   ========================================================= */
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; z-index: 2; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.section-head h2 {
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.01em;
  line-height: .95;
}
.section-head h2 em {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.4em;
  color: var(--cocoa);
  line-height: .6;
  display: inline-block;
  margin-left: -8px;
}
.section-head .lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--taupe);
  max-width: 460px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 30px; }
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  background: var(--ivory-2);
  text-align: center;
}
.manifesto .eyebrow { margin-bottom: 32px; justify-content: center; }
.manifesto .eyebrow::before, .manifesto .eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--taupe);
}
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.3;
  color: var(--espresso);
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}
.manifesto-text em {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.5em;
  color: var(--cocoa);
  line-height: .6;
  display: inline-block;
  vertical-align: -0.18em;
  padding: 0 .04em;
}
.manifesto-sig {
  margin-top: 50px;
  font-family: var(--script);
  font-size: 38px;
  color: var(--taupe);
}

/* =========================================================
   SERVICES — Carte type menu
   ========================================================= */
.menu {
  display: grid;
  gap: clamp(56px, 7vw, 96px);
}

.menu-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.menu-cat-head h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--espresso);
}

.btn-mini {
  padding: 10px 20px;
  font-size: 10px;
  letter-spacing: 0.24em;
  gap: 10px;
}

.menu-list {
  list-style: none;
  display: grid;
  gap: 0;
}
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(60, 42, 27, 0.08);
  font-size: 15px;
  transition: padding 0.5s var(--ease);
}
.menu-list li:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: linear-gradient(90deg, rgba(217, 201, 178, .12), transparent);
}

.menu-list .name {
  color: var(--cocoa);
  line-height: 1.5;
  max-width: 600px;
}
.menu-list .name small {
  display: block;
  color: var(--taupe);
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.6;
  font-style: italic;
  font-family: var(--serif);
}

.menu-list .duration {
  font-family: var(--serif);
  font-style: italic;
  color: var(--taupe);
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.menu-list .price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--espresso);
  font-size: 20px;
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

@media (max-width: 700px) {
  .menu-cat-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .menu-list li {
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
    padding: 20px 0;
  }
  .menu-list li:hover { padding-left: 0; padding-right: 0; background: none; }
  .menu-list .name {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .menu-list .duration {
    grid-column: 1;
    grid-row: 2;
  }
  .menu-list .price {
    grid-column: 2;
    grid-row: 2;
    font-size: 17px;
  }
}

/* =========================================================
   SIGNATURE / EXPERIENCE
   ========================================================= */
.signature {
  background: var(--cocoa);
  color: var(--ivory);
}
.signature .eyebrow { color: var(--sand); }
.signature .eyebrow::before { background: var(--sand); }
.signature h2 { color: var(--ivory); }
.signature .lead { color: var(--sand); }
.signature-title { color: var(--ivory) !important; }
.signature-title em { color: var(--sand) !important; }

.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.sig-card {
  padding: 36px 0 0;
  border-top: 1px solid rgba(245, 238, 226, .25);
  transition: border-color .4s;
}
.sig-card:hover { border-color: var(--sand); }
.sig-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--sand);
  margin-bottom: 22px;
  display: block;
}
.sig-card h3 {
  color: var(--ivory);
  font-size: 30px;
  margin-bottom: 18px;
}
.sig-card p {
  color: var(--sand);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 800px) { .sig-grid { grid-template-columns: 1fr; gap: 30px; } }

/* =========================================================
   AMBIANCE / GALERIE (CSS art, sans photos externes)
   ========================================================= */
.ambiance {
  background: var(--ivory);
}

/* =========================================================
   AVIS GOOGLE
   ========================================================= */
.reviews {
  background: var(--ivory-2);
}
.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.reviews-stars {
  color: #E8B339;
  font-size: 18px;
  letter-spacing: 2px;
}
.reviews-eyebrow-text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* Note globale */
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.reviews-rating-score {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--espresso);
  line-height: 1;
}
.reviews-rating-stars {
  color: #E8B339;
  font-size: 22px;
  letter-spacing: 2px;
}
.reviews-rating-meta {
  font-size: 13px;
  color: var(--taupe);
}

/* Carrousel */
.reviews-carousel {
  position: relative;
  margin-top: 40px;
}
.reviews-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 18px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 320px;
  max-width: 320px;
  scroll-snap-align: start;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cocoa);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
}
.review-id {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.review-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--espresso);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-date {
  font-size: 12px;
  color: var(--taupe);
}
.review-google {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.review-stars {
  color: #E8B339;
  font-size: 15px;
  letter-spacing: 1.5px;
}
.review-text {
  font-size: 14px;
  line-height: 1.62;
  color: var(--cocoa);
}

/* Flèches */
.reviews-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--cocoa);
  font-size: 24px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.reviews-arrow:hover { background: var(--cocoa); color: var(--ivory); }
.reviews-arrow--prev { left: -10px; }
.reviews-arrow--next { right: -10px; }

.reviews-cta {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 700px) {
  .review-card { flex-basis: 78vw; max-width: 78vw; }
  .reviews-arrow { display: none; }
}

.ambiance-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 14px;
}
.tile {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform .8s var(--ease);
}
.tile:hover { transform: scale(.98); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(60, 42, 27, .45));
}
.tile .label {
  position: absolute; left: 22px; bottom: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory);
  z-index: 2;
  letter-spacing: 0.02em;
}

.tile-3::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(60,42,27,.12) 0 1px, transparent 1px 8px);
}
.tile-4 {
  grid-column: 6 / span 4; grid-row: span 2;
  background: linear-gradient(135deg, var(--cocoa), var(--espresso));
}
.tile-4::before {
  content: "AURA"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 64px; color: var(--sand);
  letter-spacing: 0.04em;
}
.tile-5 {
  grid-column: 1 / span 4; grid-row: span 4;
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, var(--warm-glow), transparent 60%),
    linear-gradient(180deg, var(--ivory-2), var(--sand));
}
.tile-5::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 100%;
  background:
    radial-gradient(circle at 50% 100%, rgba(60,42,27,.18), transparent 40%);
}
.tile-6 {
  grid-column: 5 / span 5; grid-row: span 4;
  background:
    radial-gradient(ellipse at top right, var(--warm-glow), transparent 50%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 60%, var(--sand) 100%);
}
.tile-6::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(245, 238, 226, .9) 0 2px, transparent 2px),
              radial-gradient(circle at 30% 70%, rgba(245, 238, 226, .7) 0 1px, transparent 1px);
  background-size: 80px 80px, 50px 50px;
}
.tile-7 {
  grid-column: 10 / span 3; grid-row: span 4;
  background: linear-gradient(180deg, var(--sand-deep), var(--cocoa));
}
.tile-7::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(245,238,226,.1) 0 1px, transparent 1px 6px);
}

@media (max-width: 800px) {
  .ambiance-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .tile { grid-column: span 1 !important; grid-row: span 2 !important; }
  .tile-1, .tile-6 { grid-column: span 2 !important; }
}

/* =========================================================
   ÉQUIPE
   ========================================================= */


/* =========================================================
   VISITE / CONTACT
   ========================================================= */
.visit {
  background: var(--ivory-2);
  position: relative;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.visit h2 { font-size: clamp(48px, 7vw, 92px); margin-bottom: 32px; }
.visit-info { display: grid; gap: 32px; max-width: 420px; }
.info-block .label {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 10px;
}
.info-block .value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--espresso);
  line-height: 1.4;
}
.info-block .value em { font-family: var(--script); font-size: 1.6em; vertical-align: -0.2em; line-height: 0; padding: 0 6px; color: var(--cocoa); }

/* Carte stylisée */
.map-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 44px;
  border-radius: 6px;
  box-shadow: 0 30px 80px -40px rgba(60, 42, 27, .3);
  position: relative;
}
.map-card .corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--cocoa);
}
.map-card .corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.map-card .corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.map-card .corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.map-card .corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.map-card h3 {
  font-size: 32px; margin-bottom: 4px;
}
.map-card .sub {
  font-family: var(--script); font-size: 38px; color: var(--cocoa);
  margin-bottom: 28px; line-height: .8;
}
.map-card .row {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.map-card .row:last-of-type { border-bottom: 1px solid var(--line); }
.map-card .row span:first-child { color: var(--taupe); letter-spacing: 0.05em; }
.map-card .row span:last-child { color: var(--espresso); font-family: var(--serif); font-style: italic; }
.map-card .closed { color: var(--sand-deep) !important; }
.map-card .btn { width: 100%; justify-content: center; margin-top: 28px; }

@media (max-width: 800px) { .visit-grid { grid-template-columns: 1fr; gap: 40px; } }

/* =========================================================
   CTA FINAL
   ========================================================= */
.final {
  text-align: center;
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--warm-glow), transparent 70%);
  z-index: -1;
}
.final h2 {
  font-size: clamp(58px, 9vw, 130px);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.final h2 em {
  font-family: var(--script);
  font-style: normal;
  color: var(--cocoa);
  font-size: 1.3em;
  line-height: .5;
  display: block;
  margin-top: -10px;
}
.final p {
  max-width: 480px;
  margin: 0 auto 44px;
  color: var(--taupe);
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--espresso);
  color: var(--sand);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 238, 226, .15);
}
.foot-logo {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--ivory);
  line-height: .9;
  letter-spacing: 0.02em;
}
.foot-logo em {
  font-family: var(--script); font-style: normal;
  font-size: 1.1em; line-height: .5;
  display: block;
  color: var(--sand);
}
.foot-tag { margin-top: 18px; font-size: 13px; color: var(--sand); max-width: 280px; line-height: 1.7; }
.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 22px;
}
.foot-col ul { list-style: none; display: grid; gap: 12px; }
.foot-col a { font-size: 14px; color: var(--sand); transition: color .3s; }
.foot-col a:hover { color: var(--ivory); }
.foot-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--taupe); text-transform: uppercase;
}
@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-logo-col { grid-column: span 2; }
  .foot-bottom { flex-direction: column; gap: 14px; }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Pas de motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   MODALE RÉSERVATION
   ========================================================= */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(38, 26, 16, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal {
  background: var(--ivory);
  border-radius: 10px;
  padding: clamp(36px, 5vw, 60px);
  max-width: 680px;
  width: 100%;
  position: relative;
  transform: translateY(28px) scale(.97);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .45s var(--ease);
  box-shadow: 0 50px 120px -40px rgba(38, 26, 16, .55);
}

.modal-close {
  position: absolute; top: 20px; right: 22px;
  font-size: 18px;
  color: var(--taupe);
  transition: color .3s, transform .3s;
  padding: 6px;
  line-height: 1;
}
.modal-close:hover { color: var(--espresso); transform: rotate(90deg); }

.modal-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.modal-eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--taupe);
}

.modal-title {
  font-size: clamp(38px, 6vw, 58px);
  letter-spacing: -0.02em;
  line-height: .95;
  margin-bottom: 16px;
  color: var(--espresso);
}
.modal-title em {
  font-family: var(--script);
  font-style: normal;
  color: var(--cocoa);
  font-size: 1.35em;
  line-height: .5;
  display: inline-block;
  margin-top: 4px;
}

.modal-desc {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 38px;
}

/* Les deux cartes de choix */
.modal-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.modal-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.modal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(38, 26, 16, .45);
}
.modal-card:hover .modal-card-cta span {
  transform: translateX(6px);
}

.modal-card-inner {
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

/* MEN — fond sombre */
.modal-card--men .modal-card-inner {
  background: linear-gradient(155deg, var(--espresso) 0%, var(--ink) 100%);
  color: var(--ivory);
}
.modal-card--men .modal-card-inner::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(245,238,226,.06) 0 1px, transparent 1px 10px);
  pointer-events: none;
}
.modal-card--men .modal-card-icon,
.modal-card--men .modal-card-label,
.modal-card--men .modal-card-name,
.modal-card--men .modal-card-sub,
.modal-card--men .modal-card-cta { color: var(--ivory); }
.modal-card--men .modal-card-sub { color: var(--sand); }

/* WOMEN — fond ivoire chaud */
.modal-card--women .modal-card-inner {
  background: linear-gradient(155deg, var(--ivory-2) 0%, var(--sand) 100%);
  color: var(--espresso);
  border: 1px solid var(--line);
}
.modal-card--women .modal-card-inner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--warm-glow), transparent 60%);
  pointer-events: none;
}
.modal-card--women .modal-card-icon,
.modal-card--women .modal-card-label,
.modal-card--women .modal-card-name,
.modal-card--women .modal-card-cta { color: var(--espresso); }
.modal-card--women .modal-card-sub { color: var(--taupe); }

/* Éléments internes des cartes */
.modal-card-icon {
  margin-bottom: 14px;
  opacity: .85;
}
.modal-card-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.52em;
  font-weight: 500;
  text-transform: uppercase;
  opacity: .7;
}
.modal-card-name {
  font-family: var(--serif);
  font-size: 40px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.modal-card-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 4px;
}
.modal-card-cta {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.modal-card-cta span {
  display: inline-block;
  transition: transform .5s var(--ease);
}

.modal-note {
  text-align: center;
  font-size: 12px;
  color: var(--taupe);
  letter-spacing: 0.04em;
}

/* Lien footer */
.foot-link {
  font-size: 14px;
  color: var(--sand);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color .3s;
  font-family: var(--sans);
}
.foot-link:hover { color: var(--ivory); }

@media (max-width: 560px) {
  .modal-choices { grid-template-columns: 1fr; }
  .modal-card-name { font-size: 32px; }
}

/* =========================================================
   VIDEO SHOWCASE (section dédiée plein écran)
   ========================================================= */
.video-showcase {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--ivory-2);
}

/* Rectangle centré avec marges */
.video-showcase-rect {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 40px 100px -40px rgba(38, 26, 16, .45);
  background: var(--espresso);
}
.video-showcase-rect video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Badge logo coin bas droit */
.showcase-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  width: clamp(70px, 7vw, 110px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(245, 238, 226, .7);
  box-shadow: 0 6px 28px rgba(38,26,16,.35);
  background: var(--ivory);
  z-index: 2;
}
.showcase-badge img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =========================================================
   GALERIE PHOTOS RÉELLES
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item figcaption {
  position: absolute;
  left: 24px; bottom: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ivory);
  text-shadow: 0 2px 12px rgba(38,26,16,.5);
  z-index: 2;
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(38, 26, 16, .45));
  pointer-events: none;
}
.gallery-item--wide {
  grid-row: span 2;
  min-height: 520px;
}
.gallery-logo-tile {
  background: var(--ivory-2);
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
}
.gallery-logo-tile img {
  width: 80%; max-width: 280px;
  height: auto;
  object-fit: contain;
  transform: none !important;
}
.gallery-logo-tile::after { display: none; }

/* =========================================================
   ÉCRIN — Onglets Women / Men
   ========================================================= */
.ecrin-tabs {
  display: flex;
  gap: 0;
  margin: 48px 0 56px;
  border-bottom: 1px solid var(--line);
}
.ecrin-tab {
  position: relative;
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .3s;
}
.ecrin-tab::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--cocoa);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.ecrin-tab.active { color: var(--espresso); }
.ecrin-tab.active::after { transform: scaleX(1); }
.ecrin-tab:hover { color: var(--cocoa); }

.ecrin-panel {
  display: none;
  animation: fadeIn .4s var(--ease);
}
.ecrin-panel.active { display: block; }

.ecrin-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.ecrin-block-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.ecrin-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 1.1s var(--ease);
}
.ecrin-block-media:hover img { transform: scale(1.04); }

/* Mini-galerie de l'écrin (espace Women) */
.ecrin-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ecrin-gallery-item {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ivory-2);
}
.ecrin-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.ecrin-gallery-item:hover img { transform: scale(1.05); }

.ecrin-block-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cocoa);
  padding: 8px 18px;
  border: 1px solid var(--cocoa);
  border-radius: 999px;
  margin-bottom: 24px;
}
.ecrin-block-text h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 20px;
}
.ecrin-block-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--taupe);
  max-width: 460px;
  margin-bottom: 24px;
}
.ecrin-block-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.ecrin-block-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--cocoa);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.ecrin-block-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1px;
  background: var(--sand-deep);
}

@media (max-width: 800px) {
  .ecrin-block { grid-template-columns: 1fr; }
  .ecrin-tab { padding: 14px 24px; font-size: 10px; }
}


@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { min-height: 360px; grid-row: span 1; }
  .gallery-logo-tile { min-height: 220px; }
}

/* =========================================================
   ÉQUIPE — nouvelle structure
   ========================================================= */

/* Bloc patron */
.team-patron {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 72px;
}
.patron-portrait {
  width: 260px;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 4px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, var(--warm-glow), transparent 60%),
    linear-gradient(180deg, var(--ivory-2) 0%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.patron-portrait::after {
  content: attr(data-initial);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 90px;
  color: var(--cocoa);
  opacity: .4;
}
.patron-info h3 {
  font-size: clamp(44px, 6vw, 72px);
  margin-bottom: 6px;
  line-height: 1;
}
.patron-info .role {
  font-family: var(--serif);
  font-style: italic;
  color: var(--taupe);
  font-size: 18px;
  margin-bottom: 20px;
}
.patron-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--taupe);
  max-width: 480px;
}

/* Deux colonnes Women / Men */
.team-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.team-col-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.team-col-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cocoa);
  white-space: nowrap;
  padding: 8px 18px;
  border: 1px solid var(--cocoa);
  border-radius: 999px;
}
.team-col-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.team-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Membres */
.member { text-align: left; }
.portrait {
  aspect-ratio: 4/5;
  border-radius: 4px;
  margin-bottom: 16px;
  position: relative; overflow: hidden;
  background: var(--ivory-2);
}
.portrait::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, var(--warm-glow), transparent 60%),
    linear-gradient(180deg, var(--ivory-2) 0%, var(--sand) 100%);
}
.portrait::after {
  content: attr(data-initial);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--cocoa);
  opacity: .35;
}
.member h3 { font-size: 24px; margin-bottom: 4px; }
.member .role {
  font-family: var(--serif);
  font-style: italic;
  color: var(--taupe);
  font-size: 14px;
}

/* Cassidy — badge "Femme & Homme" */
.member .role:contains("Homme") { color: var(--cocoa); }
/* Photos réelles de l'équipe */
.member-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
.patron-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  border-radius: 4px;
}


@media (max-width: 900px) {
  .team-patron { grid-template-columns: 1fr; gap: 28px; }
  .patron-portrait { width: 180px; height: auto; }
  .team-cols { grid-template-columns: 1fr; }
  .team-col-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .team-col-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ÉQUIPE — nouvelle structure
   ========================================================= */

/* Bloc patron */
.team-patron {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 72px;
}
.patron-portrait {
  width: 260px;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 4px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, var(--warm-glow), transparent 60%),
    linear-gradient(180deg, var(--ivory-2) 0%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.patron-portrait::after {
  content: attr(data-initial);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 90px;
  color: var(--cocoa);
  opacity: .4;
}
.patron-info h3 {
  font-size: clamp(44px, 6vw, 72px);
  margin-bottom: 6px;
  line-height: 1;
}
.patron-info .role {
  font-family: var(--serif);
  font-style: italic;
  color: var(--taupe);
  font-size: 18px;
  margin-bottom: 20px;
}
.patron-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--taupe);
  max-width: 480px;
}

/* Deux colonnes Women / Men */
.team-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.team-col-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.team-col-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cocoa);
  white-space: nowrap;
  padding: 8px 18px;
  border: 1px solid var(--cocoa);
  border-radius: 999px;
}
.team-col-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.team-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Membres */
.member { text-align: left; }
.portrait {
  aspect-ratio: 4/5;
  border-radius: 4px;
  margin-bottom: 16px;
  position: relative; overflow: hidden;
  background: var(--ivory-2);
}
.portrait::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, var(--warm-glow), transparent 60%),
    linear-gradient(180deg, var(--ivory-2) 0%, var(--sand) 100%);
}
.portrait::after {
  content: attr(data-initial);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--cocoa);
  opacity: .35;
}
.member h3 { font-size: 24px; margin-bottom: 4px; }
.member .role {
  font-family: var(--serif);
  font-style: italic;
  color: var(--taupe);
  font-size: 14px;
}

/* Cassidy — badge "Femme & Homme" */
.member .role:contains("Homme") { color: var(--cocoa); }

@media (max-width: 900px) {
  .team-patron { grid-template-columns: 1fr; gap: 28px; }
  .patron-portrait { width: 180px; height: auto; }
  .team-cols { grid-template-columns: 1fr; }
  .team-col-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .team-col-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   BURGER + MENU MOBILE
   ========================================================= */

/* Burger — caché sur desktop */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  position: relative;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cocoa);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1),
              opacity  .3s,
              width    .4s cubic-bezier(.2,.7,.2,1);
}
/* Croix quand ouvert */
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Panneau déroulant — TOUJOURS caché sauf mobile */
.mobile-menu {
  display: none;          /* invisible sur desktop */
  position: absolute;
  top: 100%;
  left: 0;                /* pleine largeur sur mobile */
  right: 0;
  z-index: 90;
  background: rgba(245, 238, 226, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  /* Animation hauteur */
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.2,.7,.2,1),
              opacity    .4s cubic-bezier(.2,.7,.2,1);
  opacity: 0;
}
.mobile-menu.open {
  max-height: 560px;
  opacity: 1;
}

/* Liste des liens */
.mobile-links {
  list-style: none;
  margin: 0;
  padding: 12px 0 8px;
}
.mobile-links li {
  border-bottom: 1px solid rgba(60, 42, 27, .07);
}
.mobile-links li:last-child { border-bottom: none; }

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px var(--gutter);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: padding-left .35s var(--ease), color .25s;
}
.mobile-link::after {
  content: "→";
  color: var(--taupe);
  font-size: 13px;
  transition: transform .35s var(--ease);
}
.mobile-link:hover {
  padding-left: calc(var(--gutter) + 10px);
  color: var(--cocoa);
}
.mobile-link:hover::after { transform: translateX(4px); }

/* Bouton RDV dans le menu */
.mobile-cta-wrap {
  padding: 16px var(--gutter);
  border-top: 1px solid var(--line);
}
.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: var(--cocoa);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}
.mobile-cta:hover { background: var(--espresso); }

/* Pied du menu : Instagram */
.mobile-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px var(--gutter) 24px;
  border-top: 1px solid var(--line);
}
.mobile-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color .3s;
}
.mobile-social:hover { color: var(--cocoa); }

/* Lien légal footer */
.foot-legal-link {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s;
}
.foot-legal-link:hover { opacity: .7; }

/* ——— Burger & mobile-menu — toujours initialisés ——— */
.burger      { display: flex; }
.mobile-menu { display: block; }


/* ——— Desktop : dropdown collé à droite sous le burger ——— */
@media (min-width: 901px) {
  .mobile-menu {
    left: auto  !important;      /* ignorer le left:0 du base */
    right: 0    !important;      /* coller au bord droit de la nav */
    width: 280px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 50px -16px rgba(38, 26, 16, .35);
    border: 1px solid var(--line);
    border-top: none;
    /* S'assurer que ce n'est pas pleine largeur */
    min-width: 0;
  }
  .mobile-link {
    font-size: 11px;
    padding: 14px 28px;
    letter-spacing: 0.28em;
  }
  .mobile-cta-wrap { padding: 14px 28px; }
  .mobile-footer   { padding: 12px 28px 18px; }
  .mobile-cta { font-size: 10px; padding: 14px 20px; }
}


/* =========================================================
   RESPONSIVE NAV — règles définitives
   ========================================================= */

/* Wrapper burger — ancre le dropdown directement dessous */
.burger-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Dropdown : position par rapport au .burger-wrap */
.mobile-menu {
  position: absolute !important;
  top: calc(100% + 14px) !important;  /* 14px sous le bas du burger */
  right: 0  !important;
  left: auto !important;
  width: 280px !important;
  border-radius: 10px !important;
  box-shadow: 0 20px 56px -16px rgba(38,26,16,.32) !important;
  border: 1px solid var(--line) !important;
}

/* Desktop (> 900px) : nav-links et cta visibles */
@media (min-width: 901px) {
  .nav-links        { display: flex !important; }
  .nav .nav-cta     { display: inline-flex !important; }
  .burger           { display: flex !important; }
  .mobile-link      { font-size: 11px; padding: 14px 28px; letter-spacing: 0.28em; }
  .mobile-cta-wrap  { padding: 12px 28px; }
  .mobile-footer    { padding: 12px 28px 18px; }
  .mobile-cta       { font-size: 10px; padding: 14px 18px; }
}

/* Mobile (≤ 900px) : cacher nav-links et cta */
@media (max-width: 900px) {
  .nav-links        { display: none !important; }
  .nav .nav-cta     { display: none !important; }
  .burger           { display: flex !important; }

  /* Sur mobile le dropdown prend toute la largeur de l'écran */
  .burger-wrap { position: static; }
  .mobile-menu {
    position: fixed !important;   /* sort du flux pour pleine largeur */
    top: var(--nav-h, 70px) !important;
    left: 0   !important;
    right: 0  !important;
    width: 100% !important;
    border-radius: 0 !important;
    box-shadow: 0 8px 30px -10px rgba(38,26,16,.18) !important;
  }
}

/* =========================================================
   TÉLÉPHONES WOMEN / MEN
   ========================================================= */
.tel-link {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 22px;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
}
.tel-link:hover { color: var(--cocoa); }

.tel-tag {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--cocoa);
  padding: 3px 10px;
  border-radius: 999px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* =========================================================
   SECTION TARIFS — onglets Women / Men
   ========================================================= */
.tarifs-section {
  background: var(--ivory);
}

/* Onglets */
.tarifs-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.tarifs-tab {
  position: relative;
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .3s;
}
.tarifs-tab::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--cocoa);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.tarifs-tab.active {
  color: var(--espresso);
}
.tarifs-tab.active::after {
  transform: scaleX(1);
}
.tarifs-tab:hover { color: var(--cocoa); }

/* Panels */
.tarifs-panel {
  display: none;
  animation: fadeIn .4s var(--ease);
}
.tarifs-panel.active {
  display: grid;
  gap: clamp(56px, 7vw, 90px);
}

@media (max-width: 600px) {
  .tarifs-tab { padding: 14px 24px; font-size: 10px; }
}


/* ── Hero centré : overrides ── */
.hero-inner-centered .hero-eyebrow {
  justify-content: center;
  margin-bottom: clamp(24px, 3vh, 36px);
}
.hero-inner-centered .hero-eyebrow::before { display: none; }
.hero-inner-centered .hero-eyebrow::after  {
  content: ""; width: 28px; height: 1px; background: var(--taupe);
}

.hero-inner-centered .hero-title {
  font-size: clamp(88px, 18vw, 260px);
  text-align: center;
  line-height: .82;
  margin-bottom: clamp(20px, 3vh, 32px);
}
.hero-inner-centered .hero-title .script {
  margin-left: 0;
  font-size: clamp(60px, 12vw, 170px);
}

.hero-inner-centered .hero-meta {
  justify-content: center;
  margin-top: 0;
  margin-bottom: clamp(28px, 4vh, 44px);
  opacity: 0;
  animation: fadeUp 1s var(--ease) .9s forwards;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--taupe);
  max-width: 520px;
  margin: 0 auto clamp(28px, 4vh, 40px);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.05s forwards;
}

.hero-inner-centered .hero-cta {
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}

/* Stamp vertical — toujours à droite */
.hero-stamp {
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  bottom: 60px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex; align-items: center; gap: 18px;
  opacity: 0; animation: fadeIn 1s var(--ease) 1.4s forwards;
}
.hero-stamp::before {
  content: ""; width: 1px; height: 80px; background: var(--taupe);
}

@media (max-width: 700px) {
  .hero-stamp { display: none; }
  .hero-inner-centered .hero-title { font-size: clamp(70px, 22vw, 110px); }
  .hero-inner-centered .hero-title .script { font-size: clamp(48px, 15vw, 76px); }
}
