/* ============================================================
   andyssarchives — design system
   Tokens measured 1:1 from the reference layout:
   ink #472E2F · accent #FFF0AD · white paper · 9:16 media
   ============================================================ */

:root{
  /* colour */
  --ink:#472e2f;
  --ink-70:rgba(71,46,47,.7);
  --ink-60:rgba(71,46,47,.6);
  --ink-25:rgba(71,46,47,.25);
  --ink-12:rgba(71,46,47,.12);
  --yellow:#fff0ad;
  --yellow-hi:#ffe98c;
  --paper:#fff;
  --ph:#f0f0f0;                      /* image placeholder */
  --glass:rgba(255,255,255,.35);

  /* type */
  --font:"Helvetica Neue",Helvetica,"Inter",Arial,sans-serif;
  --tight:-.07em;                    /* display tracking */

  /* metrics */
  --gutter:clamp(24px,4.6vw,64px);
  --sec-gap:clamp(88px,11.2vw,160px);
  --radius-card:12px;
  --radius-img:8px;
  --ease:cubic-bezier(.22,1,.36,1);
  --dur:.72s;
}

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

html{
  scroll-behavior:smooth;
  /* the sticky pill overlays the top of the page */
  scroll-padding-top:72px;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:400 16px/1.5 var(--font);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img,svg,video{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit}
h1,h2,h3,p,ol,ul,figure{margin:0}
ol{list-style:none;padding:0}

:focus-visible{outline:2px solid var(--ink);outline-offset:3px;border-radius:6px}

/* ── shared atoms ─────────────────────────────────────────── */

.pill{
  display:inline-flex;align-items:center;
  background:var(--yellow);color:var(--ink);
  font-size:13px;line-height:1.5;font-weight:400;
  padding:4px 12px;border-radius:999px;white-space:nowrap;
}

.btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--yellow);color:var(--ink);
  border:1px solid transparent;border-radius:999px;
  cursor:pointer;white-space:nowrap;
  transition:transform .2s var(--ease),border-color .2s var(--ease),background-color .2s var(--ease);
}
.btn:hover{transform:scale(1.015);border-color:var(--ink-25)}
.btn:active{transform:scale(.98)}
.btn svg{width:1.15em;height:1.15em;fill:currentColor;flex:none}

.btn--sm{font-size:14px;line-height:1.5;padding:6px 12px}
.btn--lg{font-size:clamp(15px,1.15vw,20px);line-height:1.5;padding:clamp(10px,1vw,14px) clamp(18px,1.7vw,24px)}

.arrow{
  width:36px;height:36px;flex:none;
  display:grid;place-items:center;
  background:var(--yellow);color:var(--ink);
  border:1px solid transparent;border-radius:999px;cursor:pointer;
  transition:transform .2s var(--ease),background-color .2s var(--ease);
}
.arrow svg{width:16px;height:16px}
.arrow:hover{background:var(--yellow-hi);transform:scale(1.06)}
.arrow:active{transform:scale(.94)}
.arrow[disabled]{opacity:.35;pointer-events:none}

/* ============================================================
   Header — floating glass pill (h-0 so the page runs under it)
   ============================================================ */

.siteheader{position:sticky;top:0;z-index:200;height:0}

.siteheader__rail{
  position:relative;
  display:flex;justify-content:center;
  padding:4px 4px 0;
  pointer-events:none;
  transition:padding var(--dur) var(--ease);
}
.siteheader.is-scrolled .siteheader__rail{padding-top:12px}

