/* ==========================================================================
   Scutum Systems – Stylesheet
   Farben aus dem Logo: Gold/Bronze, Schildrot, Himmelblau – auf Schwarz.
   ========================================================================== */

:root {
  --gold: #c8a25c;
  --gold-bright: #e6c993;
  --gold-dim: #8a6d38;
  --red: #7f311f;
  --red-bright: #b8412f;
  --sky: #5b9bd8;
  --sky-dim: #2f5f8f;

  --bg: #08080a;
  --bg-soft: #0e0e12;
  --bg-card: #121218;
  --bg-card-2: #17171e;

  --text: #eae7e1;
  --text-soft: #9d998f;
  --line: rgba(200, 162, 92, .16);
  --line-soft: rgba(255, 255, 255, .07);

  --shadow: 0 8px 30px rgba(0, 0, 0, .5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .65);
  --glow: 0 0 40px rgba(200, 162, 92, .12);

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Feines Filmkorn über der ganzen Seite – nimmt großen schwarzen Flächen das Digitale */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); text-decoration: underline; }

/* ---------- Barrierefreiheit ---------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--gold);
  color: #0a0a0c;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Wortmarke ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  text-decoration: none;
}
.brand:hover { text-decoration: none; color: var(--gold-bright); }
.brand-mark svg { width: 20px; height: 34px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-size: 1.32rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.brand-sub {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: #0a0a0c;
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #0a0a0c; box-shadow: 0 0 26px rgba(200,162,92,.3); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(200, 162, 92, .45);
}
.btn-outline:hover { background: rgba(200, 162, 92, .1); color: var(--gold-bright); border-color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px; border-radius: 2px;
  background: var(--gold); transition: .25s;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 4px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-links a.active { color: var(--gold); }
.nav-links .btn { color: #0a0a0c; margin-left: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* ruhende Sterne */
    radial-gradient(1.4px 1.4px at 8% 18%,  rgba(255,255,255,.50), transparent),
    radial-gradient(1px 1px     at 15% 62%, rgba(255,255,255,.34), transparent),
    radial-gradient(1.6px 1.6px at 23% 34%, rgba(230,201,147,.42), transparent),
    radial-gradient(1px 1px     at 31% 78%, rgba(255,255,255,.30), transparent),
    radial-gradient(1.2px 1.2px at 42% 12%, rgba(255,255,255,.44), transparent),
    radial-gradient(1px 1px     at 47% 55%, rgba(180,205,235,.34), transparent),
    radial-gradient(1.5px 1.5px at 58% 82%, rgba(255,255,255,.38), transparent),
    radial-gradient(1px 1px     at 66% 26%, rgba(255,255,255,.30), transparent),
    radial-gradient(1.3px 1.3px at 79% 68%, rgba(230,201,147,.36), transparent),
    radial-gradient(1px 1px     at 87% 40%, rgba(255,255,255,.32), transparent),
    radial-gradient(1.4px 1.4px at 93% 14%, rgba(255,255,255,.40), transparent),
    radial-gradient(1px 1px     at 96% 74%, rgba(180,205,235,.30), transparent),
    /* Farbschleier */
    radial-gradient(900px 620px at 72% 46%, rgba(91, 155, 216, .1), transparent 62%),
    radial-gradient(760px 520px at 30% 40%, rgba(127, 49, 31, .16), transparent 66%);
  pointer-events: none;
}

