/* ============================================================
   Coralie B — Bijoux, Montres & Déco · Rouen
   Identité tirée de la vraie boutique : noir vitrine, ors chauds,
   étiquettes jaunes manuscrites, rouge live TikTok.
   Typographies : Abril Fatface (display) · Figtree (texte) ·
   Caveat (écriture manuscrite, comme les étiquettes de Michel).
   ============================================================ */

:root {
  --noir: #0d0b08;
  --noir-2: #171310;
  --noir-3: #231c14;
  --creme: #f6efdf;
  --creme-2: #ece2cb;
  --blanc: #fffdf6;
  --encre: #1d1812;
  --encre-douce: #6d6353;
  --or: #d4a437;
  --or-doux: #b3893a;
  --jaune: #ffd84d;
  --jaune-2: #ffe98a;
  --encre-jaune: #33290f;
  --rouge: #fe2c55;
  --cyan: #25f4ee;
  --creme-trans: rgba(246, 239, 223, .14);
  --line-dark: rgba(29, 24, 18, .14);
  --line-light: rgba(246, 239, 223, .16);

  --display: "Abril Fatface", Georgia, serif;
  --body: "Figtree", "Segoe UI", sans-serif;
  --hand: "Caveat", cursive;

  --shadow: 0 22px 45px -18px rgba(13, 11, 8, .45);
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--noir);
  color: var(--creme);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--jaune); color: var(--encre-jaune); }

a { color: inherit; }
a:hover { color: var(--or); }

:focus-visible {
  outline: 2px solid var(--jaune);
  outline-offset: 3px;
}

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

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px; top: 0;
  z-index: 3000;
  background: var(--jaune);
  color: var(--encre-jaune);
  padding: .6rem 1rem;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Typo utilitaires ---------- */
.hand { font-family: var(--hand); }

.eyebrow {
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 1rem;
}
.eyebrow::before { content: "★ "; }
.eyebrow--dark { color: var(--or-doux); }
.eyebrow--rouge { color: var(--rouge); }

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: .005em;
  margin: 0 0 1.2rem;
}

.section-sub {
  max-width: 36rem;
  color: var(--encre-douce);
  margin: 0;
}
.section-sub a { font-weight: 700; color: var(--encre); }

.hand-accent {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.18em;
  color: var(--jaune);
  line-height: 0;
}
.hand-accent--rouge { color: var(--rouge); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  padding: .85rem 1.6rem;
  border-radius: 99px;
  border: 2px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn--tiktok {
  background: var(--rouge);
  color: #fff;
  box-shadow: 3px 3px 0 rgba(37, 244, 238, .55);
}
.btn--tiktok:hover {
  background: #e62047;
  color: #fff;
  box-shadow: 4px 4px 0 var(--cyan);
}

.btn--creme { background: var(--creme); color: var(--encre); }
.btn--creme:hover { background: var(--jaune); color: var(--encre-jaune); }

.btn--ghost-light { border-color: var(--line-light); color: var(--creme); }
.btn--ghost-light:hover { border-color: var(--jaune); color: var(--jaune); }

.btn--small { padding: .5rem 1.05rem; font-size: .85rem; }

/* ---------- Pastille live ---------- */
.live-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rouge);
  box-shadow: 0 0 0 0 rgba(254, 44, 85, .6);
  animation: live-pulse 1.6s ease-out infinite;
  flex: none;
}
.btn--tiktok .live-dot { background: #fff; box-shadow: 0 0 0 0 rgba(255, 255, 255, .6); }

@keyframes live-pulse {
  70% { box-shadow: 0 0 0 9px rgba(254, 44, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 44, 85, 0); }
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  padding: .45rem 1rem;
  border: 1.5px solid rgba(254, 44, 85, .55);
  border-radius: 99px;
  color: var(--creme);
  white-space: nowrap;
}
.live-pill:hover { border-color: var(--rouge); color: #fff; background: rgba(254, 44, 85, .14); }
.tiktok-icon { flex-shrink: 0; opacity: .9; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 11, 8, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}
.brand__logo {
  border-radius: 50%;
  border: 2px solid var(--or);
}
.brand__name {
  display: block;
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
}
.brand:hover .brand__name { color: var(--jaune); }
.brand__tag {
  display: block;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246, 239, 223, .55);
  margin-top: .2rem;
}

.site-nav { display: flex; gap: 1.8rem; }
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--jaune);
  transition: right .3s ease;
}
.site-nav a:hover { color: var(--creme); }
.site-nav a:hover::after { right: 0; }

