/* ============================================================
   FRICKE Transporte GmbH — TCW-Engine v1.0
   Dark-Theme nach Tobias Frickes Wunsch
   Stand: 2026-05-13
   ============================================================ */

/* ===== Webfont: Yanone Kaffeesatz (lokal, DSGVO-konform) ===== */
@font-face {
    font-family: 'Yanone Kaffeesatz';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/yanone-kaffeesatz-v32-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Yanone Kaffeesatz';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/yanone-kaffeesatz-v32-latin-700.woff2') format('woff2');
}

/* ===== Variablen ===== */
:root {
    /* CI Fricke */
    --primary: #e41b12;
    --primary-dark: #b81610;
    --primary-darker: #8a1009;
    --accent: #ffe112;
    --accent-dark: #c9b00d;

    /* Dark-Theme Basis */
    --dark: #1a1a1a;
    --dark-elevated: #262626;
    --dark-elevated-2: #2f2f2f;
    --ink-on-dark: #f0f0f0;
    --muted-on-dark: #a0a0a0;
    --border-dark: #333333;

    /* Helle Kontrast-Inseln */
    --surface: #ffffff;
    --background: #f7f7f7;
    --ink: #1a1a1a;
    --muted: #5a5a5a;
    --border-light: #e5e5e5;

    /* Funktional */
    --success: #2f8a4f;
    --error: #c33;

    --radius: 6px;
    --radius-lg: 12px;
    --max-width: 1200px;
    --space: 16px;

    --font-heading: 'Yanone Kaffeesatz', 'Oswald', Impact, system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-card: 0 8px 24px rgba(0,0,0,.4);
    --shadow-card-light: 0 4px 16px rgba(0,0,0,.08);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink-on-dark);
    background: var(--dark);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 .4em;
    letter-spacing: .5px;
    text-transform: uppercase;
}
h1 { font-size: clamp(40px, 6.5vw, 64px); }
h2 { font-size: clamp(32px, 4.5vw, 48px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
img, video, picture { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
li { margin-bottom: .35em; }
strong, b { font-weight: 700; }

/* ===== Utilities ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-dark { background: var(--dark); color: var(--ink-on-dark); }
.section-light { background: var(--surface); color: var(--ink); }
.section-bg { background: var(--background); color: var(--ink); }
.section-light h1, .section-light h2, .section-light h3,
.section-bg h1, .section-bg h2, .section-bg h3 { color: var(--ink); }
.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}
.section-light .eyebrow, .section-bg .eyebrow { color: var(--primary); }
.text-center { text-align: center; }
.text-muted { color: var(--muted-on-dark); }
.section-light .text-muted, .section-bg .text-muted { color: var(--muted); }
.section-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background .2s, transform .15s;
    border: 0;
    cursor: pointer;
    font-size: 15px;
    font-family: var(--font-body);
}
.btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn::after { content: '\2192'; transition: transform .2s; }
.btn:hover::after { transform: translateX(3px); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 28px;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light {
    background: var(--accent);
    color: var(--dark);
}
.btn-light:hover { background: var(--accent-dark); color: var(--dark); }
.btn-ghost {
    background: transparent;
    color: var(--ink-on-dark);
    border: 2px solid var(--border-dark);
}
.btn-ghost:hover { background: var(--dark-elevated); color: var(--accent); }
.btn-ghost::after { content: ''; }

/* ===== HEADER (Sticky Tel-Bar) ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26,26,26,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 24px;
}
.site-header .brand {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}
.site-header .brand span { color: var(--primary); }
.site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.site-header .header-tel {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.site-header .header-tel:hover { color: var(--accent); }
.site-header .header-tel .tel-icon { color: var(--primary); font-size: 18px; }

@media (max-width: 640px) {
    .site-header .brand { font-size: 22px; }
    .site-header .header-tel-text { display: none; }
    .site-header .header-cta { display: none; }
}

/* ============================================================
   SEKTION 1: HERO
   ============================================================ */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/hero-team-lkw.webp');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,.85) 0%, rgba(26,26,26,.6) 60%, rgba(228,27,18,.4) 100%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; max-width: 1100px; }
.hero h1 {
    color: #fff;
    margin-bottom: 24px;
    max-width: 18ch;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .underline {
    color: var(--primary);
    position: relative;
    white-space: nowrap;
}
.hero .hero-sub {
    font-size: clamp(18px, 2vw, 22px);
    max-width: 60ch;
    color: rgba(255,255,255,.92);
    margin-bottom: 36px;
    line-height: 1.5;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    font-weight: 600;
}
.hero-trust li {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-trust .check {
    color: var(--accent);
    font-weight: 700;
}
.hero-tel-inline {
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 8px;
    font-size: 17px;
}
.hero-tel-inline:hover { color: var(--accent); }
.hero-tel-inline .tel-icon {
    background: var(--primary);
    color: #fff;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
}

@media (max-width: 768px) {
    .hero { min-height: 78vh; padding: 90px 0 60px; }
    .hero h1 { max-width: 100%; }
    .hero-trust { gap: 12px 20px; font-size: 14px; }
}

/* ============================================================
   SEKTION 2: PROBLEM
   ============================================================ */
.problem { background: var(--dark); }
.problem .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.problem-card {
    background: var(--dark-elevated);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--primary);
}
.problem-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
}
.problem-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}
.problem-card p {
    color: var(--muted-on-dark);
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}
.problem-lead {
    font-size: 19px;
    max-width: 70ch;
    margin: 0 auto;
    color: var(--ink-on-dark);
}

/* ============================================================
   SEKTION 3: LÖSUNG (Hell)
   ============================================================ */
.loesung { background: var(--surface); }
.loesung-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.loesung-grid img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-light);
}
.loesung-bullets {
    list-style: none;
    padding: 0;
    margin: 28px 0 32px;
}
.loesung-bullets li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    font-size: 17px;
}
.loesung-bullets li:last-child { border-bottom: 0; }
.loesung-bullets li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 12px;
    color: #fff;
    background: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

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

