/* ==========================================================================
   Côme AHL — Photographe
   Feuille de style unique. Aucune dépendance.
   Noir chaud, mise en page éditoriale, planches numérotées.
   ========================================================================== */

:root {
  --bg: #0e0d0b;
  --ink: #ece8e1;
  --soft: #a8a195;
  --line: rgba(236, 232, 225, 0.16);
  --ghost: rgba(236, 232, 225, 0.18);
  --display: "Instrument Serif", Georgia, serif;
  --script: "Mrs Saint Delafield", cursive;
  --sans: "Archivo", "Segoe UI", sans-serif;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: var(--bg);
}

html::-webkit-scrollbar {
  display: none;
}

html, body {
  overflow-x: clip;
}

/* Les ancres s'arrêtent sous l'en-tête fixe */
#galerie, #a-propos, #contact,
.plate[id] {
  scroll-margin-top: 4.5rem;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

/* Vignettage cinéma — assombrit doucement les bords de l'écran */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 94;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 95% at 50% 45%, transparent 58%, rgba(8, 7, 6, 0.4) 100%);
}

/* Grain argentique — bruit fin, monochrome et très léger, dérive lente */
body::after {
  content: "";
  position: fixed;
  inset: -4%;
  z-index: 95;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.055;
  animation: grain 12s steps(8) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-1.2%, 0.8%); }
  50%      { transform: translate(0.8%, -1.2%); }
  75%      { transform: translate(-0.6%, -0.8%); }
}

/* Voile d'entrée — la signature s'écrit, puis le voile se dissout
   pendant que l'accueil se lève en cascade. */
.veil {
  position: fixed;
  inset: 0;
  z-index: 98;
  display: grid;
  place-items: center;
  background: var(--bg);
  animation: veil-out 0.9s var(--ease) 1.55s forwards;
}

.veil span {
  font-family: var(--script);
  font-size: clamp(3rem, 8vw, 5.5rem);
  padding: 0.4em 0.5em;
  rotate: -4deg;
  clip-path: inset(0 100% 0 0);
  animation: veil-write 1.5s var(--ease) 0.15s forwards;
}

@keyframes veil-write {
  to { clip-path: inset(0 0 0 0); }
}

@keyframes veil-out {
  to { opacity: 0; visibility: hidden; }
}

/* Signature manuscrite */
.sig {
  font-family: var(--script);
  font-weight: 400;
  line-height: 1;
}

/* Libellés en petites capitales espacées */
.label {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--soft);
}

/* Liseré de progression de lecture */
.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 99;
  width: 100%;
  height: 2px;
  background: var(--ink);
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   En-tête
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.4rem var(--pad);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(14, 13, 11, 0.85);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0.95rem var(--pad);
}

.brand {
  font-size: 1.9rem;
  text-decoration: none;
  rotate: -3deg;
  transition: color 0.35s var(--ease);
}

.brand:hover,
.brand:focus-visible {
  color: var(--soft);
}

.site-nav {
  display: flex;
  gap: clamp(1.1rem, 3vw, 2.75rem);
}

.site-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--soft);
  transition: color 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

/* Sur mobile : barre empilée, toujours sur fond plein, collée au bord haut
   (y compris sous l'encoche des iPhone grâce à la zone de sécurité). */
