/* ═══════════════════════════════════════════════════════════════════════════
   Bijouterie Nisar — feuille de style
   Palette : noir chaud / ivoire / or champagne. Typo : Cormorant Garamond + Jost.
   Aucune dépendance, aucun style inline (CSP stricte).
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --ink: #15130f;
  --ink-2: #1d1a15;
  --ink-3: #26221b;
  --ivory: #f6f2ea;
  --ivory-2: #efe9dd;
  --cream: #f3eee4;
  --cream-muted: #b9b0a0;
  --text: #1c1a16;
  --text-muted: #675f53;
  --gold: #c9a961;
  --gold-light: #e6d3a3;
  --gold-deep: #7a5f28;
  --gold-line: rgba(201, 169, 97, 0.28);
  --line-light: rgba(122, 95, 40, 0.16);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 3px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
html.no-scroll { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: inline-block; vertical-align: middle; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; margin: 0; }
p { margin: 0 0 1rem; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 0.75rem 1rem;
  font-weight: 500; text-decoration: none; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ── Apparition au défilement ─────────────────────────────────────────────── */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .cards .card:nth-child(2) { transition-delay: 0.08s; }
.js .cards .card:nth-child(3) { transition-delay: 0.16s; }
.js .cards .card:nth-child(4) { transition-delay: 0.24s; }
.js .hero__content .reveal:nth-child(2) { transition-delay: 0.1s; }
.js .hero__content .reveal:nth-child(3) { transition-delay: 0.2s; }
.js .hero__content .reveal:nth-child(4) { transition-delay: 0.3s; }
.js .hero__content .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ── Typographie commune ──────────────────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  margin: 0 0 1.25rem;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ''; width: 2.25rem; height: 1px; background: currentColor; opacity: 0.8; }
.section--light .eyebrow { color: var(--gold-deep); }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); letter-spacing: -0.005em; margin-bottom: 1.25rem; }
.section__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__intro { font-size: 1.05rem; font-weight: 300; line-height: 1.75; color: var(--text-muted); margin: 0; }
.section__intro--light { color: var(--cream-muted); }

/* ── Boutons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; line-height: 1;
  white-space: nowrap; cursor: pointer;
  border: 1px solid transparent; border-radius: var(--radius); background: transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--outline { color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: rgba(201, 169, 97, 0.12); }
.section--light .btn--outline { color: var(--gold-deep); border-color: var(--gold-deep); }
.btn--outline-light { color: var(--cream); border-color: rgba(246, 242, 234, 0.45); }
.btn--outline-light:hover { border-color: var(--cream); background: rgba(246, 242, 234, 0.06); }
.btn--small { padding: 0.65rem 1.2rem; font-size: 0.7rem; }
.btn__icon { width: 1rem; height: 1rem; }

/* ── En-tête ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h); display: flex; align-items: center;
  color: var(--cream);
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .site-header.is-solid, .site-header.nav-open {
  background: rgba(21, 19, 15, 0.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--gold-line);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand__mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%;
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--gold);
}
.brand__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; letter-spacing: 0.02em; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  position: relative; display: inline-block; padding: 0.25rem 0;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  opacity: 0.88; transition: opacity 0.3s;
}
.nav__list a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav__list a:hover, .nav__list a:focus-visible { opacity: 1; }
.nav__list a:hover::after, .nav__list a:focus-visible::after { transform: scaleX(1); }
.nav--simple .nav__back { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; background: none; border: 0; cursor: pointer; color: inherit;
}
.nav-toggle__bar { display: block; width: 24px; height: 1.5px; margin: 0 auto; background: currentColor; transition: transform 0.3s, opacity 0.3s; }
.nav-open .nav-toggle__bar:nth-child(2) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav-toggle__bar:nth-child(3) { opacity: 0; }
.nav-open .nav-toggle__bar:nth-child(4) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  /* L'en-tête a un backdrop-filter : il devient le bloc conteneur de ce « fixed ».
     On fixe donc la hauteur explicitement (bottom: 0 se référerait à l'en-tête, pas à l'écran). */
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    flex-direction: column; align-items: flex-start; gap: 2rem;
    padding: 2.5rem var(--gutter);
    background: var(--ink);
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.45s var(--ease), visibility 0s 0.45s;
  }
  .nav-open .nav { transform: none; visibility: visible; transition: transform 0.45s var(--ease); }
  .nav__list { flex-direction: column; gap: 1.5rem; }
  .nav__list a { font-size: 1.05rem; letter-spacing: 0.2em; }
  .brand__name { font-size: 1.15rem; }
}