/* ============================================================
   SEKTION 4: LEISTUNGEN (Dark)
   ============================================================ */
.leistungen { background: var(--dark); }
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.leistung-card {
    background: var(--dark-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    transition: transform .25s, border-color .25s;
}
.leistung-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}
.leistung-card .leistung-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.leistung-card .leistung-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.leistung-card:hover .leistung-img img { transform: scale(1.05); }
.leistung-card .leistung-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.leistung-card .leistung-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -56px;
    margin-bottom: 16px;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
    position: relative;
    z-index: 2;
}
.leistung-card h3 {
    color: #fff;
    margin-bottom: 12px;
}
.leistung-card .leistung-text {
    color: var(--muted-on-dark);
    margin-bottom: 18px;
    font-size: 15px;
}
.leistung-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    font-size: 15px;
}
.leistung-card ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--ink-on-dark);
}
.leistung-card ul li::before {
    content: '\25CF';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 10px;
    top: 11px;
}
.leistung-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* B2B-Block */
.b2b-block {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--dark-elevated) 0%, var(--dark-elevated-2) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    border-left: 5px solid var(--primary);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}
.b2b-block .b2b-content {
    padding: 48px 48px;
}
.b2b-block .b2b-img {
    background-size: cover;
    background-position: center;
    min-height: 320px;
}
.b2b-block .eyebrow { color: var(--accent); }
.b2b-block h3 {
    color: #fff;
    font-size: clamp(26px, 3vw, 34px);
}
.b2b-block p { color: var(--muted-on-dark); margin-bottom: 20px; }
.b2b-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.b2b-block ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--ink-on-dark);
}
.b2b-block ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

@media (max-width: 900px) {
    .b2b-block { grid-template-columns: 1fr; }
    .b2b-block .b2b-img { min-height: 220px; order: -1; }
    .b2b-block .b2b-content { padding: 36px 28px; }
}

/* ============================================================
   SEKTION 5: VERTRAUEN (Hell)
   ============================================================ */
