/* ============================================================
   Al-Rukn Al-Dimashqi Suessigkeiten, Hannover
   Damascene jewel-box identity: deep pistachio-green base,
   ivory serif display, gold hairlines, pomegranate accent.
   ============================================================ */

/* ---------- Tokens ---------- */
:root{
  --bg:        #0e1c14;
  --bg-2:      #102017;
  --panel:     #15301f;
  --panel-2:   #1a3a27;
  --ink:       #0a1710;

  --ivory:     #f3ede1;
  --ivory-dim: rgba(243,237,225,.70);
  --ivory-fade:rgba(243,237,225,.46);

  --pistache:  #bcd493;
  --pistache-2:#8ea85c;

  --gold:      #c9a24b;
  --gold-soft: #dbbd77;
  --line:      rgba(201,162,75,.24);
  --line-soft: rgba(201,162,75,.14);

  --rose:      #c2415c;   /* the single vivid accent (pomegranate) */
  --rose-hi:   #d75a72;
  --rose-deep: #8f2c42;

  --r:   4px;             /* one radius system: architectural / low */
  --r-lg:8px;
  --maxw:1240px;

  --ease: cubic-bezier(.16,1,.3,1);
  --font-display:"Marcellus", "Cormorant Garamond", Georgia, serif;
  --font-body:"Familjen Grotesk", system-ui, -apple-system, sans-serif;
  --font-ar:"Aref Ruqaa", "Amiri", serif;

  /* girih star lattice, gold on transparent */
  --girih:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23c9a24b' stroke-width='1'%3E%3Cpath d='M42 7 L50 26 L69 18 L61 37 L80 42 L61 47 L69 66 L50 58 L42 77 L34 58 L15 66 L23 47 L4 42 L23 37 L15 18 L34 26 Z'/%3E%3Crect x='4' y='4' width='76' height='76'/%3E%3C/g%3E%3C/svg%3E");
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  background:var(--bg);
  color:var(--ivory);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.7;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
::selection{background:var(--rose);color:#fff}

.wrap{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(20px,5vw,64px)}
.eyebrow{
  font-size:.72rem;letter-spacing:.30em;text-transform:uppercase;
  color:var(--pistache);font-weight:600;
  display:inline-flex;align-items:center;gap:.7em;
}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--gold)}
.ar{font-family:var(--font-ar);direction:rtl;line-height:1.4}

h1,h2,h3{font-family:var(--font-display);font-weight:400;line-height:1.04;letter-spacing:.005em}
.h-xl{font-size:clamp(2.9rem,7.5vw,6.4rem)}
.h-l {font-size:clamp(2.1rem,4.6vw,3.7rem)}
.h-m {font-size:clamp(1.5rem,2.6vw,2.1rem)}
p{max-width:60ch}
.lead{font-size:clamp(1.05rem,1.4vw,1.22rem);color:var(--ivory-dim);line-height:1.75}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.6em;
  font-family:var(--font-body);font-weight:600;font-size:.95rem;
  letter-spacing:.01em;padding:.92em 1.5em;border-radius:var(--r);
  border:1px solid transparent;cursor:pointer;white-space:nowrap;
  transition:transform .25s var(--ease),background .25s var(--ease),
             border-color .25s var(--ease),color .25s var(--ease);
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--rose);color:#fff5f2;box-shadow:0 10px 30px -12px rgba(194,65,92,.7)}
.btn-primary:hover{background:var(--rose-hi)}
.btn-ghost{border-color:var(--line);color:var(--ivory)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold-soft)}
.btn svg{width:1.05em;height:1.05em;flex:0 0 auto}

