/* ==========================================================================
   Anwalt Eden – Design System
   Primärfarben: #18324A (Kanzleiblau), #FAF9F6 (Warmweiß), #24292E (Graphit)
   Akzent: #B18A4A (Messing) – ausschließlich sparsam eingesetzt
   ========================================================================== */

:root {
  --color-primary: #18324a;
  --color-primary-dark: #0e1f2f;
  --color-secondary: #49677f;
  --color-accent: #b18a4a;
  --color-accent-dark: #93712f;
  --color-bg: #faf9f6;
  --color-surface: #e9eef2;
  --color-ink: #24292e;
  --color-line: #d8dfe4;
  --color-white: #ffffff;

  --font-heading: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Arial, sans-serif;

  --container-w: 1180px;
  --radius-m: 12px;
  --radius-l: 20px;
  --shadow-card: 0 10px 30px -14px rgba(15, 24, 33, 0.3);
  --shadow-soft: 0 2px 10px rgba(15, 24, 33, 0.08);

  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------- Typography -------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-surface);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 700; }
.section-intro { max-width: 640px; }
.section-intro p { color: #3f454b; font-size: 1.05rem; }

.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--surface { background: var(--color-surface); }
.section--dark {
  background: var(--color-primary);
  color: #f2f4f6;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { background: rgba(255,255,255,0.12); color: #cfe0ee; }
.section--dark p { color: #d7e0e7; }
.section-head { text-align: center; margin: 0 auto 48px; max-width: 680px; }

/* --------------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 14px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(24,50,74,0.55);
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-accent {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}
.btn-accent:hover { background: var(--color-accent); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: rgba(24,50,74,0.22);
  color: var(--color-ink);
}
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.section--dark .btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------------------------------- Header ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  text-decoration: none;
}
.brand img { height: 40px; width: auto; }

.nav-primary { display: flex; }
.nav-primary ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.nav-primary a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--color-ink);
  white-space: nowrap;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.nav-primary .btn-primary {
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-bottom: none;
}
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  color: var(--color-ink);
  white-space: nowrap;
}
.header-phone svg { flex-shrink: 0; color: var(--color-primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-ink);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-primary {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--color-bg);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    overflow-y: auto;
  }
  .nav-primary.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .nav-primary ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 32px;
  }
  .nav-primary a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--color-line);
    font-size: 1.1rem;
  }
  .nav-primary li:last-child a.btn { margin-top: 14px; text-align: center; }
  .header-phone-text { display: none; }
}
@media (min-width: 901px) {
  .nav-mobile-only { display: none; }
}

/* ------------------------------- Hero Section -------------------------------- */
.hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, #faf9f6 0%, #f0f3f5 100%);
}
.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 64px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 28px; }
}
.hero-content { position: relative; z-index: 3; }
.hero-content h1 { margin-bottom: 18px; }
.hero-content .lede { font-size: 1.14rem; color: #3a4046; max-width: 48ch; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; color: #444;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--color-accent); flex-shrink: 0; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-card);
  background: var(--color-primary);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.1s var(--ease), transform 1.2s var(--ease);
}
.hero-visual.is-ready { opacity: 1; transform: scale(1); }
.hero-photo-layer {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  will-change: transform;
  filter: saturate(0.92) contrast(1.03);
}
.hero-duotone-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(24,50,74,0.62) 0%, rgba(24,50,74,0.22) 46%, rgba(177,138,74,0.16) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  will-change: transform;
}
.hero-light-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 76% 22%, rgba(255,255,255,0.4), transparent 70%);
  mix-blend-mode: overlay;
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  border-radius: inherit;
  pointer-events: none;
}

.hero-chips {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 4;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,249,246,0.94);
  backdrop-filter: blur(6px);
  border: 1.5px solid transparent;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.hero-chip.is-visible { opacity: 1; transform: translateY(0); }
.hero-chip.is-active { border-color: var(--color-accent); }
.hero-chip svg { color: var(--color-primary); flex-shrink: 0; }

.no-js .hero-visual,
.reduced-motion .hero-visual { opacity: 1; transform: none; }
.no-js .hero-chip,
.reduced-motion .hero-chip { opacity: 1; transform: none; }

