/* =========================================================
   Bijouterie Blondet — Montbard
   Joaillerie familiale · palette charcoal, ivoire & champagne
   Épuré, moderne, premium. Sans framework.
   ========================================================= */

:root {
  /* Palette */
  --noir:        #14120d;
  --noir-2:      #1b1812;
  --char:        #221e16;
  --char-soft:   #2c2719;

  --cream:       #f8f4ec;
  --cream-2:     #efe8da;
  --cream-3:     #e6ddca;

  --gold:        #b1925a;
  --gold-2:      #c9ad77;
  --gold-soft:   #e2d3ad;
  --gold-line:   rgba(177, 146, 90, .35);

  --ink:         #28241c;
  --ink-soft:    #4a4439;
  --muted:       #8a8170;
  --muted-light: rgba(248, 244, 236, .62);

  --line:        rgba(40, 36, 28, .14);
  --line-2:      rgba(40, 36, 28, .26);
  --line-light:  rgba(248, 244, 236, .14);

  /* Typo */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Mesures */
  --container: 1280px;
  --radius:    4px;
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --header-h:  84px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "liga";
}
@supports (overflow-x: clip) {
  body { overflow-x: clip; overflow-y: visible; }
}
section[id] { scroll-margin-top: var(--header-h); }

/* ---------- Smooth scroll (Lenis) — CSS officiel requis ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--noir); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.lucide, [data-lucide] { width: 1em; height: 1em; stroke-width: 1.4; vertical-align: -.14em; }

/* ---------- Typo réutilisable ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; color: var(--ink); letter-spacing: .005em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); text-wrap: balance; }
h2 em, h1 em { font-style: italic; font-weight: 500; color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
  position: relative;
  padding-left: 2.6rem;
}
.eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--gold-line);
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before { background: rgba(226, 211, 173, .4); }
.center .eyebrow { padding-left: 0; }
.center .eyebrow::before { display: none; }

p { color: var(--ink-soft); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--sans); font-weight: 400; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent; border-radius: var(--radius);
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .35s;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--noir); }
.btn--gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 16px 34px -18px rgba(177, 146, 90, .9); }
.btn--dark { background: var(--char); color: var(--cream); }
.btn--dark:hover { background: var(--noir); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(248, 244, 236, .4); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(248, 244, 236, .08); transform: translateY(-2px); }
.btn--ghost-dark { color: var(--ink); border-color: var(--line-2); }
.btn--ghost-dark:hover { border-color: var(--ink); background: transparent; }

/* ---------- Layout ---------- */
.section { padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 80px); }
.section__head { max-width: var(--container); margin: 0 auto clamp(40px, 5vw, 68px); }
.section__head.center { text-align: center; max-width: 680px; }
.section__intro { font-size: 1.08rem; color: var(--muted); margin-top: 1rem; }

/* =========================================================
   Barre d'annonce (marquee)
   ========================================================= */
.topbar {
  background: var(--noir);
  color: var(--gold-soft);
  overflow: hidden;
  border-bottom: 1px solid rgba(177, 146, 90, .14);
}
.topbar__track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  padding: .5rem 0;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.topbar__track span {
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  padding: 0 1.4rem;
}
.topbar__track i { color: var(--gold); font-style: normal; font-size: .6rem; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .topbar__track { animation: none; } }