/* ---------- Nav ---------- */
.nav{
  position:fixed;inset:0 0 auto 0;z-index:100;height:70px;
  display:flex;align-items:center;
  transition:background .4s var(--ease),border-color .4s var(--ease),backdrop-filter .4s;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(11,20,15,.82);backdrop-filter:blur(14px) saturate(140%);
  border-bottom-color:var(--line-soft);
}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;gap:2rem;width:100%}
.brand{display:flex;align-items:center;gap:.7rem;font-family:var(--font-display);font-size:1.18rem;letter-spacing:.02em}
.brand .mark{
  width:34px;height:34px;flex:0 0 auto;border:1px solid var(--gold);border-radius:var(--r);
  display:grid;place-items:center;color:var(--gold);
  background:var(--girih);background-size:34px;
}
.brand .mark span{font-family:var(--font-ar);font-size:1.15rem;line-height:1;transform:translateY(1px)}
.nav-links{display:flex;align-items:center;gap:2rem}
.nav-links a{font-size:.92rem;color:var(--ivory-dim);position:relative;transition:color .25s}
.nav-links a::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:1px;background:var(--gold);transition:width .3s var(--ease)}
.nav-links a:hover{color:var(--ivory)}
.nav-links a:hover::after{width:100%}
.nav-cta{display:flex;align-items:center;gap:1.2rem}
.nav-phone{font-size:.92rem;color:var(--pistache);display:flex;align-items:center;gap:.5em}
.nav-phone svg{width:1em;height:1em}
.burger{display:none;background:none;border:0;color:var(--ivory);cursor:pointer;padding:6px}
.burger svg{width:26px;height:26px}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:100dvh;display:flex;align-items:center;padding-top:70px;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-photo{
  position:absolute;inset:0;
  /* obere Ebene = echtes Foto (assets/img/hero.jpg), darunter ein Ersatzbild,
     falls die Datei noch fehlt */
  background-image:
    url('img/hero.jpg'),
    url('https://images.unsplash.com/photo-1519676867240-f03562e64548?q=80&w=1600&auto=format&fit=crop');
  background-size:cover,cover;background-position:center,center;background-repeat:no-repeat,no-repeat;
  filter:saturate(1.03) contrast(1.02);opacity:.98;
}
.hero-bg::after{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(90deg, rgba(8,15,11,.94) 0%, rgba(9,18,13,.80) 38%, rgba(10,20,14,.28) 66%, rgba(10,20,14,.52) 100%),
    linear-gradient(180deg, rgba(10,20,14,.34) 0%, rgba(10,20,14,.16) 44%, rgba(11,22,15,.66) 82%, var(--bg) 100%);
}
.hero-girih{
  position:absolute;inset:0;background:var(--girih);background-size:84px;
  opacity:.05;mix-blend-mode:screen;
  -webkit-mask-image:radial-gradient(85% 75% at 80% 30%, #000 0%, transparent 72%);
          mask-image:radial-gradient(85% 75% at 80% 30%, #000 0%, transparent 72%);
}
.hero .wrap{position:relative;z-index:2;width:100%}
.hero-lead{max-width:660px}
.hero-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);gap:3rem;align-items:center}
.hero-ar{font-family:var(--font-ar);font-size:clamp(1.6rem,3vw,2.4rem);color:var(--gold-soft);direction:rtl;margin-bottom:.6rem}
.hero h1{margin:.2rem 0 1.4rem}
.hero h1 em{font-style:italic;color:var(--pistache)}
.hero-cta{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
.hero-meta{display:flex;flex-wrap:wrap;gap:1.6rem;margin-top:2.6rem;padding-top:1.8rem;border-top:1px solid var(--line-soft)}
.hero-meta div{display:flex;flex-direction:column;gap:.15rem}
.hero-meta .k{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--ivory-fade)}
.hero-meta .v{font-size:1rem;color:var(--ivory);font-weight:500}
.hero-meta .v.open{color:var(--pistache)}
.hero-meta .v .dot{display:inline-block;width:7px;height:7px;border-radius:50%;background:var(--pistache);margin-right:.5em;box-shadow:0 0 0 3px rgba(188,212,147,.18)}

/* framed ornament card on the right */
.hero-card{
  position:relative;border:1px solid var(--line);border-radius:var(--r-lg);
  background:linear-gradient(160deg, rgba(26,58,39,.6), rgba(10,20,14,.4));
  padding:2.2rem;overflow:hidden;
}
.hero-card::before{content:"";position:absolute;inset:0;background:var(--girih);background-size:64px;opacity:.08}
.seal{
  width:74px;height:74px;border:1px solid var(--gold);border-radius:50%;
  display:grid;place-items:center;color:var(--gold);margin-bottom:1.4rem;
  font-family:var(--font-ar);font-size:1.7rem;position:relative;z-index:1;
}
.hero-card h3{position:relative;z-index:1;color:var(--ivory);margin-bottom:.6rem}
.hero-card p{position:relative;z-index:1;color:var(--ivory-dim);font-size:.98rem;max-width:34ch}
.hero-card .rule{height:1px;background:var(--line);margin:1.4rem 0;position:relative;z-index:1}
.hero-card ul{list-style:none;display:grid;gap:.7rem;position:relative;z-index:1}
.hero-card li{display:flex;align-items:center;gap:.7rem;font-size:.95rem;color:var(--ivory-dim)}
.hero-card li svg{width:1.05em;height:1.05em;color:var(--pistache);flex:0 0 auto}

