/* ════════════════════════════════════════════════════════════
   OPTICALIUM — sections.css
   Hero, marquee, maison, services, collection, avis,
   rendez-vous, contact
═════════════════════════════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(100svh, 980px);
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}

/* texture discrète en fond */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(176, 140, 82, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(18, 21, 26, 0.04), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 30px;
  opacity: 0;
  animation: heroFade 1s var(--ease-out) 0.15s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 8.5vw, 6.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 30px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}
/* révélation ligne par ligne */
.hero-title-line { display: block; overflow: hidden; }
.hero-title-line > span {
  display: block;
  transform: translateY(110%);
  animation: heroLine 1.1s var(--ease-out) forwards;
}
.hero-title-line:nth-child(1) > span { animation-delay: 0.25s; }
.hero-title-line:nth-child(2) > span { animation-delay: 0.38s; }

@keyframes heroLine { to { transform: none; } }
@keyframes heroFade { to { opacity: 1; } }

.hero-sub {
  max-width: 46ch;
  font-size: 1.06rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFade 1s var(--ease-out) 0.55s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: heroFade 1s var(--ease-out) 0.7s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(48px, 6vw, 76px);
  opacity: 0;
  animation: heroFade 1s var(--ease-out) 0.85s forwards;
}
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-num, .hero-meta-plus {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
}
.hero-meta-item { flex-direction: row; flex-wrap: wrap; align-items: baseline; }
.hero-meta-plus { color: var(--gold-deep); }
.hero-meta-label {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
.hero-meta-sep {
  width: 1px;
  height: 52px;
  background: var(--line);
  flex: none;
}

/* Visuel droit : arche architecturale */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: heroFade 1.2s var(--ease-out) 0.5s forwards;
}

.hero-arch {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5.1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(168deg, var(--night) 0%, #232A33 55%, #2E3640 100%);
  box-shadow: 0 40px 90px -30px rgba(18, 21, 26, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* liseré laiton intérieur */
.hero-arch::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(205, 174, 120, 0.45);
  border-radius: 999px 999px 0 0;
  pointer-events: none;
  z-index: 3;
}

/* photo de la façade (remplace l'illustration quand images/facade.jpg existe) */
.hero-arch-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px 999px 0 0;
  z-index: 1;
}
/* voile sombre subtil au pied de la photo */
.hero-arch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, rgba(18, 21, 26, 0.38), transparent 36%);
  pointer-events: none;
  z-index: 2;
}
.hero-arch.no-photo::after { display: none; }

.hero-arch-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  padding: 24px;
}

.hero-glasses {
  width: min(72%, 270px);
  color: var(--gold-light);
}
.hero-glasses .draw {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 330;
  stroke-dashoffset: 330;
  animation: glassesDraw 1.6s var(--ease-out) 1.5s forwards;
}
.hero-glasses .draw-2 { animation-delay: 1.7s; }
.hero-glasses .draw-3,
.hero-glasses .draw-4,
.hero-glasses .draw-5 {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation-duration: 0.6s;
  animation-delay: 2.6s;
}
@keyframes glassesDraw { to { stroke-dashoffset: 0; } }

.hero-arch-caption {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237, 230, 218, 0.55);
  text-align: center;
}

/* cercle décoratif derrière l'arche */
.hero-arch-ring {
  position: absolute;
  top: 8%;
  right: -13%;
  width: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(176, 140, 82, 0.4);
  border-radius: 50%;
  z-index: -1;
}
.hero-arch-dot {
  position: absolute;
  bottom: -7%;
  left: -9%;
  width: 22%;
  aspect-ratio: 1;
  background: var(--ivory-deep);
  border: 1px solid rgba(176, 140, 82, 0.35);
  border-radius: 50%;
  z-index: -1;
}

/* badge circulaire tournant */
.hero-badge {
  position: absolute;
  top: 4%;
  left: clamp(-10px, -2%, 0px);
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  background: var(--ivory);
  border-radius: 50%;
  box-shadow: 0 16px 45px rgba(18, 21, 26, 0.16);
}
.hero-badge-rotor {
  position: absolute;
  inset: 8px;
  animation: rotate 22s linear infinite;
}
.hero-badge-rotor text {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  fill: var(--gold-deep);
}
.hero-badge-eye { width: 26px; color: var(--ink); }
@keyframes rotate { to { transform: rotate(360deg); } }