@media (max-width: 600px) {
  .safe-area-cover {
    display: block;
    position: fixed;
    inset: 0 0 auto;
    z-index: 11;
    height: max(4rem, env(safe-area-inset-top));
    background: var(--bg);
    pointer-events: none;
  }

  .site-header {
    z-index: 12;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: max(0.8rem, env(safe-area-inset-top)) var(--pad) 0.75rem;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-scrolled {
    padding: max(0.8rem, env(safe-area-inset-top)) var(--pad) 0.75rem;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-index {
    column-gap: 2.25rem;
    row-gap: 0.85rem;
  }

  .hero-index a {
    font-size: 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   Héros
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: var(--pad);
  padding-top: clamp(7rem, 16vh, 10rem);
  padding-bottom: 7vh;
}

/* Index des planches — sous le titre, comme un carton d'exposition.
   Lecture verticale : I à IV dans la colonne de gauche, V à VIII à droite. */
.hero-index {
  margin-top: clamp(3rem, 8vh, 5rem);
  display: grid;
  grid-template-rows: auto repeat(4, auto);
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  column-gap: clamp(4rem, 12vw, 11rem);
  row-gap: clamp(0.9rem, 2.2vh, 1.4rem);
  justify-content: start;
  opacity: 0;
  animation: hero-in 1s var(--ease) 2.05s forwards;
}

.hero-index .label {
  grid-row: 1;
  grid-column: 1 / span 2;
  margin-bottom: 1.1rem;
}

.hero-index a {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1;
  text-decoration: none;
  color: var(--soft);
  transition: color 0.35s var(--ease), translate 0.35s var(--ease);
}

.hero-index a:hover,
.hero-index a:focus-visible {
  color: var(--ink);
  translate: 6px 0;
}

.hero-index a span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  margin-right: 1.1em;
  opacity: 0.6;
}

.hero-main .label {
  margin-bottom: 2rem;
  opacity: 0;
  animation: hero-in 1s var(--ease) 1.7s forwards;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.6rem, 13vw, 11rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
}

.hero h1 em {
  font-style: italic;
  color: var(--soft);
}

/* Le titre se lève ligne par ligne à l'ouverture.
   Le dégagement bas laisse passer les jambages (g, p…) sans casser l'interligne. */
.hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
}

.hero h1 .word {
  display: block;
  transform: translateY(115%);
  animation: word-rise 1.15s var(--ease) 1.75s forwards;
}

.hero h1 .line:nth-child(2) .word {
  animation-delay: 1.9s;
}

@keyframes word-rise {
  to { transform: translateY(0); }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 1.3rem;
  opacity: 0;
  animation: hero-in 1s var(--ease) 2.25s forwards;
}

/* --------------------------------------------------------------------------
   Galerie — planches
   -------------------------------------------------------------------------- */

.gallery {
  padding-top: clamp(3rem, 8vh, 7rem);
}

.plate {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  max-width: 1680px;
  margin-inline: auto;
  padding: clamp(3.5rem, 11vh, 9rem) var(--pad);
}

.plate figure {
  display: contents;
}

/* Chiffres fantômes derrière les images */
.numeral {
  position: absolute;
  z-index: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(8rem, 24vw, 21rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ghost);
  pointer-events: none;
  user-select: none;
  transition: color 0.8s var(--ease);
}

@supports not (-webkit-text-stroke: 1px white) {
  .numeral { color: rgba(236, 232, 225, 0.1); }
}

/* Cadres cliquables */
.frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  overflow: hidden;
  cursor: zoom-in;
}

.parallax {
  display: block;
  height: 100%;
  will-change: transform;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.6s var(--ease), opacity 0.7s var(--ease);
}

.frame:hover img,
.frame:focus-visible img {
  transform: scale(1.1);
}

/* Focus de galerie : les autres images s'estompent au survol de l'une */
.gallery:has(.frame:hover) .frame:not(:hover) img {
  opacity: 0.45;
}

/* Le chiffre fantôme de la planche survolée se remplit */
.plate:has(.frame:hover) .numeral {
  color: var(--ghost);
}

/* Légendes */
.plate figcaption {
  z-index: 2;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.7rem;
  margin-top: 1.4rem;
}

.cap-n {
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  color: var(--soft);
}

.cap-t {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}

.plate figcaption small {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft);
}

/* Planche I — grande image à gauche, légende à droite */
.p1 .frame      { grid-column: 1 / 8; grid-row: 1; }
.p1 figcaption  { grid-column: 9 / 13; grid-row: 1; }
.p1 .numeral    { top: 2vh; right: var(--pad); }

/* Planche II — plus petite, à droite, remontée */
.p2              { margin-top: -10vh; }
.p2 .frame       { grid-column: 8 / 13; grid-row: 1; }
.p2 figcaption   { grid-column: 1 / 5; grid-row: 1; }
.p2 .numeral     { bottom: 4vh; left: var(--pad); }