/* =========================================================
   En-tête
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, border-color .4s, transform .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem clamp(20px, 5vw, 80px);
  height: var(--header-h);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif); font-weight: 500; font-size: 1.85rem;
  letter-spacing: .04em; color: var(--cream);
  transition: color .4s;
}
.brand__sub {
  font-family: var(--sans); font-size: .58rem; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold-soft); margin-top: .35rem;
  transition: color .4s;
}

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.6rem); }
.nav a {
  font-family: var(--sans); font-size: .8rem; font-weight: 300;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cream);
  position: relative; padding: .3rem 0; transition: color .3s;
}
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold-2); transition: width .35s var(--ease);
}
.nav a:not(.nav__cta):hover::after,
.nav a.is-active::after { width: 100%; }
.nav a:hover { color: var(--gold-soft); }
.nav__cta {
  border: 1px solid rgba(248, 244, 236, .35);
  padding: .55rem 1.2rem !important; border-radius: var(--radius);
  transition: border-color .3s, background .3s, color .3s;
}
.nav__cta:hover { border-color: var(--gold-2); background: var(--gold); color: var(--noir); }

/* État scrollé : fond clair */
.header.is-scrolled {
  background: rgba(248, 244, 236, .92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(20, 18, 13, .5);
}
.header.is-scrolled .brand__name { color: var(--ink); }
.header.is-scrolled .brand__sub { color: var(--gold); }
.header.is-scrolled .nav a { color: var(--ink); }
.header.is-scrolled .nav a:hover { color: var(--gold); }
.header.is-scrolled .nav__cta { border-color: var(--line-2); }
.header.is-scrolled .nav__cta:hover { border-color: var(--gold); background: var(--gold); color: var(--noir); }
.header.is-hidden { transform: translateY(-100%); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; z-index: 120;
}
.burger span { width: 26px; height: 1.6px; background: var(--cream); transition: transform .35s var(--ease), opacity .3s, background .4s; }
.header.is-scrolled .burger span { background: var(--ink); }
.burger.is-open span { background: var(--cream); }
.burger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--header-h) clamp(20px, 6vw, 90px) 8vh;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 16s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(20,18,13,.92) 0%, rgba(20,18,13,.64) 44%, rgba(20,18,13,.34) 100%),
    linear-gradient(0deg, rgba(20,18,13,.62), rgba(20,18,13,0) 48%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.7rem, 6.4vw, 5.4rem);
  line-height: 1.02; color: var(--cream); letter-spacing: .01em;
  margin-bottom: 1.7rem; text-wrap: balance; overflow-wrap: break-word;
}
.hero__title em { font-style: italic; color: var(--gold-soft); }
.hero__lead {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: rgba(248, 244, 236, .85);
  max-width: 540px; margin-bottom: 2.4rem; font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 44px; border: 1px solid rgba(248, 244, 236, .4);
  border-radius: 14px; display: grid; place-items: start center; padding-top: 8px;
}
.hero__scroll span { width: 3px; height: 8px; border-radius: 2px; background: var(--gold-soft); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* =========================================================
   La Maison
   ========================================================= */
.maison { background: var(--cream); }
.maison__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.maison__media { position: relative; }
.maison__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.maison__badge {
  position: absolute; right: -22px; bottom: 40px;
  background: var(--char); color: var(--cream);
  width: 132px; height: 132px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 24px 50px -24px rgba(20, 18, 13, .7);
  border: 1px solid var(--gold-line);
}
.maison__badge-num { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--gold-2); }
.maison__badge-txt { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-top: .35rem; }

.maison__text h2 { margin-bottom: 1.6rem; }
.maison__text p { margin-bottom: 1.1rem; max-width: 56ch; }
.maison__points { margin-top: 2rem; display: grid; gap: .9rem; }
.maison__points li {
  display: flex; align-items: center; gap: .9rem;
  font-family: var(--sans); font-size: .95rem; color: var(--ink); font-weight: 400;
}
.maison__points i { color: var(--gold); font-size: 1.15rem; flex-shrink: 0; }

/* =========================================================
   Nos univers (cards)
   ========================================================= */
