/* =========================================================
   kuntschke.com — Dark Space
   ========================================================= */

:root {
  --bg:        #05060b;
  --bg-soft:   #0a0c15;
  --fg:        #e8eaf4;
  --fg-dim:    #a5abc4;
  --muted:     #6b7192;
  --line:      rgba(255, 255, 255, .085);
  --line-soft: rgba(255, 255, 255, .05);
  --panel:     rgba(255, 255, 255, .032);
  --panel-hi:  rgba(255, 255, 255, .055);
  --accent:    #7aa2ff;
  --accent-2:  #a78bfa;
  --glow:      rgba(122, 162, 255, .28);

  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --mono:    ui-monospace, 'SFMono-Regular', 'Cascadia Mono', Menlo, monospace;

  --shell:  1120px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.7;
  font-weight: 350;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(122, 162, 255, .3); }

/* ---------- Hintergrund ---------- */

#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  display: block;
}

.bg-fallback {
  position: fixed;
  inset: 0;
  z-index: -2;
  display: none;
  background:
    radial-gradient(900px 600px at 78% 12%, rgba(122, 162, 255, .14), transparent 60%),
    radial-gradient(700px 500px at 12% 78%, rgba(167, 139, 250, .11), transparent 60%),
    var(--bg);
}
body.no-webgl .bg-fallback { display: block; }
body.no-webgl #bg { display: none; }

/* Lesbarkeitsschleier über der Szene */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 40%, rgba(5, 6, 11, .55) 100%),
    linear-gradient(180deg, rgba(5, 6, 11, .3) 0%, transparent 25%);
}

/* ---------- Grundbausteine ---------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: #04050a;
  padding: .7rem 1.2rem;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

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

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 6, 11, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
}
.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--glow);
  flex: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, 1.6rem);
}
.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: .875rem;
  color: var(--fg-dim);
  padding: .4rem 0;
  transition: color .25s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--fg); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

.site-nav .nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem 1.05rem;
  color: var(--fg);
  background: var(--panel);
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover {
  border-color: rgba(122, 162, 255, .45);
  background: rgba(122, 162, 255, .1);
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
  padding: 0;
  place-items: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--fg);
  transition: transform .3s ease, opacity .25s ease;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .82rem 1.6rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05070f;
  font-weight: 600;
  box-shadow: 0 8px 30px -10px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -12px var(--glow); }
.btn-ghost {
  border-color: var(--line);
  background: var(--panel);
  color: var(--fg);
}
.btn-ghost:hover {
  border-color: rgba(122, 162, 255, .45);
  background: rgba(122, 162, 255, .08);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 500;
}
.link-arrow::after {
  content: "→";
  transition: transform .25s ease;
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 4.5rem);
}

.eyebrow {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-size: clamp(2.9rem, 9.5vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: .94;
  margin-bottom: 1.3rem;
  background: linear-gradient(150deg, #ffffff 15%, #b9c6f2 60%, #8ea3e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.role {
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.9vw, 1.28rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -.005em;
}

.lead {
  max-width: 60ch;
  color: var(--fg-dim);
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.hero-portrait {
  position: relative;
  justify-self: center;
  width: min(320px, 70vw);
  aspect-ratio: 1;
}
.hero-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(.25) contrast(1.05);
  border: 1px solid var(--line);
}
.portrait-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 0deg, var(--accent) 60deg, var(--accent-2) 130deg, transparent 210deg, transparent 360deg);
  opacity: .5;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-hint span {
  width: 2px; height: 7px;
  border-radius: 2px;
  background: var(--accent);
  animation: dropdown 1.9s ease-in-out infinite;
}
@keyframes dropdown {
  0%, 100% { transform: translateY(0); opacity: 0; }
  30%      { opacity: 1; }
  70%      { transform: translateY(15px); opacity: 0; }
}

/* ---------- Sections ---------- */

.section { padding: clamp(4.5rem, 11vw, 8.5rem) 0; }

.section-head {
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-index {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .22em;
  color: var(--accent);
  margin-bottom: .8rem;
}
.section-head h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.9rem);
  margin-bottom: .7rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

/* ---------- Panels ---------- */

.card, .project, .wb, .edu, .contact-facts {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 1.15rem;
}
.card {
  padding: 1.9rem 1.7rem;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 162, 255, .3);
  background: var(--panel-hi);
}
.card h3 {
  font-size: 1.1rem;
  margin-bottom: .8rem;
}
.card p {
  color: var(--fg-dim);
  font-size: .94rem;
  margin-bottom: 1.3rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.chips li {
  font-family: var(--mono);
  font-size: .705rem;
  letter-spacing: .04em;
  color: var(--fg-dim);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .022);
  border-radius: 999px;
  padding: .3rem .68rem;
  white-space: nowrap;
}

/* ---------- Projekte ---------- */

.project {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.15rem;
  transition: border-color .35s ease;
}
.project:hover { border-color: rgba(122, 162, 255, .26); }
.project-small { grid-template-columns: 1fr; }

.project-visual {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0b0b0e;
}
.project-visual img { width: 100%; }

.project-body h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  margin-bottom: .9rem;
}
.project-body p { color: var(--fg-dim); font-size: .95rem; }
.project-body .chips { margin: 1.2rem 0; }
.project-links { margin: 0; }

