/* =========================================================
   ANTHRASITE — Studio web pour restaurants
   Direction artistique : sobre, épurée, éditoriale.
   Palette anthracite + ivoire, accent bronze discret.
   ========================================================= */

:root {
  --ink:        #15171a;
  --ink-2:      #1d2024;
  --ink-3:      #2a2d33;
  --paper:      #f4f2ec;
  --paper-2:    #faf9f5;
  --paper-3:    #ffffff;
  --bronze:     #b3935f;
  --bronze-dk:  #9a7c4c;
  --text:       #2a2c30;
  --text-soft:  #6b6c70;
  --line:       #e2dfd6;
  --line-dark:  rgba(255,255,255,.13);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 130px 0; }

.section-head { max-width: 660px; margin: 0 auto 70px; text-align: center; }

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze-dk);
  margin-bottom: 22px;
}
.eyebrow-light { color: var(--bronze); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
}

.section-intro {
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--text-soft);
  font-weight: 300;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 2px;
  transition: transform .25s var(--ease), background .35s var(--ease),
              color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn-light       { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-dark        { background: var(--ink); color: var(--paper); }
.btn-dark:hover  { background: var(--ink-3); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent; color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(244,242,236,.34);
}
.btn-ghost-light:hover { box-shadow: inset 0 0 0 1px rgba(244,242,236,.85); }
.btn-block { width: 100%; justify-content: center; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(21,23,26,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.logo { display: inline-flex; align-items: center; gap: 13px; color: var(--paper); }
.logo-mark { height: 40px; width: auto; display: block; }
.logo-word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.16rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: .86rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: rgba(244,242,236,.78);
  transition: color .25s var(--ease);
}
.nav a:hover { color: var(--paper); }
.nav-cta {
  padding: 11px 22px;
  box-shadow: inset 0 0 0 1px rgba(244,242,236,.32);
  border-radius: 2px;
  color: var(--paper) !important;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-cta:hover { background: var(--paper); color: var(--ink) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 24px; height: 1.5px;
  background: var(--paper);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 70vw; height: 70vw;
  top: -26vw; right: -14vw;
  background: radial-gradient(circle, rgba(179,147,95,.18), transparent 62%);
  animation: heroGlow 17s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1);      opacity: .85; }
  50%      { transform: translate(-5%, 6%) scale(1.12); opacity: 1; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,242,236,.18), transparent);
}
.hero-inner { max-width: 980px; }
.hero .eyebrow { color: var(--bronze); }

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
}

.hero-lead {
  max-width: 600px;
  margin-top: 32px;
  font-size: 1.18rem;
  font-weight: 300;
  color: rgba(244,242,236,.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 50px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,242,236,.5);
}
.hero-meta .dot { color: var(--bronze); }

/* Entrée du hero — l'état VISIBLE est l'état par défaut : si l'animation
   ne s'exécute pas, le contenu du hero reste parfaitement lisible. */
.hero-inner > * { animation: heroRise 1s var(--ease) .06s forwards; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   CONSTAT
   ========================================================= */
.constat {
  background: var(--ink-2);
  color: var(--paper);
  padding: 110px 0;
  text-align: center;
}
.constat-text {
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.4;
  letter-spacing: -.01em;
  color: rgba(244,242,236,.66);
}
.constat-text strong {
  display: block;
  margin-top: 14px;
  font-weight: 400;
  color: var(--paper);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--paper); }
.grid { display: grid; gap: 1px; }
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 48px 40px 52px;
  transition: background .35s var(--ease);
}
.service-card:hover { background: var(--paper-2); }
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.42rem;
  color: var(--ink);
  margin: 24px 0 14px;
  letter-spacing: -.01em;
}