/* funkelnde Sterne – zweite Ebene, damit nicht alles gleichzeitig pulst */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1.6px 1.6px at 11% 44%, rgba(255,255,255,.75), transparent),
    radial-gradient(1.3px 1.3px at 27% 16%, rgba(230,201,147,.70), transparent),
    radial-gradient(1.5px 1.5px at 38% 70%, rgba(255,255,255,.65), transparent),
    radial-gradient(1.2px 1.2px at 53% 30%, rgba(180,205,235,.68), transparent),
    radial-gradient(1.6px 1.6px at 71% 58%, rgba(255,255,255,.72), transparent),
    radial-gradient(1.3px 1.3px at 84% 22%, rgba(230,201,147,.66), transparent),
    radial-gradient(1.4px 1.4px at 91% 60%, rgba(255,255,255,.62), transparent);
  animation: starTwinkle 7s ease-in-out infinite;
}
@keyframes starTwinkle {
  0%, 100% { opacity: .25; }
  50%      { opacity: 1; }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: var(--gold-dim);
  margin-top: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.14;
  font-weight: 300;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero h1 strong { font-weight: 600; color: var(--gold); }
.hero p {
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 30em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  will-change: box-shadow;
  animation: heroBreath 8s ease-in-out infinite;
}

/* Ruhiges „Atmen": weicher Lichtschein an der Bildkante */
@keyframes heroBreath {
  0%, 100% { box-shadow: 0 0 30px 2px rgba(127, 49, 31, .30); }
  50%      { box-shadow: 0 0 80px 16px rgba(127, 49, 31, .70); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-figure img { animation: none; box-shadow: 0 0 46px 6px rgba(127, 49, 31, .42); }
  .hero::after { animation: none; opacity: .7; }
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(closest-side, rgba(127, 49, 31, .46), transparent 72%),
    radial-gradient(closest-side, rgba(200, 162, 92, .18), transparent 80%);
  z-index: -1;
}

@media (max-width: 880px) {
  .hero { padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { order: -1; max-width: 420px; margin: 0 auto; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.soft { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 62px; }
.section-head .eyebrow::after { margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 300;
  line-height: 1.24;
  margin-bottom: 16px;
}
.section-head h2 strong { font-weight: 600; color: var(--gold); }
.section-head p { color: var(--text-soft); }

/* ---------- Karten ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px 32px 34px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200, 162, 92, .08);
  border: 1px solid rgba(200, 162, 92, .2);
  margin-bottom: 24px;
}
.card .icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }
.card h3 { font-size: 1.14rem; font-weight: 600; margin-bottom: 12px; letter-spacing: .01em; }
.card p { color: var(--text-soft); font-size: .96rem; }

/* ---------- Werte / Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.feature { text-align: center; }
.feature .fico {
  width: 58px; height: 58px; margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(91, 155, 216, .28);
  background: rgba(91, 155, 216, .07);
}
.feature .fico svg { width: 24px; height: 24px; stroke: var(--sky); fill: none; }
.feature h3 { font-size: 1.06rem; font-weight: 600; margin-bottom: 10px; }
.feature p { color: var(--text-soft); font-size: .96rem; }

/* ---------- Namens-/Markenband ---------- */
.section.story-band {
  position: relative;
  background:
    radial-gradient(1100px 560px at 30% 50%, rgba(127, 49, 31, .16), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.story {
  display: grid;
  grid-template-columns: 5fr 6fr;
  align-items: center;
  gap: 64px;
}
.story-figure img { width: 100%; height: auto; border-radius: var(--radius); }
.story h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  font-weight: 300;
  line-height: 1.28;
  margin-bottom: 18px;
}
.story h2 strong { font-weight: 600; color: var(--gold); }
.story p { color: var(--text-soft); margin-bottom: 14px; }
.story .quote {
  border-left: 2px solid var(--gold-dim);
  padding-left: 22px;
  margin-top: 26px;
  color: var(--text);
  font-size: 1.06rem;
  font-style: italic;
}
@media (max-width: 880px) {
  .story { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(200, 162, 92, .1), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 300; margin-bottom: 14px; }
.cta-band h2 strong { font-weight: 600; color: var(--gold); }
.cta-band p { color: var(--text-soft); margin-bottom: 32px; max-width: 44em; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Kontaktkarten ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  color: var(--text);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
a.contact-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-lg); text-decoration: none; }
.contact-card .cico {
  width: 60px; height: 60px; margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200, 162, 92, .22);
  background: rgba(200, 162, 92, .07);
}
.contact-card .cico svg { width: 25px; height: 25px; stroke: var(--gold); fill: none; }
.contact-card .cico.sky { border-color: rgba(91, 155, 216, .28); background: rgba(91, 155, 216, .07); }
.contact-card .cico.sky svg { stroke: var(--sky); }
.contact-card .label { font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: var(--text-soft); }
.contact-card .value { font-size: 1.08rem; font-weight: 600; color: var(--gold); margin-top: 10px; word-break: break-word; }
.contact-card .sub { color: var(--text-soft); font-size: .92rem; margin-top: 8px; }

/* ---------- Seiten-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  padding: 76px 0 68px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 340px at 50% 0%, rgba(200, 162, 92, .09), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(1.8rem, 4.2vw, 2.6rem); font-weight: 300; letter-spacing: .01em; }
.page-hero h1 strong { font-weight: 600; color: var(--gold); }
.page-hero p { color: var(--text-soft); margin-top: 14px; max-width: 46em; margin-left: auto; margin-right: auto; }

/* ---------- Fließtext / Rechtstexte ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { color: var(--text); font-size: 1.24rem; font-weight: 600; margin: 40px 0 14px; }
.prose h3 { color: var(--text); font-size: 1.04rem; font-weight: 600; margin: 26px 0 10px; }
.prose h4 { color: var(--gold); font-size: .94rem; font-weight: 600; margin: 20px 0 8px; }
.prose p { color: var(--text-soft); margin-bottom: 14px; }
.prose ul { color: var(--text-soft); margin: 0 0 14px 22px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); }
.prose .lead { font-size: 1.1rem; color: var(--text); margin-bottom: 18px; }

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 26px 28px;
  margin: 8px 0 28px;
}
.info-box p { margin-bottom: 6px; color: var(--text); }
.info-box p:last-child { margin-bottom: 0; }

.notice {
  border: 1px dashed rgba(200, 162, 92, .35);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 26px 0;
  color: var(--text-soft);
  font-size: .94rem;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--gold); }
.faq .faq-answer { padding: 0 24px 22px; color: var(--text-soft); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  padding: 68px 0 28px;
}
.site-footer .container { position: relative; z-index: 1; }

/* Erdhorizont: flacher Atmosphärenbogen am Seitenfuß */
.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -370px;
  transform: translateX(-50%);
  width: 190%;
  height: 440px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-top: 1px solid rgba(91, 155, 216, .30);
  background: radial-gradient(ellipse 62% 100% at 50% 100%, rgba(91, 155, 216, .10), transparent 72%);
  box-shadow: 0 -20px 70px -12px rgba(91, 155, 216, .22);
  pointer-events: none;
  z-index: 0;
}
/* Logo-Palette als feine Kante: Gold – Schildrot – Himmelblau */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dim) 18%,
    var(--red) 50%,
    var(--sky-dim) 82%,
    transparent 100%);
  opacity: .7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 44px;
}
.site-footer .brand-f .brand { margin-bottom: 20px; }
.site-footer p { font-size: .95rem; max-width: 34em; }
.site-footer h4 {
  color: var(--text);
  margin-bottom: 18px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer a { color: var(--text-soft); }
.site-footer a:hover { color: var(--gold); text-decoration: none; }
.footer-contact a,
.footer-address { display: inline-flex; align-items: flex-start; gap: 12px; line-height: 1.55; }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px; stroke: var(--gold-dim); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .38);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid, .features, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features { gap: 32px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 82px; left: 0; right: 0;
    height: calc(100vh - 82px);
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    padding: 20px 22px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 16px 12px; font-size: 1rem; }
  .nav-links .btn { margin: 12px 0 0; justify-content: center; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 64px 0; }
  .grid, .features, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-band { padding: 44px 24px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ---------- Sanftes Einblenden beim Scrollen (nur Desktop) ---------- */
@media (min-width: 769px) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}