.header-right {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: .6rem .2rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--creme);
  margin: 6px 0;
  transition: transform .3s ease;
}
body.menu-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line-light);
  background: var(--noir);
  padding: 1rem min(4vw, 2rem) 1.5rem;
}
.mobile-nav a {
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.3rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line-light);
}
.mobile-nav__tel {
  font-family: var(--hand) !important;
  font-size: 1.25rem !important;
  color: var(--jaune);
}
body.menu-open .mobile-nav { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(13, 11, 8, .96) 38%, rgba(13, 11, 8, .72) 70%, rgba(13, 11, 8, .85)),
    url("../assets/img/vitrine.jpg") center 30% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 164, 55, .16), transparent 45%),
    radial-gradient(circle at 92% 88%, rgba(254, 44, 85, .12), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 3.5rem;
  min-height: calc(100vh - 76px);
  padding-block: 4.5rem;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  line-height: 1.04;
  margin: 0 0 1.6rem;
}
.hero-title .hand-accent { font-size: 1.22em; }

.hero-lede {
  max-width: 35rem;
  font-size: 1.14rem;
  color: rgba(246, 239, 223, .82);
  margin: 0 0 2.2rem;
}
.hero-lede strong { color: var(--jaune); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.6rem;
}

.hero-proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  padding: 1.2rem 0 0;
  margin: 0;
  border-top: 1px solid var(--line-light);
}
.hero-proof li { display: flex; flex-direction: column; }
.hero-proof strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--or);
}
.hero-proof span {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(246, 239, 223, .55);
}

/* Polaroïds */
.polaroid {
  margin: 0;
  background: var(--blanc);
  padding: 12px 12px 8px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform .35s ease;
}
.polaroid:hover { transform: rotate(0deg) scale(1.015); }
.polaroid img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}
.polaroid figcaption {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--encre);
  padding: .45rem 0 .3rem;
  line-height: 1.1;
}

.hero-figure {
  position: relative;
  justify-self: center;
  width: min(380px, 82vw);
}
.polaroid--hero { transform: rotate(2.5deg); }

.sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--jaune);
  color: var(--encre-jaune);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  padding: .55rem .95rem;
  border-radius: 4px;
  box-shadow: 0 10px 22px -8px rgba(13, 11, 8, .55);
}
.sticker::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 56px; height: 18px;
  background: rgba(255, 255, 255, .45);
  border-left: 1px dashed rgba(13, 11, 8, .12);
  border-right: 1px dashed rgba(13, 11, 8, .12);
}
.sticker--live {
  top: -16px;
  right: -22px;
  transform: rotate(4deg);
}
.sticker--depuis {
  bottom: 38px;
  left: -30px;
  transform: rotate(-6deg);
  background: var(--blanc);
  color: var(--encre);
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--jaune);
  color: var(--encre-jaune);
  overflow: hidden;
  padding-block: .7rem;
  border-block: 3px solid var(--noir);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.5rem;
  white-space: nowrap;
}
.marquee__item--display {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.marquee__star { font-size: .9rem; }

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.section--creme {
  background: var(--creme);
  color: var(--encre);
}
.section--creme .section-title { color: var(--encre); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.section-head .section-title { margin-bottom: .8rem; }

/* ---------- Filtres ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.filter {
  font-family: var(--body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  background: none;
  border: 1.5px solid var(--line-dark);
  border-radius: 99px;
  color: var(--encre-douce);
  padding: .5rem 1.05rem;
  cursor: pointer;
  transition: all .25s ease;
}
.filter:hover { border-color: var(--encre); color: var(--encre); }
.filter.is-active {
  background: var(--encre);
  border-color: var(--encre);
  color: var(--jaune);
}

/* ---------- Cartes produits ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  position: relative;
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: 0 1px 0 var(--line-dark), 0 14px 30px -22px rgba(29, 24, 18, .35);
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-6px) rotate(-.4deg);
  box-shadow: 0 1px 0 var(--line-dark), var(--shadow);
}
.card.is-hidden { display: none; }

.card__media {
  position: relative;
}
.card__media-clip {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--creme-2);
}
.card__media-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card__media-clip img { transform: scale(1.045); }

.card__tag {
  position: absolute;
  top: .85rem;
  left: .85rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .32rem .7rem;
  border-radius: 99px;
  background: rgba(13, 11, 8, .82);
  color: var(--creme);
  backdrop-filter: blur(3px);
}
.card__tag--promo { background: var(--rouge); color: #fff; }

/* Étiquette jaune manuscrite, posée sur la vitrine — dépasse du cadre */
.etiquette {
  position: absolute;
  z-index: 3;
  right: -14px;
  bottom: -16px;
  transform: rotate(-5deg);
  background: var(--jaune);
  color: var(--encre-jaune);
  font-family: var(--hand);
  font-weight: 700;
  line-height: .95;
  text-align: center;
  padding: .55rem .85rem .5rem;
  border-radius: 4px;
  box-shadow: 0 12px 22px -10px rgba(13, 11, 8, .5);
  transition: transform .3s ease;
}
.card:hover .etiquette { transform: rotate(-2deg) scale(1.06); }
.etiquette__prix { display: block; font-size: 1.9rem; }
.etiquette__avant {
  display: block;
  font-size: 1.05rem;
  color: rgba(51, 41, 15, .65);
  text-decoration: line-through;
  text-decoration-color: var(--rouge);
  text-decoration-thickness: 2px;
}
.etiquette--demande .etiquette__prix { font-size: 1.3rem; padding-top: .15rem; }

.card__body { padding: 1.15rem 1.25rem 1.25rem; }

.card__brand {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--or-doux);
  margin: 0 0 .3rem;
}
.card__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.18;
  color: var(--encre);
  margin: 0 0 .3rem;
}
.card__spec {
  font-size: .85rem;
  color: var(--encre-douce);
  margin: 0 0 1rem;
}
.card__cta {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--encre);
  padding: .5rem 1.05rem;
  border: 1.5px solid var(--encre);
  border-radius: 99px;
  transition: background .25s ease, color .25s ease;
}
.card__cta:hover { background: var(--encre); color: var(--jaune); }

.collection-note {
  margin: 3rem auto 0;
  max-width: 46rem;
  font-size: .95rem;
  color: var(--encre-douce);
  text-align: center;
}

.swipe-hint {
  display: none;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--or-doux);
  margin: .4rem 0 0;
  transform: rotate(-1deg);
}

/* ---------- Section lives TikTok ---------- */
.section--lives {
  position: relative;
  background: #090807;
  overflow: hidden;
}
.section--lives::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(254, 44, 85, .17), transparent 42%),
    radial-gradient(circle at 6% 80%, rgba(37, 244, 238, .1), transparent 38%);
  pointer-events: none;
}
.section--lives > .container { position: relative; }

.lives-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.lives-copy p { color: rgba(246, 239, 223, .8); }
.lives-copy strong { color: var(--creme); }

.lives-quote {
  margin: 2.2rem 0;
  padding-left: 1.6rem;
  border-left: 3px solid var(--rouge);
}
.lives-quote p {
  margin: 0 0 .4rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--creme);
}
.lives-quote cite {
  font-style: normal;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--or);
}

.lives-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.lives-hint {
  margin-top: 1.4rem;
  font-size: 1.4rem;
  color: var(--jaune);
  transform: rotate(-1deg);
}

/* Embed TikTok + carte de secours */
.lives-embed {
  position: relative;
  display: grid;
  justify-items: center;
}
.lives-embed .tiktok-embed {
  margin: 0;
  width: 100%;
  max-width: 460px;
  min-height: 0;
}