.univers { background: var(--cream-2); }
.cards {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 34px);
}
.card {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -36px rgba(20, 18, 13, .5); }
.card__media { overflow: hidden; aspect-ratio: 4/3.2; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__body { padding: 1.7rem 1.8rem 2rem; position: relative; }
.card__index {
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  color: var(--gold); display: block; margin-bottom: .5rem;
}
.card__body h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.card__body p { font-size: .92rem; color: var(--muted); }

/* =========================================================
   Feature (Fiançailles)
   ========================================================= */
.feature { background: var(--cream); padding-inline: 0; }
.feature__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.feature__text { padding: clamp(40px, 6vw, 96px) clamp(24px, 5vw, 84px); align-self: center; max-width: 620px; }
.feature__text h2 { margin-bottom: 1.5rem; }
.feature__text > p { margin-bottom: 1.8rem; }
.feature__list { display: grid; gap: 1rem; margin-bottom: 2.2rem; }
.feature__list li { display: flex; align-items: flex-start; gap: .9rem; font-size: .98rem; color: var(--ink-soft); }
.feature__list i { color: var(--gold); font-size: 1.2rem; margin-top: .25rem; flex-shrink: 0; }
.feature__list strong { color: var(--ink); font-weight: 500; }
.feature__media { position: relative; min-height: 480px; overflow: hidden; }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Montres (bande sombre)
   ========================================================= */
.watches { background: var(--noir); color: var(--cream); padding-inline: 0; }
.watches__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.watches__media { position: relative; min-height: 520px; overflow: hidden; }
.watches__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.watches__text { padding: clamp(48px, 6vw, 100px) clamp(24px, 5vw, 84px); align-self: center; max-width: 600px; }
.watches__text h2 { color: var(--cream); margin-bottom: 1.4rem; }
.watches__text > p { color: rgba(248, 244, 236, .72); margin-bottom: 2rem; }
.watches__text strong { color: var(--gold-soft); font-weight: 400; }
.brands {
  display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2rem;
}
.brands li {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-soft); border: 1px solid rgba(226, 211, 173, .28);
  padding: .5rem 1.1rem; border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s;
}
.brands li:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.watches__note { display: flex; align-items: center; gap: .7rem; font-size: .9rem; color: rgba(248,244,236,.6); }
.watches__note i { color: var(--gold-2); }

/* =========================================================
   Atelier & Services
   ========================================================= */
.atelier { background: var(--cream); }
.atelier__photo {
  max-width: var(--container); margin: 0 auto clamp(40px, 5vw, 66px);
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gold-line); box-shadow: 0 40px 80px -50px rgba(0,0,0,.8);
}
.atelier__photo img {
  width: 100%; height: clamp(320px, 46vw, 560px); object-fit: cover;
  object-position: center 42%; transition: transform 1.6s var(--ease);
}
.atelier__photo:hover img { transform: scale(1.045); }
.atelier__photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3.2rem clamp(24px, 4vw, 56px) 1.7rem;
  font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  color: var(--cream);
  background: linear-gradient(0deg, rgba(7,6,8,.88), rgba(7,6,8,0));
}
.atelier__photo figcaption::before {
  content: ""; display: inline-block; width: 30px; height: 1px;
  background: var(--gold); vertical-align: middle; margin-right: .85rem;
}

.services {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.6vw, 22px);
}
.service {
  padding: clamp(24px, 2.6vw, 40px);
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .45s var(--ease), background .4s, border-color .4s, box-shadow .45s;
}
.service:hover {
  transform: translateY(-5px); background: rgba(255, 255, 255, .06);
  border-color: var(--gold-line); box-shadow: 0 28px 56px -36px rgba(0,0,0,.75);
}
.service .lucide, .service i {
  width: 50px; height: 50px; padding: 13px; color: var(--gold);
  border: 1px solid var(--gold-line); border-radius: 50%;
  background: rgba(246, 150, 37, .08);
  margin-bottom: 1.3rem; vertical-align: middle; stroke-width: 1.4;
  transition: background .4s, color .4s;
}
.service:hover .lucide { background: var(--gold); color: var(--noir); }
.service h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.service p { font-size: .92rem; color: var(--ink-soft); }

/* =========================================================
   Bande valeurs
   ========================================================= */
.values { background: var(--char); color: var(--cream); padding: clamp(46px, 6vw, 80px) clamp(20px, 5vw, 80px); }
.values__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px);
}
.value { text-align: center; }
.value span { display: block; color: var(--gold-2); font-size: 1.1rem; margin-bottom: .9rem; }
.value h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: .5rem; }
.value p { font-size: .86rem; color: rgba(248, 244, 236, .6); }