/* ---------- Handwerk / Versprechen ---------- */
.craft{background:var(--bg-2);position:relative;overflow:hidden}
.craft::before{content:"";position:absolute;inset:0;background:var(--girih);background-size:100px;opacity:.045}
.craft .wrap{position:relative;z-index:1}
.craft-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.craft-intro .seal{margin-bottom:1.6rem}
.craft-intro h2{margin-bottom:1.1rem}
.craft-list{list-style:none;display:grid;gap:0}
.craft-list li{display:flex;gap:1.1rem;align-items:flex-start;padding:1.5rem 0;border-bottom:1px solid var(--line-soft)}
.craft-list li:first-child{padding-top:0}
.craft-list li:last-child{border-bottom:0;padding-bottom:0}
.craft-list .ic{width:42px;height:42px;flex:0 0 auto;border:1px solid var(--line);border-radius:var(--r);display:grid;place-items:center;color:var(--gold)}
.craft-list .ic svg{width:20px;height:20px}
.craft-list h3{font-size:1.35rem;color:var(--ivory);margin-bottom:.25rem}
.craft-list p{font-size:.96rem;color:var(--ivory-dim);max-width:42ch}

/* ---------- Section frame ---------- */
section{position:relative}
.band{padding-block:clamp(5rem,10vw,8.5rem)}
.sec-head{max-width:64ch;margin-bottom:3.2rem}
.sec-head .lead{margin-top:1.1rem}
.center{text-align:center;margin-inline:auto}

/* ---------- Specialties (luxury menu tiles) ---------- */
.spec{background:var(--bg-2)}
.spec-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.tile{
  position:relative;border:1px solid var(--line-soft);border-radius:var(--r);
  background:linear-gradient(165deg, var(--panel), var(--ink));
  padding:2rem 1.9rem;overflow:hidden;
  transition:border-color .4s var(--ease),transform .4s var(--ease),background .4s var(--ease);
}
.tile::after{content:"";position:absolute;right:-30px;top:-30px;width:130px;height:130px;background:var(--girih);background-size:52px;opacity:.06;transition:opacity .4s}
.tile:hover{border-color:var(--line);transform:translateY(-4px)}
.tile:hover::after{opacity:.13}
.tile .no{font-size:.72rem;letter-spacing:.2em;color:var(--gold);font-weight:600}
.tile .ar{font-family:var(--font-ar);font-size:1.7rem;color:var(--gold-soft);margin:.5rem 0 .1rem}
.tile h3{font-size:1.5rem;color:var(--ivory)}
.tile p{font-size:.94rem;color:var(--ivory-dim);margin-top:.7rem}
.tile .tag{
  display:inline-block;margin-top:1.2rem;font-size:.72rem;letter-spacing:.12em;
  text-transform:uppercase;color:var(--pistache);border:1px solid var(--line-soft);
  padding:.35em .8em;border-radius:999px;
}
.tile.feat{grid-column:span 6;min-height:300px;display:flex;flex-direction:column;justify-content:flex-end}
.tile.feat .ar{font-size:2.4rem}
.tile.feat h3{font-size:2.1rem}
.tile.feat p{max-width:42ch}
.tile.half{grid-column:span 6}
.tile.third{grid-column:span 4}
.tile.rose{background:linear-gradient(165deg, #3a1622, var(--ink))}
.tile.rose .ar,.tile.rose .no{color:var(--rose-hi)}
.tile.rose .tag{color:var(--rose-hi)}

/* ---------- Story / heritage split ---------- */
.story{background:var(--bg)}
.story-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:clamp(2rem,5vw,5rem);align-items:center}
.story-media{
  position:relative;border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--line);
  aspect-ratio:4/5;background:var(--panel);
}
.story-media .ph{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;background:var(--panel);filter:saturate(.72) contrast(1.03)}
.story-media::after{content:"";position:absolute;inset:0;background:linear-gradient(200deg, rgba(14,28,20,.2), rgba(10,20,14,.72)),var(--girih);background-size:auto,70px;background-blend-mode:normal;mix-blend-mode:normal;opacity:1}
.story-media .cap{position:absolute;left:22px;bottom:20px;z-index:2;font-family:var(--font-ar);color:var(--gold-soft);font-size:1.5rem}
.story-body h2{margin-bottom:1.3rem}
.story-body p+p{margin-top:1.1rem}
.story-quote{
  margin-top:2rem;padding-left:1.4rem;border-left:2px solid var(--gold);
  font-family:var(--font-display);font-size:1.4rem;line-height:1.4;color:var(--ivory);font-style:italic;
}
.story-sign{margin-top:1rem;font-size:.9rem;color:var(--ivory-fade);letter-spacing:.04em}

