/* ============================================================
   NG BEAUTY — Feuille de style principale
   Direction artistique : luxe éditorial — noir profond, ivoire,
   beige chaud, touches de champagne doré très discrètes.
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Design tokens ---------- */
:root {
  --black: #14110d;
  --black-soft: #1d1811;
  --black-line: #33291c;

  --ivory: #f7f2ea;
  --cream: #faf8f3;
  --beige: #e4d5bd;
  --beige-dark: #cbb290;

  /* Palette dérivée directement du logo NG BEAUTY fourni (monogramme,
     arc et étoiles) : or échantillonné sur les étoiles pleines du
     logo (rgb 184,140,72) pour une teinte fidèle et non générique. */
  --gold: #b88c48;
  --gold-light: #cba374;
  --gold-deep: #7a5c2e;
  --gold-soft: rgba(184, 140, 72, 0.35);

  --ink: #221c14;
  --ink-soft: rgba(34, 28, 20, 0.68);

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Parisienne", cursive;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius-full: 999px;
  --radius-arch: 12px 190px 12px 12px;
  --radius-arch-r: 190px 12px 12px 12px;
  --radius-card: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--gold);
  line-height: 1;
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.6em;
}

.section-title .script {
  display: block;
  font-size: 1.25em;
  margin-top: 0.1em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-lead {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-head.center .section-lead {
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
}

.on-dark,
.page-hero,
.about-section,
.reviews-section,
.final-cta.dark {
  background: var(--black);
  color: var(--ivory);
}

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4,
.page-hero h1, .page-hero h2,
.about-section h1, .about-section h2, .about-section h3, .about-section h4,
.reviews-section h1, .reviews-section h2, .reviews-section h3, .reviews-section h4 {
  color: var(--ivory);
}

.on-dark .section-lead,
.page-hero .section-lead,
.about-section .section-lead,
.reviews-section .section-lead {
  color: rgba(247, 242, 234, 0.7);
}

.on-dark .eyebrow,
.page-hero .eyebrow,
.about-section .eyebrow,
.reviews-section .eyebrow {
  color: var(--gold-light);
}

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.9rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
    border-color 0.4s var(--ease), transform 0.35s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(124, 95, 56, 0.28);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.on-dark .btn-outline,
.page-hero .btn-outline,
.reviews-section .btn-outline,
.final-cta .btn-outline {
  border-color: rgba(247, 242, 234, 0.5);
}

.on-dark .btn-outline:hover,
.page-hero .btn-outline:hover,
.reviews-section .btn-outline:hover,
.final-cta .btn-outline:hover {
  background: var(--ivory);
  color: var(--black);
  border-color: var(--ivory);
}

.btn-ghost {
  padding: 0;
  border: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-deep);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.on-dark .btn-ghost,
.about-section .btn-ghost,
.reviews-section .btn-ghost {
  color: var(--gold-light);
}

.btn-ghost::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.btn-ghost:hover::after,
.btn-ghost:focus-visible::after {
  transform: scaleX(1);
}

.btn-ghost svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-pulse {
  position: relative;
}

.btn-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-light);
  opacity: 0;
  animation: pulse 2.8s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.16); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-pulse::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-logo,
  .hero-title,
  .hero-text,
  .hero-actions,
  .hero-proof,
  .hero-side-label,
  .trust-bar,
  .rating-stars svg {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-media img {
    animation: none;
    transform: none;
  }
}

/* ---------- Decorative sprig (organic accent) ---------- */
.sprig {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.sprig svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: clamp(1rem, 2.4vw, 1.6rem) 0;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1rem 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  background: rgba(247, 242, 234, 0.14);
  border: 1px solid rgba(247, 242, 234, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease), padding 0.5s var(--ease);
}

.site-header.is-scrolled .header-bar {
  background: rgba(250, 248, 243, 0.92);
  border-color: rgba(34, 28, 20, 0.08);
  box-shadow: 0 16px 40px rgba(20, 17, 13, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0;
}

/* Logo officiel NG BEAUTY — deux variantes du même fichier fourni
   (clair sur fond sombre / original sur fond clair), jamais recréé. */
.brand img {
  height: clamp(48px, 6vw, 74px);
  width: auto;
  transition: opacity 0.4s var(--ease);
}

.logo-on-light {
  display: none;
}

.site-header.is-scrolled .logo-on-dark {
  display: none;
}

.site-header.is-scrolled .logo-on-light {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.9rem);
}