/* =========================================================
   Évènements
   ========================================================= */
.events { background: var(--cream-2); padding-inline: 0; }
.events__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch;
}
.events__media { position: relative; min-height: 460px; overflow: hidden; }
.events__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.events__text { padding: clamp(44px, 6vw, 96px) clamp(24px, 5vw, 84px); align-self: center; max-width: 600px; }
.events__text h2 { margin-bottom: 1.4rem; }
.events__text > p { margin-bottom: 1.8rem; }
.events__tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.events__tags li {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--ink); padding: .35rem .9rem;
  border: 1px solid var(--gold-line); border-radius: 999px; background: var(--cream);
}

/* =========================================================
   Visite / Contact
   ========================================================= */
.visite { background: var(--cream); }

/* Carte pleine largeur */
.visite__map {
  position: relative; max-width: var(--container); margin: 0 auto clamp(26px, 3vw, 42px);
  height: clamp(280px, 34vw, 420px); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 30px 60px -40px rgba(0,0,0,.6);
}
.visite__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.02); }

/* Bande d'infos en 4 colonnes */
.infos {
  max-width: var(--container); margin: 0 auto clamp(26px, 3vw, 40px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.5vw, 22px);
}
.info {
  display: flex; gap: .9rem; padding: 1.4rem 1.3rem;
  background: rgba(255, 255, 255, .03); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .35s, background .35s;
}
.info:hover { border-color: var(--gold-line); background: rgba(255, 255, 255, .05); }
.info i { color: var(--gold); font-size: 1.25rem; flex-shrink: 0; margin-top: .15rem; }
.info h4 { font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .45rem; }
.info p { font-size: .9rem; color: var(--ink); line-height: 1.5; }
.info a { transition: color .3s; }
.info a:hover { color: var(--gold); }
.todo { display: inline-block; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); border: 1px dashed var(--line-2); padding: .05rem .4rem; border-radius: 3px; vertical-align: middle; }

.visite__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.status {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .6rem;
  font-family: var(--sans); font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft);
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: #5e8b58; box-shadow: 0 0 0 3px rgba(94, 139, 88, .2); }
.status__dot.is-closed { background: #b46a5a; box-shadow: 0 0 0 3px rgba(180, 106, 90, .2); }

/* =========================================================
   Pied de page
   ========================================================= */
.footer { background: var(--noir); color: var(--cream); padding: clamp(38px, 4.5vw, 58px) clamp(20px, 5vw, 80px) 1.5rem; }
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.4rem 2.4rem;
  padding-bottom: 1.7rem; border-bottom: 1px solid var(--line-light);
}
.footer__brand { display: flex; align-items: center; gap: .9rem; flex: 0 1 auto; }
.footer__brand .brand__name { color: var(--cream); font-size: 2.2rem; }
.footer__logo { width: 104px; height: auto; border-radius: 6px; flex-shrink: 0; }
.footer__brand p { color: rgba(248, 244, 236, .55); max-width: 23ch; font-size: .8rem; line-height: 1.5; margin: 0; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem 1.1rem; }
.footer__nav a { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(248, 244, 236, .7); transition: color .3s; white-space: nowrap; }
.footer__nav a:hover { color: var(--gold-soft); }
.footer__contact { text-align: right; flex-shrink: 0; }
.footer__contact p { color: rgba(248, 244, 236, .7); font-size: .82rem; margin-bottom: .2rem; white-space: nowrap; }
.footer__contact a:hover { color: var(--gold-soft); }
.footer__bottom {
  max-width: var(--container); margin: 1.2rem auto 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .76rem; color: rgba(248, 244, 236, .4);
}
.footer__credit { font-family: var(--serif); font-style: italic; }

