/* ==========================================================================
   IT-WOLF – Basis-Stylesheet
   Helles, ruhiges Grundlayout mit einer kräftigen Markenfarbe als Akzent.
   Seitenspezifisches liegt in assets/css/pages/.
   ========================================================================== */

:root {
    /* Neutrale Töne – leicht ins Blaue gezogen, damit sie zur Marke passen. */
    --ink:        #10222f;   /* Überschriften */
    --text:       #33485c;   /* Fließtext */
    --muted:      #6b7f92;   /* Sekundärtext */
    --line:       #e4ecf3;
    --line-soft:  #eff5fa;

    --bg:         #ffffff;
    --bg-soft:    #f5f9fc;
    --bg-tint:    #eaf3fa;

    /* Markenfarbe stammt aus dem Logo. */
    --brand:      #1f628e;
    --brand-dark: #17506f;
    --brand-mid:  #2f86bd;
    --brand-light:#7cc0e8;
    --accent:     #23c4dd;   /* nur dekorativ – für Text zu kontrastarm */

    --max:        1180px;
    --radius:     18px;
    --radius-sm:  12px;

    --shadow-sm:  0 1px 2px rgba(16,34,47,.05), 0 6px 16px rgba(16,34,47,.05);
    --shadow:     0 2px 6px rgba(16,34,47,.05), 0 16px 40px rgba(16,34,47,.08);
    --shadow-lg:  0 4px 10px rgba(16,34,47,.06), 0 28px 60px rgba(16,34,47,.13);

    /* Systemschriften: kein externer Request, damit die Seite schnell bleibt
       und keine IP-Adressen an fremde Server gehen (DSGVO). */
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
            'Helvetica Neue', Arial, sans-serif;
    --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.68;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    margin: 0 0 .5em;
    color: var(--ink);
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -.024em;
}

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

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

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

::selection { background: rgba(31,98,142,.16); }

/* --- Layout ---------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}
.container.narrow { max-width: 760px; }

.section { padding: 96px 0; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }

.section-eyebrow, .page-eyebrow {
    margin: 0 0 .6em;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-title { font-size: clamp(1.85rem, 3.7vw, 2.7rem); }
.section-lead  { color: var(--muted); font-size: 1.08rem; }

.section-more { margin-top: 44px; text-align: center; }

.link-arrow { font-weight: 600; }
.link-arrow::after { content: " →"; display: inline-block; transition: transform .18s ease; }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover::after { transform: translateX(4px); }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--ink); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Sichtbarer Fokus – wichtig fuer Tastaturbedienung. */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(31,98,142,.35);
    outline-offset: 2px;
}

/* --- Icons ----------------------------------------------------------------- */
.icon { width: 24px; height: 24px; display: block; }

