/* ============================================================
   02 — DER ATEM · Mit Ruhe zur Kraft
   One breath clock drives the page. JS sets --breath (0..1)
   on :root each frame; everything below samples it.
   --m is the motion multiplier: 1 normally, 0 under
   prefers-reduced-motion (breath freezes at mid-value).
   ============================================================ */

:root {
  --breath: 0.4;          /* live value, written by js/atem.js  */
  --m: 1;                 /* motion multiplier                  */

  --bg: #fbf7ef;
  --bg-deep: #f4ecdd;
  --sand: #efe5d2;
  --sand-line: #e3d7bf;
  --euca: #8c9e8b;
  --sage: #5f7263;
  --ink: #403830;
  --ink-soft: #6d6152;
  --gold: #b3905a;
  --gold-soft: #c9ad7e;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Inter", -apple-system, sans-serif;

  --ease-settle: cubic-bezier(0.16, 1, 0.3, 1);   /* long exhale tail */
  --ease-rise: cubic-bezier(0.45, 0.05, 0.35, 1); /* inhale-ish       */

  --w-max: 72rem;
}

@media (prefers-reduced-motion: reduce) {
  :root { --m: 0; --breath: 0.4; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(140, 158, 139, 0.35); }

h1, h2, h3, blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
}

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

a { color: inherit; }

/* ---------- load veil ---------- */
#veil {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  opacity: 1;
  transition: opacity 2.4s var(--ease-settle);
  pointer-events: none;
}
body:not(.pre) #veil { opacity: 0; }

/* ---------- load choreography ---------- */
.reveal-load {
  opacity: 0;
  transform: translateY(calc(18px * var(--m)));
  transition:
    opacity 2s var(--ease-settle),
    transform 2.6s var(--ease-settle);
}
body:not(.pre) .reveal-load { opacity: 1; transform: none; }
body:not(.pre) .reveal-load[data-load="1"] { transition-delay: 0.5s; }
body:not(.pre) .reveal-load[data-load="2"] { transition-delay: 0.9s; }
body:not(.pre) .reveal-load[data-load="3"] { transition-delay: 1.7s; }
body:not(.pre) .reveal-load[data-load="4"] { transition-delay: 2.4s; }
body:not(.pre) .reveal-load[data-load="5"] { transition-delay: 2.9s; }
body:not(.pre) .reveal-load[data-load="6"] { transition-delay: 3.3s; }
body:not(.pre) .reveal-load[data-load="7"] { transition-delay: 4.2s; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(251, 247, 239, 0.92), rgba(251, 247, 239, 0));
  opacity: 0;
  transition: opacity 2s var(--ease-settle) 1.4s;
}
body:not(.pre) .nav { opacity: 1; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  min-height: 44px;
}
.wordmark-ring {
  width: 14px; height: 14px;
  border: 1.4px solid var(--gold);
  border-radius: 50%;
  /* the mark itself breathes */
  transform: scale(calc(0.82 + var(--breath) * 0.36 * var(--m)));
  opacity: calc(0.65 + var(--breath) * 0.35);
}
.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.7rem 0.15rem;
  transition: color 0.6s var(--ease-settle);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  transition: background-color 0.8s var(--ease-settle), color 0.8s var(--ease-settle),
              border-color 0.8s var(--ease-settle), box-shadow 0.8s var(--ease-settle);
}
.btn-primary {
  background: var(--sage);
  color: var(--bg);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #526456;
  /* hover glow rides the breath */
  box-shadow: 0 0 calc((14px + var(--breath) * 22px) * var(--m)) rgba(95, 114, 99, 0.35);
}
.btn-ghost {
  border-color: var(--sand-line);
  color: var(--ink);
  background: rgba(251, 247, 239, 0.5);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--euca);
  box-shadow: 0 0 calc((10px + var(--breath) * 18px) * var(--m)) rgba(140, 158, 139, 0.3);
}
.btn-nav { background: var(--sage); color: var(--bg); padding: 0.55rem 1.3rem; }
.btn-nav:hover, .btn-nav:focus-visible { background: #526456; }
.btn-large { font-size: 0.95rem; padding: 0.9rem 2.2rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
}
#breath-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
/* static fallback if WebGL is unavailable or reduced motion */
.hero-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: none;
  background:
    radial-gradient(ellipse 58% 46% at 50% 33%, rgba(255, 252, 243, 0.92) 0%, rgba(233, 213, 172, 0.34) 38%, rgba(226, 208, 168, 0.12) 58%, rgba(251, 247, 239, 0) 76%),
    radial-gradient(ellipse 95% 70% at 50% 60%, rgba(140, 158, 139, 0.09), rgba(251, 247, 239, 0) 72%),
    linear-gradient(to bottom, #f8f3e8 0%, #f1e8d5 82%, #fbf7ef 100%);
}
body.no-gl #breath-canvas { display: none; }
body.no-gl .hero-fallback { display: block; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.hero-eyebrow { margin-bottom: 2.4rem; }
.hero-title {
  font-size: clamp(3.2rem, 9.5vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; font-weight: 300; }
.hero-lead {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 37rem;
  margin-bottom: 3rem;
}

/* invite + indicator */
.hero-invite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 3rem;
}
.breath-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.bi-ring {
  width: 52px; height: 52px;
  border: 1px solid rgba(179, 144, 90, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bi-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 251, 240, 0.95), rgba(201, 173, 126, 0.55) 60%, rgba(201, 173, 126, 0) 75%);
  transform: scale(calc(0.45 + var(--breath) * 0.62 * var(--m) + 0.25 * (1 - var(--m))));
}
.bi-word {
  font-size: 0.68rem;
  letter-spacing: calc(0.3em + var(--breath) * 0.14em * var(--m));
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 1.1s var(--ease-settle);
}
.invite-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
}
.btn-minute {
  margin-top: 0.4rem;
  min-height: 44px;
  padding: 0.55rem 1.4rem;
  background: none;
  border: 1px solid rgba(179, 144, 90, 0.5);
  border-radius: 999px;
  color: #79602f;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.8s var(--ease-settle), background-color 0.8s var(--ease-settle), color 0.8s var(--ease-settle);
}
.btn-minute:hover, .btn-minute:focus-visible {
  border-color: var(--gold);
  background: rgba(179, 144, 90, calc(0.06 + var(--breath) * 0.06 * var(--m)));
  color: #64501f;
}