/* =========================================================
   Reveal au scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; transform: none; }
}

/* =========================================================
   Drawer mobile
   ========================================================= */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 105; background: rgba(20, 18, 13, .5);
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   Responsive
   ========================================================= */
/* =========================================================
   RESPONSIVE — logique Ninon/Alex : collapse à 900, puis 580, 380
   ========================================================= */

/* ---- Grilles intermédiaires ---- */
@media (max-width: 1040px) {
  .cards    { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
}

/* ---- Tablette + mobile : tout en une colonne (< 900px) ---- */
@media (max-width: 900px) {
  :root { --header-h: 68px; }

  /* Navigation -> tiroir (drawer) */
  .burger { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; z-index: 110;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    width: min(82vw, 330px); height: 100vh;
    background: #16151a; padding: 4.5rem 2.2rem 2.5rem;
    transform: translateX(100%); transition: transform .5s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,.7);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { color: var(--ink); font-size: 1.05rem; padding: .4rem 0; }
  .nav a:hover { color: var(--gold-2); }
  .nav__cta { margin-top: .7rem; padding: .75rem 1.3rem !important; }
  .header.is-scrolled .nav a { color: var(--ink); }

  /* Sections : padding réduit */
  .section { padding: clamp(54px, 9vw, 86px) clamp(20px, 6vw, 44px); }
  .section__head { margin-bottom: clamp(30px, 6vw, 46px); }

  /* Tout passe en une colonne */
  .maison__grid,
  .feature__grid, .watches__grid, .events__grid { grid-template-columns: 1fr; }
  .maison__grid { gap: 40px; }
  .maison__media { max-width: 440px; margin-inline: auto; }
  .maison__badge { right: 12px; bottom: 26px; }

  /* Sections "split" : image au-dessus, texte en dessous */
  .feature__grid, .watches__grid, .events__grid { gap: 0; }
  .feature__media, .watches__media, .events__media { position: relative; min-height: 300px; order: -1; }
  .feature__text, .watches__text, .events__text {
    max-width: none; align-self: stretch;
    padding: clamp(34px, 7vw, 58px) clamp(20px, 6vw, 44px);
  }

  /* Hero un peu plus court, titre maîtrisé */
  .hero__title { font-size: clamp(2.2rem, 7vw, 3.6rem); }

  /* Atelier */
  .atelier__photo img { height: clamp(220px, 50vw, 340px); }

  /* Visite : infos en 2 colonnes */
  .infos { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer__inner { align-items: flex-start; gap: 1.6rem 2rem; }
  .footer__contact { text-align: left; }

  /* Chiffres : 2 x 2 */
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
  .stat:nth-child(3)::before { display: none; }
}

/* ---- Petits écrans (< 580px) ---- */
@media (max-width: 580px) {
  /* On GARDE 2 colonnes sur mobile pour compacter l'affichage */
  .cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.8rem; }
  .infos { grid-template-columns: repeat(2, 1fr); }

  /* Cartes compactes */
  .card__media { aspect-ratio: 1 / 1; }
  .card__body { padding: .9rem .9rem 1.1rem; }
  .card__index { font-size: .8rem; margin-bottom: .25rem; }
  .card__body h3 { font-size: 1.02rem; line-height: 1.15; margin-bottom: .35rem; }
  .card__body p { font-size: .76rem; line-height: 1.4; }

  /* Services compacts */
  .service { padding: 1.1rem .95rem; }
  .service .lucide, .service i { width: 40px; height: 40px; padding: 10px; margin-bottom: .8rem; }
  .service h3 { font-size: 1.02rem; margin-bottom: .35rem; }
  .service p { font-size: .76rem; line-height: 1.4; }

  /* Infos compactes */
  .info { padding: 1rem .9rem; flex-direction: column; gap: .5rem; }
  .info p { font-size: .82rem; }

  /* Sections un peu plus serrées */
  .section { padding-block: clamp(44px, 8vw, 64px); }

  /* Hero */
  .hero { min-height: 86vh; padding: var(--header-h) 22px 12vh; }
  .hero__title { font-size: clamp(1.7rem, 7.6vw, 2.5rem); letter-spacing: 0; }
  .hero__lead { font-size: 1rem; }
  .hero__actions { width: 100%; flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  /* Badge */
  .maison__badge { width: 100px; height: 100px; right: 12px; bottom: 22px; }
  .maison__badge-num { font-size: 2rem; }

  /* Footer 1 colonne */
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__nav { justify-content: flex-start; }

  /* Chiffres : on garde 2 colonnes, numéros un peu plus petits */
  .stat__num { font-size: clamp(2.5rem, 13vw, 3.6rem); }
  .stat + .stat::before { display: none; }
}

/* ---- Très petits écrans (< 380px) ---- */
@media (max-width: 380px) {
  .section { padding-inline: 14px; }
  .hero { padding-inline: 18px; }
  .hero__title { font-size: 1.7rem; }
  .brand__name { font-size: 1.6rem; }
  .cards { gap: 10px; }
  .card__body { padding: .75rem .75rem 1rem; }
  .card__body h3 { font-size: .94rem; }
  .card__body p { font-size: .72rem; }
}



/* =========================================================
   ✦ EFFETS PREMIUM — marbre, or liquide, reflets, 3D
   ========================================================= */

/* --- Barre de progression dorée --- */
.scrollbar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, #8a6f3a, #e2d3ad 50%, #b1925a);
  box-shadow: 0 0 14px rgba(201,173,119,.7);
}

/* --- Brillance qui balaye les boutons au survol --- */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,.42) 48%, rgba(255,255,255,.6) 50%, rgba(255,255,255,.42) 52%, transparent 66%);
  transform: translateX(-160%) skewX(-18deg);
}
.btn:hover::before { transform: translateX(160%) skewX(-18deg); transition: transform .75s var(--ease); }
.btn--ghost::before, .btn--ghost-dark::before { background: linear-gradient(115deg, transparent 32%, rgba(246,150,37,.35) 48%, rgba(255,190,90,.55) 50%, rgba(246,150,37,.35) 52%, transparent 68%); }

