/* ====================================================================
   LA VUE + BELLE — Opticien indépendant, Strasbourg
   Design system : ivoire / encre / or champagne · Fraunces + Outfit
   ==================================================================== */

/* ------------------------------ Variables ------------------------- */
:root {
  /* Couleurs */
  --ivory:      #f6f1e8;   /* fond principal */
  --ivory-deep: #efe8da;   /* bandes ombrées */
  --paper:      #fdfbf7;   /* cartes */
  --ink:        #1b1813;   /* texte fort */
  --ink-2:      #4d473d;   /* texte courant */
  --ink-3:      #8d8678;   /* texte discret */
  --gold:       #b3872f;   /* accent or */
  --gold-soft:  #d8b56a;   /* or clair */
  --gold-pale:  #f0e3c6;   /* halo or */
  --night:      #16130e;   /* sections sombres */
  --line:       rgba(27, 24, 19, 0.12);

  /* Typographies */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Outfit", "Segoe UI", sans-serif;

  /* Rythme */
  --radius: 20px;
  --radius-lg: 28px;
  --section-pad: clamp(4.5rem, 9vw, 8rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection { background: var(--gold-pale); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

/* Grain photographique global, très léger */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* Icônes SVG inline */
.ic {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ------------------------------ Typo communes --------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.1rem;
}

.eyebrow span {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.eyebrow--center { justify-content: center; }
.eyebrow--light { color: rgba(246, 241, 232, 0.6); }

.section__title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 420;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

.section__title em {
  font-style: italic;
  font-weight: 380;
  color: var(--gold);
}

.section__lead {
  max-width: 56ch;
  margin-top: 1.2rem;
  font-size: 1.08rem;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.8rem, 5vw, 4.2rem);
}

.section__head .section__lead { margin-inline: auto; }

/* ------------------------------ Sections -------------------------- */
.section { padding-block: var(--section-pad); }

.section--shaded {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(216, 181, 106, 0.10), transparent 65%),
    var(--ivory-deep);
}

/* ------------------------------ Boutons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 10px 24px -12px rgba(27, 24, 19, 0.55);
}

.btn--primary:hover {
  background: #2e2a22;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(27, 24, 19, 0.55);
}

.btn--outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  color: var(--night);
  box-shadow: 0 14px 30px -12px rgba(179, 135, 47, 0.65);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -12px rgba(179, 135, 47, 0.7);
}

.btn--ghost {
  border: 1px solid rgba(246, 241, 232, 0.35);
  color: var(--ivory);
}

.btn--ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.btn--small { padding: 0.62rem 1.25rem; font-size: 0.88rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease);
}

.link-arrow span { transition: transform 0.3s var(--ease); }

.link-arrow:hover { color: var(--gold); }
.link-arrow:hover span { transform: translateX(5px); }

/* ------------------------------ Badge ----------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(253, 251, 247, 0.75);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(179, 135, 47, 0.18);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(179, 135, 47, 0.22); }
  50%      { box-shadow: 0 0 0 7px rgba(179, 135, 47, 0.05); }
}

/* ------------------------------ Étoiles --------------------------- */
.stars { display: inline-block; line-height: 1; }

.stars__row {
  position: relative;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: rgba(27, 24, 19, 0.18);
}

/* remplissage partiel (4,6/5 → 92 %) */
.stars__row::before {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: var(--fill, 100%);
  overflow: hidden;
  color: var(--gold);
}

.stars--small .stars__row { font-size: 0.85rem; }

/* ====================================================================
   HEADER
   ==================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: padding 0.4s var(--ease), background-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}

.header.is-scrolled {
  padding-block: 0.6rem;
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -22px rgba(27, 24, 19, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 540;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name { white-space: nowrap; }

.logo__plus {
  display: inline;
  color: var(--gold);
  font-weight: 600;
}

.logo__tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 0.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
}

.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-2);
  padding-block: 0.3rem;
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__link.is-active { color: var(--ink); }

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1.7px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.burger.is-open span:nth-child(1) { transform: translateY(6.7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.7px) rotate(-45deg); }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(6.5rem, 12vh, 9rem);
  padding-bottom: 4rem;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 12% 0%, rgba(216, 181, 106, 0.14), transparent 60%),
    radial-gradient(800px 600px at 95% 90%, rgba(179, 135, 47, 0.08), transparent 60%),
    var(--ivory);
}

/* « + » décoratifs en filigrane */
.hero__plus {
  position: absolute;
  font-family: var(--serif);
  font-weight: 300;
  color: rgba(179, 135, 47, 0.09);
  line-height: 1;
  user-select: none;
}

.hero__plus--1 { font-size: clamp(14rem, 30vw, 26rem); top: -6rem; right: -4rem; }
.hero__plus--2 { font-size: clamp(7rem, 14vw, 12rem); bottom: -3rem; left: -2rem; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero__badge {
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero__title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(3.2rem, 7.5vw, 5.8rem);
  font-weight: 380;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 1.6rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.25s forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 420;
  color: var(--gold);
  white-space: nowrap;
}

.title-plus {
  display: inline-block;
  font-style: normal;
  font-weight: 560;
  font-size: 0.55em;
  vertical-align: 0.5em;
  margin-left: 0.12em;
  color: var(--gold-soft);
  animation: plusSpin 1.2s var(--ease) 1s both;
}

@keyframes plusSpin {
  from { transform: rotate(-90deg) scale(0); opacity: 0; }
  to   { transform: rotate(0) scale(1); opacity: 1; }
}

.hero__subtitle {
  margin-top: 1.5rem;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.4s forwards;
}

.hero__lead {
  margin-top: 0.7rem;
  max-width: 50ch;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.5s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.1rem;
  margin-top: 2.1rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.65s forwards;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1rem;
  margin-top: 2.2rem;
  font-size: 0.94rem;
  color: var(--ink-2);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.8s forwards;
}

.hero__proof strong { color: var(--ink); font-weight: 600; }

.hero__proof-sep {
  width: 1px;
  height: 1.1rem;
  background: var(--line);
}

.hero__address {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-3);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Visuel hero */
.hero__visual {
  position: relative;
  opacity: 0;
  animation: heroImg 1.2s var(--ease) 0.45s forwards;
}

@keyframes heroImg {
  from { opacity: 0; transform: translateY(34px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__frame {
  position: relative;
  border-radius: 300px 300px var(--radius-lg) var(--radius-lg); /* arche vitrine */
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 72vh;
  box-shadow:
    0 40px 80px -36px rgba(27, 24, 19, 0.45),
    0 0 0 1px rgba(27, 24, 19, 0.06);
  will-change: transform;
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06); /* marge pour la parallaxe */
}

.hero__frame-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 19, 14, 0) 55%, rgba(22, 19, 14, 0.35)),
    radial-gradient(120% 80% at 50% 0%, rgba(216, 181, 106, 0.12), transparent 55%);
}

/* Cartes flottantes */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.3rem;
  border-radius: 18px;
  background: rgba(253, 251, 247, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 50px -22px rgba(27, 24, 19, 0.4);
}

.float-card--rating {
  left: -2.6rem;
  bottom: 2.4rem;
  animation: floaty 5.5s ease-in-out 1.8s infinite;
}

.float-card--place {
  right: -1.4rem;
  top: 2.2rem;
  max-width: 220px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--ink-2);
  animation: floaty 6.5s ease-in-out 2.4s infinite reverse;
}

.float-card--place .ic { color: var(--gold); width: 1.5em; height: 1.5em; }
.float-card--place strong { color: var(--ink); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

.float-card__g {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
}

.float-card__score {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.1;
}

.float-card__score strong { font-weight: 560; }

.float-card__meta {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 0.15rem;
}

/* Indicateur de scroll */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  display: grid;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ====================================================================
   2 · BOUTIQUE
   ==================================================================== */
.boutique__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.plus-list {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.plus-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink-2);
}

.plus-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -0.1em;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.plus-list--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.6rem;
  margin-top: 2rem;
}