.vertrauen { background: var(--background); }
.zertifikate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 40px 0 56px;
}
.zertifikat-badge {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.zertifikat-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-light);
}
.zertifikat-badge .badge-mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
}
.zertifikat-badge h4 {
    margin: 0 0 6px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 18px;
    color: var(--ink);
}
.zertifikat-badge p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}
.zahlen-leiste {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
}
.zahlen-leiste .zahl {
    font-family: var(--font-heading);
    font-size: clamp(46px, 5vw, 64px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.zahlen-leiste .label {
    color: var(--muted-on-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   SEKTION 6: TEAM (Dark)
   ============================================================ */
.team { background: var(--dark); }
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.team-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.team .lead {
    font-size: 19px;
    color: var(--ink-on-dark);
    margin-bottom: 18px;
}
.team p {
    color: var(--muted-on-dark);
}
.team .signature {
    margin-top: 28px;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--accent);
}
.team .signature small {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-on-dark);
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 900px) {
    .team-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   SEKTION 7: SOCIAL PROOF (Hell)
   ============================================================ */
.social-proof { background: var(--surface); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--background);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--accent);
    display: flex;
    flex-direction: column;
}
.testimonial-card .stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.testimonial-card blockquote {
    margin: 0 0 20px;
    font-size: 17px;
    color: var(--ink);
    line-height: 1.5;
    quotes: "\201E" "\201C";
    font-style: italic;
}
.testimonial-card blockquote::before { content: open-quote; }
.testimonial-card blockquote::after { content: close-quote; }
.testimonial-card .author {
    font-weight: 700;
    color: var(--ink);
    margin-top: auto;
    font-size: 15px;
}
.testimonial-card .author small {
    display: block;
    font-weight: 400;
    color: var(--muted);
    margin-top: 2px;
    font-size: 13px;
}
.google-rating-strip {
    margin-top: 40px;
    text-align: center;
    background: var(--background);
    padding: 24px;
    border-radius: var(--radius-lg);
    color: var(--muted);
    font-size: 15px;
}
.google-rating-strip strong { color: var(--ink); }

/* ============================================================
   SEKTION 7b: KARRIERE (Dark mit Gelb-Akzent)
   ============================================================ */
.karriere {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.karriere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.karriere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.karriere .eyebrow { color: var(--accent); }
.karriere-bullets-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 28px 0 32px;
}
.karriere-bullets-wrap h4 {
    font-family: var(--font-heading);
    color: var(--accent);
    margin: 0 0 12px;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
}
.karriere-bullets-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.karriere-bullets-wrap ul li {
    padding: 7px 0 7px 22px;
    position: relative;
    color: var(--ink-on-dark);
    font-size: 15px;
}
.karriere-bullets-wrap ul li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}
.karriere-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4 / 3;
}
.karriere-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 900px) {
    .karriere-grid { grid-template-columns: 1fr; gap: 32px; }
    .karriere-bullets-wrap { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   SEKTION 8: FAQ (Hell)
   ============================================================ */
.faq { background: var(--background); }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-list details {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .2s;
}
.faq-list details[open] {
    box-shadow: var(--shadow-card-light);
    border-color: var(--primary);
}
.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 28px;
    font-weight: 700;
    color: var(--ink);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    color: var(--primary);
    font-size: 28px;
    font-weight: 400;
    transition: transform .2s;
    line-height: 1;
}
.faq-list details[open] summary::after {
    transform: rotate(45deg);
}
.faq-list .faq-answer {
    padding: 0 28px 24px;
    color: var(--muted);
    line-height: 1.7;
}
.faq-list .faq-answer p { margin: 0 0 10px; }
.faq-list .faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   SEKTION 9: KONTAKT (Dark, Formular auf Surface)
   ============================================================ */
.kontakt { background: var(--dark); }
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}
.kontakt-info {
    color: var(--ink-on-dark);
}
.kontakt-info h3 {
    color: #fff;
    margin-bottom: 12px;
}
.kontakt-info .info-row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-dark);
    align-items: flex-start;
}
.kontakt-info .info-row:last-child { border-bottom: 0; }
.kontakt-info .info-row .info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.kontakt-info .info-row .info-content {
    flex: 1;
}
.kontakt-info .info-row .info-label {
    color: var(--muted-on-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.kontakt-info .info-row .info-value {
    color: var(--ink-on-dark);
    font-weight: 600;
    font-size: 17px;
}
.kontakt-info .info-row .info-value a {
    color: var(--ink-on-dark);
}
.kontakt-info .info-row .info-value a:hover {
    color: var(--accent);
}
.kontakt-tel-cta {
    display: block;
    background: var(--primary);
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--radius);
    margin-top: 24px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background .2s;
}
.kontakt-tel-cta:hover { background: var(--primary-dark); color: #fff; }
.kontakt-tel-cta .nummer { font-size: 22px; display: block; font-family: var(--font-heading); margin-top: 4px; }

.kontakt-form-card {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.kontakt-form-card h3 {
    color: var(--ink);
    margin-bottom: 8px;
}
.kontakt-form-card .form-intro {
    color: var(--muted);
    margin-bottom: 24px;
    font-size: 15px;
}

@media (max-width: 900px) {
    .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
    .kontakt-form-card { padding: 28px 24px; }
}

/* ===== Forms ===== */
form[data-form-name] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
form[data-form-name] label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
form[data-form-name] .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
form[data-form-name] input,
form[data-form-name] textarea,
form[data-form-name] select {
    padding: 13px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 15px;
    background: #fff;
    color: var(--ink);
    font-family: var(--font-body);
}
form[data-form-name] input:focus,
form[data-form-name] textarea:focus,
form[data-form-name] select:focus {
    outline: 2px solid var(--primary);
    outline-offset: -1px;
    border-color: var(--primary);
}
form[data-form-name] textarea { min-height: 120px; resize: vertical; }
form[data-form-name] .honeypot {
    position: absolute !important;
    left: -10000px;
    opacity: 0;
    pointer-events: none;
}
form[data-form-name] .checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.45;
}
form[data-form-name] .checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; }
form[data-form-name] .checkbox a { color: var(--primary); text-decoration: underline; }
.form-status {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
}
.form-status:empty { display: none; }
.form-status.success { background: #e8f7ec; color: #198754; border: 1px solid #b7e3c2; }
.form-status.error { background: #fde7e7; color: #b91c1c; border: 1px solid #f5b9b9; }

@media (max-width: 500px) {
    form[data-form-name] .form-row-2 { grid-template-columns: 1fr; }
}

/* ===== Maps (2-Klick) ===== */
.maps-wrap {
    margin-top: 32px;
    background: var(--dark-elevated);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
}
.maps-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: var(--ink-on-dark);
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}
.maps-placeholder .maps-icon { font-size: 32px; margin-bottom: 12px; color: var(--accent); }
.maps-placeholder p { margin: 0 0 16px; max-width: 40ch; font-size: 14px; color: var(--muted-on-dark); }
.maps-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   SEKTION 10: FOOTER
   ============================================================ */
.footer {
    background: #0d0d0d;
    color: var(--muted-on-dark);
    padding: 64px 0 24px;
    border-top: 1px solid var(--border-dark);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer .brand-block .brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.footer .brand-block .brand span { color: var(--primary); }
.footer .brand-block p { font-size: 14px; max-width: 36ch; }
.footer h4 {
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; font-size: 14px; }
.footer ul li a { color: var(--muted-on-dark); }
.footer ul li a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}
.footer-bottom .legal-links a { color: var(--muted-on-dark); margin-left: 16px; }
.footer-bottom .legal-links a:hover { color: var(--accent); }
.footer-fox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-on-dark);
}
.footer-fox a { color: var(--accent); font-weight: 600; }
.footer-fox img { height: 18px; width: auto; opacity: .9; }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-bottom .legal-links a { margin-left: 0; margin-right: 16px; }
}

