/* ——— Farb-Design ohne reines Schwarz/Weiß ——— */
:root {
  --bg: #f5f7f4;            /* warmes Off-White */
  --fg: #121513;            /* sehr dunkles Olivgrau */
  --muted: #55625c;         /* gedämpftes Graugrün */
  --card: #ffffff;          /* Karten hell */
  --accent: #1fa46f;        /* MadGrower-Grün */
  --accent-contrast: #0e3b28;
  --ring: #1bb377;
  --ring-soft: rgba(27, 179, 119, .18);
  --line: rgba(0,0,0,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}
[data-theme="dark"] {
  --bg: #0b1210;            /* sehr dunkles Grün-Grau */
  --fg: #e7f0ec;            /* sehr helles Jade-Grau */
  --muted: #99a6a1;
  --card: #101a17;          /* Karten dunkel */
  --accent: #26a269;
  --accent-contrast: #062b1b;
  --ring: #2ed48a;
  --ring-soft: rgba(46, 212, 138, .18);
  --line: rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* ——— Reset + Base ——— */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .3s ease, color .3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ——— Layout ——— */
.container { width: min(1120px, 100% - 2rem); margin-inline: auto; }
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

/* ——— Header ——— */
.header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(140%) blur(8px);
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  border-bottom: 1px solid var(--line);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; height:64px; }
.brand { display:flex; gap:.75rem; align-items:center; }
.brand-logo {
  width:38px; height:38px; display:grid; place-items:center; border-radius:12px;
  border:1px solid var(--line); background: var(--card); box-shadow: var(--shadow);
  overflow:hidden;
}
.logo-img { width:100%; height:100%; object-fit: cover; }
.brand-title { font-weight:700; line-height:1; }
.brand-sub { font-size:.75rem; color:var(--muted); }

.nav { display: none; gap: 1.25rem; align-items: center; }
@media (min-width: 768px) { .nav { display: flex; } }
.nav-link { position: relative; padding:.25rem 0; }
.nav-link::after {
  content:""; position:absolute; left:0; bottom:-4px; height:2px; width:0%;
  background: var(--accent); transition: width .25s ease;
}
.nav-link:hover::after, .nav-link:focus::after { width:100%; }

.header-cta { display:flex; gap:.75rem; align-items:center; }

/* ——— Cards & Buttons ——— */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px; padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .95rem; border-radius: 14px; padding: .8rem 1.1rem; transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px var(--ring-soft); }
.btn-outline { background: var(--card); border: 1px solid var(--line); }
.btn-outline:hover { transform: translateY(-2px); box-shadow: 0 10px 20px var(--ring-soft); border-color: var(--ring); }
.badge { display: inline-flex; align-items: center; gap: .4rem; font-size: .77rem; padding: .35rem .6rem; border-radius: 999px; background: var(--card); border: 1px solid var(--line); }
.badge.soft { background: color-mix(in oklab, var(--accent) 18%, transparent); border-color: var(--ring); }

.hover-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px var(--ring-soft); border-color: var(--ring); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 14px 30px var(--ring-soft); }
.hover-zoom { overflow:hidden; }
.hover-zoom:hover { transform: scale(1.01); }

/* ——— Grid helpers ——— */
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ——— Hero ——— */
.hero h1 { font-size: clamp(2rem, 3.8vw + 1rem, 3.5rem); line-height: 1.1; margin: 0 0 .75rem; font-weight: 900; letter-spacing: -0.02em; }
.muted { color: var(--muted); }
.mt-1 { margin-top: 1rem; }
.hero-grid { align-items:center; gap:2rem; display:grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-meta { margin-top:.75rem; color: color-mix(in oklab, var(--fg) 70%, transparent); font-size:.95rem; }

/* ——— Placeholder Visual ——— */
.ph {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 100% 0%, color-mix(in oklab, var(--accent) 35%, transparent) 0%, color-mix(in oklab, var(--accent) 10%, transparent) 45%, transparent 65%),
    radial-gradient(120% 120% at 0% 100%, color-mix(in oklab, var(--accent) 35%, transparent) 0%, color-mix(in oklab, var(--accent) 10%, transparent) 45%, transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  transition: transform .25s ease, box-shadow .25s ease;
}
.ph:hover { box-shadow: 0 14px 30px var(--ring-soft); }
.ph-label { position: absolute; inset: 0; display: grid; place-items: center; font-size: .85rem; color: color-mix(in oklab, var(--fg) 75%, transparent); }

/* ——— Pricing ——— */
.price { color: var(--accent); font-weight: 900; font-size: 1.4rem; }
.list { margin: .75rem 0 0; padding: 0; list-style: none; }
.list li { display: grid; grid-template-columns: 18px 1fr; gap: .5rem; align-items: start; margin: .4rem 0; }

/* ——— Steps ——— */
.steps { counter-reset: step; }
.step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 999px; background: color-mix(in oklab, var(--accent) 18%, transparent); color: var(--accent-contrast); font-weight: 800; margin-right: .75rem; }

