/* ==========================================================================
   JUVIRA.de  ,  statisches Stylesheet (Relaunch 2026)
   Marke: Rot #ff1a1a, Anthrazit #22262e, Roboto + Roboto Slab.
   Eigenstaendig, keine Frameworks, keine externen Requests.
   ========================================================================== */

/* ---------- Fonts (lokal, kein Google-Request) ---------- */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-400.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto-500.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-700.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/robotoslab-700.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/robotoslab-800.woff2") format("woff2");
}

/* ---------- Design-Tokens ---------- */
:root {
  --red: #ff1a1a;
  --red-dark: #d60f0f;
  --red-soft: #fff0f0;

  --ink: #22262e;        /* Ueberschriften, dunkle Flaechen */
  --ink-2: #2b2e35;
  --body: #4b515b;       /* Fliesstext */
  --muted: #7a828d;      /* sekundaer */
  --line: #e7e9ed;       /* Trennlinien */

  --bg: #ffffff;
  --bg-alt: #f5f6f8;     /* abwechselnder Sektionshintergrund */
  --bg-dark: #1c1f25;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(20, 23, 28, .06), 0 1px 2px rgba(20, 23, 28, .04);
  --shadow: 0 10px 30px rgba(20, 23, 28, .08);
  --shadow-lg: 0 24px 60px rgba(20, 23, 28, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 88px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html { scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 {
  font-family: "Roboto Slab", Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
:focus-visible { outline: 3px solid rgba(255, 26, 26, .45); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #c9ced8; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 700; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem); font-weight: 800; }
.section h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem); }
.lead { font-size: clamp(1.075rem, 1rem + .4vw, 1.3rem); color: var(--body); }
.subtitle { color: var(--muted); font-size: 1.05rem; margin-top: -.2em; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: "Roboto", sans-serif; font-weight: 700; font-size: 1rem; line-height: 1;
  padding: .95em 1.7em; border-radius: 999px; border: 2px solid var(--btn-bg);
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  box-shadow: 0 8px 20px rgba(255, 26, 26, .22);
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 26, 26, .3); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line); box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: none; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; box-shadow: var(--shadow); }
.btn--light:hover { background: #fff; color: var(--red); border-color: #fff; }
.btn--lg { font-size: 1.075rem; padding: 1.1em 2em; }
.btn svg { width: 1.1em; height: 1.1em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, .28); border-bottom-color: rgba(255, 255, 255, .12); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { height: 57px; width: auto; }
.brand .brand-tag { font-size: .72rem; color: rgba(255, 255, 255, .6); font-weight: 500; letter-spacing: .04em; border-left: 1px solid rgba(255, 255, 255, .2); padding-left: .7rem; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  color: #c8ccd4; font-weight: 500; font-size: .95rem;
  padding: .55rem .8rem; border-radius: 8px; position: relative;
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .08); }
/* nur im mobilen Menue sichtbar, auf dem Desktop ausgeblendet */
.nav-cta, .mobile-social { display: none; }
.header-actions { display: flex; align-items: center; gap: .9rem; }
.social-links { display: inline-flex; gap: .35rem; }
.social-links a {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  color: #fff; border: 1px solid rgba(255, 255, 255, .2); background: transparent;
}
.social-links a:hover { color: #fff; background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.social-links svg { width: 17px; height: 17px; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 96px); overflow: hidden; background: radial-gradient(1200px 500px at 80% -10%, #fff5f5 0%, #fff 55%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); }
.hero .lead { margin-bottom: 1.6rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; color: var(--muted); font-size: .92rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: .5em; }
.hero-meta svg { width: 18px; height: 18px; color: var(--red); }

/* ---------- Tour-Player (click-to-load) ---------- */
.tour {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #0d0f13; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 10;
}
.tour--hero { aspect-ratio: 16 / 11; }
.tour img.poster { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s var(--ease); }
.tour:hover img.poster { transform: scale(1.04); filter: brightness(.92); }
.tour .play-btn {
  position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer;
  border: 0; background: linear-gradient(180deg, rgba(20,22,28,.05), rgba(20,22,28,.45)); width: 100%;
}
.tour .play-ring {
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 26, 26, .95); box-shadow: 0 10px 30px rgba(255,26,26,.5);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.tour:hover .play-ring { transform: scale(1.08); background: var(--red); }
.tour .play-ring svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }
.tour .tour-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.9rem 1rem .8rem;
  color: rgba(255, 255, 255, .94); font-weight: 500; font-family: "Roboto", sans-serif; font-size: .76rem; line-height: 1.45;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .9); pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, .62));
}
.tour .ext-hint {
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  font-size: .68rem; letter-spacing: .03em; color: #fff; background: rgba(0,0,0,.42);
  padding: .3em .65em; border-radius: 999px; backdrop-filter: blur(4px); pointer-events: none;
}
.tour iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Feature-Grid (Moeglichkeiten) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 2.5vw, 30px); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #dfe2e7; }
.card .card-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-alt); }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-body h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.card-body p { font-size: .97rem; margin: 0; color: var(--body); }
.card .tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--red); background: var(--red-soft); padding: .3em .7em; border-radius: 6px; margin-bottom: .8rem; }