/* Planche III — pleine largeur */
.plate--bleed {
  max-width: none;
  padding-inline: 0;
  grid-template-columns: 1fr;
}

/* Image entière, pleine largeur, sans recadrage */
.plate--bleed .frame {
  grid-column: 1;
  height: auto;
}

.plate--bleed figcaption {
  grid-column: 1;
  align-items: flex-end;
  text-align: right;
  margin-inline: var(--pad);
}

/* Planches IV & V — diptyque décalé */
.plate--diptych .dip-a .frame      { grid-column: 2 / 7; grid-row: 1; }
.plate--diptych .dip-a figcaption  { grid-column: 2 / 7; grid-row: 2; }
.plate--diptych .dip-b .frame      { grid-column: 7 / 12; grid-row: 1; margin-top: 16vh; }
.plate--diptych .dip-b figcaption  { grid-column: 7 / 12; grid-row: 2; margin-top: 16vh; }
.p4 .numeral                       { top: -2vh; left: 38%; }

/* Interlude */
.interlude {
  padding: clamp(4rem, 16vh, 12rem) var(--pad);
  text-align: center;
}

.interlude p {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  line-height: 1.25;
}

.interlude em {
  font-style: italic;
  color: var(--soft);
}

/* Planche VI — centrée, moyenne */
.p6 .frame      { grid-column: 4 / 11; grid-row: 1; }
.p6 figcaption  { grid-column: 4 / 11; grid-row: 2; align-items: flex-end; text-align: right; }
.p6 .numeral    { top: 4vh; left: var(--pad); }

/* Planche VII — grande, à droite */
.p7 .frame      { grid-column: 6 / 13; grid-row: 1; }
.p7 figcaption  { grid-column: 1 / 5; grid-row: 1; }
.p7 .numeral    { bottom: 2vh; left: var(--pad); }

/* Planche VIII — finale, haute et centrée */
.p8              { padding-bottom: clamp(5rem, 16vh, 13rem); }
.p8 .frame       { grid-column: 4 / 10; grid-row: 1; }
.p8 figcaption   { grid-column: 4 / 10; grid-row: 2; align-items: center; text-align: center; }
.p8 .numeral     { top: 0; right: var(--pad); }

/* --------------------------------------------------------------------------
   À propos
   -------------------------------------------------------------------------- */

.about {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  max-width: 1680px;
  margin-inline: auto;
  padding: clamp(4rem, 14vh, 11rem) var(--pad);
  border-top: 1px solid var(--line);
}

.about > .label {
  grid-column: 1 / 4;
}

.about-body {
  grid-column: 5 / 12;
}

.about-text {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.55;
}

.about-text strong {
  font-weight: 400;
  font-style: italic;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.about-facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.4rem;
}

.about-facts dd {
  font-size: 0.92rem;
}

.signature {
  margin-top: 3.5rem;
  font-size: 3rem;
  color: var(--soft);
  rotate: -5deg;
}

/* --------------------------------------------------------------------------
   Bandeau défilant — lettres au trait, très lent
   -------------------------------------------------------------------------- */

.marquee {
  overflow: clip;
  padding: clamp(3rem, 9vh, 7rem) 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 70s linear infinite;
}

.marquee-track span {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 1.1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px var(--ghost);
}

@supports not (-webkit-text-stroke: 1px white) {
  .marquee-track span { color: rgba(236, 232, 225, 0.1); }
}

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

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 12vh, 9rem) var(--pad) 2rem;
}

.footer-mail {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 7vw, 5.5rem);
  line-height: 1.1;
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) no-repeat left bottom / 0% 1px;
  transition: background-size 0.7s var(--ease);
}

.footer-mail:hover,
.footer-mail:focus-visible {
  background-size: 100% 1px;
}

.mail-arrow {
  display: inline-block;
  margin-left: 0.12em;
  font-size: 0.55em;
  transition: transform 0.45s var(--ease);
}

.footer-mail:hover .mail-arrow,
.footer-mail:focus-visible .mail-arrow {
  transform: translate(0.18em, -0.18em);
}