.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.6rem; }
.hero-meta {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  opacity: 0.85;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  display: block;
  width: 1.5px; height: 64px;
  background: linear-gradient(to bottom, rgba(122, 111, 96, 0), rgba(122, 111, 96, 0.7));
  opacity: calc(0.45 + var(--breath) * 0.55 * var(--m) + 0.3 * (1 - var(--m)));
}

/* ---------- sections ---------- */
.section { position: relative; padding: clamp(6rem, 12vh, 9.5rem) 1.5rem; }
.section-inner { max-width: var(--w-max); margin: 0 auto; }

.section h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 1.1rem 0 2.6rem;
  max-width: 30ch;
}
.section-intro { max-width: 40rem; color: var(--ink-soft); margin: -1.4rem 0 3rem; }
.section-note { margin-top: 2.6rem; font-size: 0.85rem; color: var(--ink-soft); }

/* scroll reveals: gated to the breath clock by js (transition-delay) */
.reveal {
  opacity: 0;
  transform: translateY(calc(26px * var(--m)));
  transition:
    opacity 1.8s var(--ease-settle),
    transform 2.4s var(--ease-settle);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- methode ---------- */
.section-method {
  background: linear-gradient(to bottom, var(--bg), var(--bg-deep) 55%, var(--bg));
}
.method-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.method-text p { color: var(--ink-soft); max-width: 34rem; }
.method-text p + p { margin-top: 1.4rem; }
.method-tools { list-style: none; display: flex; flex-direction: column; }
.method-tools li {
  padding: 1.6rem 0 1.7rem;
  border-top: 1px solid var(--sand-line);
  position: relative;
}
.method-tools li:last-child { border-bottom: 1px solid var(--sand-line); }
.tool-num {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  /* the numerals breathe with the page */
  opacity: calc(0.45 + var(--breath) * 0.55 * var(--m) + 0.35 * (1 - var(--m)));
}
.method-tools h3 { font-size: 1.7rem; margin: 0.3rem 0 0.4rem; }
.method-tools p { font-size: 0.92rem; color: var(--ink-soft); max-width: 30rem; }

/* ---------- kurse ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.card {
  position: relative;
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid var(--sand-line);
  border-radius: 4px;
  padding: 2.2rem 1.9rem 2rem;
  transition: border-color 0.9s var(--ease-settle), transform 1.2s var(--ease-settle);
}
.card::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 4px;
  box-shadow: 0 18px 50px -18px rgba(95, 114, 99, 0.35);
  opacity: 0;
  transition: opacity 1.2s var(--ease-settle);
  pointer-events: none;
}
.card:hover { border-color: rgba(140, 158, 139, 0.65); transform: translateY(calc(-4px * var(--m))); }
.card:hover::after { opacity: calc(0.55 + var(--breath) * 0.45 * var(--m)); }
.card-accent {
  background: linear-gradient(to bottom, rgba(154, 168, 143, 0.09), rgba(154, 168, 143, 0.02));
  border-color: rgba(140, 158, 139, 0.55);
}
.card h3 { font-size: 1.65rem; line-height: 1.15; margin-bottom: 0.9rem; }
.card p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.card-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid rgba(95, 114, 99, 0.35);
  padding-bottom: 0.2rem;
}

/* ---------- krankenkasse ---------- */
.section-insurance {
  background: linear-gradient(to bottom, var(--bg), #f2ebdc 45%, var(--bg));
}
.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin-top: 1rem;
}
.step { position: relative; padding-top: 1.4rem; }
.step::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--sand-line);
}
.step::after {
  /* the pulse travels along the step line with each breath */
  content: "";
  position: absolute; top: -2.5px;
  left: calc(2% + var(--breath) * 92% * var(--m));
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: calc(0.4 + var(--breath) * 0.6);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1;
  display: block;
  margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.88rem; color: var(--ink-soft); }