/* --- Or liquide animé (texte) --- */
.shine-text {
  background: linear-gradient(100deg,#9b7f44 0%,#e7d6ab 22%,#fff7e6 32%,#c9ad77 46%,#9b7f44 60%,#e7d6ab 80%,#b1925a 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 7s linear infinite;
}
@keyframes shine { to { background-position: 250% 0; } }

/* --- Marbre sur certaines sections --- */
/* (marbre clair retiré — marbre sombre global en parallaxe) */
.values { background: #16130d url("assets/marble-dark.svg") center/cover; }
.watches { background: #16130d url("assets/marble-dark.svg") center/cover; }
.footer { background: #16130d url("assets/marble-dark.svg") center/cover; }

/* --- Reflet qui balaye les visuels au survol --- */
.card__media::after,
.feature__media::after,
.watches__media::after,
.events__media::after,
.atelier__photo::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,.28) 46%, rgba(255,247,224,.55) 50%, rgba(255,255,255,.28) 54%, transparent 72%);
  transform: translateX(-130%) skewX(-12deg);
  transition: transform 1s var(--ease);
}
.card:hover .card__media::after,
.feature:hover .feature__media::after,
.watches:hover .watches__media::after,
.events:hover .events__media::after,
.atelier__photo:hover::after { transform: translateX(130%) skewX(-12deg); }

/* --- Cartes 3D (tilt + reflet lié au curseur) --- */
.cards { perspective: 1300px; }
.card { transform-style: preserve-3d; will-change: transform; }
.card::before {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: 0;
  background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(255,247,224,.30), transparent 42%);
  transition: opacity .35s;
}
.card:hover::before { opacity: 1; }
.card__index { transform: translateZ(40px); }
.card__body h3 { transform: translateZ(26px); }

