/* ============================================================
   Kismet Festsaal — Demo Onepager
   ============================================================ */

:root{
  --bg:#17110C;            /* dunkle Sektionen */
  --bg-elev:#221A12;
  --ivory:#F4EDE3;         /* helle Sektionen */
  --ivory-elev:#FBF7F0;
  --text:#F0E7DA;          /* Text auf dunkel */
  --ink:#2A211A;           /* Text auf hell */
  --muted:#A6968A;         /* muted auf dunkel */
  --muted-ink:#7A6B5E;     /* muted auf hell */
  --gold:#C6A15B;
  --gold-soft:rgba(198,161,91,.14);
  --line:rgba(198,161,91,.28);
  --line-ink:rgba(42,33,26,.14);
  --font-heading:'Cormorant Garamond',Georgia,serif;
  --font-body:'Jost',system-ui,sans-serif;
  --radius-sm:3px; --radius-lg:14px;
  --space-section:clamp(72px,10vw,140px);
  --container:1200px;
  --motion-fast:180ms; --motion-normal:320ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body, h1, h2, h3, p, dl, dd, figure, blockquote{ margin:0; }
ul, ol{ margin:0; padding:0; list-style:none; }
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
input, textarea, select{ font:inherit; color:inherit; }
svg{ display:block; }

html, body{ overflow-x:hidden; width:100%; }

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1, h2, h3{
  font-family:var(--font-heading);
  font-weight:600;
  line-height:1.12;
  color:inherit;
}

.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:24px;
}

@media (min-width:900px){
  .container{ padding-inline:40px; }
}

/* ---------- Skip Link ---------- */
.skip-link{
  position:absolute;
  top:-100px;
  left:16px;
  z-index:1000;
  background:var(--gold);
  color:var(--bg);
  padding:12px 20px;
  border-radius:var(--radius-sm);
  font-family:var(--font-body);
  font-weight:500;
  transition:top var(--motion-fast) ease;
}
.skip-link:focus{ top:16px; }

/* ---------- Focus ---------- */
:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

/* ---------- Eyebrow / Headings shared ---------- */
.eyebrow{
  font-family:var(--font-body);
  font-weight:500;
  font-size:.8rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}

section h2{
  font-size:clamp(2rem,4.2vw,3.2rem);
  margin-bottom:24px;
}

section h3{
  font-size:clamp(1.15rem,2vw,1.4rem);
  font-weight:600;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 30px;
  min-height:48px;
  border-radius:var(--radius-sm);
  font-family:var(--font-body);
  font-weight:500;
  font-size:.95rem;
  letter-spacing:.02em;
  white-space:nowrap;
  transition:background var(--motion-fast) ease, transform var(--motion-fast) ease, border-color var(--motion-fast) ease, color var(--motion-fast) ease;
}

.btn-primary{
  background:var(--gold);
  color:var(--bg);
  border:1px solid var(--gold);
}
.btn-primary:hover{
  background:#d6b06c;
  transform:translateY(-2px);
}

.btn-ghost{
  background:transparent;
  border:1px solid var(--line);
  color:inherit;
}
.btn-ghost:hover{
  border-color:var(--gold);
  background:var(--gold-soft);
}

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background var(--motion-normal) ease, border-color var(--motion-normal) ease;
}
.nav.is-scrolled{
  background:rgba(23,17,12,.92);
  backdrop-filter:blur(6px);
  border-bottom-color:var(--line);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-block:18px;
  position:relative;
  z-index:95; /* über .nav-drawer (90), damit Brand + Schließen-X sichtbar bleiben */
}

.nav-brand{
  font-family:var(--font-heading);
  font-size:1.15rem;
  font-weight:600;
  letter-spacing:.05em;
  color:var(--text);
  white-space:nowrap;
}
.nav-brand span{
  font-family:var(--font-body);
  font-size:.6em;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-left:.3em;
}