.boutique__visual {
  position: relative;
  padding-bottom: 3.5rem;
}

.boutique__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(27, 24, 19, 0.4);
}

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

.boutique__img:hover img { transform: scale(1.045); }

.boutique__img--main { aspect-ratio: 4 / 3; }

.boutique__img--overlap {
  position: absolute;
  right: -1.2rem;
  bottom: 0;
  width: 52%;
  aspect-ratio: 3 / 2;
  border: 6px solid var(--ivory);
}

.boutique__plus {
  position: absolute;
  left: -1.4rem;
  bottom: 1.4rem;
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1;
  user-select: none;
}

/* Cartes piliers */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
              border-color 0.45s var(--ease);
}

.pillar:hover {
  transform: translateY(-7px);
  border-color: rgba(179, 135, 47, 0.4);
  box-shadow: 0 30px 50px -28px rgba(27, 24, 19, 0.35);
}

.pillar__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(179, 135, 47, 0.4);
  color: var(--gold);
  margin-bottom: 1.3rem;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              transform 0.4s var(--ease);
}

.pillar__icon .ic { width: 1.55em; height: 1.55em; }

.pillar:hover .pillar__icon {
  background: var(--gold);
  color: var(--paper);
  transform: rotate(-6deg) scale(1.05);
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 480;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.pillar p { font-size: 0.97rem; }

/* ====================================================================
   3 · SERVICES
   ==================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.service {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem 1.7rem;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

/* liseré or qui se déploie au survol */
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.service:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 54px -30px rgba(27, 24, 19, 0.38);
}