/* Pastille icône — services et SAV */
.icon {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--bronze-dk);
  transition: border-color .35s var(--ease),
              background .35s var(--ease),
              color .35s var(--ease);
}
.icon svg {
  width: 25px; height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:hover .icon,
.sav-card:hover .icon {
  border-color: var(--bronze);
  background: var(--ink);
  color: var(--bronze);
}
.service-card p {
  font-size: .98rem;
  font-weight: 300;
  color: var(--text-soft);
}

/* =========================================================
   RÉALISATIONS
   ========================================================= */
.realisations { background: var(--paper-2); }

/* Vitrine : le site en direct dans un cadre navigateur (tilt 3D au scroll) */
.showcase {
  perspective: 1700px;
  margin: 0 auto;
  max-width: 1080px;
}
.device {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(12deg);     /* repli ; motion.js anime au scroll */
  will-change: transform;
}
.device-frame {
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-3);
  box-shadow:
    0 2px 0 rgba(255,255,255,.05) inset,
    0 50px 90px -40px rgba(21,23,26,.65),
    0 20px 50px -30px rgba(21,23,26,.5);
}
.device-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(var(--ink-3), var(--ink-2));
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.device-dots { display: flex; gap: 8px; }
.device-dots i {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(244,242,236,.18);
}
.device-url {
  flex: 1;
  text-align: center;
  font-size: .8rem;
  color: rgba(244,242,236,.6);
  background: var(--ink);
  padding: 7px 16px;
  border-radius: 30px;
  letter-spacing: .02em;
  max-width: 360px;
  margin: 0 auto;
}
.device-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,242,236,.6);
}
.device-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4caf72;
  box-shadow: 0 0 0 0 rgba(76,175,114,.6);
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(76,175,114,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(76,175,114,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,114,0); }
}
.device-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--paper-3);
  overflow: hidden;
}
.device { color: inherit; display: block; }
.device-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.device-shot {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1.4s var(--ease);   /* léger zoom au survol */
  transform: scale(1.01);
}
.device:hover .device-shot { transform: scale(1.08); }
/* bouton « ouvrir » au survol */
.device-open {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: rgba(244,242,236,.95);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 2px;
  opacity: 0;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.device-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16,17,20,0);
  transition: background .35s var(--ease);
  z-index: 1;
}
.device:hover .device-screen::after { background: rgba(16,17,20,.28); }
.device:hover .device-open { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Vignette « Avant » */
.before-inset {
  position: absolute;
  left: -28px; bottom: -34px;
  width: 30%;
  max-width: 290px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 50px -24px rgba(21,23,26,.7);
  transform: rotate(-4deg) translateZ(60px);
  border: 3px solid var(--paper);
}
.before-inset img { display: block; width: 100%; filter: saturate(.85) brightness(.92); }
.before-inset figcaption {
  position: absolute;
  top: 8px; left: 8px;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(21,23,26,.7);
  padding: 4px 9px;
  border-radius: 2px;
}
.showcase-hint {
  margin-top: 46px;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--text-soft);
}

/* tactile / petits écrans : pas de tilt, vignette repositionnée */
@media (hover: none), (max-width: 760px) {
  .device { transform: none; }
  .device-open { opacity: 1; transform: translate(-50%, -50%); }
  .before-inset { left: -12px; bottom: -22px; width: 34%; }
}

.case-body {
  max-width: 720px;
  margin: 46px auto 0;
  text-align: center;
}
.case-body .case-points {
  text-align: left;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}

.case-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze-dk);
  margin-bottom: 16px;
}
.case-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--ink);
  letter-spacing: -.015em;
}
.case-loc {
  font-size: .92rem;
  color: var(--text-soft);
  margin: 6px 0 22px;
}
.case-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
}
.case-points {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.case-points li {
  position: relative;
  padding-left: 24px;
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-soft);
}
.case-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 11px; height: 1px;
  background: var(--bronze);
}

.realisations-note {
  margin-top: 70px;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text-soft);
}
.realisations-note a {
  color: var(--ink);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  transition: color .25s var(--ease);
}
.realisations-note a:hover { color: var(--bronze-dk); }

