/* ============================================================
   Kondor Gewerbepark · Website
   Design-System nach Entwurf (Mai 2026) — kompakt & fotogetragen
   ============================================================ */

:root {
    --red: #BE1622;
    --red-bright: #D5121E;
    --red-dark: #8B0E1A;
    --black: #0D0D0D;
    --dark: #141414;
    --dark-2: #1C1C1C;
    --dark-card: rgba(22, 22, 22, 0.66);
    --dark-border: rgba(255, 255, 255, 0.12);
    --gray: #6B6B6B;
    --gray-light: #9A9A9A;
    --border: #E8E8E8;
    --bg-soft: #FAFAFA;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-sm: 9px;
    --maxw: 1150px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-feature-settings: 'cv11', 'ss01';
    color: var(--black);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Exakter Überstand vom Wrap-Inhalt bis zum Viewport-Rand */
:root { --bleed: calc(-1 * ((100vw - min(100vw, var(--maxw))) / 2 + 26px)); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 26px;
}

/* ---------- Typo-Bausteine ---------- */

.kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 14px;
}

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; }

.h-display {
    font-size: clamp(34px, 4.2vw, 50px);
    font-weight: 700;
}

.h-section {
    font-size: clamp(24px, 2.6vw, 31px);
    font-weight: 700;
}

.accent { color: var(--red-bright); }

.lead {
    font-size: 14.5px;
    color: var(--gray);
    max-width: 54ch;
}

.on-dark .lead, .on-dark p { color: rgba(255, 255, 255, 0.72); }

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .18s ease;
    white-space: nowrap;
}

.btn .ms { font-size: 17px; }

.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.25);
}
.btn-outline-dark:hover { border-color: var(--black); }

.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: #f0f0f0; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--red);
}
.link-arrow:hover { gap: 13px; }
.link-arrow .ms { font-size: 17px; transition: transform .15s; }

/* ---------- Material Symbols ---------- */

.ms {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   Header / Navigation
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    gap: 20px;
}

.brand img { height: 46px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: #2c2c2c;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: color .15s;
}

.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); border-bottom-color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 18px; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
}

@media (max-width: 1080px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 20px 26px 28px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 40px rgba(0,0,0,.08);
        align-items: flex-start;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .nav-cta .btn { display: none; }
}

/* ============================================================
   Hero (dunkel, Bild rechts full-bleed)
   ============================================================ */

.hero {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    align-items: stretch;
    min-height: 540px;
}

.hero-copy {
    padding: 56px 48px 46px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-copy .h-display { margin-bottom: 18px; }

.hero-copy .lead { color: rgba(255, 255, 255, 0.74); margin-bottom: 26px; font-size: 14px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

/* Bild läuft bis an den rechten Viewport-Rand */
.hero-media {
    position: relative;
    margin-right: var(--bleed);
}

.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, rgba(13,13,13,0) 16%);
}

/* Info-Leiste unten auf dem Bild */
.hero-card {
    position: absolute;
    bottom: 26px;
    left: 11%;
    right: 26px;
    z-index: 2;
    background: rgba(13, 13, 13, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.hero-card .claim { font-weight: 600; font-size: 13.5px; line-height: 1.4; }

.hero-card .facts { display: flex; gap: 26px; }
.hero-card .fact { display: flex; align-items: center; gap: 9px; }
.hero-card .fact .ms { color: var(--red-bright); font-size: 19px; }
.hero-card .fact b { font-size: 18px; font-weight: 700; line-height: 1.1; }
.hero-card .fact b small { font-size: 10px; font-weight: 600; letter-spacing: .06em; }
.hero-card .fact span { display: block; font-size: 10.5px; color: var(--gray-light); }

/* Werte-Leiste unter dem Hero-Text */
.value-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-row .val .ms {
    color: var(--red-bright);
    font-size: 21px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 9px;
    padding: 8px;
}

.value-row .val h4 { font-size: 12.5px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.value-row .val p { font-size: 11px; color: var(--gray-light); line-height: 1.45; }

@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-copy { padding: 48px 0 36px; }
    .hero-media { min-height: 320px; margin-left: var(--bleed); }
    .hero-card { left: 20px; right: 20px; bottom: 20px; flex-wrap: wrap; gap: 14px; }
    .value-row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Sektionen
   ============================================================ */

section { padding: 64px 0; }

.section-head { max-width: 660px; margin-bottom: 36px; }
.section-head .h-section { margin-bottom: 12px; }

.on-dark { background: var(--black); color: var(--white); }

/* ---------- Geschichte: Text links, Karten rechts ---------- */

.roots-grid {
    display: grid;
    grid-template-columns: minmax(0, 30%) minmax(0, 70%);
    gap: 44px;
    align-items: center;
}

.roots-grid .h-section { margin-bottom: 14px; }
.roots-grid .lead { font-size: 13.5px; margin-bottom: 18px; }

.timeline-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.t-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--dark);
    aspect-ratio: 3 / 4.3;
    color: var(--white);
}

.t-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(.35) contrast(1.02);
    transition: transform .35s ease;
}