.service:hover::before { transform: scaleX(1); }

.service__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--ivory);
  color: var(--gold);
  margin-bottom: 1.15rem;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease),
              color 0.4s var(--ease);
}

.service__icon .ic { width: 1.5em; height: 1.5em; }

.service:hover .service__icon {
  background: var(--gold);
  color: var(--paper);
  transform: scale(1.07);
}

.service h3 {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service p { font-size: 0.91rem; line-height: 1.6; }

.service__plus {
  position: absolute;
  right: 1.1rem;
  top: 0.85rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.service:hover .service__plus {
  opacity: 1;
  transform: rotate(0);
}

/* ====================================================================
   4 · POURQUOI NOUS
   ==================================================================== */
.pourquoi__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.pourquoi__visual {
  position: relative;
  padding-bottom: 4rem;
}

.pourquoi__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: 0 30px 60px -30px rgba(27, 24, 19, 0.4);
}

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

.pourquoi__img:hover img { transform: scale(1.045); }

.pourquoi__img--second {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  border: 6px solid var(--ivory);
  border-radius: var(--radius);
}

/* Chiffres clés */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(3.2rem, 6vw, 5rem);
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.2rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -40px rgba(27, 24, 19, 0.35);
}

.stat { text-align: center; }

.stat + .stat { border-left: 1px solid var(--line); }

.stat__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 460;
  color: var(--ink);
  line-height: 1.05;
}

.stat__num small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--gold);
  margin-left: 0.15em;
}

.stat__label {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ====================================================================
   5 · AVIS
   ==================================================================== */
.avis__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
  font-size: 1rem;
}

.avis__summary strong { color: var(--ink); }

.avis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.review {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.3rem 1.9rem 1.7rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.review:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 54px -30px rgba(27, 24, 19, 0.35);
}

.review__quote {
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(179, 135, 47, 0.18);
  user-select: none;
}

.review blockquote {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 380;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  flex-grow: 1;
}

.review figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.review__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ivory-deep);
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.1rem;
  color: var(--gold);
}