/* ===== Cookie-Banner ===== */
#fox-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d0d0d;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -8px 32px rgba(0,0,0,.5);
    border-top: 3px solid var(--primary);
}
#fox-consent-banner .fox-consent-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
#fox-consent-banner .fox-consent-text { flex: 1; font-size: 14px; line-height: 1.55; min-width: 280px; }
#fox-consent-banner .fox-consent-text a { color: var(--accent); text-decoration: underline; }
#fox-consent-banner .fox-consent-actions { display: flex; gap: 10px; }
#fox-consent-banner button {
    padding: 12px 22px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
}
#fox-consent-banner button.primary {
    background: var(--primary);
    border-color: var(--primary);
}
#fox-consent-banner button:hover { background: rgba(255,255,255,.08); }
#fox-consent-banner button.primary:hover { background: var(--primary-dark); }

/* ===== Legal-Pages (Impressum, Datenschutz, 404) ===== */
body.legal-page,
body.error-page {
    background: var(--surface);
    color: var(--ink);
}
.legal-header {
    background: var(--dark);
    padding: 20px 0;
}
.legal-header .container { display: flex; align-items: center; justify-content: space-between; }
.legal-header a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.legal-header a span { color: var(--primary); }
.legal-header .legal-logo { display: inline-block; line-height: 0; }
.legal-header .legal-logo img { height: 44px; width: auto; }
main.legal {
    max-width: 820px;
    padding: 60px 24px 80px;
    color: var(--ink);
}
main.legal h1 { color: var(--ink); margin-bottom: 32px; }
main.legal h2 { color: var(--ink); margin-top: 40px; margin-bottom: 12px; font-size: 26px; }
main.legal p { color: var(--muted); }
main.legal a { color: var(--primary); }
main.legal ul { color: var(--muted); }
.error-page {
    text-align: center;
    padding: 120px 24px;
}
.error-page h1 {
    font-size: clamp(80px, 12vw, 140px);
    color: var(--primary);
    margin-bottom: 12px;
}
.error-page h2 { color: var(--ink); }

/* ===== Responsive Finetuning ===== */
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .container { padding: 0 20px; }
    .section-head { margin-bottom: 36px; }
}