.t-card:hover img { transform: scale(1.05); }

.t-card .t-label {
    position: absolute;
    inset: auto 0 0 0;
    padding: 46px 12px 12px;
    background: linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(13,13,13,.94) 62%);
}

.t-card .t-label b { display: block; font-size: 19px; font-weight: 700; margin-bottom: 3px; }
.t-card .t-label span { font-size: 10.5px; line-height: 1.35; color: rgba(255,255,255,.85); display: block; }

@media (max-width: 980px) {
    .roots-grid { grid-template-columns: 1fr; gap: 28px; }
    .timeline-cards { grid-template-columns: repeat(2, 1fr); }
    .t-card { aspect-ratio: 4 / 3; }
}

/* ---------- Feature-Grid mit Foto-Hintergrund (Was uns antreibt) ---------- */

.drive { position: relative; overflow: hidden; }

.drive::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--drive-photo) center/cover no-repeat;
    opacity: .42;
}
.drive::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black) 26%, rgba(13,13,13,.42) 70%, rgba(13,13,13,.55) 100%);
}

.drive .wrap { position: relative; z-index: 2; }

.split-dark {
    display: grid;
    grid-template-columns: minmax(0, 30%) minmax(0, 70%);
    gap: 44px;
    align-items: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.f-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 20px 18px;
    backdrop-filter: blur(7px);
}

.f-card .ms { color: var(--red-bright); font-size: 22px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; padding: 8px; }
.f-card h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.f-card p { font-size: 11.5px; color: rgba(255,255,255,.62); line-height: 1.5; }

@media (max-width: 980px) {
    .split-dark { grid-template-columns: 1fr; gap: 30px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Zitat / Personen-Sektion ---------- */

.quote-grid {
    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    gap: 48px;
    align-items: center;
}

.quote-block .qmark {
    font-size: 64px;
    line-height: .6;
    color: var(--red);
    font-weight: 800;
    display: block;
    margin: 18px 0 10px;
    font-family: Georgia, serif;
}

.quote-block blockquote {
    font-size: 14px;
    color: #3a3a3a;
    margin: 0 0 22px;
    max-width: 46ch;
}

.quote-block .sig { font-family: 'Caveat', cursive; font-size: 30px; color: #222; margin-bottom: 6px; }
.quote-block .who b { display: block; font-size: 13.5px; }
.quote-block .who span { font-size: 12px; color: var(--gray); }

.quote-media {
    position: relative;
    margin-right: var(--bleed);
    min-height: 430px;
}

.quote-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    right: 32px;
    bottom: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
    padding: 22px 24px;
    max-width: 270px;
    z-index: 2;
}

.quote-overlay h4 { font-size: 14.5px; margin-bottom: 6px; }
.quote-overlay p { font-size: 12px; color: var(--gray); margin-bottom: 14px; }
.quote-overlay .btn { padding: 10px 18px; font-size: 12.5px; }

@media (max-width: 980px) {
    .quote-grid { grid-template-columns: 1fr; }
    .quote-media { margin-left: var(--bleed); min-height: 340px; }
    .quote-overlay { right: 20px; bottom: 20px; }
}

/* ---------- Zahlen-Band + CTA ---------- */

.stats-band { padding: 0; position: relative; }

.stats-grid {
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
}

.stats-left {
    background: var(--black);
    color: var(--white);
    padding: 56px 48px 56px 0;
}

.stats-nums {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 30px;
    margin-top: 30px;
}

.stats-nums b {
    display: block;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 700;
    color: var(--red-bright);
    letter-spacing: -0.02em;
}

.stats-nums span { font-size: 11.5px; color: var(--gray-light); }

.stats-right {
    position: relative;
    background: var(--red);
    color: var(--white);
    padding: 56px 0 56px 48px;
    overflow: hidden;
}

.stats-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, var(--red) 42%, rgba(190,22,34,.55) 100%),
        var(--stats-photo, none) center/cover;
    z-index: 0;
}