/* indicateur scroll */
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: heroFade 1s ease 1.4s forwards;
}
.hero-scroll-line {
  width: 70px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-deep);
  transform: translateX(-100%);
  animation: scrollSlide 2.2s var(--ease-soft) infinite;
}
@keyframes scrollSlide {
  40%      { transform: translateX(0); }
  80%, 100%{ transform: translateX(100%); }
}

/* ── MARQUEE ────────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 26px;
  overflow: hidden;
  background: var(--ivory);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee-track i {
  flex: none;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── LA MAISON ──────────────────────────────────────────────── */
.boutique-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.boutique-visual { position: relative; }

.boutique-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--ivory-deep), #E5DDD0 60%, #DDD3C2);
  border: 1px solid rgba(176, 140, 82, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* lattes de bois évoquant le claustra de la boutique */
.boutique-frame-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
}
.boutique-frame-lines i {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(140, 108, 64, 0.25) 30%, rgba(140, 108, 64, 0.25) 70%, transparent);
}

/* photo d'intérieur (remplace la composition quand images/interieur.jpg existe) */
.boutique-frame-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
/* voile pour la lisibilité de l'étiquette en bas */
.boutique-frame:not(.no-photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 21, 26, 0.45), transparent 30%);
  pointer-events: none;
  z-index: 3;
}
.boutique-frame:not(.no-photo) .boutique-frame-tag {
  color: var(--cream-on-dark);
  z-index: 4;
}

.boutique-frame-inner { position: relative; z-index: 1; text-align: center; }
.boutique-frame-word {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.boutique-frame-word em { font-style: italic; font-weight: 300; color: var(--gold-deep); }

.boutique-frame-tag {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* cadre décalé derrière */
.boutique-frame-shadow {
  position: absolute;
  inset: 0;
  transform: translate(22px, 22px);
  border: 1px solid rgba(176, 140, 82, 0.35);
  z-index: -1;
}

.boutique-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink-soft);
  border-left: 1px solid var(--gold);
  padding-left: 26px;
  margin: 30px 0 24px;
}

.boutique-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 36px;
}
.boutique-features li { display: flex; gap: 16px; }
.boutique-features svg {
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--gold-deep);
  margin-top: 2px;
}
.boutique-features strong {
  display: block;
  font-weight: 600;
  font-size: 0.96rem;
  margin-bottom: 5px;
}
.boutique-features span {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ── GALERIE COMPACTE ───────────────────────────────────────── */
.gallery { margin-top: clamp(32px, 4vw, 52px); }

.gallery-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.gallery-hint {
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: none;
  font-weight: 400;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}

.gallery-thumb {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}
.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}
.gallery-thumb:hover img { transform: scale(1.05); }
/* indication "agrandir" au survol */
.gallery-thumb::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  background: rgba(18, 21, 26, 0.34);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after { opacity: 1; }

@media (max-width: 760px) {
  /* mobile : bandeau horizontal à faire défiler */
  .gallery-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-thumb {
    flex: 0 0 38%;
    scroll-snap-align: start;
  }
}

/* ── VISIONNEUSE (LIGHTBOX) ─────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 17, 21, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: lightboxIn 0.3s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lightboxIn { from { opacity: 0; } }

.lightbox-figure {
  margin: 0;
  max-width: min(86vw, 1100px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: calc(86vh - 50px);
  object-fit: contain;
  border: 1px solid rgba(205, 174, 120, 0.3);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}
.lightbox-figure figcaption {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 230, 218, 0.25);
  border-radius: 50%;
  color: var(--cream-on-dark);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.lightbox-close:hover { border-color: var(--gold-light); background: rgba(205, 174, 120, 0.1); }
.lightbox-close svg { width: 16px; height: 16px; }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 230, 218, 0.25);
  border-radius: 50%;
  color: var(--cream-on-dark);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.lightbox-arrow:hover { border-color: var(--gold-light); background: rgba(205, 174, 120, 0.1); }
.lightbox-arrow svg { width: 17px; height: 17px; }
.lightbox-prev { left: clamp(10px, 3vw, 40px); }
.lightbox-next { right: clamp(10px, 3vw, 40px); }

@media (max-width: 600px) {
  .lightbox-arrow { top: auto; bottom: 18px; translate: none; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  background: var(--ivory-deep);
  padding: clamp(32px, 3.6vw, 52px);
  transition: background 0.4s var(--ease-soft);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover { background: var(--paper); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
  opacity: 0.75;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-deep);
  margin-bottom: 26px;
  transition: transform 0.45s var(--ease-out);
}
.service-card:hover .service-icon { transform: translateY(-4px); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ── COLLECTION ─────────────────────────────────────────────── */