/* ---------- Marquee ---------- */
.marquee{border-block:1px solid var(--line-soft);background:var(--bg-2);padding-block:1.5rem;overflow:hidden}
.marquee-track{display:flex;gap:3rem;white-space:nowrap;width:max-content;animation:slide 40s linear infinite}
.marquee:hover .marquee-track{animation-play-state:paused}
.marquee span{display:inline-flex;align-items:center;gap:1.1rem;font-family:var(--font-display);font-size:clamp(1.4rem,2.4vw,2.1rem);color:var(--ivory-dim)}
.marquee span .ar{font-family:var(--font-ar);color:var(--gold-soft);font-size:1.3em}
.marquee span i{color:var(--rose);font-style:normal;font-size:.7em}
@keyframes slide{to{transform:translateX(-50%)}}

/* ---------- Occasions ---------- */
.occ{background:var(--panel);position:relative;overflow:hidden}
.occ::before{content:"";position:absolute;inset:0;background:var(--girih);background-size:96px;opacity:.05}
.occ .wrap{position:relative;z-index:1}
.occ-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:3rem}
.occ-card{
  border:1px solid var(--line-soft);border-radius:var(--r);padding:2rem 1.8rem;
  background:rgba(10,20,14,.4);transition:border-color .4s var(--ease),background .4s var(--ease)}
.occ-card:hover{border-color:var(--gold);background:rgba(10,20,14,.62)}
.occ-card .ic{width:46px;height:46px;border:1px solid var(--line);border-radius:var(--r);display:grid;place-items:center;color:var(--gold);margin-bottom:1.3rem}
.occ-card .ic svg{width:22px;height:22px}
.occ-card h3{font-size:1.35rem;margin-bottom:.5rem}
.occ-card p{font-size:.93rem;color:var(--ivory-dim)}

/* ---------- Info: hours + location ---------- */
.info{background:var(--bg)}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,4vw,3.5rem)}
.panel{border:1px solid var(--line);border-radius:var(--r-lg);background:linear-gradient(160deg,var(--panel),var(--ink));padding:clamp(1.8rem,3vw,2.6rem);position:relative;overflow:hidden}
.panel h3{font-size:1.6rem;margin-bottom:.4rem}
.panel .sub{color:var(--ivory-fade);font-size:.86rem;letter-spacing:.06em;margin-bottom:1.6rem}
.hours{list-style:none;display:grid;gap:.1rem}
.hours li{display:flex;justify-content:space-between;align-items:center;padding:.72rem 0;border-bottom:1px solid var(--line-soft);font-size:.98rem}
.hours li:last-child{border-bottom:0}
.hours li.today{color:var(--pistache)}
.hours li.today .day::before{content:"";display:inline-block;width:7px;height:7px;border-radius:50%;background:var(--pistache);margin-right:.6em;vertical-align:middle}
.hours .day{color:var(--ivory-dim)}
.hours li.today .day{color:var(--pistache)}
.hours .time{font-variant-numeric:tabular-nums;letter-spacing:.02em}
.info-contact{display:grid;gap:1.1rem;margin-top:.4rem}
.info-row{display:flex;gap:1rem;align-items:flex-start}
.info-row .ic{width:40px;height:40px;flex:0 0 auto;border:1px solid var(--line);border-radius:var(--r);display:grid;place-items:center;color:var(--gold)}
.info-row .ic svg{width:19px;height:19px}
.info-row .k{font-size:.72rem;text-transform:uppercase;letter-spacing:.16em;color:var(--ivory-fade)}
.info-row .v{font-size:1.05rem;color:var(--ivory);margin-top:.1rem}
.info-row a.v:hover{color:var(--gold-soft)}
.map-frame{margin-top:1.6rem;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;aspect-ratio:16/8}
.map-frame iframe{width:100%;height:100%;border:0;filter:grayscale(.3) contrast(1.05) sepia(.15) hue-rotate(65deg) saturate(.8)}