/* ── Accueil ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  background: var(--ink); color: var(--cream);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 82% 22%, rgba(201, 169, 97, 0.28), transparent 70%),
    radial-gradient(45% 40% at 10% 90%, rgba(201, 169, 97, 0.12), transparent 70%),
    linear-gradient(180deg, #1a1712 0%, var(--ink) 60%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.07;
  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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Le cadre démarre sous l'en-tête pour que la ligne ne traverse jamais le nom ni le menu. */
.hero__frame { position: absolute; inset: calc(var(--header-h) + 0.5rem) 1.25rem 1.25rem; border: 1px solid var(--gold-line); pointer-events: none; }
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3rem; align-items: center;
}
.hero__title { font-size: clamp(3.25rem, 8.5vw, 6.75rem); line-height: 0.98; letter-spacing: -0.01em; margin: 0 0 1.5rem; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lead { max-width: 38rem; margin: 0 0 2.25rem; font-weight: 300; font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.7; color: #d9d2c3; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 1.1rem 0.6rem 0.9rem;
  border: 1px solid var(--gold-line); border-radius: 999px;
  color: var(--cream-muted); font-size: 0.9rem; text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.rating-badge:hover { border-color: var(--gold); color: var(--cream); }
.rating-badge strong { color: var(--cream); font-weight: 500; }
.hero__art { display: flex; justify-content: center; }
.rings { width: 100%; max-width: 420px; height: auto; filter: drop-shadow(0 0 28px rgba(201, 169, 97, 0.2)); }
.rings__group { animation: float 9s ease-in-out infinite alternate; transform-origin: center; }
.rings__gem { animation: twinkle 3.5s ease-in-out infinite; }
.hero__scroll { position: absolute; left: 50%; bottom: 2rem; width: 1px; height: 56px; transform: translateX(-50%); }
.hero__scroll-line { display: block; width: 1px; height: 100%; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.6s ease-in-out infinite; transform-origin: top; }

@media (max-width: 860px) {
  .hero { padding-bottom: 4.5rem; }
  .hero__frame { inset: calc(var(--header-h) + 0.5rem) 0.75rem 0.75rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__art { order: -1; }
  .rings { max-width: 240px; }
  .hero__scroll { display: none; }
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--light { background: var(--ivory); color: var(--text); }
.section--dark { background: var(--ink); color: var(--cream); }
.section__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

/* ── Services ─────────────────────────────────────────────────────────────── */
.cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card {
  position: relative; padding: 2.25rem 1.9rem;
  background: #fbf8f2; border: 1px solid var(--line-light);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s, opacity 0.9s var(--ease);
}
.card::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: rgba(201, 169, 97, 0.55); box-shadow: 0 22px 44px -28px rgba(21, 19, 15, 0.45); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 48px; height: 48px; color: var(--gold-deep); margin-bottom: 1.4rem; }
.card h3 { font-size: 1.55rem; font-weight: 600; line-height: 1.15; margin-bottom: 0.6rem; }
.card p { margin: 0; font-size: 0.97rem; font-weight: 300; line-height: 1.7; color: var(--text-muted); }

/* ── Étoiles ──────────────────────────────────────────────────────────────── */
.stars { position: relative; display: inline-block; line-height: 0; --star: 18px; }
.stars--large { --star: 24px; }
.stars--small { --star: 15px; }
.stars__base, .stars__fill { display: flex; gap: 2px; }
.stars__fill { position: absolute; top: 0; left: 0; overflow: hidden; }
.stars__fill--96 { width: 96%; }
.stars__icon { width: var(--star); height: var(--star); flex: none; fill: rgba(201, 169, 97, 0.22); }
.stars__fill .stars__icon { fill: var(--gold); }

/* ── Avis ─────────────────────────────────────────────────────────────────── */
.rating-summary {
  display: flex; align-items: center; flex-wrap: wrap; gap: 2rem;
  padding: 2rem 0; margin-bottom: 2.5rem;
  border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line);
}
.rating-summary__score { font-family: var(--font-display); line-height: 1; display: flex; align-items: baseline; }
.rating-summary__number { font-size: clamp(4rem, 8vw, 6rem); font-weight: 500; color: var(--gold-light); }
.rating-summary__max { font-size: 1.5rem; color: var(--cream-muted); margin-left: 0.3rem; }
.rating-summary__details { display: flex; flex-direction: column; gap: 0.6rem; }
.rating-summary__count { margin: 0; color: var(--cream-muted); }
.rating-summary__count strong { color: var(--cream); font-weight: 500; }
.google-attribution { display: inline-block; line-height: 0; }
.google-attribution img { height: 18px; width: auto; }

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.review {
  position: relative; display: flex; flex-direction: column; gap: 1rem;
  padding: 1.75rem 1.6rem;
  background: var(--ink-2); border: 1px solid rgba(201, 169, 97, 0.18);
}
.review::before {
  content: '\201C'; position: absolute; top: 0.2rem; right: 1.1rem;
  font-family: var(--font-display); font-size: 5.5rem; line-height: 1; color: var(--gold); opacity: 0.16; pointer-events: none;
}
.review__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-right: 3rem; }
.review__time { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--cream-muted); }
.review__text { margin: 0; flex: 1; font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; color: var(--cream); }
.review__text.is-clamped { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review__more {
  align-self: flex-start; min-height: 2.75rem; padding: 0.5rem 0; background: none; border: 0; cursor: pointer;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
}
.review__translated { margin: 0; font-size: 0.78rem; font-style: italic; color: var(--cream-muted); }
.review__author { display: flex; align-items: center; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid rgba(201, 169, 97, 0.15); }
.avatar {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--gold);
}
.review__name { font-weight: 500; font-size: 0.95rem; color: var(--cream); text-decoration: none; }
a.review__name:hover { text-decoration: underline; text-decoration-color: var(--gold); }
.review__meta { display: block; font-size: 0.75rem; color: var(--cream-muted); }
.review__meta a { color: inherit; display: inline-block; padding: 0.35rem 0; }
.review__meta a:hover { color: var(--gold); }
.reviews__note { margin: 1.5rem 0 0; text-align: center; font-size: 0.95rem; color: var(--cream-muted); }
.reviews__note a { color: var(--gold); }
.reviews__policy { margin: 1.25rem 0 0; text-align: center; font-size: 0.78rem; letter-spacing: 0.03em; color: #8e8676; }

.skeleton {
  display: block; height: 0.9rem; border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  background-size: 200% 100%; animation: shimmer 1.6s infinite;
}
.skeleton--stars { width: 110px; height: 18px; }
.skeleton--short { width: 60%; }
.skeleton--author { width: 160px; height: 40px; margin-top: auto; }

@media (max-width: 700px) {
  .reviews {
    display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin;
    margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter) 1rem;
  }
  .review { flex: 0 0 min(84vw, 340px); scroll-snap-align: start; }
}