/* ------------------------------ Rechtsgebiete / Cards ------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.service-card__body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card__body ul { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 8px; }
.service-card__body li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: #3a4046; }
.service-card__body li svg { color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }
.service-card__link { margin-top: auto; font-family: var(--font-body); font-weight: 700; color: var(--color-primary); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.service-card__link:hover { text-decoration: underline; }

/* ------------------------------ Mandatssituationen / Steps ------------------------------ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 22px 24px; background: var(--color-white); border: 1px solid var(--color-line); border-radius: var(--radius-m); }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}

/* ------------------------------ Vita-Timeline ------------------------------ */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--color-line);
}
.timeline-item { position: relative; padding: 0 0 30px 42px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 3px solid var(--color-accent);
}
.timeline-item .year { font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--color-primary); text-transform: uppercase; display: block; margin-bottom: 4px; }
.timeline-item h3 { margin-bottom: 4px; }
.timeline-item p { color: #3a4046; margin: 0; font-size: 0.96rem; }

/* Timeline auf dunklem Hintergrund (z.B. Vita-Teaser auf der Startseite) braucht hellere Töne für ausreichenden Kontrast */
.section--dark .timeline::before { background: rgba(255,255,255,0.22); }
.section--dark .timeline-item::before { background: var(--color-primary-dark); }
.section--dark .timeline-item .year { color: #d9b98a; }
.section--dark .timeline-item p { color: #c3ccd4; }

/* ------------------------------ Trust / Facts ------------------------------ */
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.fact-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-m);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fact-card svg { color: var(--color-primary); flex-shrink: 0; }
.fact-card h3 { margin-bottom: 6px; }
.fact-card p { margin: 0; color: #444; font-size: 0.95rem; }

.note-callout {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  font-size: 0.92rem;
  color: var(--color-ink);
  display: flex;
  gap: 12px;
}
.note-callout svg { flex-shrink: 0; margin-top: 2px; color: var(--color-accent-dark); }

/* ------------------------------ Kontakt / Karte ------------------------------ */
.area-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .area-layout { grid-template-columns: 1fr 1.1fr; align-items: center; } }
.map-frame {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 24px;
  background: var(--color-surface);
}

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 46px; }
@media (min-width: 960px) { .contact-layout { grid-template-columns: 0.95fr 1.15fr; } }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item svg { color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.contact-info-item a { text-decoration: none; font-weight: 600; }
.contact-info-item a:hover { text-decoration: underline; }

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-l);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
  color: var(--color-ink);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; color: var(--color-ink); }
.form-field .hint { font-size: 0.8rem; color: #666; font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--color-line);
  background: #fff;
  color: var(--color-ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
}
.form-note { font-size: 0.82rem; color: #666; margin-top: 14px; }
.form-required { color: var(--color-accent-dark); }

/* ------------------------------ Calendly Platzhalter ------------------------------ */
.calendly-block {
  background: var(--color-surface);
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-m);
  padding: 28px;
  text-align: center;
  color: var(--color-ink);
}
.calendly-block h3 { color: var(--color-ink); }
.calendly-block p { color: #444; }
.calendly-preview-img {
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 18px auto 0;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}
.calendly-inline-widget {
  min-width: 100%;
  height: 480px;
  border-radius: var(--radius-m);
  background: repeating-linear-gradient(135deg, #eef1f4, #eef1f4 10px, #e3e9ed 10px, #e3e9ed 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* --------------------------------- FAQ --------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-surface);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--color-accent); color: #fff; }
.faq-item p { padding: 0 24px 22px; color: #3a4046; margin: 0; }

/* --------------------------------- Footer --------------------------------- */
.site-footer { background: var(--color-primary-dark); color: #eee; padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { color: #b7c2ca; font-size: 0.92rem; max-width: 34ch; }
.footer-col h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: #d9b98a; margin-bottom: 16px; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #d8dee2; text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.82rem; color: #9fabb3;
}
.footer-bottom ul { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: #9fabb3; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------- Sticky mobile CTA --------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  display: none;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250,249,246,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-line);
}
@media (max-width: 720px) { .sticky-cta { display: flex; } }
.sticky-cta a { flex: 1; }

/* --------------------------------- Legal pages --------------------------------- */
.legal-content { max-width: 760px; }
.legal-content h2 { margin-top: 2em; }
.legal-content h3 { margin-top: 1.4em; }
.legal-content ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.legal-content li { margin-bottom: 0.4em; }
.draft-banner {
  background: #fdf2e2;
  border: 1px solid var(--color-accent);
  color: #6b4d05;
  border-radius: var(--radius-m);
  padding: 18px 22px;
  margin-bottom: 36px;
  font-weight: 600;
  display: flex;
  gap: 12px;
}
.draft-banner svg { flex-shrink: 0; margin-top: 2px; }

/* --------------------------------- Page hero (subpages) --------------------------------- */
.page-header {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #faf9f6, #eef2f4);
  border-bottom: 1px solid var(--color-line);
}
.breadcrumbs { display: flex; gap: 8px; font-size: 0.85rem; color: #666; margin-bottom: 18px; }
.breadcrumbs a { color: #666; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* --------------------------------- Utility --------------------------------- */
.stack-gap-lg > * + * { margin-top: 24px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal, .reduced-motion .reveal { opacity: 1; transform: none; }