.disclaimer {
  margin-top: 3.2rem;
  max-width: 46rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ink-soft);
  border-left: 2px solid var(--sand-line);
  padding-left: 1.2rem;
}

/* ---------- lehrer ---------- */
.teacher-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.teacher-figure { position: relative; }
.teacher-figure img {
  border-radius: 4px;
  width: 100%;
  max-height: 30rem;
  object-fit: cover;
  object-position: 50% 68%;
  /* warm the photo into the dawn palette */
  filter: sepia(0.34) saturate(0.6) brightness(1.06) contrast(0.93);
  /* the image breathes very softly */
  opacity: calc(0.93 + var(--breath) * 0.07 * var(--m) + 0.05 * (1 - var(--m)));
}
.teacher-figure::before {
  content: "";
  position: absolute; inset: -12%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 173, 126, 0.18), transparent 70%);
  opacity: calc(0.4 + var(--breath) * 0.6 * var(--m));
  pointer-events: none;
  z-index: -1;
}
.teacher-figure figcaption {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.teacher-text > p { color: var(--ink-soft); max-width: 36rem; }
.teacher-text blockquote {
  margin: 2rem 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold-soft);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.4;
  max-width: 30rem;
}
.credentials {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.6rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.credentials li {
  padding-left: 1.1rem;
  position: relative;
}
.credentials li::before {
  content: "";
  position: absolute; left: 0; top: 0.52em;
  width: 5px; height: 5px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  transform: scale(calc(0.8 + var(--breath) * 0.4 * var(--m)));
}

/* ---------- closing ---------- */
.section-closing {
  text-align: center;
  padding-top: clamp(7rem, 16vh, 12rem);
  padding-bottom: clamp(7rem, 16vh, 12rem);
  overflow: hidden;
}
.closing-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 62%, rgba(201, 173, 126, 0.22), rgba(140, 158, 139, 0.08) 55%, transparent 75%);
  opacity: calc(0.5 + var(--breath) * 0.5 * var(--m) + 0.25 * (1 - var(--m)));
  pointer-events: none;
}
.closing-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.closing-inner h2 { margin: 0; }
.closing-inner > p { max-width: 34rem; color: var(--ink-soft); }
.closing-alt { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- footer ---------- */
.footer { position: relative; padding: 2.2rem 1.5rem 2.6rem; }
.footer-breath {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(72rem, 92%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(140, 158, 139, calc(0.35 + var(--breath) * 0.5 * var(--m) + 0.25 * (1 - var(--m)))), transparent);
}
.footer-inner {
  max-width: var(--w-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--ink-soft);
}
.footer-inner nav { display: flex; gap: 1.4rem; }
.footer-inner a { text-decoration: none; padding: 0.5rem 0; }
.footer-inner a:hover { color: var(--ink); }

/* ---------- 1 minute ruhe ---------- */
.minute {
  position: fixed; inset: 0; z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(64, 56, 48, 0);
  backdrop-filter: blur(0px);
  transition: background-color 2s var(--ease-settle), backdrop-filter 2s var(--ease-settle);
}
.minute.open {
  background: rgba(250, 246, 237, 0.92);
  backdrop-filter: blur(18px);
}
.minute[hidden] { display: none; }

.minute-form {
  position: relative;
  width: min(46vmin, 300px);
  height: min(46vmin, 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.mf-halo, .mf-core { position: absolute; border-radius: 50%; }
.mf-halo {
  inset: -22%;
  background: radial-gradient(circle, rgba(201, 173, 126, 0.3), rgba(140, 158, 139, 0.12) 55%, transparent 72%);
  transform: scale(calc(0.8 + var(--breath) * 0.3 * var(--m) + 0.15 * (1 - var(--m))));
}
.mf-core {
  inset: 12%;
  background: radial-gradient(circle at 46% 42%, rgba(255, 253, 246, 0.98), rgba(233, 216, 182, 0.85) 55%, rgba(201, 173, 126, 0.25) 78%, transparent 88%);
  box-shadow: 0 0 90px rgba(201, 173, 126, 0.45);
  transform: scale(calc(0.68 + var(--breath) * 0.4 * var(--m) + 0.2 * (1 - var(--m))));
}
.minute-phase {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 300;
  color: var(--ink);
  opacity: calc(0.62 + var(--breath) * 0.38);
  min-height: 1.4em;
}
.minute-count {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  min-height: 1.2em;
}
.minute-close {
  margin-top: 1.6rem;
  min-height: 44px;
  padding: 0.6rem 1.5rem;
  background: none;
  border: 1px solid var(--sand-line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.7s var(--ease-settle), color 0.7s var(--ease-settle);
}
.minute-close:hover, .minute-close:focus-visible { border-color: var(--euca); color: var(--ink); }
.kbd {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.05em 0.45em;
  border: 1px solid var(--sand-line);
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--ink-soft);
}

/* fade page content while the minute runs */
body.minute-open main, body.minute-open .nav, body.minute-open .footer {
  filter: blur(2px);
  transition: filter 2s var(--ease-settle);
}

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

/* ---------- grain ---------- */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 55;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .method-cols, .teacher-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; max-width: 30rem; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .teacher-figure { max-width: 22rem; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .credentials { grid-template-columns: 1fr; }
  .hero { padding-top: 6rem; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 20rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-load {
    transition-duration: 0.6s;
    transition-delay: 0s !important;
    transform: none;
  }
  #veil { transition-duration: 0.8s; }
  .minute, body.minute-open main, body.minute-open .nav, body.minute-open .footer {
    transition: none;
    backdrop-filter: none;
    filter: none;
  }
  .minute.open { background: rgba(250, 246, 237, 0.97); }
}