.tiktok-card {
  width: 100%;
  max-width: 460px;
  text-align: center;
  background: var(--noir-2);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  margin-bottom: 1.2rem;
}
.tiktok-card__avatar {
  border-radius: 50%;
  border: 3px solid var(--rouge);
  margin: 0 auto .9rem;
}
.tiktok-card__handle {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 0 0 .4rem;
}
.tiktok-card__bio {
  color: rgba(246, 239, 223, .7);
  margin: 0 0 .6rem;
}
.tiktok-card__stats {
  font-size: .9rem;
  color: rgba(246, 239, 223, .6);
  margin: 0 0 1.4rem;
}
.tiktok-card__stats strong { color: var(--jaune); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin: 0 0 3.5rem;
  padding-top: 2.8rem;
  border-top: 1px solid var(--line-light);
}
.stats dt {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--or);
}
.stats dd {
  margin: .25rem 0 0;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246, 239, 223, .55);
}

/* Galerie de polaroïds */
.lives-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.lives-gallery .polaroid:nth-child(1) { transform: rotate(-2.4deg); }
.lives-gallery .polaroid:nth-child(2) { transform: rotate(1.6deg); }
.lives-gallery .polaroid:nth-child(3) { transform: rotate(-1.2deg); }
.lives-gallery .polaroid:hover { transform: rotate(0) scale(1.02); }
.lives-gallery img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---------- La boutique ---------- */
.boutique-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.polaroid--boutique { transform: rotate(-2deg); max-width: 420px; }
.boutique-copy p { color: var(--encre-douce); }
.boutique-copy strong { color: var(--encre); }

.gmaps-note {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  background: var(--blanc);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: .9rem 1.3rem;
}
.gmaps-note__score {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--encre);
}
.gmaps-note__score small { font-size: .9rem; color: var(--encre-douce); }
.gmaps-note__label {
  font-size: .9rem;
  color: var(--encre-douce);
}
.gmaps-note__label a { font-weight: 700; color: var(--encre); }

.avis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.avis-card {
  background: var(--blanc);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.avis-card p.avis-card__stars {
  color: var(--rouge);
  letter-spacing: .2em;
  margin: 0 0 .8rem;
}
.avis-card p { margin: 0 0 .8rem; color: var(--encre); }
.avis-card__author {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--encre-douce) !important;
  margin: 0 !important;
}

/* ---------- Infos pratiques ---------- */
.section--infos { background: var(--noir-2); }

.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.info-block {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--noir);
  padding: 2rem 1.8rem;
}
.info-block h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0 0 1.2rem;
}
.info-block address {
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.info-lines {
  font-size: .95rem;
  line-height: 2.1;
  margin: 0 0 1.6rem;
}
.info-lines a { text-decoration: none; font-weight: 600; }
.info-lines a:hover { color: var(--jaune); }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.hours th {
  text-align: left;
  font-weight: 500;
  padding: .42rem 0;
}
.hours td {
  text-align: right;
  font-weight: 600;
  padding: .42rem 0;
}
.hours tr + tr { border-top: 1px dashed var(--line-light); }
.hours .closed { color: var(--rouge); }

.info-hint {
  margin: 1.2rem 0 0;
  font-size: 1.35rem;
  color: var(--jaune);
  transform: rotate(-1.2deg);
}

.info-social-intro {
  color: rgba(246, 239, 223, .65);
  font-size: .95rem;
  margin-top: 0;
}
.social-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}
.social-list li + li { margin-top: .7rem; }
.social-list a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: .2rem;
}
.social-list a:hover { border-color: var(--jaune); color: var(--jaune); }

/* ---------- Footer ---------- */
.site-footer {
  background: #070605;
  padding: 4rem 0 2.5rem;
  overflow: hidden;
}
.footer-brand {
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 700;
  line-height: .95;
  margin: 0 0 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(246, 239, 223, .3);
  user-select: none;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-cols h4 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 1rem;
}
.footer-cols p {
  margin: 0;
  line-height: 2.1;
  color: rgba(246, 239, 223, .7);
  font-size: .95rem;
}
.footer-cols a { text-decoration: none; }
.footer-cols a:hover { color: var(--jaune); }
.footer-legal {
  margin: 2rem 0 0;
  font-size: .8rem;
  color: rgba(246, 239, 223, .4);
}

