/* ══════════════════════════════════════════════
   FONTS
══════════════════════════════════════════════ */
@font-face {
  font-family: 'BrittanySignature';
  src: url('brittany_signature/BrittanySignature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Cherolina';
  src: url('cherolina/Cherolina.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ══════════════════════════════════════════════
   RESET & VARIABLES
══════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette chocolat → nude */
  --brown:        #4a2c1a;
  --brown-dark:   #33190c;
  --cream:        #f2e4d0;
  --cream-mid:    #e8d5bc;
  --gold:         #b8895a;
  --gold-light:   #d4a97a;
  --gold-dim:     rgba(184, 137, 90, 0.40);
  --gold-faint:   rgba(184, 137, 90, 0.12);

  --font-script:  'BrittanySignature', cursive;
  --font-body:    'Montserrat', sans-serif;

  --max-w:        960px;
  --pad-x:        36px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--brown);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad-x);
  height: 62px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

/* Logo toujours dans la colonne centrale → centré parfaitement */
.navbar__logo-link {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-self: center;
}

.navbar__logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Hamburger — caché sur desktop */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
}
.navbar__burger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: 0.2s;
}

/* Bouton réserver mobile — caché sur desktop */
.navbar__rdv--mobile {
  display: none;
}

/* Drawer mobile */
.navbar__drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 75vw;
  max-width: 300px;
  height: 100vh;
  background: var(--brown);
  z-index: 300;
  padding: 80px 36px 40px;
  box-shadow: 4px 0 32px rgba(0,0,0,0.3);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.navbar__drawer.open {
  transform: translateX(0);
}
.navbar__drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.navbar__drawer ul li a {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(184,137,90,0.15);
  transition: color 0.2s;
}
.navbar__drawer ul li a:hover {
  color: var(--gold-light);
}
.navbar__drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
}

.navbar__brand {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--gold-light);
  letter-spacing: 1px;
  line-height: 1;
}

.navbar__links {
  list-style: none;
  display: flex;
  gap: 32px;
  grid-column: 3;
  justify-self: end;
}

.navbar__links a {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(242, 228, 208, 0.65);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: var(--gold-light);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
  width: 100%;
  min-width: 320px;
}

img { display: block; max-width: 100%; }

/* ══════════════════════════════════════════════
   WAVE DIVIDERS
══════════════════════════════════════════════ */
.wave {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  vertical-align: bottom;
}

/* ══════════════════════════════════════════════
   SHARED — FRAMES TABLEAU
══════════════════════════════════════════════ */
.frame {
  position: relative;
  background: var(--cream-mid);
  /* Double border — style tableau */
  border: 3px solid var(--gold);
  outline: 1px solid rgba(184, 137, 90, 0.30);
  outline-offset: 5px;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(184, 137, 90, 0.10);
  overflow: hidden;
}

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

/* Portrait — hero */
.frame--portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
}

/* Service cards */
.frame--service {
  width: 100%;
  aspect-ratio: 3 / 4;
}

/* Avant/Après pairs */
.frame--pair {
  width: 100%;
  aspect-ratio: 2 / 3;
}

/* ══════════════════════════════════════════════
   SHARED — SECTION LABELS
══════════════════════════════════════════════ */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 4px;
  text-align: center;
  display: block;
}

.section-label--light {
  color: var(--gold-light);
}

/* ══════════════════════════════════════════════
   SECTION 1 — HERO  (image plein écran)
══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('photo/headerEnHaut.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 14, 5, 0.30) 0%,
    rgba(30, 14, 5, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: -18vh;
}

.hero__title {
  font-family: var(--font-script);
  font-size: clamp(72px, 14vw, 150px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
}

.hero__suptitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,228,208,0.80);
  margin-top: 60px;
}

.hero__tagline {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(242,228,208,0.70);
}

.hero__cta {
  display: inline-block;
  margin-top: 12px;
  padding: 16px 48px;
  background: rgba(242,228,208,0.20);
  border: 1.5px solid rgba(242,228,208,0.90);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  transition: background 0.3s, border-color 0.3s;
}

.hero__cta:hover {
  background: rgba(242,228,208,0.35);
  border-color: #fff;
}

/* ══════════════════════════════════════════════
   SECTION 1b — PRÉSENTATION / BIO  (crème)
══════════════════════════════════════════════ */
.presentation {
  background: var(--cream);
  padding: 64px 0 40px;
  overflow: hidden;
}