/* ── Infos pratiques ──────────────────────────────────────────────────────── */
.infos { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.address { display: flex; align-items: flex-start; gap: 0.9rem; margin: 0 0 1rem; font-style: normal; line-height: 1.6; }
.address__icon { width: 22px; height: 22px; flex: none; margin-top: 0.2rem; color: var(--gold-deep); }
.address a { color: var(--text); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--gold); }
.hours-title { display: flex; align-items: center; flex-wrap: wrap; gap: 0.8rem; margin: 2.25rem 0 1rem; font-size: 1.5rem; font-weight: 600; }
.open-badge {
  padding: 0.3rem 0.65rem; border: 1px solid currentColor; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
}
.open-badge--open { color: #276b44; }
.open-badge--closed { color: #9a3b2e; }
.hours__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-light); }
.hours__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line-light); font-size: 0.97rem; }
.hours__row.is-today { font-weight: 500; color: var(--gold-deep); }
.hours__day { text-transform: capitalize; }
.hours__hint { margin: 0.9rem 0 0; font-size: 0.85rem; color: var(--text-muted); }
.hours__hint a { color: var(--gold-deep); display: inline-block; padding: 0.3rem 0; }
.access { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.access__tag { display: inline-block; min-width: 4.5rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }

/* Hauteur explicite (pas d'aspect-ratio + min-height : Chrome transfère le min-height en min-width et fait déborder la colonne sur mobile). */
.map { position: relative; height: clamp(340px, 62vw, 470px); overflow: hidden; background: var(--ivory-2); border: 1px solid var(--line-light); }
.map::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 95, 40, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 95, 40, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 85%);
  mask-image: radial-gradient(circle at center, #000 30%, transparent 85%);
}
.map.is-loaded::before { display: none; }
.map__placeholder { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; padding: 2rem; text-align: center; }
.map__pin { width: 44px; height: 44px; color: var(--gold-deep); }
.map__title { margin: 0; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.map__notice { max-width: 30rem; margin: 0; font-size: 0.82rem; line-height: 1.6; color: var(--text-muted); }
.map__notice a { color: var(--gold-deep); }
.map__alt { display: inline-block; padding: 0.6rem 0.25rem; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }
.map__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map.is-loaded { background: var(--ink-2); }

@media (max-width: 860px) {
  /* minmax(0, 1fr) : sans le « 0 », la carte (aspect-ratio + min-height) élargirait la colonne au-delà de l'écran. */
  .infos { grid-template-columns: minmax(0, 1fr); }
}

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact { text-align: center; background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.contact__inner { max-width: 46rem; margin: 0 auto; }
.contact .eyebrow { justify-content: center; }
.contact__lead { margin: 0 0 2rem; font-weight: 300; font-size: 1.1rem; color: var(--cream-muted); }
.contact__phone {
  display: inline-block; margin-bottom: 2.25rem;
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.25rem); letter-spacing: 0.02em; line-height: 1.1;
  color: var(--gold-light); text-decoration: none; border-bottom: 1px solid var(--gold-line);
  transition: border-color 0.3s;
}
.contact__phone:hover { border-color: var(--gold); }
.contact__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── Pied de page ─────────────────────────────────────────────────────────── */
.site-footer { padding: 3rem 0 2rem; background: #0f0e0b; color: var(--cream-muted); font-size: 0.85rem; border-top: 1px solid rgba(201, 169, 97, 0.15); }
.site-footer__inner { display: grid; gap: 1rem; justify-items: center; text-align: center; }
.site-footer__brand { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); }
.site-footer__name { font-family: var(--font-display); font-size: 1.35rem; }
.site-footer__address { margin: 0; }
.site-footer a { color: inherit; }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer__links a { display: inline-block; padding: 0.6rem 0.25rem; text-decoration: none; }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__copy { margin: 0; font-size: 0.78rem; opacity: 0.7; }

/* ── Page mentions légales ───────────────────────────────────────────────── */
.legal { padding: calc(var(--header-h) + 3rem) 0 5rem; }
.legal__inner { max-width: 46rem; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.9rem; margin: 0 0 0.9rem; }
.legal h3 { font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
.legal__section { margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid var(--line-light); }
.legal p { line-height: 1.75; color: #3b362e; }
.legal a { color: var(--gold-deep); }
.legal__dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.5rem 1.5rem; margin: 0; }
.legal__dl dt { font-weight: 500; color: var(--gold-deep); }
.legal__dl dd { margin: 0; }
.legal__updated { margin-top: 3rem; font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 560px) { .legal__dl { grid-template-columns: 1fr; gap: 0.15rem 0; } .legal__dl dd { margin-bottom: 0.6rem; } }

/* ── Page 404 ─────────────────────────────────────────────────────────────── */
.page-error { min-height: 100vh; display: grid; place-items: center; background: var(--ink); color: var(--cream); text-align: center; }
.error { padding: 2rem; }
.error .eyebrow { justify-content: center; }
.error h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin: 0.5rem 0 1rem; }
.error__lead { margin-bottom: 2rem; color: var(--cream-muted); }

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes scrollPulse { 0% { transform: scaleY(0); opacity: 0; } 40% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1) translateY(40px); opacity: 0; } }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .rings__group, .rings__gem, .hero__scroll-line, .skeleton { animation: none; }
  .btn:hover, .card:hover { transform: none; }
}