/* --- Buttons --------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-size: .97rem;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease,
                border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn + .btn { margin-left: 12px; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 8px 22px rgba(31,98,142,.26);
}
.btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    box-shadow: 0 12px 28px rgba(31,98,142,.34);
}

.btn-outline { border-color: var(--line); color: var(--ink); background: var(--bg); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--bg-tint); }

/* Auf farbigem Grund (Abschluss-CTA). */
.btn-light { background: #fff; border-color: #fff; color: var(--brand); }
.btn-light:hover { background: var(--bg-tint); border-color: var(--bg-tint); color: var(--brand-dark); }

.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-ghost:hover { background: #fff; border-color: #fff; color: var(--brand); }

/* --- Header ---------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.82);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
}

.brand { display: flex; align-items: center; }
.brand-mark { width: 160px; height: auto; }

.nav-list {
    display: flex; align-items: center; gap: 2px;
    margin: 0; padding: 0; list-style: none;
}

.nav-link {
    display: block; position: relative;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text);
    font-size: .95rem; font-weight: 600;
    transition: color .18s ease, background-color .18s ease;
}
.nav-link:hover { color: var(--brand); background: var(--bg-tint); text-decoration: none; }
.nav-link.is-active { color: var(--brand); }

.nav-link::after {
    content: ""; position: absolute; left: 50%; right: 50%; bottom: 3px;
    height: 2px; border-radius: 2px; background: var(--brand);
    transition: left .22s ease, right .22s ease;
}
.nav-link.is-active::after { left: 14px; right: 14px; }

.nav-cta {
    display: block; margin-left: 10px; padding: 11px 22px;
    border-radius: var(--radius-sm);
    background: var(--brand); color: #fff;
    font-size: .93rem; font-weight: 600;
    transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav-cta:hover {
    background: var(--brand-dark); color: #fff; text-decoration: none;
    transform: translateY(-1px); box-shadow: 0 8px 18px rgba(31,98,142,.24);
}

.nav-toggle {
    display: none;
    width: 44px; height: 44px; padding: 10px;
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: #fff; cursor: pointer;
}
.nav-toggle span {
    display: block; height: 2px; margin: 4px 0;
    background: var(--ink); border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- Hero (hell) ----------------------------------------------------------- */
.hero {
    position: relative;
    padding: 84px 0 104px;
    overflow: hidden;
    background:
        radial-gradient(900px 460px at 78% 12%, rgba(35,196,221,.14), transparent 62%),
        radial-gradient(760px 420px at 12% 4%,  rgba(31,98,142,.13),  transparent 60%),
        linear-gradient(180deg, #f4fafd 0%, #ffffff 78%);
}

/* Optionales Hintergrundbild bleibt dezent im Hintergrund. */
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .1;
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(31,98,142,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,98,142,.055) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 12%, transparent 74%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 12%, transparent 74%);
}

.hero .container { position: relative; z-index: 2; }

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 56px;
}

.hero-inner { max-width: 620px; }

.hero-eyebrow {
    display: inline-block;
    margin: 0 0 22px;
    padding: 7px 16px;
    border: 1px solid rgba(31,98,142,.22);
    border-radius: 999px;
    background: rgba(31,98,142,.07);
    color: var(--brand);
    font-family: var(--mono);
    font-size: .78rem;
    letter-spacing: .06em;
}

.hero-title {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(2.5rem, 5.4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.hero-rotator {
    display: flex; flex-wrap: wrap; align-items: baseline; gap: .5ch;
    margin: 0 0 22px;
    font-size: clamp(1.05rem, 2.1vw, 1.38rem);
    color: var(--muted);
}

.rotator { position: relative; display: inline-block; }

.rotator-wort {
    display: inline-block;
    color: var(--brand);
    font-weight: 700;
    white-space: nowrap;
}

.rotator-wort.is-out { animation: rotator-raus .32s ease forwards; }
.rotator-wort.is-in  { animation: rotator-rein .38s ease backwards; }

@keyframes rotator-raus { to   { opacity: 0; transform: translateY(-.45em); filter: blur(2px); } }
@keyframes rotator-rein { from { opacity: 0; transform: translateY(.45em);  filter: blur(2px); } }

.hero-intro {
    margin: 0 0 34px;
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.7vw, 1.14rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn + .btn { margin-left: 0; }

.hero-scroll {
    position: absolute; left: 50%; bottom: 26px; z-index: 2;
    width: 24px; height: 38px; margin-left: -12px;
    border: 1.5px solid rgba(16,34,47,.18);
    border-radius: 14px;
}
.hero-scroll span {
    position: absolute; left: 50%; top: 8px;
    width: 3px; height: 7px; margin-left: -1.5px;
    border-radius: 2px; background: var(--brand);
    animation: scroll-tupfen 1.9s ease-in-out infinite;
}
@keyframes scroll-tupfen {
    0%, 100% { opacity: 0; transform: translateY(0); }
    30%      { opacity: 1; }
    70%      { opacity: 0; transform: translateY(13px); }
}

/* --- Einblenden beim Scrollen ---------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --- Seitenkopf (Unterseiten) ---------------------------------------------- */
.page-head {
    padding: 76px 0 46px;
    background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 100%);
}
.page-title { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: .35em; }
.page-lead { max-width: 680px; color: var(--muted); font-size: 1.1rem; }

/* --- Leistungen ------------------------------------------------------------ */
.section-services { background: var(--bg-soft); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

/* Die Karten stecken in einem Wrapper fuer die Einblend-Animation. Ohne
   diese beiden Regeln waere der Wrapper das Grid-Element und die Karte
   darin bliebe auf ihrer Inhaltshoehe - die Kacheln waeren ungleich hoch. */
.service-grid > .reveal { display: flex; }
.service-grid > .reveal > .service-card { width: 100%; }

.service-card {
    height: 100%;
    padding: 34px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31,98,142,.35);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; margin-bottom: 22px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(31,98,142,.12), rgba(35,196,221,.14));
    color: var(--brand);
    transition: transform .22s ease;
}
.service-card:hover .service-icon { transform: scale(1.06); }
.service-icon .icon { width: 26px; height: 26px; }

.service-title { font-size: 1.18rem; margin-bottom: .5em; }
.service-text { color: var(--muted); font-size: .97rem; margin: 0; }

/* --- Argumente ------------------------------------------------------------- */
.section-usp { background: var(--bg); }

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 34px;
}