.stats-right > * { position: relative; z-index: 1; }

.stats-right h3 { font-size: clamp(19px, 2vw, 24px); margin-bottom: 10px; }
.stats-right p { color: rgba(255,255,255,.85); max-width: 44ch; margin-bottom: 22px; font-size: 13.5px; }

/* Vollbreite Hintergründe der Bänder */
.band-bleed-left::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: calc(50% - 50vw);
    right: 52%;
    background: var(--black);
}
.band-bleed-right::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    right: calc(50% - 50vw);
    left: 48%;
    background: var(--red);
}

.stats-band .wrap { position: relative; z-index: 1; }

@media (max-width: 980px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stats-left { padding: 44px 0 36px; }
    .stats-right { padding: 36px 0 44px; }
    .band-bleed-left::before { right: calc(50% - 50vw); }
    .band-bleed-right::after { left: calc(50% - 50vw); top: auto; height: 0; }
    .stats-nums { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ============================================================
   Allgemeine Bausteine für Unterseiten
   ============================================================ */

/* Seiten-Hero (kompakt, dunkel) */
.page-hero {
    background: var(--black);
    color: var(--white);
    padding: 58px 0;
    position: relative;
    overflow: hidden;
}

.page-hero .h-display { max-width: 20ch; margin-bottom: 16px; font-size: clamp(28px, 3.6vw, 42px); }
.page-hero .lead { color: rgba(255,255,255,.72); }

.page-hero.with-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ph-img) center/cover;
    opacity: .3;
}
.page-hero.with-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,13,13,.94) 30%, rgba(13,13,13,.55) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }

/* Karten hell */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    transition: box-shadow .2s, transform .2s;
}

.card:hover { box-shadow: 0 14px 36px rgba(0,0,0,.08); transform: translateY(-2px); }

.card .ms {
    color: var(--red);
    font-size: 22px;
    margin-bottom: 12px;
    background: #FBEAEC;
    border-radius: 9px;
    padding: 9px;
}

.card h4 { font-size: 14.5px; margin-bottom: 7px; }
.card p { font-size: 12.5px; color: var(--gray); line-height: 1.55; }

@media (max-width: 980px) { .card-grid { grid-template-columns: 1fr; } }

/* Bild + Text Splits */
.media-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.media-split img { border-radius: var(--radius); width: 100%; object-fit: cover; }

.media-split.reverse > .ms-media { order: 2; }

@media (max-width: 980px) {
    .media-split { grid-template-columns: 1fr; gap: 28px; }
    .media-split.reverse > .ms-media { order: 0; }
}

/* Checkliste */
.checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 7px 0;
    font-size: 13.5px;
    color: #333;
}
.checklist .ms { color: var(--red); font-size: 18px; margin-top: 2px; }

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-grid a {
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: block;
    aspect-ratio: 16 / 10;
}

.gallery-grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.gallery-grid a:hover img { transform: scale(1.05); }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Logo-Wand (Mieter) */
.logo-wall {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.logo-wall .logo-tile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    aspect-ratio: 3 / 1.5;
}