.main-nav a {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.4s var(--ease);
}

.site-header.is-scrolled .main-nav a {
  color: var(--ink);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a.active {
  color: var(--gold-light);
}

.site-header.is-scrolled .main-nav a.active {
  color: var(--gold-deep);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-cta .btn-primary {
  padding: 0.75rem 1.4rem;
  font-size: 0.7rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background-color 0.4s var(--ease);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  background: linear-gradient(180deg, #1b1610 0%, #14110d 100%);
  overflow: hidden;
  padding-bottom: clamp(6rem, 12vw, 8rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.08);
  animation: hero-zoom 22s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 17, 13, 0.9) 0%, rgba(20, 17, 13, 0.25) 42%, rgba(20, 17, 13, 0.45) 100%),
    linear-gradient(100deg, rgba(20, 17, 13, 0.85) 0%, rgba(20, 17, 13, 0.1) 52%);
}

.hero-side-label {
  position: absolute;
  left: clamp(0.8rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.55);
  z-index: 1;
  white-space: nowrap;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

/* Séquence d'entrée : chaque élément part légèrement décalé puis
   se pose en fondu, avec un décalage croissant (voir .is-intro-done). */
.hero-logo,
.hero-title,
.hero-text,
.hero-actions,
.hero-proof,
.hero-side-label {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}

.hero.is-intro-done .hero-logo { opacity: 1; transform: none; transition-delay: 0.1s; }
.hero.is-intro-done .hero-title { opacity: 1; transform: none; transition-delay: 0.32s; }
.hero.is-intro-done .hero-text { opacity: 1; transform: none; transition-delay: 0.52s; }
.hero.is-intro-done .hero-actions { opacity: 1; transform: none; transition-delay: 0.68s; }
.hero.is-intro-done .hero-proof { opacity: 1; transform: none; transition-delay: 0.85s; }
.hero.is-intro-done .hero-side-label { opacity: 1; transform: none; transition-delay: 0.9s; }

/* Logo officiel NG BEAUTY affiché dans le hero — jamais recréé en texte. */
.hero-logo {
  height: clamp(84px, 11vw, 132px);
  width: auto;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.6vw, 4.2rem);
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.hero-title .script {
  display: block;
  font-size: 1.15em;
  color: var(--gold-light);
  margin-top: 0.12em;
}

.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(247, 242, 234, 0.82);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}

.hero-proof {
  position: absolute;
  right: var(--gutter);
  top: clamp(6.5rem, 14vw, 9rem);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
}

.hero-proof-avatars {
  display: flex;
}

.hero-proof-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--black);
  object-fit: cover;
  margin-left: -10px;
}

.hero-proof-avatars img:first-child {
  margin-left: 0;
}

.hero-proof-text {
  font-size: 0.74rem;
  line-height: 1.3;
}

.hero-proof-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.hero-proof-stars svg {
  width: 11px;
  height: 11px;
  fill: var(--gold-light);
}

.hero-proof-text strong {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-weight: 600;
}

/* Trust bar — overlapping the hero's lower edge */
.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  background: rgba(20, 17, 13, 0.55);
  border: 1px solid rgba(247, 242, 234, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-card);
  padding: 1.5rem clamp(1.2rem, 3vw, 2.4rem);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}

.hero.is-intro-done .trust-bar {
  opacity: 1;
  transform: none;
  transition-delay: 1s;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.6rem 1.2rem;
}

.trust-item {
  flex: 1 1 220px;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--gold-light);
  margin-top: 0.15rem;
}

.trust-item h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
  color: var(--cream);
}

.trust-item p {
  font-size: 0.78rem;
  color: rgba(247, 242, 234, 0.6);
}

/* Slim variant used lower on the page (light background) */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.8rem, 4vw, 2.4rem);
  border-top: 1px solid var(--black-line);
}