/* --- Bande chiffres animés --- */
.stats {
  background: #16130d url("assets/marble-dark.svg") center/cover;
  color: var(--cream); text-align: center;
  padding: clamp(54px,6.5vw,96px) clamp(20px,5vw,80px);
  border-top: 1px solid rgba(201,173,119,.18);
  border-bottom: 1px solid rgba(201,173,119,.18);
}
.stats__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(22px,3vw,46px);
}
.stat { position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: calc(-1 * clamp(11px,1.5vw,23px)); top: 14%; bottom: 14%;
  width: 1px; background: linear-gradient(rgba(201,173,119,0), rgba(201,173,119,.5), rgba(201,173,119,0));
}
.stat__num { font-family: var(--serif); font-weight: 500; font-size: clamp(2.8rem,6vw,4.8rem); line-height: 1; display: inline-block; }
.stat__sym { font-family: var(--serif); font-size: 1.8rem; color: var(--gold-2); vertical-align: top; margin-left: .1em; }
.stat p { margin-top: .7rem; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(248,244,236,.6); }

/* --- Filet doré scintillant sous les titres centrés --- */
.section__head.center h2 { position: relative; display: inline-block; }
.section__head.center h2::after {
  content: ""; display: block; width: 64px; height: 2px; margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, #c9ad77, transparent);
  background-size: 200% 100%; animation: shine 5s linear infinite;
}

/* --- Halo doré derrière le badge "30 ans" --- */
.maison__badge { overflow: visible; }
.maison__badge::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(201,173,119,.5); animation: pulseRing 3.4s var(--ease) infinite;
}
@keyframes pulseRing { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(1.18); opacity: 0; } 100% { opacity: 0; } }

/* --- Survol logo footer : petit éclat --- */
.footer__logo { transition: transform .5s var(--ease), filter .5s; }
.footer__logo:hover { transform: translateY(-3px) rotate(-1deg); filter: drop-shadow(0 10px 22px rgba(201,173,119,.35)); }


@media (prefers-reduced-motion: reduce) {
  .shine-text { animation: none; }
  .maison__badge::after { animation: none; }
  .section__head.center h2::after { animation: none; }
  .scrollbar { transition: none; }
}


/* =========================================================
   🟠 THÈME DE BASE — identité Blondet (noir + orange #f69625)
      + marbre en parallaxe derrière tout le site
   ========================================================= */

:root {
  /* Accent orange (logo Blondet) — remplace l'ancien doré */
  --gold:        #f69625;
  --gold-2:      #ffae4f;
  --gold-soft:   #f6c489;
  --gold-line:   rgba(246, 150, 37, .34);
  /* Texte clair sur fond sombre */
  --ink:         #e8e4db;
  --ink-soft:    #c3bfb6;
  --muted:       #948f84;
  /* Lignes claires sur fond sombre */
  --line:        rgba(255, 255, 255, .09);
  --line-2:      rgba(255, 255, 255, .17);
  --char:        #211f22;
  --noir:        #121113;
}