.footer-sig {
  margin-top: clamp(4rem, 12vh, 8rem);
  text-align: center;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  color: var(--soft);
  rotate: -4deg;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(3rem, 10vh, 7rem);
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft);
}

/* --------------------------------------------------------------------------
   Visionneuse
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 9, 8, 0.97);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

/* Indispensable : display:flex ci-dessus annulerait l'attribut hidden,
   laissant un calque invisible avaler tous les clics du site. */
.lightbox[hidden] {
  display: none;
}

.lightbox.is-open {
  opacity: 1;
}

.lb-figure {
  max-width: min(92vw, 1280px);
  max-height: 86svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.965);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.lightbox.is-open .lb-figure {
  opacity: 1;
  transform: none;
}

.lb-image {
  max-width: 100%;
  max-height: calc(86svh - 4.5rem);
  object-fit: contain;
}

.lb-caption {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding-top: 1.1rem;
}

.lb-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
}

.lb-caption small {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft);
}

.lightbox button {
  position: absolute;
  z-index: 2;
  border: 0;
  background: none;
  color: var(--soft);
  font-family: var(--sans);
  font-weight: 300;
  cursor: pointer;
  padding: 0.8rem 1.1rem;
  transition: color 0.35s var(--ease);
}

.lightbox button:hover,
.lightbox button:focus-visible {
  color: var(--ink);
}

.lb-close {
  top: 1.1rem;
  right: var(--pad);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.lb-prev,
.lb-next {
  top: 50%;
  translate: 0 -50%;
  font-size: 1.5rem;
}

.lb-prev { left: 0.8rem; }
.lb-next { right: 0.8rem; }

/* --------------------------------------------------------------------------
   Curseur personnalisé (pointeurs précis uniquement)
   -------------------------------------------------------------------------- */

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s;
}

.cursor span {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.25s;
}

.cursor.is-active {
  width: 76px;
  height: 76px;
}

.cursor.is-active span {
  opacity: 1;
}

body.has-cursor,
body.has-cursor a,
body.has-cursor button {
  cursor: none;
}

/* --------------------------------------------------------------------------
   Apparitions
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-img {
  opacity: 0;
  clip-path: inset(10% 0 10% 0);
  transition: opacity 1.4s var(--ease), clip-path 1.4s var(--ease);
}

.reveal-img.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/* --------------------------------------------------------------------------
   Écrans étroits
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .plate {
    grid-template-columns: 1fr;
    row-gap: 0;
    padding-block: clamp(2.5rem, 7vh, 5rem);
  }

  .plate .frame,
  .plate figcaption {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    margin-top: 0 !important;
  }

  .plate figcaption {
    align-items: flex-start !important;
    text-align: left !important;
    margin-top: 1.1rem !important;
  }

  .p2 { margin-top: 0; }

  .plate--diptych .dip-b .frame { margin-top: 2.5rem !important; }

  /* Sur petit écran, la planche pleine largeur retrouve des marges :
     les bords de la photo ne touchent plus ceux du téléphone. */
  .plate--bleed {
    padding-inline: var(--pad);
  }

  .plate--bleed figcaption {
    margin-inline: 0;
  }

  /* Les chiffres fantômes rejoignent le flux : posés au-dessus de l'image,
     jamais coupés par les bords de l'écran. */
  .numeral {
    position: static;
    font-size: clamp(4.5rem, 22vw, 7rem);
    margin-bottom: 0.5rem;
    transform: none !important;
  }

  .about {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .about > .label,
  .about-body {
    grid-column: 1 / -1;
  }

  .about-facts {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

/* --------------------------------------------------------------------------
   Mouvement réduit
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .veil { display: none; }

  body::after { animation: none; }

  .reveal,
  .reveal-img {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .frame img {
    transform: none;
    transition: none;
  }

  .hero h1 .word {
    transform: none;
    animation: none;
  }

  .hero-main .label,
  .hero-index,
  .hero-foot {
    opacity: 1;
    animation: none;
  }

  .lb-figure {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track {
    animation: none;
  }
}