/* =========================================================
   MÉTHODE  (section sombre)
   ========================================================= */
.methode {
  background: var(--ink);
  color: var(--paper);
}
.methode .section-title { color: var(--paper); }
.methode .section-intro { color: rgba(244,242,236,.6); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.step {
  background: var(--ink);
  padding: 46px 32px 52px;
}
.step-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--bronze);
  display: block;
  line-height: 1;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 22px 0 12px;
}
.step p {
  font-size: .94rem;
  font-weight: 300;
  color: rgba(244,242,236,.6);
}

/* =========================================================
   SERVICE APRÈS-VENTE
   ========================================================= */
.sav { background: var(--paper); }
.sav-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sav-card {
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 46px 38px 48px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.sav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 46px -30px rgba(21,23,26,.4);
}
.sav-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.46rem;
  color: var(--ink);
  margin: 24px 0 14px;
  letter-spacing: -.01em;
}
.sav-card p {
  font-size: .99rem;
  font-weight: 300;
  color: var(--text-soft);
}

/* =========================================================
   TARIFICATION  (section sombre, sobre)
   ========================================================= */
.tarifs {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.tarifs-inner { max-width: 660px; margin: 0 auto; }
.tarifs .section-title { color: var(--paper); margin-top: 8px; }
.tarifs-lead {
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(244,242,236,.66);
}
.tarifs .btn { margin-top: 40px; }

/* =========================================================
   AVIS
   ========================================================= */
.avis { background: var(--paper-2); }

.avis-policy {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 34px 40px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 14px;
}
.g-logo { display: inline-flex; }
.avis-policy p {
  font-size: .96rem;
  font-weight: 300;
  color: var(--text-soft);
}

.avis-cta { text-align: center; margin-bottom: 56px; }
.avis-cta .g-mini { display: inline-flex; }
.avis-cta .g-mini svg { width: 18px; height: 18px; }

.avis-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: #f5b400;
  font-size: 1rem;
}
.review-text {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.review-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.review-meta { line-height: 1.4; }
.review-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}
.review-loc { font-size: .82rem; color: var(--text-soft); }
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  font-size: .74rem;
  color: var(--text-soft);
}
.review-verified svg { width: 13px; height: 13px; }

/* =========================================================
   CONTACT  (section sombre)
   ========================================================= */
.contact {
  background: var(--ink);
  color: var(--paper);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact .section-title { color: var(--paper); }
.contact .section-intro { color: rgba(244,242,236,.62); }

.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}
.contact-details span:first-child {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.contact-details a { font-size: 1.05rem; transition: color .25s var(--ease); }
.contact-details a:hover { color: var(--bronze); }
.contact-socials { margin-top: 4px; }

/* Réseaux sociaux — icônes */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.socials { display: flex; align-items: center; gap: 12px; }
.social-link {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  color: rgba(244,242,236,.72);
  transition: border-color .3s var(--ease), background .3s var(--ease),
              color .3s var(--ease), transform .3s var(--ease);
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.social-link:hover {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--ink);
  transform: translateY(-3px);
}
.hero-socials { margin-top: 38px; }

/* Form */
.contact-form {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 42px 40px;
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244,242,236,.6);
  margin-bottom: 9px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .96rem;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  padding: 13px 15px;
  transition: border-color .25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(244,242,236,.32); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bronze);
}
.field textarea { resize: vertical; }

.contact-form .btn { margin-top: 8px; }
.form-note {
  margin-top: 16px;
  font-size: .8rem;
  font-weight: 300;
  color: rgba(244,242,236,.45);
  text-align: center;
}
.hp { position: absolute; left: -9999px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(244,242,236,.6);
  padding: 70px 0 36px;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand { max-width: 320px; }
.logo-footer { margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; font-weight: 300; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: .9rem;
}
.footer-nav a:hover { color: var(--paper); }
.footer-social { flex-direction: row; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
  font-size: .8rem;
  color: rgba(244,242,236,.4);
}

/* =========================================================
   INTERACTIONS
   ========================================================= */

/* Barre de progression de défilement */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 70;
}

