/* ============================================================
   ÉLAN NOIR — Fragrance After Dark
   ============================================================ */

:root{
  --deep-black: #050505;
  --soft-black: #0B0908;
  --burgundy: #1A0B0D;
  --burgundy-light: #2A1013;
  --ivory: #EFE6D7;
  --ivory-dim: #cfc4b2;
  --gold: #B89155;
  --gold-bright: #D8B876;
  --amber: #B36A32;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(.16,.8,.24,1);
  --section-pad: clamp(5rem, 10vw, 9rem);
}

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

html{
  scroll-behavior: smooth;
  background: var(--deep-black);
}

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

body{
  margin: 0;
  background: var(--deep-black);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3{
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
  letter-spacing: 0.01em;
}

a{ color: inherit; text-decoration: none; }

ul{ list-style: none; margin: 0; padding: 0; }

.section-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.eyebrow{
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 500;
}

/* Skip link */
.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--deep-black);
  padding: 0.75rem 1.5rem;
  z-index: 999;
}
.skip-link:focus{
  left: 1rem;
  top: 1rem;
}

/* Focus states */
a:focus-visible,
button:focus-visible{
  outline: 1px solid var(--gold-bright);
  outline-offset: 4px;
}

/* Film grain */
.grain{
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid rgba(184, 145, 85, 0.14);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

.site-header.scrolled{
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: rgba(184, 145, 85, 0.22);
}

.header-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.4rem clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark{
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: var(--ivory);
  font-weight: 500;
  white-space: nowrap;
}
.wordmark span{ color: var(--gold); }

.main-nav{
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  flex: 1;
  justify-content: center;
}

.main-nav a{
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 0.4rem 0.1rem;
  transition: color 0.3s var(--ease);
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s var(--ease);
}
.main-nav a:hover,
.main-nav a:focus-visible{
  color: var(--ivory);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after{
  right: 0;
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-ghost{
  border-color: rgba(184, 145, 85, 0.5);
  color: var(--ivory);
  background: transparent;
}
.btn-ghost:hover{
  background: var(--gold);
  color: var(--deep-black);
  border-color: var(--gold);
}

.btn-solid{
  background: var(--gold);
  color: var(--deep-black);
  border-color: var(--gold);
}
.btn-solid:hover{
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn-link{
  color: var(--ivory);
  padding: 0.75rem 0.2rem;
  border-bottom: 1px solid rgba(239, 230, 215, 0.35);
}
.btn-link:hover{
  border-color: var(--gold);
  color: var(--gold-bright);
}

.header-cta{ display: inline-flex; }

.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span{
  display: block;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-nav{
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(5,5,5,0.98);
  border-top: 1px solid rgba(184,145,85,0.16);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.mobile-nav[data-open="true"]{
  max-height: 400px;
}
.mobile-nav a{
  padding: 1.1rem clamp(1.5rem, 5vw, 3rem);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border-bottom: 1px solid rgba(184,145,85,0.08);
}
.mobile-nav a:last-child{
  border-bottom: none;
  margin: 0.75rem clamp(1.5rem, 5vw, 3rem) 1.25rem;
  padding: 0.85rem 1.5rem;
  width: fit-content;
}
.mobile-nav a:hover{ color: var(--gold); }

/* ============================================================
   CINEMATIC SCROLL HERO
   ============================================================ */
.cinema{
  position: relative;
  height: 700vh;
  background: var(--deep-black);
}

.cinema-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--deep-black);
}

.cinema-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--deep-black);
}

.cinema-vignette{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(5,5,5,0.55) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.55) 0%, transparent 18%, transparent 78%, rgba(5,5,5,0.65) 100%);
}

.cinema-fade-out{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, var(--burgundy) 60%, var(--deep-black) 100%);
  opacity: 0;
}

.scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
  transition: opacity 0.6s var(--ease);
}
.scroll-cue span{
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue span::after{
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  animation: scrollDrip 2.2s ease-in-out infinite;
}
.scroll-cue small{
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
@keyframes scrollDrip{
  0%{ top: -100%; }
  60%{ top: 100%; }
  100%{ top: 100%; }
}

/* Hero text scenes */
.hero-text{
  position: absolute;
  top: 50%;
  max-width: 460px;
  padding: 0 clamp(1.5rem, 5vw, 0);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  z-index: 4;
  pointer-events: none;
}
.hero-text.is-active{
  opacity: 1;
  transform: translateY(0);
}

.pos-left{ left: clamp(1.5rem, 7vw, 7rem); text-align: left; }
.pos-right{ right: clamp(1.5rem, 7vw, 7rem); text-align: right; }

.pos-mid{ top: 50%; transform: translateY(-50%) translateY(28px); }
.pos-mid.is-active{ transform: translateY(-50%) translateY(0); }

.pos-upper{ top: 28%; transform: translateY(-50%) translateY(28px); }
.pos-upper.is-active{ transform: translateY(-50%) translateY(0); }

.pos-lower{ top: 72%; transform: translateY(-50%) translateY(28px); }
.pos-lower.is-active{ transform: translateY(-50%) translateY(0); }

.hero-text h2{
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-style: italic;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero-text .eyebrow{
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.hero-text .body-text{
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--ivory-dim);
  max-width: 380px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.pos-right .body-text{ margin-left: auto; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   COLLECTION
   ============================================================ */
.collection{
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, var(--deep-black), var(--soft-black) 40%, var(--burgundy) 100%);
}

.section-heading{
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.section-heading h2{
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}
.section-heading .lede{
  color: var(--ivory-dim);
  font-size: 1.02rem;
  max-width: 460px;
  margin: 0 auto;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
}

.product-card{
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid rgba(184, 145, 85, 0.18);
  overflow: hidden;
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.75rem, 2.5vw, 2.25rem) clamp(2.25rem, 3vw, 2.5rem);
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
  isolation: isolate;
}

.product-card::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.9;
}

.product-card::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.product-card:hover::after{ opacity: 1; }

.product-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}

.card-dawn{ background: linear-gradient(160deg, #201c16 0%, #14110d 55%, #0d0b09 100%); }
.card-dawn::before{ background: radial-gradient(ellipse at 30% 0%, rgba(239, 230, 215, 0.10), transparent 55%); }
.card-dawn{ border-color: rgba(239, 230, 215, 0.16); }
.card-dawn:hover{ border-color: rgba(239, 230, 215, 0.4); }

.card-amber{ background: linear-gradient(160deg, #241408 0%, #170d06 55%, #0d0805 100%); }
.card-amber::before{ background: radial-gradient(ellipse at 30% 0%, rgba(179, 106, 50, 0.22), transparent 55%); }
.card-amber{ border-color: rgba(179, 106, 50, 0.22); }
.card-amber:hover{ border-color: rgba(179, 106, 50, 0.5); }

.card-midnight{ background: linear-gradient(160deg, #17100a 0%, #0e0908 55%, #070605 100%); }
.card-midnight::before{ background: radial-gradient(ellipse at 30% 0%, rgba(184, 145, 85, 0.2), transparent 55%); }
.card-midnight{ border-color: rgba(184, 145, 85, 0.28); }
.card-midnight:hover{ border-color: rgba(184, 145, 85, 0.55); }

.product-media{
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 1.75rem;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
}
.product-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1.2s var(--ease);
  padding: 1rem;
}
.product-card:hover .product-media img{
  transform: scale(1.06);
}

.product-subtitle{
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.product-name{
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin-bottom: 0.85rem;
}
.product-desc{
  color: var(--ivory-dim);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}
.product-notes{
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 230, 215, 0.55);
  margin-bottom: 1.5rem;
}

.discover-link{
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(184, 145, 85, 0.4);
  width: fit-content;
  margin-top: auto;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.discover-link span{ transition: transform 0.3s var(--ease); }
.discover-link:hover{
  color: var(--gold-bright);
  border-color: var(--gold);
  gap: 0.75rem;
}

/* ============================================================
   NOTES SECTION
   ============================================================ */
.notes-section{
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--burgundy);
}

.notes-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.notes-copy h2{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.note-layer{
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(184, 145, 85, 0.18);
}
.note-layer:last-child{
  border-bottom: 1px solid rgba(184, 145, 85, 0.18);
}
.note-index{
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
  padding-top: 0.2rem;
}
.note-layer h3{
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.note-list{
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
}
.note-desc{
  color: var(--ivory-dim);
  font-size: 0.92rem;
  max-width: 420px;
}

.notes-visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notes-glow{
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(184,145,85,0.28) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.notes-visual img{
  position: relative;
  z-index: 1;
  max-height: 560px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
}

/* ============================================================
   SIGNATURE
   ============================================================ */
.signature{
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--burgundy) 0%, var(--soft-black) 45%, var(--deep-black) 100%);
}

.signature-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.signature-visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.signature-glow{
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(184,145,85,0.22) 0%, rgba(179,106,50,0.08) 45%, transparent 72%);
  filter: blur(40px);
}
.signature-visual img{
  position: relative;
  z-index: 1;
  max-height: 600px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6));
}

.signature-copy h2{
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
}
.signature-desc{
  color: var(--ivory-dim);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2rem;
}

.signature-details{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 2.5rem;
}
.signature-details li{
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(184, 145, 85, 0.3);
  border-radius: 100px;
}

.signature-actions{
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--deep-black);
  border-top: 1px solid rgba(184, 145, 85, 0.16);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
}

.footer-top{
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer-wordmark{
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.08em;
  color: var(--ivory);
}
.footer-tagline{
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

.footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 2.5rem) 0;
  border-top: 1px solid rgba(184, 145, 85, 0.12);
  border-bottom: 1px solid rgba(184, 145, 85, 0.12);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}
.footer-links a{
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s var(--ease);
}
.footer-links a:hover{ color: var(--gold); }

.footer-statement{
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ivory-dim);
  max-width: 480px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.footer-bottom{
  text-align: center;
  font-size: 0.76rem;
  color: rgba(239, 230, 215, 0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .main-nav{ gap: 1.5rem; }

  .notes-grid,
  .signature-grid{
    grid-template-columns: 1fr;
  }
  .notes-visual{ order: -1; }
  .notes-visual img,
  .signature-visual img{ max-height: 420px; }

  .hero-text{ max-width: 400px; }
  .pos-left{ left: clamp(1.5rem, 5vw, 3rem); }
  .pos-right{ right: clamp(1.5rem, 5vw, 3rem); }
}

@media (max-width: 860px){
  .main-nav{ display: none; }
  .menu-toggle{ display: flex; }
  .mobile-nav{ display: flex; }
  .header-cta{ display: none; }

  .cinema{ height: 620vh; }

  .product-grid{
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .hero-text{
    max-width: 88vw;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, calc(-50% + 28px));
    text-align: center;
  }
  .hero-text.is-active{
    transform: translate(-50%, -50%);
  }
  .pos-right .body-text{ margin-left: auto; margin-right: auto; }
  .hero-text .body-text{ margin-left: auto; margin-right: auto; }

  /* The bottle occupies nearly the full vertical frame on narrow, cover-cropped
     video, so mobile scenes are pinned to safe bands clear of the header and
     the scroll cue, alternating top/bottom per scene instead of left/right. */
  .pos-upper, .pos-mid, .pos-lower{ top: 26%; }
  .pos-left{ top: 26%; }
  .pos-right{ top: 76%; }
}

@media (max-width: 560px){
  .cinema{ height: 560vh; }
  .hero-text h2{ font-size: 1.65rem; }
  .hero-text .body-text{ font-size: 0.88rem; }
  .footer-links{ gap: 1rem 1.5rem; }
  .signature-actions{ flex-direction: column; align-items: flex-start; width: 100%; }
  .btn-solid{ width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-text,
  .reveal,
  .product-card,
  .product-media img,
  .menu-toggle span,
  .mobile-nav{
    transition-duration: 0.01ms !important;
  }
  .scroll-cue span::after{ animation: none; }
}