.usp-item { text-align: center; }

.usp-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 62px; height: 62px; margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31,98,142,.11), rgba(35,196,221,.13));
    color: var(--brand);
}
.usp-icon .icon { width: 26px; height: 26px; }

.usp-title { font-size: 1.1rem; margin-bottom: .4em; }
.usp-text { color: var(--muted); font-size: .97rem; margin: 0; }

/* --- Pakete ---------------------------------------------------------------- */
.section-pricing { background: var(--bg-soft); }

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 38px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: var(--shadow-sm);
}

.price-card.is-featured {
    border-color: rgba(31,98,142,.4);
    box-shadow: var(--shadow-lg);
}

.price-badge {
    position: absolute; top: -12px; left: 32px;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
}

.price-name { font-size: 1.2rem; margin-bottom: .4em; }

.price-value { display: flex; align-items: baseline; flex-wrap: wrap; gap: .5ch; margin-bottom: .8em; }
.price-amount {
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    font-weight: 700; color: var(--ink); letter-spacing: -.03em;
}
.price-suffix { color: var(--muted); font-size: .93rem; }

.price-desc { color: var(--muted); font-size: .98rem; }

.price-list { margin: 6px 0 20px; padding: 0; list-style: none; }
.price-list li {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: .55em; font-size: .97rem;
}
.price-list .icon { width: 19px; height: 19px; flex-shrink: 0; margin-top: 4px; color: var(--brand); }

.price-note {
    margin: 0 0 22px; padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--muted); font-size: .89rem;
}

.price-card .btn { margin-top: auto; text-align: center; }

.price-footnote {
    max-width: 880px; margin: 30px auto 0;
    color: var(--muted); font-size: .88rem; text-align: center;
}

/* --- Partner --------------------------------------------------------------- */
.section-partner { background: var(--bg); }

/* Obergrenze je Spalte statt 1fr: eine einzelne Karte zieht sich damit nicht
   über die volle Breite, sondern steht mittig. */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 420px));
    justify-content: center;
    gap: 22px;
    max-width: 880px;
    margin: 0 auto;
}

.partner-card {
    display: flex; align-items: center; gap: 22px;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: var(--shadow-sm);
    color: inherit;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
a.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31,98,142,.35);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.partner-logo {
    display: flex; align-items: center; justify-content: center;
    width: 72px; height: 72px; flex-shrink: 0;
}
.partner-logo img { max-width: 100%; max-height: 72px; width: auto; }

.partner-body { display: flex; flex-direction: column; gap: 4px; }
.partner-name { font-weight: 700; color: var(--ink); }
.partner-text { color: var(--muted); font-size: .93rem; }
.partner-link { color: var(--brand); font-size: .89rem; font-weight: 600; }
.partner-link::after { content: " →"; }

/* --- Über-mich-Teaser ------------------------------------------------------ */
.section-about-teaser { background: var(--bg-tint); text-align: center; }