.navpill{
  position:relative;pointer-events:auto;
  /* Three columns with equal 1fr sides, so the middle column lands on the
     pill's true centre no matter how wide the logo or the CTA happen to be.
     A plain flex row would centre the links in the space *left over* after
     those two, which pulls them off-centre by half the CTA's width. */
  display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;gap:12px;
  width:100%;max-width:100%;
  height:46px;padding:6px 9px;        /* symmetric: the mark keeps its inset via margin */
  border-radius:999px;overflow:hidden;
  transition:max-width var(--dur) var(--ease),
             padding var(--dur) var(--ease),
             height var(--dur) var(--ease);
}
.navpill::before{
  content:"";position:absolute;inset:0;border-radius:999px;
  background:var(--glass);border:1px solid var(--glass);
  backdrop-filter:blur(0px) saturate(1);
  -webkit-backdrop-filter:blur(0px) saturate(1);
  transition:backdrop-filter var(--dur) var(--ease),
             -webkit-backdrop-filter var(--dur) var(--ease),
             box-shadow var(--dur) var(--ease);
}
.siteheader.is-scrolled .navpill{
  max-width:min(1000px,72%);
  height:38px;padding:2px 5px;
}
.siteheader.is-scrolled .navpill::before{
  backdrop-filter:blur(8px) saturate(1.6);
  -webkit-backdrop-filter:blur(8px) saturate(1.6);
  box-shadow:0 1px 20px rgba(71,46,47,.06);
}

.navpill > *{position:relative;z-index:1}

.navpill__mark{justify-self:start;margin-left:11px;display:grid;place-items:center}
.navpill__mark svg{width:20px;height:20px;fill:var(--ink)}

.navpill__nav{
  justify-self:center;min-width:0;max-width:100%;
  overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;
}
.navpill__nav::-webkit-scrollbar{display:none}
.navpill__links{
  display:flex;align-items:center;gap:12px;
  width:max-content;margin:0 auto;white-space:nowrap;
}
.navpill__links a{
  font-size:14px;font-weight:300;line-height:1.4;
  padding:4px 8px;border-radius:999px;
  transition:background-color .2s var(--ease);
}
.navpill__links a:hover{background:rgba(71,46,47,.06)}

.navpill__cta{justify-self:end}

/* mobile tray */
.navtray__trigger{
  display:none;
  position:absolute;top:18px;right:18px;
  width:48px;height:48px;pointer-events:auto;
  border:1px solid var(--glass);border-radius:999px;
  background:var(--glass);
  backdrop-filter:blur(10px) saturate(1.6);
  -webkit-backdrop-filter:blur(10px) saturate(1.6);
  cursor:pointer;
}
.navtray__bars{display:grid;gap:5px;justify-items:center}
.navtray__bars i{display:block;width:18px;height:1.6px;background:var(--ink);border-radius:2px;
  transition:transform .25s var(--ease),opacity .2s var(--ease)}
.navtray__trigger[aria-expanded="true"] i:first-child{transform:translateY(3.3px) rotate(45deg)}
.navtray__trigger[aria-expanded="true"] i:last-child{transform:translateY(-3.3px) rotate(-45deg)}

.navtray{
  display:none;position:absolute;top:74px;right:18px;left:18px;
  pointer-events:auto;
  flex-direction:column;gap:2px;padding:10px;
  border:1px solid var(--glass);border-radius:22px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px) saturate(1.6);
  -webkit-backdrop-filter:blur(14px) saturate(1.6);
  box-shadow:0 18px 50px rgba(71,46,47,.13);
}
.navtray a{padding:12px 14px;border-radius:14px;font-size:17px;font-weight:300}
.navtray a:hover{background:rgba(71,46,47,.05)}
.navtray__cta{margin-top:6px;background:var(--yellow);text-align:center;font-weight:400}

/* ============================================================
   Hero
   ============================================================ */

.hero{
  min-height:100svh;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:128px var(--gutter) 0;
}
.hero__grid{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:clamp(24px,3.4vw,48px);
  width:100%;min-width:0;
  padding-bottom:clamp(40px,5.6vw,80px);
}
.hero__col{
  flex:1;min-width:0;
  display:flex;flex-direction:column;justify-content:space-between;
  gap:clamp(40px,6vw,96px);
}

.hero__name{
  font-size:clamp(40px,7.4vw,112px);
  font-weight:700;letter-spacing:var(--tight);line-height:1.05;
  color:var(--ink);
}