/* ---------- CTA band ---------- */
.cta{position:relative;overflow:hidden;background:var(--ink);text-align:center}
.cta::before{content:"";position:absolute;inset:0;background:var(--girih);background-size:110px;opacity:.06}
.cta::after{content:"";position:absolute;inset:0;background:radial-gradient(70% 120% at 50% 0%, rgba(194,65,92,.16), transparent 60%)}
.cta .wrap{position:relative;z-index:1}
.cta .ar{font-family:var(--font-ar);color:var(--gold-soft);font-size:clamp(1.6rem,3vw,2.4rem);margin-bottom:.8rem}
.cta h2{max-width:20ch;margin-inline:auto}
.cta .lead{margin:1.2rem auto 2.2rem;max-width:52ch}
.cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ---------- Footer ---------- */
footer{background:var(--bg-2);border-top:1px solid var(--line-soft);padding-block:3.5rem 2.5rem}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem;padding-bottom:2.5rem;border-bottom:1px solid var(--line-soft)}
.foot-brand .brand{margin-bottom:1rem}
.foot-brand p{color:var(--ivory-fade);font-size:.92rem;max-width:34ch}
.foot-col h4{font-family:var(--font-body);font-size:.74rem;text-transform:uppercase;letter-spacing:.18em;color:var(--pistache);margin-bottom:1.1rem;font-weight:600}
.foot-col a,.foot-col p{display:block;color:var(--ivory-dim);font-size:.94rem;margin-bottom:.6rem;transition:color .25s}
.foot-col a:hover{color:var(--gold-soft)}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding-top:1.8rem;flex-wrap:wrap}
.foot-bottom p{font-size:.82rem;color:var(--ivory-fade)}
.foot-bottom .links{display:flex;gap:1.4rem}
.foot-bottom .links a{font-size:.82rem;color:var(--ivory-fade)}
.foot-bottom .links a:hover{color:var(--gold-soft)}

/* ---------- Reveal animation ---------- */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal[data-d="1"]{transition-delay:.08s}
.reveal[data-d="2"]{transition-delay:.16s}
.reveal[data-d="3"]{transition-delay:.24s}
.reveal[data-d="4"]{transition-delay:.32s}

/* ---------- Legal pages ---------- */
.legal{padding-top:120px;padding-bottom:5rem}
.legal h1{margin-bottom:.6rem}
.legal .eyebrow{margin-bottom:1.4rem}
.legal h2{font-family:var(--font-display);font-size:1.5rem;margin:2.4rem 0 .8rem;color:var(--ivory)}
.legal p,.legal li{color:var(--ivory-dim);font-size:.98rem;max-width:75ch}
.legal p{margin-bottom:.9rem}
.legal ul{margin:.4rem 0 1rem 1.2rem}
.legal a{color:var(--gold-soft);text-decoration:underline;text-underline-offset:3px}
.legal .back{display:inline-flex;align-items:center;gap:.5em;color:var(--pistache);margin-bottom:2rem;font-size:.9rem}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .hero-grid{grid-template-columns:1fr;gap:2.4rem}
  .hero-card{max-width:520px}
  .craft-grid{grid-template-columns:1fr;gap:2.4rem}
  .story-grid{grid-template-columns:1fr;gap:2.4rem}
  .story-media{aspect-ratio:16/10;max-height:440px}
  .info-grid{grid-template-columns:1fr}
  .tile.feat,.tile.half,.tile.third{grid-column:span 6}
}
@media (max-width:760px){
  body{font-size:16px}
  .nav-links,.nav-phone{display:none}
  .burger{display:block}
  .nav-cta .btn{display:none}
  .hero{padding-top:86px}
  .hero-meta{gap:1.2rem}
  .spec-grid{grid-template-columns:repeat(6,1fr)}
  .tile.feat,.tile.half,.tile.third{grid-column:span 6}
  .occ-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr;gap:2rem}
  .foot-bottom{flex-direction:column;align-items:flex-start}
  .hero-cta{width:100%}
  .hero-cta .btn{flex:1;justify-content:center}
}

/* mobile menu drawer */
.drawer{position:fixed;inset:0;z-index:200;background:rgba(8,16,11,.96);backdrop-filter:blur(8px);
  display:flex;flex-direction:column;padding:2rem;opacity:0;pointer-events:none;transition:opacity .35s var(--ease)}
.drawer.open{opacity:1;pointer-events:auto}
.drawer .close{align-self:flex-end;background:none;border:0;color:var(--ivory);cursor:pointer}
.drawer .close svg{width:28px;height:28px}
.drawer nav{display:flex;flex-direction:column;gap:.4rem;margin-top:2rem}
.drawer nav a{font-family:var(--font-display);font-size:2rem;color:var(--ivory);padding:.6rem 0;border-bottom:1px solid var(--line-soft)}
.drawer nav a .ar{font-family:var(--font-ar);font-size:1.2rem;color:var(--gold-soft);margin-left:.6rem}
.drawer .btn{margin-top:2rem;justify-content:center}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none}
  .marquee-track{animation:none}
}