.meta {
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}

/* ---------- Timeline ---------- */

.timeline {
  position: relative;
  padding-left: 0;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.tl-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  position: relative;
  padding: 0 0 2.6rem 1.9rem;
  border-left: 1px solid var(--line);
}
.tl-item:last-child { padding-bottom: 0; border-left-color: transparent; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -5px; top: .55rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(122, 162, 255, .12), 0 0 14px var(--glow);
}
.tl-date {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--muted);
  margin: .25rem 0 0;
  padding-top: 1px;
}
.tl-body h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.tl-org {
  color: var(--accent);
  font-size: .88rem;
  margin-bottom: .9rem;
}
.tl-body ul { display: grid; gap: .55rem; }
.tl-body li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--fg-dim);
  font-size: .93rem;
  line-height: 1.65;
}
.tl-body li::before {
  content: "";
  position: absolute;
  left: 0; top: .68em;
  width: 5px; height: 1px;
  background: var(--muted);
}

/* ---------- Bildung ---------- */

.edu { padding: 1.8rem clamp(1.4rem, 3vw, 2.2rem); }
.edu-title {
  font-size: .8rem;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.4rem;
}
.edu-what { font-weight: 500; margin-bottom: .15rem; }
.edu-where { color: var(--muted); font-size: .88rem; margin: 0; }

/* ---------- Weiterbildung ---------- */

.wb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.15rem;
}
.wb {
  padding: 1.7rem 1.6rem;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.wb:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 162, 255, .26);
  background: var(--panel-hi);
}
.wb h3 {
  font-size: 1.03rem;
  margin-bottom: .45rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
}
.wb p:last-child { color: var(--fg-dim); font-size: .92rem; }

.badge {
  font-family: var(--mono);
  font-size: .655rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}
.badge-soon {
  color: #ffd08a;
  background: rgba(255, 190, 100, .1);
  border: 1px solid rgba(255, 190, 100, .28);
}
.badge-run {
  color: #8fe3c4;
  background: rgba(80, 220, 170, .09);
  border: 1px solid rgba(80, 220, 170, .26);
}

.progress {
  margin-top: 1.1rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}
.progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* ---------- Kontakt ---------- */

.section-contact { padding-bottom: clamp(3.5rem, 8vw, 6rem); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact-lead {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  line-height: 1.45;
  color: var(--fg);
  margin-bottom: 1.8rem;
  max-width: 22ch;
}
.contact-facts { padding: 1.7rem 1.6rem; display: grid; gap: 1.3rem; }
.contact-facts dt {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}
.contact-facts dd { margin: 0; font-size: .93rem; color: var(--fg-dim); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 1.8rem 0;
  background: rgba(5, 6, 11, .5);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
  color: var(--muted);
}
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 1.4rem; }
.footer-inner a { text-decoration: none; transition: color .25s ease; }
.footer-inner a:hover { color: var(--fg); }

/* ---------- Galerie ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.shot {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0a0b11;
  cursor: zoom-in;
  transition: border-color .35s ease, transform .35s ease;
}
.shot picture { display: block; width: 100%; height: 100%; }
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) brightness(.9);
  transition: transform .7s cubic-bezier(.2, .7, .3, 1), filter .4s ease;
}
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 6, 11, .4));
}
.shot:hover, .shot:focus-visible {
  border-color: rgba(122, 162, 255, .4);
}
.shot:hover img, .shot:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.04) brightness(1);
}

@media (max-width: 1080px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; } }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 3.5rem);
  background: rgba(3, 4, 8, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: lbIn .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

body.lb-open { overflow: hidden; }

.lb-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(1200px, 100%);
}
.lb-figure img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.lb-figure figcaption {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--fg-dim);
  text-align: center;
}

.lb-btn {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  color: var(--fg);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.lb-btn:hover {
  background: rgba(122, 162, 255, .16);
  border-color: rgba(122, 162, 255, .5);
}
.lb-close { top: 1.1rem; right: 1.1rem; font-size: 1.75rem; }
.lb-prev  { left: 1.1rem;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.1rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 640px) {
  .lb-prev { left: .6rem; }
  .lb-next { right: .6rem; }
  .lb-btn { width: 40px; height: 40px; }
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2, .7, .3, 1) var(--d, 0s),
              transform .8s cubic-bezier(.2, .7, .3, 1) var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { grid-row: 1; justify-self: start; width: min(190px, 45vw); }
  .project { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: .5rem; }
  .tl-date { margin-bottom: .2rem; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  .nav-toggle { display: grid; }

  .site-nav {
    position: fixed;
    inset: 64px .9rem auto .9rem;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: .8rem;
    background: rgba(9, 11, 19, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 26px 60px -24px rgba(0, 0, 0, .9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: .75rem .7rem; font-size: .95rem; border-radius: 10px; }
  .site-nav a::after { display: none; }
  .site-nav a:hover { background: rgba(255, 255, 255, .04); }
  .site-nav .nav-cta { text-align: center; margin-top: .35rem; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  .scroll-hint { display: none; }
  .hero { padding-top: 104px; }
}

/* ---------- Bewegung reduzieren ---------- */

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