/* ============================================================
   LAURENT G. MAISON DE COIFFURE — style.css
   Palette : #F7F3EC (fond) · #2C2520 (texte) · #C4643A (terracotta)
   ============================================================ */

/* ─── Variables & Reset ─────────────────────────────────── */
:root {
  --fond:       #F7F3EC;
  --fond-alt:   #EDE8DF;
  --texte:      #2C2520;
  --texte-doux: #6B5E54;
  --terra:      #C4643A;
  --terra-pale: rgba(196,100,58,0.12);
  --terra-brd:  rgba(196,100,58,0.3);
  --bois:       #B89B7A;
  --bois-pale:  rgba(184,155,122,0.2);
  --blanc:      #FFFFFF;
  --noir-pied:  #1E1912;
  --t50:        rgba(44,37,32,0.5);
  --t25:        rgba(44,37,32,0.25);
  --t08:        rgba(44,37,32,0.08);
  --font-t:     'Playfair Display', Georgia, serif;
  --font-b:     'DM Sans', system-ui, sans-serif;
  --max-w:      1280px;
  --pad-x:      clamp(1.25rem, 6vw, 7rem);
  --hdr-h:      72px;
  --ease-out:   cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--fond);
  color: var(--texte);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
ul { list-style: none; }

/* ─── Typography helpers ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-t);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--texte);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; font-weight: 400; }
.section-title--light { color: var(--blanc); }
.section-title--light em { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: clamp(3rem, 5vw, 5rem); }

/* ─── Layout ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ─── Reveal animations ─────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--terra);
  color: var(--blanc);
  background: var(--terra);
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .3s, color .3s;
}
.btn-primary:hover { background: transparent; color: var(--terra); }
.btn-primary--ghost {
  background: transparent;
  color: var(--texte);
  border-color: rgba(44,37,32,0.3);
}
.btn-primary--ghost:hover { background: var(--texte); color: var(--blanc); border-color: var(--texte); }
.btn-primary--light {
  background: var(--blanc);
  color: var(--terra);
  border-color: var(--blanc);
}
.btn-primary--light:hover { background: transparent; color: var(--blanc); }

/* ─── Header ────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--hdr-h);
  transition: background .4s, box-shadow .4s;
}
#header.scrolled {
  background: rgba(247,243,236,0.96);
  box-shadow: 0 1px 0 var(--bois-pale);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-right: auto;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-t);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--texte);
}
.logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 400;
}
.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t50);
  position: relative;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--texte); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

/* Header hero transparent override */
.hero-active #header:not(.scrolled) .nav-link { color: rgba(247,243,236,0.7); }
.hero-active #header:not(.scrolled) .nav-link:hover,
.hero-active #header:not(.scrolled) .nav-link[aria-current="page"] { color: var(--fond); }
.hero-active #header:not(.scrolled) .logo-main { color: var(--fond); }
.hero-active #header:not(.scrolled) .btn-header { border-color: rgba(247,243,236,0.4); color: var(--fond); }

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--terra-brd);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.btn-header:hover { background: var(--terra); color: var(--blanc); }

/* ─── Mobile menu toggle ────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 16px;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 100%; height: 1px;
  background: var(--texte);
  transition: transform .35s var(--ease-out), opacity .25s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── Mobile overlay nav ────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--fond);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity .35s;
}
.nav-overlay.is-open { opacity: 1; }
.nav-overlay .nav-link {
  font-family: var(--font-t);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--texte);
}
.nav-overlay .nav-link[aria-current="page"] { color: var(--terra); }
.nav-overlay .nav-link::after { display: none; }
.nav-overlay-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.8rem 2.5rem;
  border: 1px solid var(--terra);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
}

/* ─── Hero Split ─────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
}
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual-inner {
  position: absolute;
  inset: -15%;
  width: 130%; height: 130%;
  will-change: transform;
}
.hero-visual-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  padding-top: calc(var(--hdr-h) + clamp(3rem, 6vw, 5rem));
  background: var(--fond);
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-t);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.08;
  color: var(--texte);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: var(--texte-doux);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-tel {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--t50);
  transition: color .25s;
}
.hero-tel:hover { color: var(--texte); }

/* ─── Section Maison ─────────────────────────────────────── */
.section-maison {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 12rem) 0;
  background: var(--fond-alt);
}
.maison-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.maison-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.maison-video-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(237,232,223,0.9);
}
.maison-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}
.maison-text { }
.maison-desc {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--texte-doux);
  max-width: 46ch;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.maison-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.maison-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.maison-peigne {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: clamp(80px, 12vw, 140px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--fond-alt);
  box-shadow: 0 8px 32px rgba(44,37,32,0.15);
}