.trust-strip .trust-item svg {
  stroke: var(--gold-light);
  width: 19px;
  height: 19px;
}

.trust-strip .trust-item h3 {
  font-size: 0.78rem;
  color: var(--ivory);
}

.trust-strip .trust-item p {
  font-size: 0.74rem;
}

/* ---------- Prestations (home teaser: carousel) ---------- */
.prestations-teaser {
  background: var(--black);
  color: var(--ivory);
  overflow: hidden;
}

.prestations-teaser .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}

.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.3rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(240px, 26vw, 300px);
  position: relative;
  background: var(--black-soft);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease),
    transform 0.5s var(--ease), opacity 0.9s var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  border-color: var(--gold-light);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.service-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 3.15;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 13, 0.6) 0%, rgba(20, 17, 13, 0) 45%);
}

.service-card-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  background: rgba(20, 17, 13, 0.82);
  border: 1px solid rgba(203, 163, 116, 0.5);
  color: var(--gold-light);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: var(--radius-full);
}

.service-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.service-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.service-card p {
  font-size: 0.83rem;
  line-height: 1.55;
  color: rgba(247, 242, 234, 0.6);
  margin-bottom: 1.1rem;
  min-height: 2.6em;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.9rem;
  margin-bottom: 0.9rem;
  border-top: 1px solid var(--black-line);
}

.service-card-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
}

.service-card-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.35s var(--ease), gap 0.35s var(--ease);
}

.service-card-book svg {
  width: 13px;
  height: 13px;
  transition: transform 0.35s var(--ease);
}

.service-card:hover .service-card-book,
.service-card:focus-within .service-card-book {
  color: var(--gold);
}

.service-card:hover .service-card-book svg,
.service-card:focus-within .service-card-book svg {
  transform: translateX(4px);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: clamp(1.8rem, 3vw, 2.4rem);
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.carousel-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.carousel-arrow svg {
  width: 16px;
  height: 16px;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247, 242, 234, 0.3);
  transition: background-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.carousel-dots button.is-active {
  background: var(--gold-light);
  transform: scale(1.5);
}

.prestations-teaser-footer {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  text-align: center;
}

/* ---------- Prestations detail (prestations.html) ---------- */
.prestations {
  background: var(--black);
  color: var(--ivory);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}

.service-group-title {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  padding-left: 0.2rem;
}

.service-group-title-spaced {
  margin-top: clamp(2.6rem, 5vw, 4rem);
}

.prestations-footer {
  margin-top: clamp(2rem, 4vw, 2.8rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: clamp(2rem, 4vw, 2.8rem);
  border-top: 1px solid var(--black-line);
}

.prestations-note {
  font-size: 0.85rem;
  color: rgba(247, 242, 234, 0.6);
  max-width: 46ch;
}

/* ---------- About ---------- */
.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.about-grid.reverse .about-media {
  order: 2;
}

.about-media {
  position: relative;
}

.about-media > img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: var(--radius-arch);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.about-grid.reverse .about-media > img {
  border-radius: var(--radius-arch-r);
}

/* Badge décoratif : le monogramme réel du logo (recadré), jamais
   redessiné, posé en incrustation sur la photo. */
.about-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 150px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.about-grid.reverse .about-badge {
  right: auto;
  left: -1rem;
}

.about-badge img {
  width: 100%;
  height: auto;
  display: block;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.8rem 0 2rem;
}

.about-value h4 {
  font-size: 0.92rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
  font-weight: 500;
}

.about-value p {
  font-size: 0.83rem;
  color: rgba(247, 242, 234, 0.6);
}

.about-text p + p {
  margin-top: 0.9rem;
}

.about-text p {
  color: rgba(247, 242, 234, 0.78);
}

.about-signature {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-top: 1.4rem;
}

/* ---------- Gallery teaser (home: scattered collage) ---------- */
.gallery-teaser {
  background: var(--ivory);
  overflow: hidden;
}

.collage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.collage {
  position: relative;
  aspect-ratio: 5 / 4.4;
}

.collage-item {
  position: absolute;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(20, 17, 13, 0.22);
  border: 6px solid var(--cream);
  cursor: zoom-in;
  transition: transform 0.5s var(--ease-soft);
}

.collage-item:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  z-index: 5;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-a {
  width: 56%;
  aspect-ratio: 4 / 5;
  top: 2%;
  left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}

.collage-b {
  width: 42%;
  aspect-ratio: 4 / 4.6;
  top: 8%;
  right: 4%;
  transform: rotate(5deg);
  z-index: 1;
}

.collage-c {
  width: 40%;
  aspect-ratio: 4 / 3.6;
  bottom: 0;
  left: 20%;
  transform: rotate(-2deg);
  z-index: 3;
}

.collage-caption {
  position: absolute;
  bottom: 6%;
  right: 0;
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--gold-deep);
  transform: rotate(-4deg);
  z-index: 4;
}

.gallery-teaser-footer {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Gallery detail (gallery.html mosaic) ---------- */
.gallery-section {
  background: var(--ivory);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 110px;
  gap: 0.9rem;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--black);
  border-radius: var(--radius-card);
}

.mosaic-item img,
.mosaic-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.mosaic-item:hover img,
.mosaic-item:hover video {
  transform: scale(1.06);
}

.mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 17, 13, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.mosaic-item:hover::after {
  opacity: 1;
}

.mosaic-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.mosaic-item:hover .mosaic-zoom {
  opacity: 1;
  transform: translateY(0);
}

.mosaic-zoom svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-light);
}