/* Couche marbre fixe + parallaxe */
.site-bg {
  position: fixed; left: 0; top: 0; width: 100%; height: 116vh; z-index: -2;
  background: #121113 url("assets/marble-dark.svg") center/cover;
  will-change: transform; transform: translateZ(0);
}
.site-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,14,16,.66), rgba(11,10,12,.76));
}
body { background: #131216; color: var(--ink); }

/* --- Sections de contenu : noir plein --- */
.maison   { background: #16151a; }
.univers  { background: #141318; }
.feature  { background: #16151a; }
.watches  { background: #121116; }
.events   { background: #16151a; }
.visite   { background: #141318; }

/* --- Sections "marbre" : on laisse transparaître la pierre --- */
.stats    { background: rgba(16, 15, 19, .70); }
.values   { background: rgba(15, 14, 18, .68); }
.atelier  { background: rgba(15, 14, 18, .60); border-top: 1px solid rgba(246,150,37,.14); border-bottom: 1px solid rgba(246,150,37,.14); }
.footer   { background: rgba(10, 9, 12, .80); }

/* Cartes : panneau sombre lisible */
.card { background: rgba(34, 32, 37, .92); border-color: var(--line); }
.card:hover { box-shadow: 0 30px 60px -34px rgba(0,0,0,.7); }

/* En-tête scrollé : sombre */
.header.is-scrolled {
  background: rgba(16, 15, 17, .9);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(0,0,0,.7);
}
.header.is-scrolled .brand__name,
.header.is-scrolled .nav a { color: var(--ink); }
.header.is-scrolled .brand__sub { color: var(--gold); }
.header.is-scrolled .burger span { background: var(--ink); }
.header.is-scrolled .nav a:hover { color: var(--gold-2); }
.header.is-scrolled .nav__cta { border-color: var(--line-2); }
.header.is-scrolled .nav__cta:hover { border-color: var(--gold); background: var(--gold); color: var(--noir); }

/* Puces / chips sombres */
.events__tags li { background: rgba(255,255,255,.04); color: var(--ink); border-color: var(--gold-line); }
.btn--ghost-dark { color: var(--ink); border-color: var(--line-2); }
.btn--ghost-dark:hover { border-color: var(--gold); color: var(--gold-2); }

/* Carte (iframe) : un peu plus sombre pour rester dans le ton */
.visite__map iframe { filter: grayscale(.4) contrast(.95) brightness(.92); }
.visite__map { border-color: var(--line); }

/* Or liquide -> dégradé orange */
.shine-text {
  background-image: linear-gradient(100deg,#a85c12 0%,#f6a338 22%,#ffd79f 32%,#f69625 46%,#a85c12 60%,#ffb957 80%,#f69625 100%);
}
.section__head.center h2::after { background: linear-gradient(90deg, transparent, var(--gold), transparent); background-size: 200% 100%; }

/* Reflet de survol des photos : teinte chaude */
.card__media::after, .feature__media::after, .watches__media::after,
.events__media::after, .atelier__photo::after {
  background: linear-gradient(115deg, transparent 28%, rgba(255,224,178,.26) 46%, rgba(255,241,214,.5) 50%, rgba(255,224,178,.26) 54%, transparent 72%);
}

/* Léger liseré chaud entre les sections */
.section, .footer { position: relative; }







/* =========================================================
   Lightbox (clic sur une carte -> image en grand + description)
   ========================================================= */
.card { cursor: pointer; }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center; padding: clamp(14px, 4vw, 48px);
  background: rgba(9, 8, 10, .88); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__inner {
  display: grid; grid-template-columns: 1.45fr 1fr;
  width: 100%; max-width: 1080px; max-height: 86vh;
  background: #1a191e; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.8);
  transform: translateY(18px) scale(.985); transition: transform .5s var(--ease);
}
.lightbox.is-open .lightbox__inner { transform: none; }

.lightbox__fig { margin: 0; background: #0c0b0d; display: grid; }
.lightbox__fig img { width: 100%; height: 100%; max-height: 86vh; object-fit: contain; }

.lightbox__info { padding: clamp(26px, 3vw, 46px); align-self: center; }
.lightbox__index { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold); }
.lightbox__info h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: .4rem 0 1rem; color: var(--ink); }
.lightbox__info p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.8rem; }
.lightbox__cta { margin-top: .4rem; }

.lightbox__close {
  position: absolute; top: clamp(14px, 2.5vw, 28px); right: clamp(14px, 2.5vw, 28px);
  width: 48px; height: 48px; border-radius: 50%; z-index: 2;
  border: 1px solid var(--line-2); background: rgba(0,0,0,.45); color: var(--cream);
  font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background .3s, color .3s, border-color .3s, transform .4s var(--ease);
}
.lightbox__close:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); transform: rotate(90deg); }

@media (max-width: 760px) {
  .lightbox__inner { grid-template-columns: 1fr; max-height: 88vh; overflow-y: auto; }
  .lightbox__fig img { max-height: 46vh; }
  .lightbox__info { padding: 22px 22px 28px; }
}