/* ─── Section Avant / Après ─────────────────────────────── */
.section-avantapres {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--fond-alt);
  overflow: hidden;
}
.av-header {
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.av-header-desc { font-size: 0.88rem; color: var(--texte-doux); max-width: 44ch; }
.av-hint {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t25);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.av-sticky-wrap { overflow: hidden; }
.av-track {
  display: flex;
  align-items: flex-start;
  gap: 1px;
  width: max-content;
  will-change: transform;
}
.av-card {
  flex: 0 0 clamp(280px, 34vw, 480px);
  display: flex;
  flex-direction: column;
}
.av-card-caption {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0.75rem;
  border-top: 1px solid var(--terra-brd);
  background: var(--fond-alt);
}
.av-card-num {
  font-family: var(--font-t);
  font-size: 0.75rem;
  color: var(--terra);
  font-style: italic;
}
.av-card-type {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texte-doux);
}

/* ─── Comparison Slider ─────────────────────────────────── */
.comp-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  background: var(--fond-alt);
}
.comp-before, .comp-after { position: absolute; inset: 0; }
.comp-after { clip-path: inset(0 0 0 var(--pct, 50%)); }
.comp-before img, .comp-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}
.comp-label {
  position: absolute;
  bottom: 0.75rem;
  font-family: var(--font-b);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.85);
  background: rgba(44,37,32,0.45);
  padding: 0.2rem 0.5rem;
}
.comp-before .comp-label { left: 0.75rem; }
.comp-after .comp-label  { right: 0.75rem; }
.comp-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pct, 50%);
  transform: translateX(-50%);
  width: 1.5px;
  background: var(--terra);
  pointer-events: none;
  z-index: 2;
}
.comp-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 2px 14px rgba(196,100,58,0.4);
}
.comp-btn svg { display: block; pointer-events: none; }

/* ─── Section Soins ─────────────────────────────────────── */
.section-soins {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--blanc);
}
.soins-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.soins-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--fond-alt);
  max-height: 600px;
}
.soins-video { width: 100%; height: 100%; object-fit: cover; }
.soins-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.soins-list li {
  font-size: 0.88rem;
  color: var(--texte-doux);
  padding-left: 1.1rem;
  position: relative;
}
.soins-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 5px; height: 1px;
  background: var(--terra);
}

/* ─── Section Nooance LED ───────────────────────────────── */
.section-nooance {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--fond-alt);
}
.nooance-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.nooance-text { order: -1; }
.nooance-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--fond);
  max-height: 600px;
}
.nooance-video { width: 100%; height: 100%; object-fit: cover; }
.nooance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--terra-brd);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}
.nooance-desc {
  font-size: 0.9rem;
  color: var(--texte-doux);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ─── Section Avis ──────────────────────────────────────── */
.section-avis { padding: clamp(5rem, 10vw, 10rem) 0; background: var(--blanc); }
.avis-header {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.avis-scores { display: flex; gap: 2rem; flex-wrap: wrap; }
.avis-score-item { display: flex; flex-direction: column; gap: 0.15rem; }
.avis-score-num {
  font-family: var(--font-t);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--terra);
  line-height: 1;
}
.avis-score-src {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t25);
}
.avis-track {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.avis-track::-webkit-scrollbar { display: none; }
.avis-card {
  flex: 0 0 min(400px, 88vw);
  scroll-snap-align: start;
  background: var(--fond-alt);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 2px solid var(--terra-brd);
}
.avis-stars { display: flex; gap: 3px; color: var(--terra); font-size: 0.75rem; }
.avis-text {
  font-family: var(--font-t);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--texte);
  line-height: 1.7;
  flex: 1;
}
.avis-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.avis-author {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texte-doux);
}
.avis-source {
  font-size: 0.55rem;
  color: var(--terra);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Section Produits ──────────────────────────────────── */
.section-produits {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--fond-alt);
}
.produits-header {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  padding: 0 var(--pad-x);
}
.produits-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bois-pale);
}
.produit-item {
  background: var(--fond-alt);
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.produit-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.produit-item:hover img { transform: scale(1.04); }
.produit-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t50);
}