.nav-links{
  display:none;
  align-items:center;
  gap:32px;
  font-size:.92rem;
}
.nav-links a{
  position:relative;
  color:var(--text);
  opacity:.85;
  transition:opacity var(--motion-fast) ease;
}
.nav-links a:hover{ opacity:1; }

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.lang-pill{
  display:flex;
  align-items:center;
  gap:2px;
  border:1px solid var(--line);
  border-radius:20px;
  padding:4px;
  font-size:.75rem;
  letter-spacing:.06em;
}
.lang-pill span, .lang-pill button{
  padding:6px 10px;
  border-radius:16px;
  min-height:auto;
}
.lang-active{
  background:var(--gold-soft);
  color:var(--gold);
  font-weight:500;
}
.lang-inactive{
  color:var(--muted);
  opacity:.6;
}

.nav-actions .btn-primary{
  display:none;
  padding:12px 22px;
  min-height:44px;
  font-size:.85rem;
}

.nav-burger{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px;
  height:44px;
  border-radius:var(--radius-sm);
}
.nav-burger span{
  display:block;
  width:22px;
  height:1px;
  background:var(--text);
  transition:transform var(--motion-fast) ease, opacity var(--motion-fast) ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.nav-drawer{
  position:fixed;
  inset:0;
  top:0;
  z-index:90;
  background:var(--bg);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:32px;
  padding:24px;
  visibility:hidden;
  opacity:0;
  transform:translateY(-8px);
  transition:opacity var(--motion-normal) ease, transform var(--motion-normal) ease, visibility 0s linear var(--motion-normal);
}
.nav-drawer.is-open{
  visibility:visible;
  opacity:1;
  transform:translateY(0);
  transition:opacity var(--motion-normal) ease, transform var(--motion-normal) ease, visibility 0s linear 0s;
}

.nav-drawer-links{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}
.nav-drawer-links a{
  font-family:var(--font-heading);
  font-size:1.6rem;
  color:var(--text);
}

.nav-drawer-phone{
  color:var(--gold);
  font-size:.95rem;
  letter-spacing:.04em;
}

@media (min-width:900px){
  .nav-links{ display:flex; }
  .nav-actions .btn-primary{ display:inline-flex; }
  .nav-burger{ display:none; }
  .nav-drawer{ display:none; }
}

/* ============================================================
   VEIL PLACEHOLDER (für spätere Animation)
   ============================================================ */
.veil-path{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  opacity:0;
  z-index:60;
  mix-blend-mode:screen;
}
.veil-layer{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(244,237,227,.16), transparent 60%),
    linear-gradient(115deg, transparent 52%, rgba(244,237,227,.06) 68%, transparent 84%);
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  color:var(--text);
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-scrim{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(to top, rgba(23,17,12,.96) 0%, rgba(23,17,12,.55) 42%, rgba(23,17,12,.18) 70%, rgba(23,17,12,.05) 100%),
    radial-gradient(ellipse at center, rgba(23,17,12,0) 45%, rgba(23,17,12,.55) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  padding-block:64px 96px;
  max-width:760px;
}

.hero h1{
  font-size:clamp(2.6rem,7vw,5rem);
  margin-block:14px 20px;
}

.hero-sub{
  font-size:clamp(1rem,1.6vw,1.15rem);
  color:var(--text);
  opacity:.9;
  max-width:52ch;
  margin-bottom:34px;
}

.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:40px;
}

.hero-facts{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:.82rem;
  letter-spacing:.02em;
}
.hero-facts li{
  border:1px solid var(--line);
  border-radius:20px;
  padding:9px 16px;
  background:rgba(23,17,12,.35);
}

.scroll-hint{
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  color:var(--gold);
  opacity:.8;
}

/* ============================================================
   SAAL
   ============================================================ */
.saal{
  background:var(--ivory);
  color:var(--ink);
  padding-block:var(--space-section);
}

.saal-grid{
  display:grid;
  gap:56px;
}

.saal-media{
  position:relative;
  max-width:480px;
  margin-inline:auto;
}
.saal-media-main{
  width:100%;
  border-radius:var(--radius-lg);
  border:1px solid var(--line-ink);
}
.saal-media-accent{
  width:58%;
  border-radius:var(--radius-lg);
  border:1px solid var(--gold);
  position:absolute;
  right:-8%;
  bottom:-10%;
  box-shadow:0 18px 40px rgba(42,33,26,.18);
}

.saal-text .eyebrow{ color:var(--gold); }
.saal-text h2{ color:var(--ink); }
.saal-text p{
  color:var(--ink);
  opacity:.85;
  max-width:56ch;
  margin-bottom:18px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px 32px;
  margin-top:40px;
  padding-top:32px;
  border-top:1px solid var(--line-ink);
}
.stat dt{
  font-family:var(--font-heading);
  font-size:clamp(2rem,3.4vw,2.6rem);
  font-weight:600;
  color:var(--gold);
}
.stat dd{
  font-size:.82rem;
  color:var(--muted-ink);
  letter-spacing:.02em;
  margin-top:2px;
}

@media (min-width:900px){
  .saal-grid{
    grid-template-columns:0.85fr 1fr;
    align-items:center;
  }
  .saal-media{ margin-inline:0; }
}

/* ============================================================
   ANLÄSSE
   ============================================================ */
.anlaesse{
  background:var(--bg);
  color:var(--text);
  padding-block:var(--space-section);
}
.anlaesse .eyebrow{ color:var(--gold); }
.anlaesse h2{ max-width:20ch; margin-bottom:56px; }

.anlaesse-featured{
  display:grid;
  gap:32px;
  margin-bottom:56px;
  padding-bottom:56px;
  border-bottom:1px solid var(--line);
}

.anlaesse-featured-media img{
  width:100%;
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
}

.anlaesse-featured-label{
  font-family:var(--font-heading);
  font-size:clamp(1.6rem,3vw,2.2rem);
  font-weight:600;
  color:var(--gold);
  margin-bottom:16px;
}

.anlaesse-featured-text p:not(.anlaesse-featured-label){
  font-size:1.05rem;
  color:var(--text);
  opacity:.88;
  max-width:44ch;
}

.anlaesse-list{
  display:grid;
  gap:0;
}
.anlaesse-list li{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding-block:26px;
  border-top:1px solid var(--line);
}
.anlaesse-list li svg{
  flex-shrink:0;
  color:var(--gold);
  margin-top:4px;
}
.anlaesse-list h3{ margin-bottom:8px; }
.anlaesse-list p{
  color:var(--muted);
  font-size:.95rem;
  max-width:42ch;
}

@media (min-width:640px){
  .anlaesse-featured{ grid-template-columns:.8fr 1fr; align-items:center; }
  .anlaesse-list{ grid-template-columns:1fr 1fr; column-gap:48px; }
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen{
  background:var(--ivory);
  color:var(--ink);
  padding-block:var(--space-section);
}
.leistungen .eyebrow{ color:var(--gold); }
.leistungen h2{ color:var(--ink); }

.leistungen-grid{
  display:grid;
  gap:48px;
}

.leistungen-list li{
  display:flex;
  gap:20px;
  padding-block:26px;
  border-top:1px solid var(--line-ink);
}
.leistungen-list li:last-child{
  border-bottom:1px solid var(--line-ink);
}
.leistungen-num{
  font-family:var(--font-heading);
  font-size:1.3rem;
  font-weight:600;
  color:var(--gold);
  flex-shrink:0;
  min-width:2.4ch;
}
.leistungen-list h3{ color:var(--ink); margin-bottom:8px; }
.leistungen-list p{
  color:var(--muted-ink);
  font-size:.95rem;
  max-width:46ch;
}

.leistungen-media img{
  width:100%;
  border-radius:var(--radius-lg);
  border:1px solid var(--line-ink);
}

@media (min-width:900px){
  .leistungen-grid{
    grid-template-columns:1.1fr 1fr;
    align-items:center;
  }
  .leistungen-media{ order:2; }
  .leistungen-text{ order:1; }
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie{
  background:var(--bg);
  color:var(--text);
  padding-block:var(--space-section);
  overflow:hidden;
}
.galerie .eyebrow{ color:var(--gold); }
.galerie h2{ margin-bottom:48px; }

.gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding-inline:24px;
}

.gallery-col{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.gallery-col:nth-child(2){
  margin-top:48px;
}
.gallery-col img{
  width:100%;
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
}

.gallery-col-hide-mobile{ display:none; }

@media (min-width:900px){
  .gallery{
    grid-template-columns:repeat(3,1fr);
    padding-inline:40px;
    max-width:var(--container);
    margin-inline:auto;
  }
  .gallery-col-hide-mobile{ display:flex; }
  .gallery-col:nth-child(3){ margin-top:88px; }
}

/* ============================================================
   BEWERTUNGEN
   ============================================================ */
.bewertungen{
  background:var(--ivory);
  color:var(--ink);
  padding-block:var(--space-section);
}
.bewertungen .eyebrow{ color:var(--gold); }
.bewertungen h2{ color:var(--ink); margin-bottom:40px; }

.reviews-badge{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-bottom:44px;
}
.reviews-score{
  font-family:var(--font-heading);
  font-size:2.6rem;
  font-weight:600;
  color:var(--ink);
}
.reviews-stars{
  display:flex;
  gap:2px;
  color:var(--gold);
}
.reviews-count{
  color:var(--muted-ink);
  font-size:.9rem;
}

.reviews-grid{
  display:grid;
  gap:20px;
  margin-bottom:36px;
}

.review-card{
  background:var(--ivory-elev);
  border:1px solid var(--line-ink);
  border-radius:var(--radius-lg);
  padding:28px;
}
.review-card p{
  color:var(--ink);
  font-size:1.02rem;
  line-height:1.6;
  margin-bottom:16px;
}
.review-card footer{
  font-size:.85rem;
  color:var(--muted-ink);
  letter-spacing:.02em;
}

.reviews-link{
  display:inline-block;
  color:var(--gold);
  font-weight:500;
  border-bottom:1px solid var(--gold);
  padding-bottom:2px;
  transition:opacity var(--motion-fast) ease;
}
.reviews-link:hover{ opacity:.7; }

@media (min-width:900px){
  .reviews-grid{ grid-template-columns:repeat(3,1fr); }
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram{
  background:var(--bg);
  color:var(--text);
  padding-block:var(--space-section);
}
.instagram .eyebrow{ color:var(--gold); }
.instagram-sub{
  color:var(--muted);
  margin-bottom:36px;
  max-width:48ch;
}

.instagram-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-bottom:36px;
}

.instagram-tile{
  position:relative;
  display:block;
  border-radius:var(--radius-sm);
  overflow:hidden;
  border:1px solid var(--line);
}
.instagram-tile img{
  width:100%;
  height:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  transition:filter var(--motion-fast) ease;
}
.instagram-glyph{
  position:absolute;
  inset:0;
  margin:auto;
  color:var(--ivory);
  opacity:0;
  transition:opacity var(--motion-fast) ease;
}
.instagram-tile:hover img{ filter:brightness(1.15); }
.instagram-tile:hover .instagram-glyph{ opacity:1; }

@media (min-width:640px){
  .instagram-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (min-width:900px){
  .instagram-grid{ grid-template-columns:repeat(6,1fr); }
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt{
  background:var(--ivory);
  color:var(--ink);
  padding-block:var(--space-section);
}
.kontakt .eyebrow{ color:var(--gold); }
.kontakt h2{ color:var(--ink); max-width:20ch; }
.kontakt-sub{
  color:var(--muted-ink);
  max-width:52ch;
  margin-bottom:48px;
}

.kontakt-grid{
  display:grid;
  gap:40px;
}

.kontakt-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.form-row{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.form-row label{
  font-size:.85rem;
  letter-spacing:.02em;
  color:var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea{
  background:var(--ivory-elev);
  border:1px solid var(--line-ink);
  border-radius:var(--radius-sm);
  padding:13px 14px;
  min-height:48px;
  color:var(--ink);
  transition:border-color var(--motion-fast) ease;
}
.form-row textarea{ min-height:110px; resize:vertical; }
.form-row input:hover, .form-row select:hover, .form-row textarea:hover{ border-color:var(--gold); }

.form-row-split{
  flex-direction:row;
  gap:16px;
}
.form-row-split > div{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.form-row-checkbox{
  flex-direction:row;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:10px 12px;
}
.form-row-checkbox input{
  width:20px;
  height:20px;
  min-height:auto;
  margin-top:2px;
  accent-color:var(--gold);
}
.form-row-checkbox label{
  flex:1;
  min-width:200px;
  font-size:.88rem;
  color:var(--muted-ink);
}

.form-error{
  color:#A6402E;
  font-size:.8rem;
  min-height:1em;
}

.form-submit{ align-self:flex-start; margin-top:8px; }

.form-status{
  font-size:.9rem;
  color:var(--gold);
  min-height:1.2em;
}

.kontakt-card{
  background:var(--bg);
  color:var(--text);
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  padding:36px 32px;
  height:fit-content;
}
.kontakt-card h3{
  color:var(--text);
  margin-bottom:16px;
}
.kontakt-card-address{
  color:var(--muted);
  margin-bottom:14px;
  line-height:1.6;
}
.kontakt-card-tel{
  display:inline-block;
  color:var(--gold);
  font-size:1.1rem;
  font-family:var(--font-heading);
  font-weight:600;
  margin-bottom:24px;
}
.kontakt-card-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:24px;
}
.kontakt-card-note{
  color:var(--muted);
  font-size:.85rem;
  border-top:1px solid var(--line);
  padding-top:18px;
}

@media (min-width:900px){
  .kontakt-grid{ grid-template-columns:1.2fr 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  background:var(--bg-elev);
  color:var(--text);
  padding-block:56px 28px;
}

.footer-inner{
  display:flex;
  flex-direction:column;
  gap:24px;
  align-items:flex-start;
  justify-content:space-between;
  padding-bottom:32px;
  border-bottom:1px solid var(--line);
  margin-bottom:20px;
}

.footer-wordmark{
  font-family:var(--font-heading);
  font-size:1.1rem;
  letter-spacing:.05em;
  margin-bottom:10px;
}
.footer-wordmark span{
  font-family:var(--font-body);
  font-size:.6em;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-left:.3em;
}
.footer-address{
  color:var(--muted);
  font-size:.88rem;
  margin-bottom:6px;
}
.footer-tel{
  color:var(--gold);
  font-size:.9rem;
}

.footer-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:50%;
  color:var(--gold);
  transition:border-color var(--motion-fast) ease;
}
.footer-social:hover{ border-color:var(--gold); background:var(--gold-soft); }

.footer-legal{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:.8rem;
  color:var(--muted);
}
.footer-legal a{ color:var(--muted); text-decoration:underline; text-underline-offset:3px; }
.footer-legal a:hover{ color:var(--gold); }
.footer-credit a{ color:var(--gold); }

@media (min-width:640px){
  .footer-inner{ flex-direction:row; align-items:center; }
  .footer-legal{ flex-direction:row; justify-content:space-between; }
}

/* ============================================================
   KLEINE SCREENS — Fixes
   ============================================================ */
.form-row input,
.form-row select,
.form-row textarea{ width:100%; min-width:0; }
.form-row-split > div{ min-width:0; }
.kontakt-grid > *{ min-width:0; max-width:100%; }
.instagram h2{ overflow-wrap:anywhere; }

@media (max-width:479px){
  .form-row-split{ flex-direction:column; gap:20px; }
  .nav-inner{ gap:10px; }
  .nav-actions{ gap:8px; }
  .nav-brand{ font-size:1rem; letter-spacing:.03em; }
  .lang-pill{ padding:3px; font-size:.7rem; }
  .lang-pill span, .lang-pill button{ padding:5px 8px; }
  .instagram h2{ font-size:1.5rem; }
}

@media (max-width:379px){
  .nav .container{ padding-inline:14px; }
  .nav-inner{ gap:6px; }
  .nav-brand{ font-size:.88rem; }
  .nav-brand span{ display:none; }
  .lang-pill{ font-size:.65rem; }
  .lang-pill span, .lang-pill button{ padding:4px 7px; }
  .nav-burger{ width:38px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  html{ scroll-behavior:auto; }
}