.hero__intro{display:flex;gap:clamp(20px,3.4vw,48px);min-width:0}
.hero__introLabel{
  width:35%;max-width:500px;min-width:0;
  text-align:right;
  font-size:clamp(12px,.95vw,20px);font-weight:300;line-height:1.4;
  color:var(--ink-60);
}
.hero__introBody{
  width:45%;max-width:500px;min-width:0;flex:none;
  font-size:clamp(14px,1.05vw,20px);font-weight:300;line-height:1.62;
}

.hero__foot{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;min-width:0}
.hero__footLeft{display:flex;align-items:flex-end;gap:24px;min-width:0;flex-wrap:wrap}
.hero__meta{display:flex;flex-direction:column;gap:8px}
.hero__loc{font-size:12px;font-weight:300;line-height:1.33;text-transform:uppercase;letter-spacing:.02em}
.hero__loc span{color:var(--ink-60)}
.hero__tags{display:flex;flex-wrap:wrap;gap:8px}
.hero__tags span{font-size:10px;font-weight:300;line-height:1.5;padding:2px 0;text-transform:uppercase;letter-spacing:.04em}

.hero__socials{display:flex;align-items:center;gap:16px;flex:none}
.hero__socials a{display:inline-flex;transition:transform .2s var(--ease),opacity .2s var(--ease)}
.hero__socials{color:var(--ink)}
.hero__socials svg{width:24px;height:24px;fill:currentColor}
.hero__socials a:hover{transform:translateY(-2px);opacity:.75}

.hero__figure{
  flex:none;width:32%;max-width:420px;
  aspect-ratio:479/660;
  border-radius:4px;overflow:hidden;background:var(--ph);
}
.hero__figure img{width:100%;height:100%;object-fit:cover}

/* ============================================================
   Brand marquee
   ============================================================ */

.brands{background:var(--paper);padding:48px 0;margin-top:var(--sec-gap)}
.marquee{height:56px;overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent)}
.marquee__track{
  display:flex;align-items:center;gap:112px;
  width:max-content;height:100%;
  animation:marquee 30s linear infinite;will-change:transform;
}
.marquee:hover .marquee__track{animation-play-state:paused}
.marquee__item{flex:none;height:56px;display:flex;align-items:center;justify-content:center}
/* Several brand SVGs ship a viewBox but no width/height, so `width:auto` can
   resolve to 0 and the artwork paints outside a collapsed flex item (logos
   land on top of each other). Pinning the height gives the intrinsic ratio
   something to work from; max-width + object-fit catches the very wide marks. */
.marquee__item img{
  height:40px;width:auto;max-width:172px;   /* pre-load fallback; JS sets the optical size */
  object-fit:contain;object-position:center;
  border-radius:var(--radius-img);
}
@keyframes marquee{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}

/* ============================================================
   Section scaffolding
   ============================================================ */

.section{margin-top:var(--sec-gap)}
.section__head{
  display:flex;align-items:flex-end;gap:16px;
  padding:0 var(--gutter);
}
.section__head--center{display:grid;grid-template-columns:1fr auto 1fr;align-items:end}
.section__head--center .arrow:first-child{justify-self:start;margin-bottom:4px}
.section__head--center .arrow:last-child{justify-self:end;margin-bottom:4px}

.section__title{display:flex;flex-direction:column;align-items:center;gap:24px;text-align:center;min-width:0}
.section__title--left{align-items:flex-start;text-align:left;flex:1;gap:24px}
.section__title h2{
  font-size:clamp(32px,3.6vw,56px);
  font-weight:700;letter-spacing:var(--tight);line-height:1.15;
  text-wrap:balance;
}
.section__arrows{display:inline-flex;align-items:center;gap:8px;flex:none}

/* ============================================================
   Video carousel — centre card 9:16, siblings at 2/3 scale
   ============================================================ */

.videos{display:flex;flex-direction:column}

.stage{
  position:relative;width:100%;
  margin-top:clamp(24px,3vw,40px);
  overflow:hidden;
  touch-action:pan-y;
  outline-offset:-3px;
}
.stage__rail{position:relative;width:100%;height:100%}