.mosaic-video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(247, 242, 234, 0.85);
  border-radius: 50%;
  z-index: 1;
}

.mosaic-video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 3px);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--cream);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
  background: none;
}

.item-a { grid-column: span 3; grid-row: span 3; }
.item-b { grid-column: span 2; grid-row: span 2; }
.item-c { grid-column: span 1; grid-row: span 2; }
.item-d { grid-column: span 2; grid-row: span 2; }
.item-e { grid-column: span 2; grid-row: span 3; }
.item-f { grid-column: span 2; grid-row: span 2; }
.item-g { grid-column: span 2; grid-row: span 2; }
.item-h { grid-column: span 3; grid-row: span 2; }
.item-i { grid-column: span 3; grid-row: span 2; }

.gallery-footer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 13, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 900px;
  max-height: 86vh;
  width: 100%;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.45s var(--ease-soft), opacity 0.45s var(--ease-soft);
}

.lightbox.is-open .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

.lightbox-content img,
.lightbox-content video {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 242, 234, 0.4);
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.lightbox-close:hover {
  border-color: var(--gold-light);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 242, 234, 0.3);
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.lightbox-nav:hover {
  border-color: var(--gold-light);
  background: rgba(202, 169, 106, 0.14);
}

.lightbox-nav svg {
  width: 18px;
  height: 18px;
}

.lightbox-prev { left: 1.8rem; }
.lightbox-next { right: 1.8rem; }

@media (max-width: 720px) {
  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
}

/* ---------- Avis ---------- */
.reviews-section {
  overflow: hidden;
}

.reviews-top {
  text-align: center;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}

.rating-block {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.rating-score {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold-light);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft);
}

.rating-stars.is-visible svg {
  opacity: 1;
  transform: scale(1);
}

.rating-stars svg:nth-child(1) { transition-delay: 0s; }
.rating-stars svg:nth-child(2) { transition-delay: 0.08s; }
.rating-stars svg:nth-child(3) { transition-delay: 0.16s; }
.rating-stars svg:nth-child(4) { transition-delay: 0.24s; }
.rating-stars svg:nth-child(5) { transition-delay: 0.32s; }

.rating-caption {
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.6);
}

.review-card {
  background: rgba(247, 242, 234, 0.04);
  border: 1px solid var(--black-line);
  border-radius: var(--radius-card);
  padding: 1.8rem;
  height: 100%;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.review-author svg {
  width: 13px;
  height: 13px;
  fill: var(--gold-light);
}

.review-card .rating-stars svg {
  opacity: 1;
  transform: none;
  width: 12px;
  height: 12px;
}

.review-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ivory);
  margin-top: 0.9rem;
}