.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.hero__layout {
  display: flex;
  align-items: stretch;
  gap: 56px;
}

.hero__photos {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-shrink: 0;
  width: 52%;
  margin-left: -24px;
}

.hero__photos-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero__photos-col:first-child {
  flex: 0 0 40%;
  gap: 16px;
}

.frame--hero-sm {
  aspect-ratio: 2 / 3;
  width: 100%;
}

.hero__photos-col:last-child {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame--hero-lg {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
}

.hero__salon {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.72;
  margin-bottom: 8px;
}

.hero__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 8px;
}

.presentation .hero__title {
  font-family: var(--font-script);
  font-size: clamp(56px, 9vw, 88px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.hero__bio-card {
  background: var(--cream-mid);
  border: 1.5px solid var(--gold-dim);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 24px;
  position: relative;
}

.hero__bio-card::before {
  content: '♡';
  position: absolute;
  top: -11px;
  left: 28px;
  background: var(--cream-mid);
  padding: 0 6px;
  font-size: 14px;
  color: var(--gold);
  opacity: 0.6;
}

.hero__bio-text {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.3px;
  color: var(--brown);
  margin-bottom: 16px;
}

.hero__bio-text strong {
  font-weight: 700;
  color: var(--gold);
}

.hero__bio-domicile {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(74, 44, 26, 0.65);
  border-top: 1px solid rgba(184, 137, 90, 0.2);
  padding-top: 14px;
  margin-bottom: 0;
}

.hero__bio-domicile strong {
  color: var(--gold);
  font-weight: 700;
}

.hero__sign {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__heart {
  font-size: 16px;
  color: var(--brown);
  opacity: 0.42;
}

.hero__signature {
  font-family: var(--font-script);
  font-size: 68px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
}


/* ══════════════════════════════════════════════
   SECTION 2 — INFOS PRATIQUES FUSIONNÉES (crème)
══════════════════════════════════════════════ */
.info {
  background: var(--cream);
  padding: 72px var(--pad-x) 80px;
}

/* Conteneur principal */
.merged {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Horaires + Contact côte à côte, sans cartes ── */
.info-top {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.info-col {
  flex: 1;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-col__title {
  font-family: var(--font-script);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.info-col__sep {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 20px;
}

/* Horaires */
.info-hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-hours__row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-hours__day {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brown);
}

.info-hours__val {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.8px;
  color: rgba(74, 44, 26, 0.55);
  font-style: italic;
}

.info-hours__val--closed {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* Ligne verticale séparatrice */
.info-vline {
  width: 1px;
  background: var(--gold-dim);
  align-self: stretch;
  margin: 0 32px;
  flex-shrink: 0;
}

/* Contact */
.info-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--brown);
  text-decoration: none;
  justify-content: center;
}

a.contact-row:hover span:last-child {
  color: var(--gold);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: rgba(184, 137, 90, 0.08);
  font-size: 14px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ── Séparateur doré ── */
.merged__sep {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 52px 0;
}

.merged__sep-line {
  flex: 1;
  height: 1px;
  background: var(--gold-dim);
}

.merged__sep-heart {
  font-size: 16px;
  color: var(--gold);
  opacity: 0.5;
}

/* ── Blocs sous-sections ── */
.merged__block {
  text-align: center;
}

.merged__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 6px;
}

.merged__subtitle {
  font-family: var(--font-body);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 300;
  letter-spacing: 7px;
  color: var(--brown);
  margin-bottom: 36px;
}

/* ── Checklist ── */
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(74, 44, 26, 0.12);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--brown);
  text-align: left;
  justify-content: center;
}

.check {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* ── Politique — liste simple ── */
.pol-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pol-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(184, 137, 90, 0.15);
}

.pol-row:first-child {
  border-top: 1px solid rgba(184, 137, 90, 0.15);
}

.pol-row__icon {
  display: none;
}

.pol-row__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 4px;
}

.pol-row__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(74, 44, 26, 0.68);
}

.pol-row__text strong {
  color: var(--gold);
  font-weight: 600;
}

.pol-note {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: rgba(74, 44, 26, 0.35);
  line-height: 1.7;
  font-style: italic;
  text-align: center;
}

/* ══════════════════════════════════════════════
   SECTION 3 — PRESTATIONS  (brun)
══════════════════════════════════════════════ */
.services {
  background: var(--brown);
  padding: 64px var(--pad-x) 64px;
}

.services__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services__title {
  font-family: var(--font-body);
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 300;
  letter-spacing: 7px;
  color: var(--cream);
  margin-bottom: 40px;
}

/* ── Grid arches ── */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 144px;
  margin-top: 8px;
  padding: 0 20px;
}