/* Onglets (remplace les anciens .brands-group h3) */
.brands-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.brands-tab {
  position: relative;
  flex: 1;
  padding: 18px 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
}
.brands-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.brands-tab.is-active {
  color: var(--gold-deep);
}
.brands-tab.is-active::after {
  transform: scaleX(1);
}
.brands-tab:hover:not(.is-active) {
  color: var(--ink-soft);
}

/* Badge compteur sur chaque onglet */
.brands-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 20px;
  background: rgba(176, 140, 82, 0.12);
  color: var(--gold-deep);
  transition: background 0.3s ease, color 0.3s ease;
}
.brands-tab.is-active .brands-tab-count {
  background: var(--gold-deep);
  color: #fff;
}

/* Panneaux */
.brands-panel {
  animation: brandsIn 0.4s var(--ease-out);
}
.brands-panel--hidden {
  display: none;
}
@keyframes brandsIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.brands-list {
  border-top: 1px solid var(--line);
}


.brand-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1.1fr 0.7fr 1.4fr 40px;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  padding: clamp(22px, 3vw, 32px) clamp(8px, 1.5vw, 20px);
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease-out), background 0.4s ease;
}
.brand-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-out);
}
.brand-row:hover { background: rgba(176, 140, 82, 0.05); padding-left: clamp(16px, 2.5vw, 32px); }
.brand-row:hover::before { transform: scaleY(1); }

.brand-row-index {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.brand-row-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.brand-row:hover .brand-row-name { color: var(--gold-deep); }

.brand-row-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.brand-row-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.brand-row > svg {
  width: 17px;
  height: 17px;
  color: var(--ink-mute);
  justify-self: end;
  transition: transform 0.35s var(--ease-out), color 0.3s ease;
}
.brand-row:hover > svg {
  color: var(--gold-deep);
  transform: translate(3px, -3px);
}

.brands-more {
  margin-top: 36px;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 22px 28px;
  background: rgba(176, 140, 82, 0.06);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
}
.brands-more a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* ── AVIS ───────────────────────────────────────────────────── */
.reviews { max-width: 880px; margin-inline: auto; }

.reviews-track {
  display: grid;
}
.review {
  grid-area: 1 / 1;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  visibility: hidden;
  padding-inline: clamp(0px, 4vw, 40px);
}
.review.is-active {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 34px;
}
.review-stars svg {
  width: 17px;
  height: 17px;
  fill: var(--gold-light);
}

.review blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream-on-dark);
}

.review figcaption {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review figcaption strong {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.review figcaption span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 52px;
}
.reviews-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--cream-on-dark);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.reviews-btn svg { width: 16px; height: 16px; }
.reviews-btn:hover { border-color: var(--gold-light); background: rgba(205, 174, 120, 0.08); }

.reviews-dots { display: flex; gap: 10px; }
.reviews-dots button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.reviews-dots button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(237, 230, 218, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}
.reviews-dots button.is-active::after {
  background: var(--gold-light);
  transform: scale(1.5);
}

/* ── RENDEZ-VOUS ────────────────────────────────────────────── */
.rdv-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.rdv-intro { position: sticky; top: 120px; }

.rdv-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rdv-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.rdv-points svg {
  flex: none;
  width: 22px;
  height: 22px;
  padding: 3px;
  color: var(--gold-deep);
  border: 1px solid rgba(176, 140, 82, 0.4);
  border-radius: 50%;
}

.rdv-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 30px 70px -36px rgba(18, 21, 26, 0.25);
}