.card{
  position:absolute;top:50%;left:50%;
  border-radius:var(--radius-card);overflow:hidden;
  background:var(--ph);
  cursor:pointer;
  will-change:transform,width,height;
  transition:transform .6s var(--ease),width .6s var(--ease),height .6s var(--ease),opacity .6s var(--ease);
}
.card img,.card video{width:100%;height:100%;object-fit:cover;background:#111}
.card video{position:absolute;inset:0}
.card--side{opacity:.85;z-index:1}
.card--side:hover{opacity:1}
/* only the focused card offers playback; the siblings just step the carousel */
.card--side .card__play span{opacity:0;transform:scale(.9)}
.card--side .card__play{cursor:pointer}
.card--center{opacity:1;z-index:2;cursor:default}
.card--hidden{opacity:0;pointer-events:none}

.card__play{
  position:absolute;inset:0;display:grid;place-items:center;
  border:0;background:transparent;cursor:pointer;
  transition:opacity .25s var(--ease);
}
.card__play span{
  width:60px;height:60px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.88);
  box-shadow:0 8px 28px rgba(0,0,0,.22);
  transition:transform .3s var(--ease),opacity .3s var(--ease);
}
.card__play svg{width:22px;height:22px;fill:var(--ink);margin-left:3px}
.card__play:hover span{transform:scale(1.07)}
.card.is-playing .card__play{opacity:0;pointer-events:none}

