/* ═══════════════════════════════════════════════════════════════
   FIKA Coffee and Pastries — stylesheet
   Mobile-first. Breakpoints: 560px, 800px, 1100px.

   Contents
     1.  Design tokens
     2.  Reset & base
     3.  Typography helpers
     4.  Layout helpers
     5.  Buttons & links
     6.  IMAGE PLACEHOLDERS  ← delete this block once real <img>s are in
     7.  Header / nav
     8.  Hero
     9.  About
     10. Menu
     11. Gallery
     12. Visit
     13. Footer
     14. Reveal animation
     15. Language switch (BG / EN)
   ═══════════════════════════════════════════════════════════════ */


/* ── 1. Design tokens ─────────────────────────────────────────── */
:root {
  /* Brand palette */
  --green:        #4A5A3A;
  --green-deep:   #37432B;
  --green-soft:   #7C8C69;
  --cream:        #F5F1E8;
  --cream-warm:   #EFE9DC;
  --tan:          #D9C4A9;
  --tan-pale:     #E7D9C4;
  --charcoal:     #2C2C2C;
  --muted:        #6F6A60;
  --line:         rgba(74, 90, 58, 0.16);

  /* Type — both families ship Cyrillic subsets, required for the
     Bulgarian copy. (Work Sans is Latin-only; do not swap it back in.) */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --wrap:      1180px;
  --gutter:    clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 11vw, 9rem);

  /* Shape */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(44, 44, 44, 0.05);
  --shadow-md: 0 10px 34px rgba(44, 44, 44, 0.08);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* ── 2. Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;   /* keeps anchors clear of the sticky header */
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.15; }
p { margin: 0 0 1.15em; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--green);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }


/* ── 3. Typography helpers ────────────────────────────────────── */
.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-indent: 0.34em;          /* re-centres text that trailing letter-spacing pushes left */
  color: var(--green);
  text-decoration: none;
  text-transform: uppercase;
  margin: 0;
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--green-deep);
  margin: 0 0 0.7em;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin: 0 0 1em;
}


/* ── 4. Layout helpers ────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section-head { max-width: 46ch; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head__note { color: var(--muted); font-size: 0.95rem; margin: 0; }


/* ── 5. Buttons & links ───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  transition: background-color 0.28s var(--ease),
              color 0.28s var(--ease),
              border-color 0.28s var(--ease),
              transform 0.28s var(--ease);
}
.btn--solid { background: var(--green); color: var(--cream); border: 1px solid var(--green); }
.btn--ghost { background: transparent; color: var(--green); border: 1px solid var(--line); }

.btn--solid:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-2px); }
.btn--ghost:hover { background: var(--green); border-color: var(--green); color: var(--cream); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════════════
   6. IMAGE PLACEHOLDERS
   Every grey/green box on the page is an `.img-ph` div.
   Swap each one for a real <img> and this whole block can go —
   keep the aspect-ratio / grid-span classes if you want the same
   layout (apply them to the <img> and add `object-fit: cover`).
   ═══════════════════════════════════════════════════════════════ */
.img-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(150deg, var(--tan-pale), var(--tan));
  box-shadow: var(--shadow-sm);
}

.img-ph__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.42);
  text-align: center;
  padding: 0.5rem 1rem;
  pointer-events: none;
}