.reviews-track-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.reviews-footer {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  text-align: center;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--beige);
  color: var(--ink);
  overflow: hidden;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.final-cta h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  margin-bottom: 0.8rem;
  max-width: 14ch;
}

.final-cta p {
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 1.8rem;
}

.final-cta-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
  margin-top: 1.6rem;
}

.final-cta-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.final-cta-bullets svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-deep);
  flex-shrink: 0;
}

.final-cta-media {
  position: relative;
  border-radius: var(--radius-arch-r);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 30px 60px rgba(20, 17, 13, 0.22);
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
  margin-bottom: 2.2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.1rem;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-info-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  background: var(--ivory);
  border: 1px solid rgba(34, 28, 20, 0.15);
  border-radius: var(--radius-card);
  filter: grayscale(0.35) contrast(1.05);
}

.map-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-link:hover {
  color: var(--gold-deep);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(247, 242, 234, 0.75);
  padding: clamp(2.4rem, 4vw, 3.2rem) 0 1.6rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--black-line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  height: clamp(42px, 5vw, 58px);
  width: auto;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2rem;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.68);
}

.footer-info-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-light);
  flex-shrink: 0;
}

.footer-info-item a:hover {
  color: var(--gold-light);
}

.back-to-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--black-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  font-size: 0.78rem;
  color: rgba(247, 242, 234, 0.6);
}

.footer-bottom a {
  color: rgba(247, 242, 234, 0.7);
}

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

.footer-legal-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

/* ---------- Simple / legal pages ---------- */
.page-hero {
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero .eyebrow::before {
  display: none;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.2rem 0 0.8rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.legal-content li {
  margin-left: 1.3rem;
}

.placeholder-note {
  display: inline-block;
  background: rgba(184, 150, 95, 0.15);
  color: var(--gold-deep);
  border: 1px dashed var(--gold-soft);
  padding: 0.2rem 0.6rem;
  font-size: 0.82em;
  font-style: normal;
  border-radius: var(--radius-full);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .about-badge { width: 120px; }
  .final-cta-grid { grid-template-columns: 1fr; text-align: center; }
  .final-cta h2 { max-width: none; margin-left: auto; margin-right: auto; }
  .final-cta p { margin-left: auto; margin-right: auto; }
  .final-cta-bullets { justify-content: center; }
  .final-cta-media { max-width: 360px; margin: 0 auto; }
  .collage-grid { grid-template-columns: 1fr; }
  .collage { width: 100%; max-width: 480px; margin: 0 auto; }
  .hero-proof { display: none; }
}

@media (max-width: 880px) {
  .main-nav, .header-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }

  .header-cta .btn-primary {
    padding: 0.7rem 1.1rem;
    font-size: 0.68rem;
    min-height: 44px;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem var(--gutter);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.5s var(--ease), visibility 0s linear 0.5s;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.5s var(--ease), visibility 0s linear 0s;
  }

  .mobile-nav a {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.9rem;
    color: var(--cream);
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--black-line);
  }

  .mobile-nav .btn {
    margin-top: 2rem;
    width: 100%;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-info { gap: 1rem 1.6rem; }
}

/* Hero mobile : logo agrandi et centré au-dessus du titre (au lieu du
   petit logo aligné à gauche utilisé sur tablette/desktop). */
@media (max-width: 767px) {
  .hero-logo {
    display: block;
    width: min(62vw, 260px);
    height: auto;
    margin: 0 auto 1.6rem;
  }
}

@media (max-width: 640px) {
  .btn { white-space: normal; text-align: center; }

  .hero { align-items: flex-end; padding-bottom: 4rem; }
  .hero-side-label { display: none; }
  .trust-bar { display: none; }

  .service-row { border-radius: 12px; }

  .mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; }
  .item-a, .item-b, .item-c, .item-d, .item-e, .item-f, .item-g, .item-h, .item-i {
    grid-column: span 1;
    grid-row: span 2;
  }

  .about-values { grid-template-columns: 1fr; }
  .about-badge { display: none; }

  .footer-info { flex-direction: column; gap: 0.9rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