/* ── FORMULAIRES ────────────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field { margin-bottom: 22px; }

.form-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 9px;
}
.form-field label i {
  font-style: normal;
  color: var(--gold-deep);
}
.label-optional {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--ink-mute);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}
.form-field textarea { resize: vertical; min-height: 96px; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-mute); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(176, 140, 82, 0.14);
}

.form-select { position: relative; }
.form-select svg {
  position: absolute;
  right: 16px;
  top: 50%;
  translate: 0 -50%;
  width: 15px;
  height: 15px;
  color: var(--ink-mute);
  pointer-events: none;
}
.form-select select { padding-right: 44px; cursor: pointer; }
.form-select select:disabled { opacity: 0.55; cursor: not-allowed; }

/* erreurs */
.form-error {
  display: none;
  margin-top: 7px;
  font-size: 0.8rem;
  color: #A33A2E;
}
.form-field.has-error .form-error { display: block; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #A33A2E;
  background: #FBF3F1;
}

.form-note {
  margin-top: 16px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ink-mute);
  text-align: center;
}

/* écran de succès RDV */
.rdv-success {
  text-align: center;
  padding: clamp(8px, 2vw, 24px) 0;
  animation: successIn 0.6s var(--ease-out);
}
@keyframes successIn {
  from { opacity: 0; transform: translateY(18px); }
}
.success-check {
  width: 72px;
  margin: 0 auto 26px;
  color: var(--gold-deep);
}
.success-check circle {
  stroke-dasharray: 185;
  stroke-dashoffset: 185;
  animation: drawStroke 0.9s var(--ease-out) 0.1s forwards;
}
.success-check path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawStroke 0.5s var(--ease-out) 0.75s forwards;
}
@keyframes drawStroke { to { stroke-dashoffset: 0; } }

.rdv-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.rdv-success p { color: var(--ink-soft); font-size: 0.96rem; }
.rdv-success #rdvSuccessRecap strong { color: var(--ink); }
.rdv-success-note { margin-top: 12px; font-size: 0.85rem !important; color: var(--ink-mute) !important; }

.rdv-success-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.rdv-success-actions .btn svg { width: 15px; height: 15px; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-areas:
    "info form"
    "map  map";
  gap: clamp(36px, 5vw, 72px);
}

.contact-info { grid-area: info; display: flex; flex-direction: column; gap: 38px; }
.contact-form-wrap { grid-area: form; }
.contact-map { grid-area: map; }

.contact-block h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.contact-block p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
}
.contact-plain { transition: color 0.25s ease; }
.contact-plain:hover { color: var(--gold-deep); }

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}
.contact-link svg { width: 12px; height: 12px; }
.contact-link:hover { color: var(--ink); }

.hours { display: flex; flex-direction: column; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.hours li span:first-child { color: var(--ink-soft); }
.hours li span:last-child { font-weight: 600; }
.hours-closed { color: var(--gold-deep); font-style: italic; font-weight: 400 !important; }

.contact-form-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-form-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-form-head p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
}

.contact-form-wrap form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(26px, 3.5vw, 44px);
}

.contact-map {
  position: relative;
  border: 1px solid var(--line);
  filter: grayscale(0.9) sepia(0.12);
  transition: filter 0.5s ease;
}
.contact-map:hover { filter: none; }
.contact-map iframe {
  width: 100%;
  height: clamp(300px, 38vw, 430px);
  border: 0;
}

/* ── RESPONSIVE SECTIONS ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero { padding-top: 120px; }
  .hero-visual { order: -1; display: none; } /* mobile : focus sur le contenu */

  .boutique-grid { grid-template-columns: 1fr; }
  .boutique-visual { max-width: 480px; }

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

  .rdv-grid { grid-template-columns: 1fr; }
  .rdv-intro { position: static; }

  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "info" "form" "map";
  }
}

@media (min-width: 1025px) {
  .hero-visual { display: flex; }
}

@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }

  .brand-row {
    grid-template-columns: 36px 1fr 28px;
    grid-template-areas:
      "idx name  arrow"
      "idx cat   arrow"
      "idx desc  arrow";
    row-gap: 6px;
  }
  .brand-row-index { grid-area: idx; }
  .brand-row-name  { grid-area: name; }
  .brand-row-cat   { grid-area: cat; }
  .brand-row-desc  { grid-area: desc; }
  .brand-row > svg { grid-area: arrow; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .boutique-features { grid-template-columns: 1fr; }

  .hero-meta { flex-wrap: wrap; row-gap: 24px; }
  .hero-meta-sep:last-of-type { display: none; }
}