.review__name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
}

.review__date {
  font-size: 0.8rem;
  color: var(--ink-3);
  white-space: nowrap;
}

.review__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  white-space: nowrap;
}

.review__g {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold);
}

.avis__more { text-align: center; margin-top: 2.6rem; }

/* ====================================================================
   6 · COLLECTIONS
   ==================================================================== */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(240px, 30vw, 360px);
  gap: 1.2rem;
}

/* rythme éditorial : tuiles décalées */
.collections__grid .tile:nth-child(1) { grid-column: span 2; }
.collections__grid .tile:nth-child(4) { grid-column: span 2; }

.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  box-shadow: 0 24px 50px -32px rgba(27, 24, 19, 0.45);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.tile:hover img { transform: scale(1.07); }

.tile__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(195deg, rgba(22, 19, 14, 0.05) 40%, rgba(22, 19, 14, 0.72));
  transition: background 0.5s var(--ease);
}

.tile__label {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  color: var(--ivory);
  transform: translateY(4px);
  transition: transform 0.5s var(--ease);
}

.tile:hover .tile__label { transform: translateY(0); }

.tile__cat {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
}

.tile__name {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 460;
}

.collections__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2.4rem;
}

.collections__tags li {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-2);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease),
              background-color 0.3s var(--ease);
}

.collections__tags li:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(216, 181, 106, 0.08);
}

/* ====================================================================
   7 · CONTACT / LOCALISATION
   ==================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: stretch;
}

/* Carte stylisée */
.map {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.map__iframe {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  /* harmonise la carte avec la palette ivoire du site */
  filter: saturate(0.82) contrast(0.96) sepia(0.08);
}

.map__caption {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-2);
  background: var(--ivory);
}

.map__caption span {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold);
}

/* Bloc contact */
.contact__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  box-shadow: 0 30px 60px -40px rgba(27, 24, 19, 0.35);
}

.contact__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.contact__title span { color: var(--gold); font-weight: 600; }

.contact__row {
  display: flex;
  gap: 1rem;
  padding-block: 1.05rem;
  border-top: 1px solid var(--line);
}

.contact__row .ic {
  color: var(--gold);
  width: 1.45em;
  height: 1.45em;
  margin-top: 0.25rem;
}

.contact__label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.25rem;
}

.contact__phone {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 540;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.contact__phone:hover { color: var(--gold); }

.hours { border-collapse: collapse; font-size: 0.97rem; }

.hours td { padding: 0.18rem 0; }

.hours td:first-child {
  padding-right: 1.6rem;
  color: var(--ink-2);
}

.hours td:last-child { font-weight: 500; color: var(--ink); }

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.1rem;
  margin-top: 1.6rem;
}

/* ====================================================================
   8 · CTA FINAL
   ==================================================================== */
.cta {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8.5rem);
  background:
    radial-gradient(900px 500px at 50% 110%, rgba(179, 135, 47, 0.22), transparent 65%),
    var(--night);
  color: var(--ivory);
  overflow: hidden;
  text-align: center;
}

.cta__plus {
  position: absolute;
  font-family: var(--serif);
  font-weight: 300;
  color: rgba(216, 181, 106, 0.07);
  line-height: 1;
  user-select: none;
}

.cta__plus--1 { font-size: clamp(12rem, 24vw, 20rem); top: -4rem; left: -3rem; }
.cta__plus--2 { font-size: clamp(8rem, 16vw, 13rem); bottom: -3.5rem; right: -2rem; }

.cta__inner { position: relative; z-index: 1; }

.cta__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.cta__title em {
  font-style: italic;
  color: var(--gold-soft);
}