.card__sound{
  position:absolute;top:10px;left:10px;z-index:3;
  width:32px;height:32px;border-radius:999px;border:0;
  display:none;place-items:center;cursor:pointer;
  background:rgba(0,0,0,.42);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
}
.card__sound svg{width:16px;height:16px;fill:#fff}
.card.is-playing .card__sound{display:grid}

.stage__caption{
  margin:18px auto 0;padding:0 var(--gutter);
  text-align:center;font-size:13px;font-weight:300;color:var(--ink-60);
  min-height:19px;
}

/* filter chips */
.filters{
  display:flex;
  margin-top:24px;padding:4px var(--gutter);
  overflow-x:auto;overflow-y:hidden;
  scrollbar-width:none;-ms-overflow-style:none;
  -webkit-overflow-scrolling:touch;
}
.filters::-webkit-scrollbar{display:none}
/* auto margins centre the row while it fits, then collapse to 0 once it
   overflows — so the first chip never scrolls out of reach */
.filters__row{display:flex;flex-wrap:nowrap;gap:8px;margin:0 auto}
.chip{
  flex:none;white-space:nowrap;cursor:pointer;
  font-size:14px;line-height:1.5;
  padding:6px 20px;border-radius:999px;
  border:1px solid var(--ink-25);background:transparent;color:var(--ink);
  transition:background-color .2s var(--ease),border-color .2s var(--ease),color .2s var(--ease);
}
.chip:hover{border-color:var(--ink)}
.chip[aria-pressed="true"]{background:var(--ink);border-color:var(--ink);color:#fff}
.chip[disabled]{opacity:.3;pointer-events:none}

/* ============================================================
   Photo rail — full bleed, bleeding off both edges
   ============================================================ */

.photos .section__head{margin-bottom:clamp(20px,2.4vw,32px)}

.rail{
  display:flex;align-items:flex-end;gap:12px;
  width:100vw;margin-left:calc(50% - 50vw);
  padding:0;                       /* deliberately flush: images run off both edges */
  overflow-x:auto;overflow-y:hidden;
  scrollbar-width:none;-ms-overflow-style:none;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
}
.rail::-webkit-scrollbar{display:none}
/* Justified rail: every frame is the same height and takes its own
   natural width, so landscape and portrait shots can sit side by side
   without either being cropped to fit a fixed box. */
.rail__item{
  flex:none;
  height:clamp(200px,24vw,340px);
  width:auto;
  border-radius:var(--radius-img);overflow:hidden;
  background:var(--ph);cursor:zoom-in;
}
.rail__item img{
  height:100%;width:auto;max-width:none;
  object-fit:cover;
  transition:transform .6s var(--ease);
}
.rail__item:hover img{transform:scale(1.035)}

/* ============================================================
   Hosting
   ============================================================ */

.hosting__body{padding:0 var(--gutter);margin-top:clamp(24px,3vw,40px)}
.hosting__lede{
  max-width:56ch;
  font-size:clamp(15px,1.15vw,20px);font-weight:300;line-height:1.62;color:var(--ink-70);
}
.offers{
  display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(14px,1.4vw,20px);
  margin-top:clamp(32px,3.6vw,52px);
}
.offer{
  display:flex;flex-direction:column;gap:10px;
  padding:clamp(22px,2vw,30px);
  border:1px solid var(--ink-12);border-radius:22px;
  background:var(--paper);
  transition:border-color .25s var(--ease),transform .25s var(--ease);
}
.offer:hover{border-color:var(--ink-25);transform:translateY(-2px)}
.offer__num{font-size:13px;color:var(--ink-60)}
.offer h3{font-size:clamp(19px,1.5vw,24px);font-weight:700;letter-spacing:-.03em;line-height:1.2}
.offer p{font-size:15px;font-weight:300;line-height:1.6;color:var(--ink-70)}
.hosting__cta{margin-top:clamp(26px,2.6vw,36px)}

/* ============================================================
   Footer — brown card, site typeface, rounded social tiles
   ============================================================ */

.footer{
  margin-top:var(--sec-gap);
  background:var(--ink);color:#fff;
  border-radius:clamp(44px,7vw,100px) clamp(44px,7vw,100px) 0 0;
  padding:clamp(40px,5vw,72px) var(--gutter) clamp(22px,2vw,28px);
  display:flex;flex-direction:column;
}

/* top row: identity ←→ social tiles */
.footer__lead{
  display:flex;align-items:flex-start;justify-content:space-between;
  gap:clamp(24px,3vw,40px);flex-wrap:wrap;
}
.footer__who{display:flex;align-items:flex-start;gap:20px;min-width:0}
.footer__portrait{
  /* both dimensions are explicit on purpose: the <img height> attribute is a
     presentational hint, so it wins over `aspect-ratio` and stretches the box */
  width:clamp(120px,13vw,192px);height:clamp(120px,13vw,192px);flex:none;
  border-radius:var(--radius-img);object-fit:cover;
}
.footer__who > div{padding-top:4px}
.footer__name{
  font-size:clamp(22px,2vw,28px);font-weight:700;
  letter-spacing:-.045em;line-height:1.15;
}
.footer__meta{
  margin-top:4px;
  font-size:clamp(12px,1vw,14px);font-weight:300;
  color:rgba(255,255,255,.62);
}

.footer__social{display:flex;gap:10px;flex:none}
.footer__social a{
  width:52px;height:52px;flex:none;
  display:grid;place-items:center;border-radius:16px;
  background:rgba(255,255,255,.08);
  transition:background-color .22s var(--ease),color .22s var(--ease),transform .22s var(--ease);
}
.footer__social svg{width:21px;height:21px;fill:currentColor}
.footer__social a:hover{background:var(--yellow);color:var(--ink);transform:translateY(-3px)}

/* middle: the pitch + the ask */
.footer__cta{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:clamp(24px,4vw,56px);flex-wrap:wrap;
  margin-top:clamp(44px,6vw,96px);
}
.footer__pitch{
  font-size:clamp(34px,5vw,72px);font-weight:700;
  letter-spacing:var(--tight);line-height:1.04;
  text-wrap:balance;
}
.footer__act{display:flex;flex-direction:column;align-items:flex-end;gap:14px;flex:none}
.footer__mail{font-weight:400}
.footer__email{
  font-size:clamp(14px,1.1vw,16px);font-weight:300;
  color:rgba(255,255,255,.72);
  text-decoration:underline;text-decoration-color:rgba(255,255,255,.28);
  text-underline-offset:4px;
  transition:color .2s var(--ease),text-decoration-color .2s var(--ease);
}
.footer__email:hover{color:#fff;text-decoration-color:#fff}

/* baseline */
.footer__base{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;flex-wrap:wrap;
  margin-top:clamp(40px,5vw,80px);padding-top:20px;
  border-top:1px solid rgba(255,255,255,.14);
  font-size:12px;font-weight:300;color:rgba(255,255,255,.6);
}
.footer__trust{text-transform:uppercase;letter-spacing:.09em}

/* ============================================================
   Lightbox
   ============================================================ */

.lightbox{
  position:fixed;inset:0;z-index:400;
  display:grid;place-items:center;padding:24px;
  background:rgba(30,20,20,.82);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  animation:fade .2s var(--ease);
}
.lightbox[hidden]{display:none}
@keyframes fade{from{opacity:0}to{opacity:1}}
/* wide enough for a 3:2 landscape frame; height cap keeps portraits in view */
.lightbox__figure img{max-width:min(92vw,1200px);max-height:86vh;width:auto;height:auto;border-radius:var(--radius-img)}
.lightbox__close{
  position:absolute;top:18px;right:18px;
  width:44px;height:44px;border:0;border-radius:999px;
  display:grid;place-items:center;cursor:pointer;
  background:rgba(255,255,255,.16);color:#fff;
}
.lightbox__close svg{width:20px;height:20px}
.lightbox__close:hover{background:rgba(255,255,255,.28)}

/* ============================================================
   Tablet
   ============================================================ */

@media (max-width:980px){
  .offers{grid-template-columns:1fr 1fr}
  .footer__cta{align-items:flex-start;flex-direction:column}
  .footer__act{align-items:flex-start}
}

/* ============================================================
   Phone — reference switches to a stacked hero + tray header
   ============================================================ */

@media (max-width:768px){
  html{scroll-padding-top:86px}

  .navpill{display:none}
  .navtray__trigger{display:grid;place-items:center}
  .navtray{display:flex}
  .navtray[hidden]{display:none}
  .siteheader__rail{padding:0}
  .siteheader.is-scrolled .siteheader__rail{padding-top:0}

  .hero{min-height:100svh;padding:80px 24px 40px}
  /* reference order on phones: name → portrait → intro → CTA row */
  .hero__grid{flex-direction:column;align-items:stretch;gap:0;padding-bottom:0;flex:1;justify-content:space-between}
  .hero__col{display:contents}
  .hero__name{order:1;font-size:clamp(34px,10.6vw,44px)}
  .hero__figure{order:2;width:50%;max-width:none;align-self:flex-end;aspect-ratio:4/5;margin:26px 0}
  .hero__intro{order:3;flex-direction:column;gap:4px;max-width:75%}
  .hero__foot{order:4}

  .hero__introLabel{width:auto;text-align:left;font-size:12px}
  .hero__introBody{width:auto;font-size:14px;line-height:1.62}

  .hero__foot{flex-direction:column;align-items:flex-start;gap:16px;margin-top:26px}
  .hero__footLeft{gap:16px}
  .hero__socials{gap:12px}
  .hero__socials svg{width:20px;height:20px}

  .brands{padding:36px 0}
  .marquee,.marquee__item{height:44px}
  .marquee__track{gap:64px}
  .marquee__item img{height:30px;max-width:124px}   /* pre-load fallback */

  .section__head--center{grid-template-columns:auto 1fr auto;gap:10px}
  .section__title{gap:14px}
  .section__title--left{gap:14px}

  .stage__caption{margin-top:14px}
  .filters{margin-top:18px}

  .offers{grid-template-columns:1fr}
  .footer__lead{gap:24px}
  .footer__social a{width:46px;height:46px;border-radius:14px}
  .footer__social svg{width:19px;height:19px}
  .footer__base{font-size:11px}
}

@media (max-width:420px){
  .hero__intro{max-width:100%}
  .footer__social{gap:8px}
}

/* ============================================================
   Motion / print
   ============================================================ */

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
  .rail{scroll-behavior:auto}
}