/* ——— Forms ——— */
label { font-size: .9rem; color: color-mix(in oklab, var(--fg) 85%, transparent); }
input, textarea { width: 100%; border-radius: 14px; border: 1px solid transparent; background: color-mix(in oklab, var(--bg) 75%, transparent); padding: .7rem .85rem; font: inherit; color: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, textarea:focus { border-color: var(--ring); box-shadow: 0 0 0 4px var(--ring-soft); }

/* ——— Footer ——— */
footer { border-top: 1px solid var(--line); padding: 2rem 0; font-size: .95rem; }
.footer-inner { display:flex; gap:1rem; justify-content:space-between; align-items:center; flex-wrap:wrap; }
.link-underline { position: relative; padding-bottom:2px; }
.link-underline::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0%; background: var(--accent); transition: width .2s ease; }
.link-underline:hover::after { width:100%; }

/* ——— Misc ——— */
.row { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.space { height: 2rem; }
.kicker { text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; color: color-mix(in oklab, var(--fg) 60%, transparent); }
h2 { margin: .35rem 0 0; font-size: clamp(1.6rem, 2.4vw + .6rem, 2.2rem); letter-spacing: -.01em; }
p.lead { margin: .4rem 0 0; color: color-mix(in oklab, var(--fg) 80%, transparent); }
.small { font-size: .85rem; }

/* ——— Simple icons (inline SVG via mask) ——— */
.ico { width: 18px; height: 18px; display: inline-block; background: currentColor; -webkit-mask: var(--mask) center / contain no-repeat; mask: var(--mask) center / contain no-repeat; }
.i-check { --mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>'); }
.i-camera { --mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/><circle cx="12" cy="13" r="4"/></svg>'); }
.i-video { --mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 7l-7 5 7 5V7z"/><rect x="1" y="5" width="15" height="14" rx="2"/></svg>'); }
.i-star { --mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>'); }
.i-sun { --mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"/><path d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41"/></svg>'); }
.i-moon { --mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3a7 7 0 0 0 9.79 9.79z"/></svg>'); }
.i-mail { --mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16v16H4z"/><path d="m22 6-10 7L2 6"/></svg>'); }
.i-phone { --mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 3.16 9.81 19.79 19.79 0 0 1 .09 1.18 2 2 0 0 1 2.07 0h3a2 2 0 0 1 2 1.72c.12.89.3 1.76.57 2.6a2 2 0 0 1-.45 2.11L6 7a16 16 0 0 0 7 7l.57-1.19a2 2 0 0 1 2.11-.45c.84.27 1.71.45 2.6.57A2 2 0 0 1 22 16.92z"/></svg>'); }
.i-pin { --mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 5-9 12-9 12S3 15 3 10a9 9 0 1 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>'); }

/* ——— Banners ——— */
.banner { padding: .8rem 1rem; text-align:center; }
.banner-ok { background: color-mix(in oklab, #2ed48a 15%, transparent); border-bottom: 1px solid var(--ring); }
.banner-fail { background: color-mix(in oklab, #ff4d4f 15%, transparent); border-bottom: 1px solid rgba(255,77,79,.35); }

/* ——— Utilities ——— */
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline-flex; } }
.row.between { justify-content: space-between; }
.row.gap { gap: .75rem; }
.mt-1 { margin-top: 1rem; }
.accent { color: var(--accent); }
.cards { margin-top:1.25rem; gap:1.25rem; }
.section-alt { background: color-mix(in oklab, var(--card) 70%, transparent); }
.contact-list { list-style:none; padding:0; margin:0; display:grid; gap:.75rem; font-size:.95rem; }

/* v2.6 — Showreel feste Größe wie im Screenshot (soft rounded, konsistent) */

/* Default (Mobil/Tablet): 16:9, volle Breite */
.showreel {
  position: relative;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
  align-self: center;
}

/* Inhalt füllt Container immer vollständig */
.showreel video,
.showreel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Desktop: feste Höhe, damit das Rechteck optisch immer gleich bleibt.
   Breite ergibt sich automatisch aus 16:9, begrenzt durch den Grid-Spalt. */
@media (min-width: 1024px) {
  .showreel {
    height: 520px;            /* Zielhöhe wie im Screenshot */
    min-height: 460px;        /* Untergrenze */
    max-height: 560px;        /* Obergrenze (kannst du anpassen) */
    aspect-ratio: auto;       /* Höhe fix, Breite folgt daraus per Inhalt */
  }
}

/* Feinschliff: Abstand/Centering im Hero-Grid */
.hero-grid > div:last-child {
  display: grid;
  place-items: center;
}
/* Showreel Autoplay – nicht klickbar */
.showreel video { pointer-events: none; }

/* Falls du die feste Größe möchtest (wie im Screenshot): */
.showreel {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}
.showreel video, .showreel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .showreel { height: 520px; aspect-ratio: auto; }
}
/* Portfolio-Kacheln: gleiche Größe wie Placeholder */
.portfolio-thumb {
  position: relative;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.portfolio-item:hover .portfolio-thumb {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px var(--ring-soft);
  border-color: var(--ring);
}
.portfolio-thumb img,
.portfolio-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.75);
  display: none; z-index: 9999;
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.show { display: flex; }
.lb-inner img, .lb-inner video {
  max-width: min(92vw, 1100px); max-height: 86vh;
  border-radius: 14px; box-shadow: var(--shadow);
}
.lb-close {
  position: absolute; top: 14px; right: 16px;
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card);
  font-size: 26px; line-height: 1; cursor: pointer;
}
/* Banner sanft ausblenden */
.banner { transition: opacity .35s ease, transform .35s ease; }
.banner.auto-hide.is-hidden { 
  opacity: 0; 
  transform: translateY(-6px); 
  pointer-events: none;
}
/* ---- Impressum/Legal ---- */
.banner-warn {
  background: color-mix(in oklab, #ffb020 18%, transparent);
  border: 1px solid color-mix(in oklab, #ffb020 40%, transparent);
  border-radius: 12px;
}

.legal-grid { display: grid; gap: 1rem; }
@media (min-width: 900px){ .legal-grid { grid-template-columns: 1fr; } }

.privacy-section {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1.25rem 1.25rem 1rem;
}

.section-title { margin: 0 0 .5rem; }
.section-title .title-text { font-weight: 800; font-size: 1.15rem; }
.section-title .title-line {
  height: 2px; width: 42px; margin-top: .35rem;
  background: var(--accent); border-radius: 999px;
}

.content-wrapper[aria-hidden="true"] {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
}
.content-wrapper[aria-hidden="false"] {
  max-height: 1000px; /* groß genug */
  transition: max-height .35s ease;
}

.expand-button {
  margin-top: .5rem;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .8rem;
  border-radius: 12px; border: 1px solid var(--line);
  background: var(--card); color: inherit; font-weight: 700;
  cursor: pointer;
}
.expand-button:hover { border-color: var(--ring); box-shadow: 0 8px 20px var(--ring-soft); }

.section-number {
  position: absolute; right: 14px; top: 10px;
  font-weight: 800; font-size: .9rem; color: color-mix(in oklab, var(--fg) 50%, transparent);
}

.contact-link { color: var(--accent); text-decoration: none; }
.contact-link:hover { text-decoration: underline; }

.last-update-section { margin-top: 1.25rem; }
.update-container { display: flex; justify-content: flex-end; }
.update-text { font-size: .9rem; color: var(--muted); }
/* Accordion: Grundzustand zu + sanfte Animation */
.content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

/* Offen-Zustand (wird per aria gesetzt) */
.content-wrapper[aria-hidden="false"] {
  max-height: 1200px; /* groß genug */
}

/* Warnbanner etwas eleganter */
.banner-warn{
  background: color-mix(in oklab, #b37a00 22%, transparent);
  border: 1px solid color-mix(in oklab, #b37a00 45%, transparent);
  color: color-mix(in oklab, var(--fg) 92%, transparent);
  border-radius: 14px;
  font-weight: 600;
}

/* Impressum-Karten */
.legal-grid { display: grid; gap: 1rem; }
@media (min-width: 900px){ .legal-grid { grid-template-columns: 1fr 1fr; } }

.legal-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1rem;
  position: relative;
  overflow: hidden;
}

.legal-head{ position: relative; padding-right: 44px; }
.legal-title{ margin: 0; font-size: 1.15rem; font-weight: 800; }
.legal-underline{
  display: block; width: 48px; height: 2px; margin-top: .4rem;
  background: var(--accent); border-radius: 999px;
}
.legal-number{
  position: absolute; top: 0; right: 0;
  font-weight: 800; font-size: .9rem;
  color: color-mix(in oklab, var(--fg) 55%, transparent);
}

.legal-body{ margin-top: .6rem; }
.legal-body p{ margin: .4rem 0; }
.contact-link{ color: var(--accent); }
.contact-link:hover{ text-decoration: underline; }
/* ===== Scroll-Reveal (sanfte Slide-Ins) ===== */
:root{
  --reveal-dur: .6s;
  --reveal-ease: cubic-bezier(.2,.6,.2,1);
  --reveal-dist: 22px;
}

/* Grundzustand: unsichtbar & leicht versetzt */
.reveal{
  opacity: 0;
  transform: translateY(var(--reveal-dist));
  transition:
    opacity var(--reveal-dur) var(--reveal-ease),
    transform var(--reveal-dur) var(--reveal-ease);
  will-change: opacity, transform;
}

/* Sichtbar, wenn im Viewport */
.reveal.is-in{
  opacity: 1;
  transform: none;
}

/* Richtungen/Varianten per data-anim */
.reveal[data-anim="up"]    { transform: translateY(var(--reveal-dist)); }
.reveal[data-anim="down"]  { transform: translateY(calc(var(--reveal-dist)*-1)); }
.reveal[data-anim="left"]  { transform: translateX(var(--reveal-dist)); }
.reveal[data-anim="right"] { transform: translateX(calc(var(--reveal-dist)*-1)); }
.reveal[data-anim="zoom"]  { transform: scale(.96); }

/* Verzögerung über CSS-Variable (wird von JS gesetzt) */
.reveal{ transition-delay: var(--anim-delay, 0s); }

/* Barrierefreiheit: weniger Bewegung */
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}
/* Sticky CTA */
.cta-stick{
  position:fixed; left:50%; transform:translateX(-50%) translateY(10px);
  bottom:16px; display:flex; gap:.5rem; z-index:2000;
  background: color-mix(in oklab, var(--card) 92%, transparent);
  border:1px solid var(--line); box-shadow: var(--shadow);
  padding:.5rem; border-radius:14px; opacity:0; pointer-events:none; transition:opacity .3s ease, transform .3s ease;
}
.cta-stick.show{ opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
@media (max-width:640px){ .cta-stick{ bottom:10px; } .cta-stick .btn{ padding:.6rem .9rem; } }
@media (prefers-reduced-motion: reduce){ .cta-stick{ transition:none; } }
/* Lightbox */
.lb-box{position:fixed;inset:0;background:rgba(0,0,0,.74);display:grid;place-items:center;opacity:0;pointer-events:none;transition:opacity .2s ease;z-index:3000}
.lb-box.in{opacity:1;pointer-events:auto}
.lb-inner{max-width:min(92vw,1200px);max-height:90vh;display:grid;gap:.5rem}
.lb-img{width:100%;height:auto;max-height:80vh;object-fit:contain;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.5)}
.lb-cap{color:#fff;text-align:center;font-size:.9rem;opacity:.85}
/* ===== Announcement Bar (Top) – fix zentriert + Farben via Inline ===== */
.announce-bar{
  position: sticky;
  top: 0;
  z-index: 300;                 /* über der Nav */
  padding: .55rem 0;
  font-weight: 800;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--line);
}
.announce-inner{
  max-width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;          /* wirklich zentriert */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (prefers-reduced-motion:no-preference){
  .announce-bar { transition: background .2s ease, color .2s ease; }
}