.arch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.arch-card:hover {
  transform: translateY(-4px);
}

/* Cadre en arche */
.arch-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  overflow: hidden;
  border: 2px solid var(--gold-dim);
  margin-bottom: 18px;
  flex-shrink: 0;
}

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

.arch-name {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.arch-desc {
  font-size: 9px;
  font-weight: 300;
  color: rgba(242, 228, 208, 0.52);
  line-height: 1.7;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.arch-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.arch-price__alt {
  font-size: 9px;
  font-weight: 400;
  color: rgba(242, 228, 208, 0.35);
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════
   SECTION 4 — AVANT / APRÈS  (crème — stack scroll)
══════════════════════════════════════════════ */
.avantapres {
  background: var(--cream);
  padding: 0;
}

.avantapres__header {
  text-align: center;
  padding: 80px var(--pad-x) 48px;
}

.avantapres__title {
  font-family: var(--font-script);
  font-size: clamp(64px, 16vw, 96px);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 2px;
  margin-bottom: 0;
  line-height: 1;
}

/* ── Stack scroll : layout 2 colonnes (mobile + desktop) ── */
.stack-section {
  position: relative;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* Colonne photos — gauche : hauteur fixe, pas de scroll-capture */
.stack-photos {
  position: relative;
  height: calc(100vh - 62px);
}

/* Stage qui occupe toute la colonne photos */
.wheel-stage {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px 12px 16px 16px;
}

/* Each card — absolutely stacked, transformed by JS via data-state */
.wheel-card {
  position: absolute;
  transition:
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity   0.65s ease;
  /* default: caché derrière (centre, minuscule) */
  transform: translateY(0) scale(0.4);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.wheel-card[data-state="active"] {
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

.wheel-card[data-state="prev"] {
  transform: translateY(-30%) scale(0.92);
  opacity: 0.55;
  z-index: 5;
}

.wheel-card[data-state="next"] {
  transform: translateY(30%) scale(0.92);
  opacity: 0.55;
  z-index: 5;
}

.wheel-card[data-state="hidden"],
.wheel-card[data-state="gone-up"] {
  transform: translateY(0) scale(0.4);
  opacity: 0;
  z-index: 0;
}

/* La prochaine carte qui va arriver : attend derrière, au centre */
.wheel-card[data-state="gone-down"] {
  transform: translateY(0) scale(0.4);
  opacity: 0;
  z-index: 0;
}

.wheel-card img {
  display: block;
  width: 170px;
  height: 310px;
  object-fit: cover;
  border-radius: 0;
  border: 2px solid var(--gold);
  outline: 1px solid rgba(184,137,90,0.25);
  outline-offset: 5px;
  box-shadow: 0 12px 36px rgba(74,44,26,0.18);
}

/* Sidebar — droite, hauteur fixe */
.stack-sidebar {
  display: flex;
  align-items: center;
  height: calc(100vh - 62px);
  z-index: 50;
  padding: 16px 16px 16px 12px;
  overflow-y: auto;
}

.stack-sidebar__content {
  width: 100%;
}

.stack-sidebar__eyebrow {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stack-sidebar__title {
  font-family: var(--font-script);
  font-size: clamp(24px, 5vw, 64px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 12px;
}

.stack-sidebar__methods {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.stack-sidebar__methods span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 4px 8px;
  border-radius: 20px;
}

.stack-sidebar__para {
  font-size: 9px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(74,44,26,0.70);
  margin-bottom: 16px;
}

.stack-sidebar__para strong {
  color: var(--brown);
  font-weight: 600;
}

.stack-sidebar__reviews-label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-top: 1px solid var(--gold-dim);
  padding-top: 14px;
}

/* Reviews avec transition */
.stack-reviews-wrap {
  position: relative;
  min-height: 70px;
}

.stack-review {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.stack-review.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.stack-review__quote {
  font-size: 10px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: 8px;
}

.stack-review__author {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Desktop : tailles plus grandes */
@media (min-width: 900px) {
  .wheel-stage {
    justify-content: flex-end;
    padding-right: 40px;
    padding-left: var(--pad-x);
  }
  .wheel-card img {
    width: 320px;
    height: 500px;
  }
  .stack-sidebar {
    padding-left: 40px;
    padding-right: var(--pad-x);
  }
  .stack-sidebar__eyebrow { font-size: 9px; }
  .stack-sidebar__title { font-size: clamp(42px, 5vw, 64px); margin-bottom: 24px; }
  .stack-sidebar__methods span { font-size: 8.5px; padding: 5px 12px; }
  .stack-sidebar__para { font-size: 11px; margin-bottom: 32px; }
  .stack-sidebar__reviews-label { font-size: 8.5px; padding-top: 22px; margin-bottom: 14px; }
  .stack-review__quote { font-size: 13.5px; }
  .stack-review__author { font-size: 9px; }
}

/* ══════════════════════════════════════════════
   SECTION 4b — POURQUOI BY CARLY  (brun, pleine largeur)
══════════════════════════════════════════════ */
.whyus {
  background: var(--brown);
  padding: 80px 48px 96px;
}

.whyus__top {
  margin-bottom: 64px;
}

.whyus__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
  opacity: 0.75;
}

.whyus__title {
  font-family: var(--font-script);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.whyus__sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(242,228,208,0.55);
  max-width: 520px;
}

/* Grille de cartes — 2 colonnes, pleine largeur */
.whyus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.whyus__card {
  padding: 52px 56px 52px 0;
  border-bottom: 1px solid rgba(184,137,90,0.20);
  border-right: 1px solid rgba(184,137,90,0.20);
}

/* Colonne droite : espace à gauche (après la barre) et à droite */
.whyus__card:nth-child(2n) {
  border-right: none;
  padding-left: 56px;
  padding-right: 0;
}

/* Supprimer la bordure basse pour la dernière rangée */
.whyus__card:nth-last-child(-n+2) {
  border-bottom: none;
}

.whyus__card-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
  opacity: 0.6;
}

.whyus__card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--cream);
  margin-bottom: 16px;
}

.whyus__card-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(242,228,208,0.65);
}

/* ══════════════════════════════════════════════
   SECTION VALEURS  (crème)
══════════════════════════════════════════════ */
.libre {
  background: var(--cream);
  padding: 80px 48px 96px;
}

.libre__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.libre__title {
  font-family: var(--font-script);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 64px;
}

/* 4 cartes en ligne */
.libre__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.libre__card {
  background: #fff;
  border: 1.5px solid rgba(184,137,90,0.30);
  border-radius: 16px;
  padding: 40px 32px 36px;
  box-shadow: 0 6px 24px rgba(74,44,26,0.08);
  display: flex;
  flex-direction: column;
}

.libre__card-word {
  font-family: var(--font-script);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 18px;
}

.libre__card-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
  margin-bottom: 18px;
}

.libre__card-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(74,44,26,0.65);
}

/* ══════════════════════════════════════════════
   SECTION 5 — AVIS CLIENTS  (brun)
══════════════════════════════════════════════ */
.reviews {
  background: var(--brown);
  padding: 24px var(--pad-x) 80px;
}

.reviews__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.reviews__title {
  font-family: var(--font-script);
  font-size: clamp(64px, 15vw, 96px);
  font-weight: 400;
  color: var(--gold-light);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 60px;
  opacity: 0.9;
}

/* Review */
.review {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(184, 137, 90, 0.18);
}

.review:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.review__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.review__head--right {
  flex-direction: row-reverse;
}

.review__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  background: rgba(184, 137, 90, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
}

.review__stars {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 2px;
}

.review__stars--right {
  text-align: right;
}

.review__score {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.review__score--right {
  text-align: right;
}

.review__text {
  font-size: 10.5px;
  font-weight: 300;
  line-height: 1.88;
  letter-spacing: 0.35px;
  color: rgba(242, 228, 208, 0.72);
  font-style: italic;
}

.review__text--right {
  text-align: right;
}

/* ══════════════════════════════════════════════
   BARRE INSTAGRAM
══════════════════════════════════════════════ */
.insta-bar {
  text-align: center;
  margin-bottom: 0;
}

.insta-bar__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.insta-bar__script {
  font-family: var(--font-script);
  font-size: 56px;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.insta-bar__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 24px;
  text-decoration: none;
  cursor: pointer;
}

.insta-bar__slot {
  aspect-ratio: 1 / 1;
  background: var(--cream-mid);
  border: 1.5px solid var(--gold-dim);
  border-radius: 0;
  overflow: hidden;
  transition: opacity 0.2s;
  min-height: 160px;
}

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

.insta-bar__slot:hover {
  opacity: 0.82;
  transform: scale(1.02);
  transition: opacity 0.2s, transform 0.2s;
}

.insta-bar__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.insta-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s, color 0.2s;
}

.insta-bar__btn--outline {
  border: 1.5px solid var(--gold-dim);
  color: var(--brown);
  background: transparent;
}

.insta-bar__btn--outline:hover {
  background: var(--gold-dim);
}

.insta-bar__btn--filled {
  background: var(--gold);
  color: var(--brown);
  border: 1.5px solid transparent;
}

.insta-bar__btn--filled:hover {
  background: var(--gold-light);
}

@media (max-width: 768px) {
  .insta-bar__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 12px;
    margin-bottom: 20px;
  }
  /* Cacher les 3 derniers slots sur mobile */
  .insta-bar__slot:nth-child(n+4) {
    display: none;
  }
  .insta-bar__slot {
    min-height: unset;
    width: 100%;
  }
  .insta-bar__script {
    font-size: 44px;
  }
}

/* ══════════════════════════════════════════════
   BOUTONS RDV (CTA)
══════════════════════════════════════════════ */
.btn-rdv {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 32px;
  background: var(--brown);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  border: 1.5px solid var(--gold-dim);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-rdv:hover {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

.btn-rdv--light {
  background: var(--gold-light);
  color: var(--brown);
  border-color: transparent;
  margin-top: 44px;
}

.btn-rdv--light:hover {
  background: var(--cream);
  color: var(--brown);
}

/* Lien RDV dans la navbar */
.navbar__rdv {
  background: var(--gold) !important;
  color: var(--brown) !important;
  opacity: 1 !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
}

.navbar__rdv:hover {
  background: var(--gold-light) !important;
}

/* ══════════════════════════════════════════════
   SECTION RDV
══════════════════════════════════════════════ */
.rdv-section {
  background: var(--brown-dark);
  padding: 100px var(--pad-x);
  text-align: center;
}

.rdv-inner {
  max-width: 580px;
  margin: 0 auto;
}

.rdv__eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.rdv__title {
  font-family: var(--font-script);
  font-size: clamp(56px, 12vw, 88px);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.rdv__sub {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(242, 228, 208, 0.55);
  margin-bottom: 48px;
  letter-spacing: 0.3px;
}

.rdv__call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 28px;
}

.rdv__call:hover {
  background: var(--gold-light);
  transform: scale(1.03);
}

.rdv__call-icon {
  display: flex;
  align-items: center;
  color: var(--brown);
}

.rdv__note {
  font-size: 10px;
  font-weight: 300;
  color: rgba(242, 228, 208, 0.38);
  letter-spacing: 0.5px;
}

.rdv__note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.rdv__note a:hover {
  color: var(--gold-light);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--brown-dark);
  text-align: center;
  padding: 40px var(--pad-x) 32px;
}

.footer__brand {
  font-family: var(--font-script);
  font-size: 52px;
  color: var(--gold-light);
  letter-spacing: 2px;
  opacity: 0.75;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: rgba(212, 169, 122, 0.45);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer__copy {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(212, 169, 122, 0.28);
}

/* ══════════════════════════════════════════════
   RESPONSIVE MOBILE  (≤ 768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
  }

  /* ── Navbar mobile ── */
  .navbar {
    padding: 0 16px;
    height: 62px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
  }
  body {
    padding-top: 62px;
  }
  .navbar__burger {
    grid-column: 1;
    display: flex;
    z-index: 1;
  }
  .navbar__logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    grid-column: unset;
    justify-self: unset;
  }
  .navbar__logo {
    height: 46px;
  }
  .navbar__links {
    display: none; /* caché sur mobile, remplacé par le drawer */
  }
  .navbar__rdv--mobile {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    z-index: 1;
    background: var(--gold);
    color: var(--brown);
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 20px;
  }
  .navbar__drawer {
    display: block;
  }

  /* ── Hero ── */
  .hero {
    padding: 40px 0 32px;
    align-items: center;
    background-position: 35% center;
  }
  .hero__content {
    margin-top: 30vh;
  }

  /* ── Présentation ── */
  .presentation {
    padding: 48px 0 40px;
  }
  .hero__layout {
    flex-direction: column;
    gap: 28px;
  }
  .hero__photos {
    width: 100%;
    margin-left: 0;
    gap: 10px;
  }
  .hero__photos-col:first-child {
    flex: 0 0 40%;
    gap: 10px;
  }
  .hero__text {
    padding-top: 0;
    width: 100%;
  }
  .hero__title {
    font-size: clamp(52px, 14vw, 80px);
    margin-bottom: 24px;
  }
  .hero__bio-card {
    padding: 18px 20px;
  }
  .hero__bio-text {
    font-size: 12px;
  }
  .hero__bio-domicile {
    font-size: 10.5px;
  }
  .hero__signature {
    font-size: 52px;
  }

  /* ── Wave ── */
  .wave {
    height: 90px;
    object-fit: fill;
  }

  /* ── Prestations ── */
  .services {
    padding: 48px var(--pad-x);
  }
  .arch-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding: 0;
  }
  .arch-name {
    font-size: 20px;
  }
  .arch-desc {
    font-size: 8.5px;
  }
  .arch-price {
    font-size: 13px;
  }

  /* ── Avant/Après ── */
  .avantapres__header {
    padding: 20px var(--pad-x) 12px;
  }
  .avantapres__title {
    font-size: clamp(36px, 10vw, 56px);
  }
  .stack-photos {
    height: calc(70vh - 62px);
  }
  .wheel-stage {
    height: 100%;
    padding: 10px 8px 10px 12px;
  }
  .wheel-card img {
    width: 150px;
    height: 270px;
  }
  .stack-sidebar {
    height: calc(70vh - 62px);
    padding: 10px 12px 10px 8px;
  }

  /* ── Pourquoi By Carly ── */
  .whyus {
    padding: 56px 24px 64px;
  }
  .whyus__top {
    margin-bottom: 40px;
  }
  .whyus__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .whyus__card {
    padding: 28px 0;
    border-right: none;
    border-bottom: 1px solid rgba(184,137,90,0.18);
  }
  .whyus__card:last-child {
    border-bottom: none;
  }

  /* ── Valeurs ── */
  .libre {
    padding: 56px 24px 64px;
  }
  .libre__title {
    margin-bottom: 40px;
  }
  .libre__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .libre__card {
    padding: 28px 20px 24px;
  }

  /* ── Avis ── */
  .reviews {
    padding: 40px var(--pad-x) 60px;
  }
  .reviews__title {
    font-size: clamp(48px, 13vw, 72px);
    margin-bottom: 40px;
  }
  .review__text {
    font-size: 11px;
  }
  .review__head {
    gap: 12px;
  }

  /* ── Infos / Contact ── */
  .info {
    padding: 48px var(--pad-x) 56px;
  }
  .info-top {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .info-vline {
    width: 40px;
    height: 1px;
    align-self: auto;
    margin: 0;
  }
  .info-col {
    max-width: 100%;
    width: 100%;
  }
  .checklist {
    grid-template-columns: 1fr;
  }
  .checklist__item {
    justify-content: flex-start;
  }
  .merged__sep {
    margin: 36px 0;
  }
  .pol-list {
    max-width: 100%;
  }

  /* ── Footer ── */
  .footer {
    padding: 32px var(--pad-x) 24px;
  }
  .footer__brand {
    font-size: 52px;
  }
}