/* ---------- Vorteile (Icon-Cards) ---------- */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(18px, 2.2vw, 26px); }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit .ic {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red); margin-bottom: 1.1rem;
}
.benefit .ic svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.benefit p { font-size: .95rem; margin: 0; }

/* ---------- "Perfekt fuer" Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 2rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5em;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  padding: .65em 1.2em; border-radius: 999px; font-weight: 500; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.chip:hover { transform: translateY(-2px); border-color: var(--red); color: var(--red); }
.chip svg { width: 18px; height: 18px; color: var(--red); }

/* ---------- Beispiele (Tour-Galerie) ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.tour-grid .tour { aspect-ratio: 16 / 10; }

/* Tour innerhalb einer Feature-Karte (statt statischem Bild) */
.card-tour { aspect-ratio: 16 / 9; border-radius: 0; box-shadow: none; }

/* Hinweis zu externen Rundgaengen (Cookies/Drittanbieter) */
.tour-note { text-align: center; color: var(--muted); font-size: .88rem; line-height: 1.6; margin: 1.4rem auto 0; max-width: 64ch; }
.tour-note a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.tour-note svg { width: 16px; height: 16px; vertical-align: -3px; color: var(--red); margin-right: .3em; }

/* ---------- Darum Juvira ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.check-list li { display: flex; gap: .9rem; align-items: flex-start; }
.check-list .ck {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; margin-top: .15em;
}
.check-list .ck svg { width: 15px; height: 15px; }
.why-aside { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); text-align: center; }
.why-aside img { max-height: 120px; width: auto; margin: 0 auto 1.2rem; }
.badge-row { display: flex; gap: 1.2rem; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.badge-row img { max-height: 64px; width: auto; filter: grayscale(.1); }

/* ---------- CTA / Teuer ---------- */
.cta-band { background: linear-gradient(135deg, #22262e 0%, #14161b 100%); color: #fff; border-radius: clamp(16px, 3vw, 28px); padding: clamp(36px, 6vw, 72px); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,26,26,.5), transparent 65%); opacity: .6; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #c9ced8; position: relative; max-width: 56ch; }
.cta-band .hero-cta { position: relative; margin-bottom: 0; margin-top: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #aeb4bf; padding-block: clamp(48px, 6vw, 72px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 52px); }
.site-footer h4 { color: #fff; font-family: "Roboto", sans-serif; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer img.f-logo { height: 60px; margin-bottom: 1.2rem; }
.site-footer a { color: #c5cad3; }
.site-footer a:hover { color: #fff; }
.footer-contact { font-style: normal; line-height: 1.9; }
.footer-contact a { display: inline-flex; align-items: center; gap: .5em; }
.footer-contact svg { width: 16px; height: 16px; color: var(--red); flex: none; }
.f-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; }
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(36px, 5vw, 56px); padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; color: #828a96; }
.footer-bottom a { color: #828a96; }

/* ---------- Legal / Prose ---------- */
.page-hero { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding-block: clamp(48px, 7vw, 88px) clamp(32px, 4vw, 48px); }
.page-hero h1 { margin: 0; }
.page-hero .crumb { font-size: .9rem; color: var(--muted); margin-bottom: .8rem; }
.page-hero .crumb a { color: var(--muted); }
.page-hero .crumb a:hover { color: var(--red); }
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6em; color: var(--ink-2); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose ul { display: grid; gap: .4em; }

/* ---------- FAQ Accordion ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 1rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; cursor: pointer; border: 0; background: none;
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  font-family: "Roboto Slab", serif; font-weight: 700; font-size: 1.08rem; color: var(--ink);
}
.faq-q:hover { color: var(--red); }
.faq-q .q-ic { flex: none; margin-left: auto; width: 26px; height: 26px; display: grid; place-items: center; color: var(--red); transition: transform .3s var(--ease); }
.faq-item[open] .faq-q .q-ic, .faq-item.open .faq-q .q-ic { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s var(--ease); }
.faq-item.open .faq-a { padding: 0 1.5rem 1.4rem; max-height: 800px; }
.faq-a p { margin: 0; color: var(--body); }
.faq-num { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-family: "Roboto", sans-serif; font-weight: 700; font-size: .9rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; place-items: center; padding: clamp(12px, 4vw, 48px); background: rgba(12, 13, 17, .82); backdrop-filter: blur(6px); }
.lightbox.open { display: grid; animation: fade .25s var(--ease); }
.lightbox-stage { position: relative; width: min(1100px, 100%); }
.lightbox-inner { position: relative; width: 100%; aspect-ratio: 16 / 10; background: #000; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.lightbox-inner iframe { width: 100%; height: 100%; border: 0; }
.lightbox-close { position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: #fff; color: var(--ink); cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); z-index: 3; }
.lightbox-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.lightbox-close svg { width: 22px; height: 22px; }
.lightbox-note { margin: .95rem auto 0; max-width: 92ch; text-align: center; color: #c9ced8; font-size: .85rem; line-height: 1.6; }
.lightbox-note a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.lightbox-note svg { width: 15px; height: 15px; vertical-align: -2px; color: var(--red); margin-right: .35em; }
@media (max-width: 560px) { .lightbox-close { top: 8px; right: 8px; } }

/* ---------- Animations ---------- */
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Skip link ---------- */
.skip { position: absolute; left: -999px; top: 0; background: var(--red); color: #fff; padding: .7em 1.2em; border-radius: 0 0 8px 0; z-index: 200; }
.skip:focus { left: 0; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .why-grid { grid-template-columns: 1fr; }
  .hero .tour { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-actions .social-links { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center; width: 46px; height: 46px; margin-left: auto;
    border: 1px solid rgba(255, 255, 255, .25); border-radius: 10px; background: transparent; cursor: pointer; color: #fff;
  }
  .nav-toggle svg { width: 24px; height: 24px; }
  .brand { margin-right: 0; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { display: none; }

  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: .2rem;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--bg-dark); padding: 1.2rem clamp(20px, 5vw, 40px); overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, .1); animation: fade .2s var(--ease);
  }
  .nav.open a { padding: .9rem 1rem; font-size: 1.1rem; border-bottom: 1px solid rgba(255, 255, 255, .1); border-radius: 0; color: #e7e9ed; }
  .nav.open .nav-cta { display: block; margin-top: 1rem; }
  .nav.open .nav-cta .btn { display: inline-flex; width: 100%; }
  .nav.open .mobile-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
  .mobile-social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); display: grid; place-items: center; color: #fff; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-band .btn { width: 100%; }
}

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