/* Placeholder tints — purely cosmetic, remove with the block above */
.tone-green      { background: linear-gradient(150deg, #6E7F5B, #4A5A3A); }
.tone-green .img-ph__label { color: rgba(245, 241, 232, 0.62); }
.tone-green-soft { background: linear-gradient(150deg, #DDE3D2, #BCC7A9); }
.tone-tan        { background: linear-gradient(150deg, #E7D9C4, #D9C4A9); }
.tone-sand       { background: linear-gradient(150deg, #F0EADD, #DED3BE); }
.tone-amber      { background: linear-gradient(150deg, #EFD9B4, #DCB47C); }
.tone-cocoa      { background: linear-gradient(150deg, #CBB9A4, #A8907A); }

/* Aspect ratios */
.img-ph--square { aspect-ratio: 1 / 1; }
.img-ph--4x5    { aspect-ratio: 4 / 5; }
.img-ph--tall   { aspect-ratio: 3 / 4; }
.img-ph--hero   { aspect-ratio: 4 / 3; }
.img-ph--map    { aspect-ratio: 4 / 3; }

@media (min-width: 800px) {
  .img-ph--hero { aspect-ratio: 21 / 9; }
  .img-ph--map  { aspect-ratio: 3 / 2; }
}


/* ── 7. Header / nav ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(44, 44, 44, 0.05);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}

/* Language switch + hamburger sit together on the right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.wordmark--nav { font-size: 1.2rem; letter-spacing: 0.4em; text-indent: 0.4em; }

/* Hamburger */
.nav-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0.75rem;
  margin-right: -0.75rem;
  cursor: pointer;
  color: var(--green);
}
.nav-toggle__bars { display: block; width: 24px; height: 12px; position: relative; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.32s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 10.5px; }

.nav-open .nav-toggle__bars span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.nav-open .nav-toggle__bars span:nth-child(2) { transform: translateY(-5.25px) rotate(-45deg); }

/* Mobile panel */
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.25s var(--ease), visibility 0.4s;
}
.nav-open .site-nav {
  max-height: 24rem;
  opacity: 1;
  visibility: visible;
}

.site-nav ul { padding: 0.5rem var(--gutter) 1.5rem; }
.site-nav li + li { border-top: 1px solid var(--line); }
.site-nav a {
  display: block;
  padding: 0.95rem 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--green-deep);
  text-decoration: none;
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.site-nav a:hover { color: var(--green-soft); padding-left: 0.35rem; }

@media (min-width: 800px) {
  .nav-toggle { display: none; }

  /* wordmark | links | language switch */
  .wordmark--nav { order: 1; }
  .nav-right     { order: 3; }

  .site-nav {
    order: 2;
    margin-left: auto;
    position: static;
    max-height: none;
    opacity: 1;
    visibility: visible;
    background: none;
    border: 0;
    overflow: visible;
  }
  .site-nav ul { display: flex; align-items: center; gap: 2.2rem; padding: 0; }
  .site-nav li + li { border: 0; }
  .site-nav a {
    padding: 0;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
  }
  .site-nav a:hover { color: var(--green); padding-left: 0; }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }
  .site-nav a:hover::after { transform: scaleX(1); }

  .nav-ig {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.55rem 1.15rem !important;
    transition: background-color 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
  }
  .nav-ig:hover { background: var(--green); border-color: var(--green); color: var(--cream); }
  .nav-ig::after { display: none; }
}


/* ── 8. Hero ──────────────────────────────────────────────────── */
.hero { padding-top: clamp(3rem, 9vw, 6rem); }

.hero__intro {
  text-align: center;
  max-width: 44rem;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.wordmark--hero {
  font-size: clamp(3.4rem, 15vw, 8rem);
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  line-height: 1;
  margin-bottom: 0.15em;
}

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  color: var(--green-soft);
  margin-bottom: 1.6em;
}

.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4.4vw, 2.1rem);
  line-height: 1.4;
  color: var(--charcoal);
  margin: 0;
}

/* Full-bleed hero image */
.hero .img-ph--hero,
.hero .hero__img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 1100px) {
  .hero .img-ph--hero,
  .hero .hero__img {
    width: calc(100% - 2 * var(--gutter));
    max-width: 1500px;
    margin-inline: auto;
    border-radius: var(--r-lg);
  }
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: clamp(2.25rem, 6vw, 3.5rem) auto 0;
  width: max-content;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.scroll-cue:hover { color: var(--green); }
.scroll-cue__line {
  width: 1px;
  height: 3.25rem;
  background: linear-gradient(to bottom, var(--green-soft), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue__line { animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
  @keyframes cue {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50%      { transform: scaleY(1);   opacity: 1; }
  }
}


/* ── 9. About ─────────────────────────────────────────────────── */
.about { background: var(--cream-warm); }

.about__grid { display: grid; gap: clamp(2.5rem, 7vw, 4.5rem); }

.about__copy p { color: #46443F; max-width: 58ch; }
.about__copy em { font-family: var(--serif); font-style: italic; font-size: 1.1em; }

.about__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 2.5vw, 1.25rem);
}
.about__images .img-ph--tall { grid-column: 1 / -1; }

@media (min-width: 560px) {
  .about__images .img-ph--tall { grid-column: span 1; grid-row: span 2; }
}

@media (min-width: 800px) {
  .about__grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
@media (min-width: 1100px) {
  .about__grid { grid-template-columns: 1fr 1.1fr; gap: 5.5rem; }
}


/* ── 10. Menu ─────────────────────────────────────────────────── */
.featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: clamp(3.5rem, 9vw, 6rem);
}
@media (min-width: 560px) { .featured { grid-template-columns: repeat(3, 1fr); } }

.featured__item { margin: 0; }
.featured__item .img-ph {
  margin-bottom: 1.15rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.featured__item:hover .img-ph { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.featured__name {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  color: var(--green-deep);
  margin-bottom: 0.35em;
}
.featured__desc { font-size: 0.9rem; color: var(--muted); margin: 0; }

.menu__cols {
  display: grid;
  gap: clamp(3rem, 7vw, 4.5rem);
}
@media (min-width: 800px)  { .menu__cols { grid-template-columns: 1fr 1fr; column-gap: clamp(3rem, 7vw, 6rem); } }

.menu-group__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 1.9rem);
  color: var(--green);
  padding-bottom: 0.6rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}
.menu-group__note {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin: 0.85rem 0 0;
}

.items { margin-top: 1.75rem; }
.item + .item { margin-top: 1.6rem; }

.item__line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0 0 0.3em;
}
.item__name {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--charcoal);
}
.item__dots {
  flex: 1 1 auto;
  min-width: 1.5rem;
  height: 1px;
  border-bottom: 1px dotted rgba(74, 90, 58, 0.35);
  transform: translateY(-0.2em);
}
.item__price {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--green);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.item__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}


/* ── 11. Gallery ──────────────────────────────────────────────── */
.gallery { background: var(--cream-warm); }

/* Masonry via CSS columns — lets tiles keep their own aspect ratio with
   no gaps. Tiles flow top-to-bottom, then across. */
.gallery__grid {
  --g-gap: clamp(0.6rem, 2vw, 1.1rem);
  column-count: 2;
  column-gap: var(--g-gap);
}
.gallery__grid > * {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: var(--g-gap);
}

/* Tile shapes — mix these freely when swapping in real photos */
.g-sq   { aspect-ratio: 1 / 1; }
.g-tall { aspect-ratio: 3 / 4; }
.g-wide { aspect-ratio: 3 / 2; }

@media (min-width: 560px) { .gallery__grid { column-count: 3; } }
@media (min-width: 800px) { .gallery__grid { column-count: 4; } }

@media (prefers-reduced-motion: no-preference) {
  .gallery__grid .img-ph {
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .gallery__grid .img-ph:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
}

.gallery__cta { text-align: center; margin: clamp(2.5rem, 6vw, 3.5rem) 0 0; }


/* ── 12. Visit ────────────────────────────────────────────────── */
.visit__grid { display: grid; gap: clamp(2.75rem, 7vw, 4.5rem); }

@media (min-width: 800px) {
  .visit__grid { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 5.5rem); align-items: start; }
}

.visit__block + .visit__block { margin-top: 2.5rem; }

.visit__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 1rem;
}

.hours { margin: 0; }
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.hours dt { font-weight: 400; }
.hours dd { margin: 0; color: var(--green); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours__row--closed dt,
.hours__row--closed dd { color: var(--muted); font-style: italic; }

.address {
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.address__latin { font-size: 0.92rem; color: var(--muted); }

.note {
  background: var(--cream-warm);
  border-left: 2px solid var(--tan);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.1rem 1.35rem;
  font-size: 0.92rem;
  color: #46443F;
  margin: 0;
}
.note strong { font-weight: 500; color: var(--green-deep); }

.contact-lines { margin: 0; line-height: 2; }
.contact-lines a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.contact-lines a:hover { color: var(--green); border-bottom-color: var(--green); }

.visit__map { display: grid; gap: 1.5rem; justify-items: start; }
.visit__map .img-ph,
.visit__map iframe {
  width: 100%;
  border: 0;
  border-radius: var(--r-md);
}
.visit__map iframe { aspect-ratio: 3 / 2; }


/* ── 13. Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  color: rgba(245, 241, 232, 0.82);
  padding-top: clamp(3rem, 8vw, 4.5rem);
  padding-bottom: 2rem;
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.16);
}
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; align-items: start; gap: 3rem; }
}

.wordmark--footer { font-size: 1.5rem; color: var(--cream); margin-bottom: 0.6rem; }
.footer__tag { color: rgba(245, 241, 232, 0.62); margin: 0; font-size: 0.85rem; }

.footer__nav ul,
.footer__social { display: grid; gap: 0.6rem; }

.footer__nav a,
.footer__social a {
  text-decoration: none;
  color: rgba(245, 241, 232, 0.82);
  transition: color 0.25s var(--ease);
}
.footer__nav a:hover,
.footer__social a:hover { color: var(--cream); }

.footer__fine {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1.5rem;
  padding-top: 1.75rem;
  font-size: 0.78rem;
  color: rgba(245, 241, 232, 0.55);
}
.footer__fine p { margin: 0; }

.site-footer :focus-visible { outline-color: var(--cream); }


/* ── 14. Reveal animation ─────────────────────────────────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Stagger the tiles inside a grid a little */
.js .about__images .reveal:nth-child(2) { transition-delay: 0.08s; }
.js .about__images .reveal:nth-child(3) { transition-delay: 0.16s; }
.js .featured .reveal:nth-child(2)      { transition-delay: 0.08s; }
.js .featured .reveal:nth-child(3)      { transition-delay: 0.16s; }
.js .menu__cols .reveal:nth-child(2)    { transition-delay: 0.06s; }

/* ═══════════════════════════════════════════════════════════════
   15. Language switch (BG / EN)

   Every translatable string is in the HTML twice, tagged lang="bg"
   and lang="en". These two rules hide the inactive one. Because it
   is pure CSS driven by an attribute set before paint, the page
   renders in the right language with JS disabled and never flashes.
   ═══════════════════════════════════════════════════════════════ */
html[data-lang="bg"] [lang="en"],
html[data-lang="en"] [lang="bg"] { display: none; }

.lang {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.lang__btn {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  font: inherit;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: 0.4rem 0.15rem;
  border-radius: 3px;
  transition: color 0.25s var(--ease);
}
.lang__btn:hover { color: var(--green); }
.lang__btn[aria-pressed="true"] { color: var(--green); font-weight: 500; }

.lang__sep { color: var(--muted); opacity: 0.45; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