.cta__text {
  max-width: 56ch;
  margin: 1.4rem auto 0;
  color: rgba(246, 241, 232, 0.75);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

.cta__note {
  margin-top: 2.2rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: rgba(246, 241, 232, 0.45);
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  background: var(--night);
  color: rgba(246, 241, 232, 0.7);
  border-top: 1px solid rgba(246, 241, 232, 0.08);
  font-size: 0.93rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}

.logo--footer {
  color: var(--ivory);
  font-size: 1.5rem;
}

.footer__tagline {
  margin-top: 0.6rem;
  color: rgba(246, 241, 232, 0.55);
}

.footer__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.footer__head {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.footer__col p { margin-bottom: 0.4rem; }

.footer__col a { transition: color 0.3s var(--ease); }

.footer__col a:hover { color: var(--gold-soft); }

.footer__nav { display: grid; gap: 0.45rem; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(246, 241, 232, 0.08);
  font-size: 0.8rem;
  color: rgba(246, 241, 232, 0.4);
}

.footer__mention { font-style: italic; }

/* ====================================================================
   ANIMATIONS AU SCROLL
   ==================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease) var(--d, 0s),
              transform 0.9s var(--ease) var(--d, 0s);
}

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

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .collections__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(220px, 34vw, 300px);
  }

  .collections__grid .tile:nth-child(1),
  .collections__grid .tile:nth-child(4) { grid-column: span 1; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .hero { min-height: 0; }

  .hero__grid { grid-template-columns: 1fr; }

  .hero__visual {
    max-width: 480px;
    margin-top: 1rem;
  }

  .hero__frame { aspect-ratio: 4 / 4.4; }

  .float-card--rating { left: -0.6rem; }
  .float-card--place { right: -0.4rem; }

  .hero__scroll { display: none; }

  .boutique__grid,
  .pourquoi__grid { grid-template-columns: 1fr; }

  .pourquoi__visual { order: 2; max-width: 560px; }
  .pourquoi__text { order: 1; }

  .cards-3 { grid-template-columns: 1fr; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 0; }
  .stat:nth-child(3) { border-left: none; }

  .avis__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  .contact__grid { grid-template-columns: 1fr; }

  /* --- Navigation mobile --- */
  /* logo et burger au-dessus de l'overlay du menu */
  .logo, .burger {
    position: relative;
    z-index: 100;
  }

  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(246, 241, 232, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
  }

  .nav.is-open {
    z-index: 99;
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 440;
    color: var(--ink);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  }

  .nav.is-open .nav__link {
    opacity: 1;
    transform: translateY(0);
  }

  /* apparition en cascade des liens */
  .nav.is-open .nav__link:nth-child(1) { transition-delay: 0.1s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: 0.16s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: 0.22s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: 0.28s; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: 0.34s; }
  .nav.is-open .nav__link:nth-child(6) { transition-delay: 0.4s; }

  .nav__link::after { display: none; }

  .nav__cta {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s var(--ease) 0.48s, transform 0.5s var(--ease) 0.48s;
  }

  .nav.is-open .nav__cta {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }

  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__actions .link-arrow { margin-inline: auto; }

  .float-card--rating {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.4rem;
    animation: none;
  }

  .float-card--place { display: none; }

  .hero__frame { border-radius: 200px 200px var(--radius) var(--radius); }

  .plus-list--two { grid-template-columns: 1fr; }

  .services__grid { grid-template-columns: 1fr; }

  .collections__grid { grid-template-columns: 1fr; }

  .stats { grid-template-columns: 1fr 1fr; padding: 1.6rem 1rem; }
  .stat + .stat { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }

  .boutique__img--overlap { right: -0.4rem; }

  .contact__actions .btn { width: 100%; justify-content: center; }

  .cta__actions .btn { width: min(320px, 100%); justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }

  .footer__bottom { justify-content: center; text-align: center; }
}

/* ------------------------- Accessibilité -------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }

  .hero__badge, .hero__title, .hero__subtitle, .hero__lead,
  .hero__actions, .hero__proof, .hero__visual {
    opacity: 1;
    animation: none;
  }
}