/* Lien de navigation actif (scroll-spy) */
.nav a.active { color: var(--paper); }
.nav a.active::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 4px;
  background: var(--bronze);
}

/* Halo lumineux suivant le curseur sur les cartes */
.service-card, .sav-card { position: relative; isolation: isolate; }
.service-card::after, .sav-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
              rgba(179,147,95,.14), transparent 68%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.service-card:hover::after, .sav-card:hover::after { opacity: 1; }

/* Statut d'envoi du formulaire */
.form-status {
  margin-top: 16px;
  font-size: .9rem;
  text-align: center;
  padding: 13px 16px;
  border-radius: 3px;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok {
  color: #d2ecd8;
  background: rgba(52,168,83,.12);
  border: 1px solid rgba(52,168,83,.45);
}
.form-status.error {
  color: #f1ccc7;
  background: rgba(234,67,53,.12);
  border: 1px solid rgba(234,67,53,.45);
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-inner > * { animation: none !important; }
  .hero::before { animation: none; }
  .scroll-progress { display: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
  .sav-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 720px) {
  .container { padding: 0 24px; }
  .section { padding: 90px 0; }
  .section-head { margin-bottom: 50px; }

  /* Mobile nav */
  .burger { display: flex; }
  .nav {
    position: fixed;
    inset: 86px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(21,23,26,.98);
    backdrop-filter: blur(10px);
    padding: 14px 24px 28px;
    border-top: 1px solid var(--line-dark);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line-dark); }
  .nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none !important;
  }

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

  .logo-mark { height: 33px; }
  .logo-word { font-size: 1rem; letter-spacing: .15em; }

  .hero { padding: 130px 0 100px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .ba-grip { width: 38px; height: 38px; }
  .ba-label { top: 10px; font-size: .58rem; padding: 5px 9px; }
  .ba-label-before { left: 10px; }
  .ba-label-after { right: 10px; }
  .contact-form { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .legal-main { padding: 56px 0 80px; }
}

/* =========================================================
   PAGE MENTIONS LÉGALES
   ========================================================= */
.legal-page { background: var(--paper); }
.legal-header { background: var(--ink); border-bottom: 1px solid var(--line-dark); }
.legal-header .header-inner { height: 78px; }
.legal-back {
  font-size: .86rem;
  color: rgba(244,242,236,.72);
  transition: color .25s var(--ease);
}
.legal-back:hover { color: var(--paper); }

.legal-main { padding: 84px 0 110px; }
.legal-main .container { max-width: 820px; }
.legal-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -.015em;
  color: var(--ink);
  margin-top: 6px;
}
.legal-updated {
  margin-top: 10px;
  font-size: .85rem;
  color: var(--text-soft);
}
.legal-block { margin-top: 46px; }
.legal-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.legal-block p {
  font-size: .99rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
}
.legal-block ul {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.legal-block li {
  position: relative;
  padding-left: 22px;
  font-size: .99rem;
  font-weight: 300;
  color: var(--text);
}
.legal-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 10px; height: 1px;
  background: var(--bronze);
}
.legal-block a {
  color: var(--ink);
  border-bottom: 1px solid var(--bronze);
  transition: color .25s var(--ease);
}
.legal-block a:hover { color: var(--bronze-dk); }
.legal-block strong { font-weight: 600; }
.legal-todo {
  color: var(--bronze-dk);
  font-style: italic;
}
.footer-bottom a {
  transition: color .25s var(--ease);
}
.footer-bottom a:hover { color: var(--paper); }

/* =========================================================
   ============  COUCHE D'ANIMATIONS PREMIUM  ==============
   Tout ici a un état par défaut VISIBLE / inerte : si le JS
   ou les animations ne tournent pas, le site reste parfait.
   ========================================================= */

/* ---------- 2. Grain de film ---------- */
.grain {
  position: fixed;
  inset: -150%;
  z-index: 8000;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.7s steps(2) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-3%, 2%); }
  100% { transform: translate(2%, -2%); }
}