/* --- Abschluss-CTA --------------------------------------------------------- */
.section-cta {
    padding: 88px 0;
    background: linear-gradient(130deg, var(--brand-dark) 0%, var(--brand) 55%, var(--brand-mid) 100%);
    color: #fff;
    text-align: center;
}
.cta-title { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-text { max-width: 560px; margin: 0 auto 30px; color: rgba(255,255,255,.88); }

/* --- Fliesstext ------------------------------------------------------------ */
.prose h2 { margin-top: 1.8em; font-size: 1.35rem; }
.prose h3 { margin-top: 1.5em; font-size: 1.12rem; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose .note {
    padding: 16px 18px;
    border-left: 3px solid var(--brand);
    border-radius: var(--radius-sm);
    background: var(--bg-tint);
    color: var(--muted);
    font-size: .95rem;
}

.empty-note { color: var(--muted); text-align: center; }

/* --- 404-Seite: Goldi ------------------------------------------------------ */
.notfound-head { padding-top: 44px; text-align: center; }
.notfound-head .page-lead { margin-left: auto; margin-right: auto; }

.notfound-bild {
    max-width: 420px;
    margin: 0 auto 18px;
}
.notfound-bild svg { width: 100%; height: auto; }

/* Die Fragezeichen schweben leicht – das nimmt der Fehlerseite die Härte. */
.goldi-frage { animation: goldi-schweben 4.2s ease-in-out infinite; transform-origin: center; }
.goldi-frage--2 { animation-delay: -2.1s; animation-duration: 5.4s; }

@keyframes goldi-schweben {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}

/* --- Wegweiser auf der 404-Seite ------------------------------------------- */
.notfound-list { margin: 0; padding: 0; list-style: none; }

.notfound-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.notfound-list li:first-child { border-top: 1px solid var(--line); }

.notfound-list a { font-weight: 600; font-size: 1.05rem; }
.notfound-list span { display: block; margin-top: 2px; color: var(--muted); font-size: .95rem; }

/* --- Footer ---------------------------------------------------------------- */
.site-footer { background: #0f2233; color: rgba(255,255,255,.62); }

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    padding-top: 70px;
    padding-bottom: 46px;
}

.footer-mark { width: 180px; margin-bottom: 18px; }
.footer-text { color: rgba(255,255,255,.58); font-size: .95rem; max-width: 320px; }

.footer-head {
    margin-bottom: 1em; color: #fff;
    font-size: .8rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
}

.footer-list { margin: 0; padding: 0; list-style: none; font-size: .95rem; }
.footer-list li { margin-bottom: .55em; }
.footer-list a { color: rgba(255,255,255,.72); }
.footer-list a:hover { color: var(--brand-light); text-decoration: none; }

.footer-bottom {
    padding-top: 22px; padding-bottom: 30px;
    border-top: 1px solid rgba(255,255,255,.09);
    font-size: .88rem; color: rgba(255,255,255,.45);
}

/* --- Cookie-Hinweis -------------------------------------------------------- */
.cookie-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}
.cookie-banner[hidden] { display: none; }

.cookie-inner {
    display: flex; align-items: center; gap: 24px;
    padding-top: 18px; padding-bottom: 18px;
}
.cookie-text { margin: 0; color: var(--muted); font-size: .92rem; }
.cookie-accept { flex-shrink: 0; padding: 11px 24px; }

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 1000px) {
    .hero-layout { grid-template-columns: 1fr; gap: 44px; }
    .hero-inner { max-width: none; }
}

@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 780px) {
    .nav-toggle { display: block; }

    .primary-nav {
        position: absolute; left: 0; right: 0; top: 100%;
        display: none;
        padding: 12px 24px 20px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .primary-nav.is-open { display: block; }

    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-link { padding: 13px 0; border-radius: 0; }
    .nav-link::after { display: none; }
    .nav-cta { margin: 12px 0 0; text-align: center; }

    .hero { padding: 56px 0 76px; }
    .hero-scroll { display: none; }
    .section { padding: 64px 0; }
    .section-head { margin-bottom: 38px; }
    .page-head { padding: 52px 0 34px; }
    .partner-card { flex-direction: column; text-align: center; gap: 14px; }

    .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; }
    .btn { display: block; width: 100%; text-align: center; }
    .btn + .btn { margin-left: 0; margin-top: 10px; }
    .hero-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
    .btn:hover, .service-card:hover, a.partner-card:hover { transform: none; }

    /* Bewegte Elemente vollstaendig ruhigstellen - theme.js schaltet den
       Wortwechsel zusaetzlich ganz ab. */
    .hero-scroll { display: none; }
    .reveal { opacity: 1; transform: none; }
}