@media print {
  .site-header, .hero__scroll, .map, .section__actions, .nav-toggle { display: none; }
  .hero, .section--dark, .contact, .site-footer { background: #fff; color: #000; }
}

/* ── Galerie (photos Instagram auto-hébergées) ───────────────────────────── */
.section--ivory2 { background: var(--ivory-2); }
.gallery { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gallery__item { margin: 0; }
.gallery__link {
  position: relative; display: block; overflow: hidden; aspect-ratio: 1 / 1;
  background: var(--ink); border: 1px solid var(--line-light);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.gallery__link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease), opacity 0.4s; }
.gallery__link::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(21, 19, 15, 0.55), transparent 45%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery__caption {
  position: absolute; left: 1rem; right: 1rem; bottom: 0.9rem; z-index: 1;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream);
  opacity: 0; transform: translateY(6px); transition: opacity 0.4s, transform 0.4s var(--ease);
}
.gallery__caption svg { width: 1rem; height: 1rem; flex: none; }
.gallery__link:hover, .gallery__link:focus-visible { border-color: var(--gold); box-shadow: 0 22px 44px -28px rgba(21, 19, 15, 0.5); }
.gallery__link:hover img, .gallery__link:focus-visible img { transform: scale(1.05); }
.gallery__link:hover::after, .gallery__link:focus-visible::after, .gallery__link:hover .gallery__caption, .gallery__link:focus-visible .gallery__caption { opacity: 1; transform: none; }
/* Grande photo 2×2 : avec 5 carrés, la grille 3 colonnes est remplie exactement (4 + 5 = 9 cases). */
.gallery__item--featured { grid-column: span 2; grid-row: span 2; }
.js .gallery .gallery__item:nth-child(2) { transition-delay: 0.06s; }
.js .gallery .gallery__item:nth-child(3) { transition-delay: 0.12s; }
.js .gallery .gallery__item:nth-child(4) { transition-delay: 0.18s; }
.js .gallery .gallery__item:nth-child(5) { transition-delay: 0.24s; }
.js .gallery .gallery__item:nth-child(6) { transition-delay: 0.3s; }
@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
  .gallery__item--featured { grid-column: auto; grid-row: auto; }
  /* Sur mobile (pas de survol) : icône Instagram seule dans le coin, le libellé reste lu par les lecteurs d'écran. */
  .gallery__caption { opacity: 1; transform: none; font-size: 0; gap: 0; left: 0.6rem; right: auto; bottom: 0.6rem; }
  .gallery__caption svg { width: 1.1rem; height: 1.1rem; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6)); }
  .gallery__link::after { opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery__link img { transition: none; }
  .gallery__link:hover img { transform: none; }
}