/* ---------- 3. Aurora animée (hero + stats) ---------- */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  will-change: transform;
}
.aurora-1 {
  width: 46vw; height: 46vw;
  top: -12vw; right: -6vw;
  background: radial-gradient(circle, rgba(179,147,95,.55), transparent 65%);
  animation: auroraA 19s var(--ease) infinite;
}
.aurora-2 {
  width: 38vw; height: 38vw;
  bottom: -14vw; left: -8vw;
  background: radial-gradient(circle, rgba(120,96,150,.30), transparent 66%);
  animation: auroraB 23s var(--ease) infinite;
}
.aurora-3 {
  width: 30vw; height: 30vw;
  top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(90,120,140,.25), transparent 68%);
  animation: auroraC 27s var(--ease) infinite;
}
@keyframes auroraA {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-6%, 8%) scale(1.18); }
}
@keyframes auroraB {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(10%, -6%) scale(1.22); }
}
@keyframes auroraC {
  0%,100% { transform: translate(0,0) scale(1); opacity: .25; }
  50%     { transform: translate(-12%, -4%) scale(1.1); opacity: .4; }
}
/* le contenu du hero passe au-dessus de l'aurora */
.hero-inner { position: relative; z-index: 2; }
/* on neutralise l'ancien ::before désormais remplacé par l'aurora */
.hero::before { content: none; }

/* fines lignes verticales en fond de hero */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  background-image: linear-gradient(90deg,
    transparent 0, transparent calc(25% - 1px), rgba(244,242,236,.05) 25%,
    transparent calc(25% + 1px), transparent calc(50% - 1px),
    rgba(244,242,236,.05) 50%, transparent calc(50% + 1px),
    transparent calc(75% - 1px), rgba(244,242,236,.05) 75%, transparent calc(75% + 1px));
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

/* ---------- 4. Cascade d'entrée du hero ---------- */
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .18s; }
.hero-inner > *:nth-child(3) { animation-delay: .30s; }
.hero-inner > *:nth-child(4) { animation-delay: .42s; }
.hero-inner > *:nth-child(5) { animation-delay: .54s; }
.hero-inner > *:nth-child(6) { animation-delay: .66s; }
/* sheen doré qui balaie le titre une fois au chargement */
.hero-title { position: relative; }
.hero-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%,
              rgba(244,242,236,.35) 50%, transparent 65%);
  background-size: 250% 100%;
  background-position: 180% 0;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: titleSheen 2.4s var(--ease) 1.1s 1;
}
@keyframes titleSheen {
  to { background-position: -80% 0; }
}