/* ─── Section CTA / Resa ────────────────────────────────── */
.section-resa {
  padding: clamp(7rem, 14vw, 14rem) 0;
  text-align: center;
  background: var(--blanc);
  position: relative;
  overflow: hidden;
}
.section-resa::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(196,100,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.resa-inner { position: relative; z-index: 1; padding: 0 var(--pad-x); max-width: 680px; margin: 0 auto; }
.resa-title {
  font-family: var(--font-t);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--texte);
  margin-bottom: 1.25rem;
}
.resa-desc { font-size: 0.9rem; color: var(--texte-doux); margin-bottom: 2.5rem; }
.resa-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.resa-tel { font-size: 0.72rem; letter-spacing: 0.18em; color: var(--t50); transition: color .25s; }
.resa-tel:hover { color: var(--texte); }

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--noir-pied);
  color: rgba(247,243,236,0.8);
  padding: clamp(4rem, 8vw, 7rem) 0 2.5rem;
  border-top: 1px solid rgba(184,155,122,0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 2fr;
  gap: 3rem 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-t);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fond);
  display: block;
  margin-bottom: 0.35rem;
}
.footer-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bois);
}
.footer-nav { display: flex; flex-direction: column; gap: 0.85rem; padding-top: 0.2rem; }
.footer-nav-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.4);
  transition: color .25s;
}
.footer-nav-link:hover { color: rgba(247,243,236,0.9); }
.footer-nav-link--cta { color: var(--bois); }
.footer-nav-link--cta:hover { color: rgba(247,243,236,0.9); }
.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-block h4 {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bois);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.footer-block address,
.footer-block p { font-size: 0.82rem; color: rgba(247,243,236,0.5); line-height: 1.7; }
.footer-insta { font-size: 0.78rem; color: rgba(247,243,236,0.5); transition: color .25s; }
.footer-insta:hover { color: var(--bois); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(247,243,236,0.06);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: rgba(247,243,236,0.2);
}

/* ─── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  padding-top: calc(var(--hdr-h) + clamp(4rem, 10vw, 8rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: var(--fond-alt);
  border-bottom: 1px solid var(--bois-pale);
}
.page-hero-inner { }
.page-hero-title {
  font-family: var(--font-t);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.12;
  color: var(--texte);
  margin-bottom: 1rem;
}
.page-hero-title em { font-style: normal; color: var(--terra); }
.page-hero-sub { font-size: clamp(0.85rem, 1.5vw, 1rem); color: var(--texte-doux); max-width: 52ch; }

/* ─── Prestations page ──────────────────────────────────── */
.section-prest { padding: clamp(4rem, 8vw, 8rem) 0; background: var(--blanc); }
.prest-accordion { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid var(--bois-pale); }
.accordion-item:first-child { border-top: 1px solid var(--bois-pale); }
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.75rem 0;
  cursor: pointer;
  gap: 2rem;
  text-align: left;
}
.accordion-trigger-left { display: flex; align-items: center; gap: 1.5rem; }
.accordion-num {
  font-family: var(--font-t);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--terra);
  min-width: 1.8rem;
}
.accordion-name {
  font-family: var(--font-t);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--texte);
  line-height: 1;
}
.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--terra-brd);
  border-radius: 50%;
  color: var(--terra);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .35s var(--ease-out), background .25s, color .25s;
  padding-bottom: 1px;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  background: var(--terra);
  color: var(--blanc);
  border-color: var(--terra);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.accordion-body-inner { padding: 0 0 2rem; }
.tarif-grid { display: flex; flex-direction: column; }
.tarif-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem 2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--t08);
  align-items: baseline;
}
.tarif-row:last-child { border-bottom: none; }
.tarif-desc { font-size: 0.88rem; color: var(--texte-doux); }
.tarif-price {
  font-family: var(--font-t);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--terra);
  white-space: nowrap;
}
.tarif-duration {
  font-size: 0.62rem;
  color: var(--t25);
  letter-spacing: 0.12em;
  white-space: nowrap;
  min-width: 4rem;
  text-align: right;
}
.tarif-note { font-size: 0.78rem; color: var(--t25); font-style: italic; padding: 0.75rem 0 0; }

/* Marques */
.section-brands { padding: clamp(5rem, 10vw, 10rem) 0; background: var(--fond-alt); }
.brands-header { max-width: var(--max-w); margin: 0 auto 3.5rem; padding: 0 var(--pad-x); }
.brands-desc { font-size: 0.9rem; color: var(--texte-doux); max-width: 52ch; line-height: 1.8; }
.brands-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--bois-pale);
}
.brand-card {
  flex: 1 1 160px;
  background: var(--fond-alt);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background .3s;
}
.brand-card:hover { background: var(--fond); }
.brand-card-name {
  font-family: var(--font-t);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--texte);
  line-height: 1.2;
}
.brand-card-status {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
}