/* ---------- Page Politiques ---------- */
.legal-main { padding-block: clamp(3.5rem, 7vw, 6rem); }
.legal-main .container { max-width: 760px; }
.legal-main { background: var(--creme); color: var(--encre); }
.legal-main .section-title { color: var(--encre); }
.legal-notice {
  font-size: .9rem;
  font-weight: 600;
  border: 2px dashed var(--or-doux);
  border-radius: var(--radius);
  background: var(--jaune-2);
  color: var(--encre-jaune);
  padding: 1rem 1.2rem;
  margin-bottom: 3rem;
}
.legal-main h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 3rem 0 .8rem;
}
.legal-main p { color: var(--encre-douce); }
.legal-main a { color: var(--encre); font-weight: 600; }
.back-link {
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}

/* ---------- Barre d'actions mobile (masquée sur grand écran) ---------- */
.mobile-cta { display: none; }

/* ---------- Animations ---------- */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up .9s cubic-bezier(.2, .65, .25, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fade-up {
  to { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2, .65, .25, 1), transform .8s cubic-bezier(.2, .65, .25, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .site-nav, .live-pill { display: none; }
  .nav-toggle { display: block; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    min-height: 0;
    padding-block: 3.5rem 4.5rem;
  }
  .hero-figure { width: min(330px, 78vw); }
  .sticker--live { right: -8px; }
  .sticker--depuis { left: -12px; }

  .lives-grid, .boutique-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .polaroid--boutique { margin-inline: auto; }
  .infos-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .avis { grid-template-columns: 1fr; }
  .lives-gallery { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .brand__tag { display: none; }
  .brand__logo { width: 38px; height: 38px; }
  .brand__name { font-size: 1.45rem; }
  .btn--small { padding: .45rem .85rem; font-size: .8rem; }

  .section { padding-block: 3.5rem; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 2.2rem; }

  /* Hero plus compact */
  .hero-grid { padding-block: 2.6rem 3.8rem; gap: 2.8rem; }
  .hero-title { font-size: clamp(2.15rem, 9vw, 2.9rem); }
  .hero-lede { font-size: 1.02rem; margin-bottom: 1.8rem; }
  .hero-actions { margin-bottom: 2rem; }
  .hero-actions .btn { padding: .8rem 1.3rem; font-size: .9rem; }
  .hero-proof { gap: 1rem 1.8rem; padding-top: 1rem; }
  .hero-proof strong { font-size: 1.2rem; }
  .hero-proof span { font-size: .66rem; }

  .marquee__item { font-size: 1.25rem; }
  .marquee__item--display { font-size: .95rem; }

  /* Filtres : une seule ligne, défilable au doigt */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: calc(100% + 8vw);
    margin-inline: -4vw;
    padding-inline: 4vw;
    padding-bottom: .35rem;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: none; }

  /* Vitrine : carrousel à glisser, photos plein format */
  .cards {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(74vw, 300px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4vw;
    gap: 1.2rem;
    margin-inline: -4vw;
    padding: .4rem 4vw 1.6rem;
    scrollbar-width: none;
  }
  .cards::-webkit-scrollbar { display: none; }
  .card { scroll-snap-align: center; }
  .swipe-hint { display: block; }
  .collection-note { margin-top: 1.6rem; }

  .card__body { padding: .95rem 1rem 1.1rem; }
  .etiquette__prix { font-size: 1.7rem; }
  .etiquette { right: -8px; bottom: -12px; padding: .45rem .7rem .4rem; }

  .lives-gallery { grid-template-columns: 1fr; gap: 2rem; }
  .lives-gallery .polaroid { max-width: 320px; margin-inline: auto; }
  .stats { gap: 1rem; }
  .footer-cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-brand { font-size: 3.8rem; margin-bottom: 2rem; }

  /* Barre d'actions fixe en bas d'écran */
  body { padding-bottom: 74px; }
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(13, 11, 8, .94);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line-light);
  }
  .mobile-cta .btn {
    justify-content: center;
    padding: .75rem .9rem;
    font-size: .9rem;
  }
}

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-anim, .reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  .marquee__track { animation: none; }
  .live-dot { animation: none; }
  .card:hover .card__media img { transform: none; }
}