/* ---------- 5. Marquee (bandeau défilant) — épuré & élégant ---------- */
.marquee {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 26px 0;
  white-space: nowrap;
  /* fondu des bords : effet pro */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(244,242,236,.82);
}
.marquee-sep {
  display: inline-flex;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  /* on masque le caractère ✦ : on garde juste une pastille */
  font-size: 0;
  color: transparent;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 6. Bandeau statistiques (compteurs) ---------- */
.stats {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.stats-aurora { opacity: .6; }
.stats .container { position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  overflow: hidden;
}
.stat {
  background: var(--ink);
  padding: 54px 28px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--paper);
}
.stat-num::after {
  content: attr(data-suffix);
  color: var(--bronze);
}
.stat-label {
  display: block;
  margin-top: 16px;
  font-size: .88rem;
  font-weight: 300;
  letter-spacing: .02em;
  color: rgba(244,242,236,.6);
}

/* ---------- 7. Révélation par masque sur les images ---------- */
.js .ba,
.js .case-media .browser { will-change: clip-path; }

/* ---------- prefers-reduced-motion : tout se fige proprement ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .aurora { animation: none; }
  .marquee-track { animation: none; }
  .hero-title::after { animation: none; content: none; }
  .hero-grid-lines { display: none; }
}

/* ---------- Garantie : prototype offert ---------- */
.guarantee { background: var(--paper-2); }
.guarantee-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  padding: 70px 56px 64px;
  overflow: hidden;
}
.guarantee-card::before {
  content: "";
  position: absolute;
  width: 60%; height: 140%;
  top: -20%; right: -15%;
  background: radial-gradient(circle, rgba(179,147,95,.16), transparent 62%);
  pointer-events: none;
}
.guarantee-badge {
  position: relative;
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  border: 1px solid rgba(179,147,95,.4);
  border-radius: 30px;
  padding: 7px 18px;
  margin-bottom: 26px;
}
.guarantee-title {
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -.015em;
  color: var(--paper);
}
.guarantee-title em { font-style: italic; color: var(--bronze); }
.guarantee-text {
  position: relative;
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 1.04rem;
  font-weight: 300;
  color: rgba(244,242,236,.74);
}
.guarantee-points {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  margin: 30px 0 36px;
  font-size: .92rem;
  color: rgba(244,242,236,.9);
}
.guarantee-points span { display: inline-flex; align-items: center; gap: 9px; }
.guarantee-points i {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bronze);
  position: relative;
  flex-shrink: 0;
}
.guarantee-points i::after {
  content: "";
  position: absolute;
  left: 6px; top: 4px;
  width: 4px; height: 8px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.guarantee-card .btn { position: relative; }

@media (max-width: 720px) {
  .guarantee-card { padding: 52px 26px 48px; }
}

/* ---------- 8. Hero : typographie massive + wordmark géant ---------- */
.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 500;
}
.hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -3.5vw;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22vw;
  line-height: .8;
  letter-spacing: -.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,242,236,.06);
  text-stroke: 1px rgba(244,242,236,.06);
  pointer-events: none;
  user-select: none;
}

/* ---------- 9. Avant/après piloté au scroll ---------- */
.ba--scroll .ba-range { pointer-events: none; }
.ba--scroll .ba-grip::before,
.ba--scroll .ba-grip::after { opacity: .55; }

/* ---------- 10. Lenis (défilement fluide) — styles 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; }

/* ---------- 11. Section immersive : paysages au défilement ---------- */
.scenes {
  position: relative;
  height: 100vh;               /* repli : un seul panneau plein écran */
  background: var(--ink);
}
.scenes.scenes-active {
  height: 360vh;               /* activé par motion.js : voyage scrollé */
}
.scenes-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.scenes-active .scenes-stage {
  position: sticky;
  top: 0;
}
.scene {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  transform: scale(1.06);
  animation: kenburns 22s ease-in-out infinite alternate;
}
.scene.is-active { opacity: 1; }   /* repli sans JS : 1re scène visible */
@keyframes kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.13); }
}
.scenes-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 64%, transparent 30%, rgba(16,17,20,.55) 100%),
    linear-gradient(to top, rgba(16,17,20,.78), transparent 42%);
}