/* ─── Équipe page ───────────────────────────────────────── */
.section-histoire { padding: clamp(5rem, 10vw, 10rem) 0; background: var(--blanc); }
.histoire-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.histoire-desc { font-size: 0.9rem; color: var(--texte-doux); line-height: 1.85; margin-bottom: 1rem; }
.histoire-visual { aspect-ratio: 4/5; overflow: hidden; }
.histoire-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.section-team { padding: clamp(5rem, 10vw, 10rem) 0; background: var(--fond-alt); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bois-pale);
  margin-top: 3rem;
}
.team-card {
  background: var(--fond-alt);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.team-card:hover { background: var(--fond); }
.team-card--founder { grid-column: span 2; }
.team-initial-bg {
  position: absolute;
  top: -1.5rem; right: -0.5rem;
  font-family: var(--font-t);
  font-size: 10rem;
  font-weight: 400;
  font-style: italic;
  color: var(--terra);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.team-card > * { position: relative; z-index: 1; }
.team-initial {
  font-family: var(--font-t);
  font-size: 3.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--terra);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.team-name {
  font-family: var(--font-t);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--texte);
  margin-bottom: 0.35rem;
}
.team-role {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}
.team-bio { font-size: 0.85rem; color: var(--texte-doux); line-height: 1.8; }

.section-valeurs { padding: clamp(5rem, 10vw, 10rem) 0; background: var(--blanc); }
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bois-pale);
  margin-top: 3rem;
}
.valeur-item { background: var(--blanc); padding: 3rem 2.5rem; }
.valeur-num { display: block; font-family: var(--font-t); font-size: 0.75rem; font-style: italic; color: var(--terra); margin-bottom: 1rem; }
.valeur-titre { font-family: var(--font-t); font-size: 1.8rem; font-weight: 400; color: var(--texte); margin-bottom: 1rem; }
.valeur-desc { font-size: 0.85rem; color: var(--texte-doux); line-height: 1.85; }

/* ─── Contact page ──────────────────────────────────────── */
.section-contact { padding: clamp(4rem, 8vw, 8rem) 0; background: var(--blanc); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-block { margin-bottom: 2.5rem; }
.contact-block:last-child { margin-bottom: 0; }
.contact-block-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
  display: block;
}
.contact-tel {
  font-family: var(--font-t);
  font-size: 2.2rem;
  color: var(--texte);
  display: block;
  margin-bottom: 0.25rem;
  transition: color .25s;
}
.contact-tel:hover { color: var(--terra); }
.contact-address { font-size: 0.88rem; color: var(--texte-doux); line-height: 1.75; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--t08); }
.hours-table td { padding: 0.65rem 0; font-size: 0.82rem; }
.hours-day { color: var(--texte-doux); width: 55%; }
.hours-time { color: var(--texte); text-align: right; }
.hours-closed { color: var(--t25); font-style: italic; text-align: right; }
.contact-map { height: clamp(320px, 45vw, 580px); overflow: hidden; background: var(--fond-alt); }
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-cta-block { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.contact-planity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: var(--terra);
  color: var(--blanc);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background .3s, color .3s, box-shadow .3s;
}
.contact-planity-btn:hover { background: transparent; color: var(--terra); box-shadow: inset 0 0 0 1px var(--terra); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 55vw; max-height: 520px; }
  .hero-visual-inner { position: relative; inset: 0; width: 100%; height: 100%; }
  .hero-text { padding-top: clamp(3rem, 5vw, 4rem); }
  .maison-inner,
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-info { grid-column: span 2; }
  .nooance-inner,
  .soins-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nooance-text { order: 0; }
  .soins-video-wrap, .nooance-video-wrap { aspect-ratio: 16/9; max-height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 360px; }
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card--founder { grid-column: span 2; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .valeur-item { padding: 2.5rem 2rem; }
}

@media (max-width: 768px) {
  .nav, .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 50vw; max-height: 380px; }
  .hero-visual-inner { position: relative; inset: 0; width: 100%; height: 100%; }

  .av-sticky-wrap { overflow: visible; }
  .av-track {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--pad-x);
    gap: 3rem;
    will-change: auto;
    transform: none !important;
  }
  .av-card { flex: none; width: 100%; }
  .av-hint { display: none; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-info { grid-column: 1; grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .maison-inner { grid-template-columns: 1fr; }
  .maison-visual { display: none; }
  .histoire-inner { grid-template-columns: 1fr; }
  .histoire-visual { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card--founder { grid-column: span 1; }
  .produits-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-card { flex: 0 0 min(320px, 88vw); }
  .brands-grid { background: none; gap: 1px; }
  .brand-card { flex: none; }
}

@media (max-width: 480px) {
  :root { --hdr-h: 60px; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .resa-actions { flex-direction: column; gap: 1rem; }
  .produits-grid { grid-template-columns: 1fr; }
  .footer-info { grid-template-columns: 1fr; }
  .tarif-row { grid-template-columns: 1fr auto; }
  .tarif-duration { display: none; }
}

/* ─── prefers-reduced-motion ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up { opacity: 1 !important; transform: none !important; }
  .section-avantapres { clip-path: none !important; }
}