.logo-wall img {
    max-height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(.2);
    transition: filter .2s;
}

.logo-wall .logo-tile:hover img { filter: none; }

@media (max-width: 980px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* Vertikale Timeline (Geschichte-Seite) */
.vtimeline { position: relative; max-width: 820px; }
.vtimeline::before {
    content: "";
    position: absolute;
    left: 7px; top: 6px; bottom: 6px;
    width: 2px;
    background: var(--border);
}

.vt-item { position: relative; padding: 0 0 38px 40px; }
.vt-item::before {
    content: "";
    position: absolute;
    left: 0; top: 5px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--red);
}

.vt-item .vt-year {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--red);
    margin-bottom: 4px;
    display: block;
}

.vt-item h3 { font-size: 17.5px; margin-bottom: 7px; }
.vt-item p { color: var(--gray); font-size: 13.5px; max-width: 64ch; }
.vt-item img { border-radius: var(--radius-sm); margin-top: 14px; max-width: 400px; }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: minmax(0,42%) minmax(0,58%); gap: 44px; }

.contact-info .row { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.contact-info .row .ms { color: var(--red); font-size: 21px; }
.contact-info .row b { display: block; font-size: 13.5px; }
.contact-info .row span, .contact-info .row a { font-size: 13.5px; color: var(--gray); }
.contact-info .row a:hover { color: var(--red); }

.map-frame {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

/* Formular (mailto-basiert) */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }

label.fld { display: block; font-size: 12px; font-weight: 600; margin-bottom: 5px; color: #333; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%;
    font-family: var(--font);
    font-size: 13.5px;
    padding: 11px 13px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--bg-soft);
    transition: border-color .15s;
}

input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); background: var(--white); }

@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* Flächen-Detail */
.offer {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
}

.offer .offer-media { position: relative; min-height: 320px; }
.offer .offer-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.offer .offer-body { padding: 32px 36px; }

.offer .tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 16px; }
.offer .tags span {
    font-size: 11.5px;
    font-weight: 600;
    background: #FBEAEC;
    color: var(--red-dark);
    border-radius: 999px;
    padding: 5px 12px;
}

@media (max-width: 980px) { .offer { grid-template-columns: 1fr; } }

/* Hinweis-Box */
.notice {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 12.5px;
    color: var(--gray);
}

/* Prose (Impressum, Datenschutz) */
.prose { max-width: 740px; }
.prose h2 { font-size: 21px; margin: 34px 0 12px; }
.prose h3 { font-size: 16px; margin: 24px 0 8px; }
.prose p, .prose li { font-size: 14px; color: #333; margin-bottom: 11px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose a { color: var(--red); }

/* ============================================================
   CTA-Band (rot)
   ============================================================ */

.cta-band {
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.cta-band h3 { font-size: clamp(19px, 2.2vw, 25px); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 52ch; font-size: 13.5px; }

/* ============================================================
   Footer (schlank, einzeilig)
   ============================================================ */

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 30px 0;
    font-size: 12.5px;
}

.footer-bar {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-bar .brand img { height: 44px; background: #fff; border-radius: 10px; padding: 6px 11px; }

.footer-bar .addr { color: var(--gray-light); line-height: 1.5; }
.footer-bar .addr b { color: #fff; font-weight: 600; display: block; }

.footer-bar .fcontact { display: flex; align-items: center; gap: 8px; color: var(--gray-light); }
.footer-bar .fcontact .ms { font-size: 16px; color: var(--red-bright); }
.footer-bar .fcontact a:hover { color: #fff; }

.footer-bar .spacer { flex: 1; }

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 12px;
}

.footer-meta a:hover { color: var(--gray-light); }
.footer-meta .legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* Dezenter Intern-Zugang */
.intern-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray) !important;
    font-size: 12px;
    opacity: .7;
}
.intern-link:hover { opacity: 1; color: var(--gray-light) !important; }
.intern-link .ms { font-size: 14px; }

@media (max-width: 800px) {
    .footer-bar { gap: 18px; }
}

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}