.scenes-captions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 32px 16vh;
  text-align: center;
}
.scene-cap {
  position: absolute;
  bottom: 16vh;
  max-width: 760px;
  opacity: 0;
  transform: translateY(28px);
  color: var(--paper);
}
.scene-cap.is-active { opacity: 1; transform: none; }  /* repli */
.scene-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--paper);
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.scene-title-brand { font-style: italic; color: var(--bronze); }
.scene-sub {
  margin-top: 20px;
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(244,242,236,.82);
}
.scene-cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.05rem;
  color: var(--bronze);
  border-bottom: 1px solid rgba(179,147,95,.5);
  padding-bottom: 3px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.scene-cta:hover { color: var(--bronze-light, #c8a874); border-color: var(--bronze); }

.scenes-dots {
  position: absolute;
  left: 50%;
  bottom: 7vh;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
.scenes-dots span {
  width: 28px; height: 2px;
  background: rgba(244,242,236,.28);
  transition: background .3s var(--ease);
}
.scenes-dots span.is-active { background: var(--bronze); }

@media (max-width: 720px) {
  .scene-sub { font-size: 1rem; }
  .scene-cap { bottom: 14vh; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 38px 16px; }
  .marquee { padding: 22px 0; }
  .hero-watermark { font-size: 30vw; bottom: -2vw; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-watermark { display: none; }
}

/* =========================================================
   ============  HERO IMMERSIF PLEIN ÉCRAN  ===============
   Le paysage occupe tout l'écran dès l'arrivée ; au scroll,
   les paysages se fondent l'un dans l'autre (piloté par JS).
   Repli sans JS : 1er paysage + accroche, plein écran.
   ========================================================= */
.hero-scenes {
  position: relative;
  height: 100vh;                 /* repli */
  background: var(--ink);
}
.hero-scenes.scenes-active {
  height: 460vh;                 /* activé par motion.js : voyage scrollé (5 plans) */
}
.hs-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.scenes-active .hs-stage {
  position: sticky;
  top: 0;
}
.hs-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transform: scale(1.06);
  will-change: opacity, transform;
}
.hs-scene.is-active { opacity: 1; transform: scale(1); }  /* repli */
/* couche image intérieure : zoom lent continu (Ken Burns) */
.hs-scene-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateZ(0);          /* force le compositing GPU (fluidité) */
  backface-visibility: hidden;
  animation: kenburns 26s ease-in-out infinite alternate;
}
/* Scène 1 : fond géré en CSS (WebP avec repli JPG) → affichage immédiat, sans JS */
.hs-scene-img.bg-1 {
  background-image: url("../images/scene-1.jpg");
  background-image: -webkit-image-set(url("../images/scene-1.webp") 1x, url("../images/scene-1.jpg") 1x);
  background-image: image-set(url("../images/scene-1.webp") type("image/webp"), url("../images/scene-1.jpg") type("image/jpeg"));
}
@keyframes kenburns {
  0%   { transform: scale(1.06); }
  100% { transform: scale(1.20); }
}

.hs-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* haut : pour le menu */
    linear-gradient(to bottom, rgba(14,15,18,.55), transparent 15%),
    /* halo doux localisé DERRIÈRE le texte (centre) — le paysage reste visible autour */
    radial-gradient(72% 50% at 50% 50%, rgba(13,14,17,.62), rgba(13,14,17,.12) 62%, transparent 80%),
    /* bas : ancrage + dégradé */
    linear-gradient(to top, rgba(14,15,18,.6), transparent 38%);
}

.hs-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 32px 0;
  text-align: center;
  z-index: 2;
}
.hs-cap {
  position: absolute;
  max-width: 940px;
  opacity: 0;
  transform: translateY(26px);
  color: var(--paper);
}
.hs-cap.is-active { opacity: 1; transform: none; }   /* repli */
.hs-cap .eyebrow { color: var(--bronze); margin-bottom: 24px; }

.hs-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--paper);
  text-shadow: 0 2px 8px rgba(0,0,0,.45), 0 8px 50px rgba(0,0,0,.6);
}
.hs-title em { font-style: italic; font-weight: 500; color: var(--bronze); }
.hs-title-brand { font-style: italic; color: var(--bronze); }
.hs-sub {
  margin-top: 22px;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 300;
  color: rgba(244,242,236,.86);
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hs-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hs-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(244,242,236,.6);
}
.hs-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(var(--bronze), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
  50%     { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}
.hero-scenes .scenes-dots { z-index: 3; }

@media (max-width: 720px) {
  .hs-actions .btn { flex: 1; justify-content: center; }
  .hs-scroll-cue { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hs-scene { transition: none; }
  .hs-scene-img { animation: none; }
  .hs-scroll-line { animation: none; }
}
