/* ==========================================================================
   CSEH REIFENSERVICE – Stylesheet
   Basis: bisheriges Design (orange/warm, modern, clean) – verfeinert und um
   neue Seiten/Komponenten erweitert (Mehrseiten-Struktur, Sprachumschalter,
   CTA-Banner, Leistungen-Detailseite, lokale Landingpages).
   ========================================================================== */

/* ---- Schriften: selbst gehostet (Archivo + Inter) ----
   HINWEIS FÜR DIE UMSETZUNG (siehe UEBERGABE.md):
   Diese Build-Umgebung hatte keinen Internetzugriff, um die Schriftdateien
   herunterzuladen. Die @font-face-Regeln unten sind vorbereitet und zeigen
   auf /fonts/*.woff2 – die Dateien müssen vor Live-Gang dort abgelegt werden
   (z. B. via `npx fontsource install archivo inter` oder Download von
   Google Fonts). Bis dahin lädt ein <link> in base.html die Schriften
   weiterhin von Google Fonts (siehe Kommentar dort). */
@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 600 900;
    font-display: swap;
    src: url('/fonts/archivo-latin-var.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fonts/inter-latin-var.woff2') format('woff2');
}

:root {
    --orange: #e85d04;
    --orange-dark: #c94d00;
    --orange-soft: #fff4ec;
    --bg-dark: #faf9f7;
    --bg-card: #ffffff;
    --bg-card-light: #f4f2ee;
    --text-light: #191817;
    --text-muted: #6b6862;
    --border: #ebe8e2;
    --whatsapp: #25d366;
    --dark-accent: #1a1917;
    --shadow-sm: 0 1px 3px rgba(30,25,20,0.04), 0 1px 2px rgba(30,25,20,0.03);
    --shadow-md: 0 4px 16px rgba(30,25,20,0.06), 0 2px 6px rgba(30,25,20,0.04);
    --shadow-lg: 0 16px 48px rgba(30,25,20,0.10), 0 6px 16px rgba(30,25,20,0.05);
    --font-display: 'Archivo', 'Arial Black', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.65;
    letter-spacing: -0.01em;
    font-feature-settings: 'cv11', 'ss01';
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: -9999px; top: 0; background: var(--orange);
    color: #fff; padding: 0.7rem 1.2rem; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 249, 247, 0.9);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    z-index: 1000;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(235,232,226,0.7);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.logo img { height: 42px; width: auto; display: block; }
.nav-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--orange); }
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* SPRACHUMSCHALTER (Dropdown: Klick auf aktuelle Sprache klappt Menü mit den anderen auf) */
.lang-switch {
    position: relative;
    flex-shrink: 0;
}
.lang-switch-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-light);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.lang-switch-btn:hover { border-color: var(--orange); color: var(--orange); }
.lang-switch-caret { transition: transform 0.2s ease; flex-shrink: 0; }
.lang-switch.open .lang-switch-caret { transform: rotate(180deg); }
.lang-switch-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 92px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.4rem;
    z-index: 1010;
}
.lang-switch.open .lang-switch-menu { display: flex; }
.lang-switch-menu a {
    display: block;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.lang-switch-menu a[aria-current="true"] { background: var(--orange); color: #fff; }
.lang-switch-menu a:not([aria-current="true"]):hover { background: var(--bg-card-light); color: var(--text-light); }

/* HERO */
.hero {
    padding: 8rem 1.5rem 4rem;
    background: var(--bg-dark);
    position: relative;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-content { animation: fadeIn 0.8s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-soft);
    color: var(--orange-dark);
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(232,93,4,0.14);
}
.hero-tag::before {
    content: '';
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,93,4,0.18);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.6vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
    font-weight: 800;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
    font-size: 1.12rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    max-width: 500px;
    line-height: 1.7;
}
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    margin-bottom: 1.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-stars { color: var(--orange); font-size: 1.05rem; letter-spacing: 1px; }
.hero-rating-text { font-size: 0.88rem; color: var(--text-light); }
.hero-rating-text strong { font-weight: 700; }
.hero-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
    border-radius: 100px;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, background 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(232,93,4,0.28); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232,93,4,0.38); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1ea854; transform: translateY(-2px); }
.btn-outline { background: var(--bg-card); color: var(--text-light); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.hero-image { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); aspect-ratio: 4/3; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 107, 26, 0.2) 100%);
}

/* SECTIONS */
section { padding: 6.5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 850px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    color: var(--text-light);
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: 1rem;
    line-height: 1.05;
}
.section-header::before {
    content: ''; display: block; width: 44px; height: 3px;
    background: var(--orange); border-radius: 2px; margin: 0 auto 1.5rem;
}
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.02em; margin-bottom: 0.8rem; font-weight: 800; }
.section-desc { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

/* PAGE HEADER (Unterseiten ohne Hero) */
.page-hero { padding: 8rem 1.5rem 3.5rem; background: var(--bg-dark); text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 1.08rem; line-height: 1.7; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }

/* SERVICES (Startseite Teaser + Leistungen-Seite) */
.services { background: var(--bg-card-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.services-grid.compact { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.service-card {
    background: var(--bg-card); padding: 2.2rem 1.8rem; border-radius: 16px; border: 1px solid var(--border);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(232,93,4,0.35); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 58px; height: 58px; background: var(--orange-soft); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem;
    font-size: 1.7rem; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.7rem; font-weight: 700; letter-spacing: -0.02em; }
.service-card p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.65; }
.service-card .service-price { display: inline-block; margin-top: 0.9rem; font-weight: 700; color: var(--orange-dark); font-size: 0.92rem; }
.services-cta { text-align: center; margin-top: 2.5rem; }
.about-cta { margin-top: 1.8rem; }

/* LEISTUNGEN-DETAILSEITE: ausführliche Abschnitte */
.service-detail { background: var(--bg-dark); border-bottom: 1px solid var(--border); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail-inner { max-width: 850px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.service-detail-inner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.service-detail-inner p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1rem; }
.service-detail-price {
    display: inline-flex; align-items: center; gap: 0.5rem; background: var(--orange-soft); color: var(--orange-dark);
    padding: 0.5rem 1rem; border-radius: 100px; font-weight: 700; font-size: 0.95rem; margin-top: 0.5rem;
}

/* ABOUT / ÜBER MICH */
.about { background: var(--bg-dark); }
/* Utility: wenn eine Sektion ohne vorherigen Seiten-Header direkt unter der
   fixierten Menüleiste beginnt, braucht sie denselben Abstand nach oben wie
   .page-hero/.legal-header, sonst klebt ihr Inhalt an der Menüleiste. */
.page-top { padding-top: 8rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-image { border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.about-image.has-photo { aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-card {
    width: 100%; height: 100%; background: linear-gradient(150deg, #1f1f1f 0%, #2b2b2b 100%); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    padding: 2.5rem 2rem; gap: 0.4rem;
}
.about-card-logo-img { width: 96px; height: auto; margin-bottom: 1.2rem; opacity: 0.95; }
.about-card-name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.01em; }
.about-card-loc { color: #b8b8b8; font-size: 0.9rem; margin-bottom: 0.7rem; }
.about-card-stars { color: var(--orange); font-size: 1.5rem; letter-spacing: 3px; }
.about-card-rate { color: #d8d8d8; font-size: 0.9rem; font-weight: 600; }
.about-card-divider { width: 60px; height: 3px; background: var(--orange); border-radius: 2px; margin: 1.4rem 0; }
.about-card-facts { display: flex; gap: 1.8rem; }
.about-card-fact { display: flex; flex-direction: column; align-items: center; max-width: 130px; }
.about-card-num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--orange); line-height: 1; margin-bottom: 0.4rem; }
.about-card-label { font-size: 0.82rem; color: #c4c4c4; line-height: 1.35; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.2rem; font-weight: 700; }
.about-text h2 .accent { color: var(--orange); }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1rem; }
.about-features { list-style: none; margin-top: 1.8rem; }
.about-features li { padding: 0.7rem 0; display: flex; align-items: center; gap: 0.8rem; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.about-features li:last-child { border-bottom: none; }
.check-icon {
    width: 22px; height: 22px; background: var(--orange); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; color: #fff; font-weight: 700; flex-shrink: 0; font-size: 0.75rem;
}

/* SO LÄUFT'S AB */
.steps { background: var(--bg-dark); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem 1.8rem 1.8rem; position: relative; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
.step-num {
    position: absolute; top: -1.4rem; left: 1.8rem; width: 2.8rem; height: 2.8rem; background: var(--orange); color: #fff;
    font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(232,93,4,0.3);
}
.step-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-card p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.6; }

/* PREISE */
.prices { background: var(--bg-card-light); }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.price-card { background: var(--bg-card); padding: 2.3rem 1.6rem; border-radius: 16px; border: 1px solid var(--border); text-align: center; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease; box-shadow: var(--shadow-sm); }
.price-card:hover { transform: translateY(-6px); border-color: rgba(232,93,4,0.35); box-shadow: var(--shadow-lg); }
.price-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 600; }
.price-amount { font-family: var(--font-display); font-size: 2.3rem; color: var(--orange); margin: 1rem 0; font-weight: 800; letter-spacing: -0.03em; }
.price-amount small { font-size: 0.85rem; color: var(--text-muted); display: block; font-weight: 400; }
.price-list { list-style: none; text-align: left; margin: 1.2rem 0; }
.price-list li { padding: 0.4rem 0; color: var(--text-muted); font-size: 0.9rem; }
.price-list li::before { content: '✓ '; color: var(--orange); font-weight: 700; }
.price-note { text-align: center; margin-top: 2rem; color: var(--text-muted); font-size: 0.88rem; }
.price-info-box {
    margin-top: 2.5rem; max-width: 900px; margin-left: auto; margin-right: auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.price-info-item { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.5rem; font-size: 0.92rem; line-height: 1.5; color: var(--text-light); }
.price-info-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.price-info-item strong { color: var(--text-light); display: inline-block; margin-bottom: 0.1rem; }

/* BEWERTUNGEN */
.reviews { background: var(--bg-card-light); }
.reviews-carousel { max-width: 620px; margin: 0 auto; }
.reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 4px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track .review-single { flex: 0 0 100%; width: 100%; scroll-snap-align: center; scroll-snap-stop: always; }
.reviews-dots { display: flex; justify-content: center; align-items: center; gap: 0.6rem; margin-top: 1.6rem; }
.reviews-dot {
    width: 9px; height: 9px; border-radius: 50%; background: var(--border); border: none; padding: 0;
    cursor: pointer; transition: background 0.3s ease, transform 0.3s ease;
}
.reviews-dot:hover { background: var(--orange-soft); }
.reviews-dot.active { background: var(--orange); transform: scale(1.4); }
.review-single {
    background: var(--bg-card); padding: 2.3rem 1.8rem 1.8rem; border-radius: 16px; border: 1px solid var(--border);
    text-align: center; position: relative; box-shadow: var(--shadow-sm);
}
.review-single::before {
    content: '"'; position: absolute; top: -18px; left: 26px; font-size: 5rem; color: var(--orange);
    font-family: Georgia, serif; line-height: 1; opacity: 0.4;
}
.stars { color: var(--orange); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 3px; }
.review-text { color: var(--text-light); font-style: italic; margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.65; }
.review-author { display: flex; align-items: center; justify-content: center; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.review-name { font-weight: 600; font-size: 0.92rem; text-align: left; }
.review-meta { color: var(--text-muted); font-size: 0.8rem; text-align: left; }
.review-cta { text-align: center; margin-top: 2rem; }
.review-disclaimer { text-align: center; margin-top: 1.5rem; color: var(--text-muted); font-size: 0.78rem; font-style: italic; max-width: 700px; margin-left: auto; margin-right: auto; }

/* GALERIE */
.gallery { background: var(--bg-dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; max-width: 1000px; margin: 0 auto; }
.gallery-item { aspect-ratio: 1; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.3s; }
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(232, 93, 4, 0.15); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { width: 100%; height: 100%; background: var(--bg-card-light); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.9rem; }
.gallery-icon { font-size: 2.5rem; opacity: 0.6; }
.gallery-social { text-align: center; margin-top: 2.5rem; }
.gallery-social-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.gallery-social-buttons { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.gallery-social-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.4rem; border-radius: 8px; font-size: 0.92rem; font-weight: 600; text-decoration: none; transition: all 0.25s; color: #fff; }
.gallery-social-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.gallery-social-fb { background: #1877f2; }
.gallery-social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }

/* FAQ */
.faq { background: var(--bg-card-light); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { background: var(--bg-card); border-radius: 14px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease, border-color 0.3s ease; overflow: hidden; }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item[open] { border-color: var(--orange); box-shadow: 0 4px 15px rgba(232, 93, 4, 0.1); }
.faq-item summary { padding: 1.2rem 1.5rem; font-weight: 600; font-size: 1rem; color: var(--text-light); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; user-select: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--orange); font-weight: 700; transition: transform 0.3s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.3rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* TEILEN */
.share-section { max-width: 700px; margin: 3rem auto 0; text-align: center; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.share-title { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1rem; }
.share-buttons { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.65rem 1.2rem; border-radius: 6px; font-size: 0.88rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.share-whatsapp { background: var(--whatsapp); color: #fff; }
.share-whatsapp:hover { background: #1ea854; transform: translateY(-2px); }
.share-facebook { background: #1877f2; color: #fff; }
.share-facebook:hover { background: #145bb8; transform: translateY(-2px); }
.share-copy { background: var(--bg-card-light); color: var(--text-light); border: 1px solid var(--border); }
.share-copy:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }

/* KONTAKT */
.contact { background: var(--bg-card-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.contact-info { background: var(--bg-card); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.contact-item { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 42px; height: 42px; background: rgba(232, 93, 4, 0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.2rem; flex-shrink: 0; }
.contact-details h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.3rem; font-weight: 600; }
.contact-details p, .contact-details a { color: var(--text-muted); text-decoration: none; font-size: 0.92rem; }
.contact-details a:hover { color: var(--orange); }
.map-wrapper { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); min-height: 450px; position: relative; }
.map-wrapper iframe { width: 100%; height: 100%; min-height: 450px; border: none; }
.map-placeholder { width: 100%; height: 100%; min-height: 450px; background: var(--bg-card-light); display: flex; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.map-placeholder-content { max-width: 350px; }
.map-placeholder-icon { font-size: 3rem; margin-bottom: 1rem; }
.map-placeholder h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-light); margin-bottom: 0.7rem; }
.map-placeholder p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.2rem; }
.map-placeholder-info { margin-top: 1.2rem; font-size: 0.85rem !important; font-weight: 600; color: var(--text-light) !important; }

/* LOKALE LANDINGPAGES */
.local-intro { background: var(--bg-dark); }
.local-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.local-fact-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.local-fact-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.98rem; color: var(--text-muted); }
.local-fact-list li strong { color: var(--text-light); }
.local-map-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-sm); }

/* CTA-BANNER */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 100%); padding: 3.5rem 1.5rem; text-align: center; }
.cta-banner-inner { max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.2rem); color: #fff; margin-bottom: 0.8rem; font-weight: 800; letter-spacing: -0.02em; }
.cta-banner p { color: rgba(255,255,255,0.95); margin-bottom: 1.8rem; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--dark-accent); color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
.cta-banner .btn-primary:hover { background: #000; }

/* FOOTER */
footer { background: var(--dark-accent); color: #d0d0d0; padding: 3rem 1.5rem 1.5rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 1rem; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }
.footer-col p, .footer-col a { color: #b0b0b0; font-size: 0.88rem; text-decoration: none; display: block; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--orange); }
.footer-logo img { height: 38px; width: auto; margin-bottom: 0.8rem; }
.footer-contact-quick { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact-link { color: #d0d0d0 !important; font-size: 0.9rem; margin: 0 !important; transition: color 0.3s; }
.footer-contact-link:hover { color: var(--orange) !important; }
.footer-rechtliches { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.footer-rechtliches a { color: #b0b0b0 !important; font-size: 0.85rem; margin: 0 !important; }
.footer-rechtliches a:hover { color: var(--orange) !important; }
.footer-rechtliches span { color: #555; }
.footer-local-links { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.4rem; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; color: #909090; font-size: 0.82rem; }
.social-grid { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.2rem; }
.social-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.9rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; text-decoration: none !important; color: #fff !important; margin: 0 !important; transition: transform 0.2s, box-shadow 0.2s; }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-facebook { background: #1877f2; }

/* WHATSAPP / TELEFON FLOAT */
.whatsapp-float, .phone-float {
    position: fixed; right: 20px; width: 55px; height: 55px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; text-decoration: none;
    z-index: 999; transition: transform 0.25s;
}
.whatsapp-float { bottom: 20px; background: var(--whatsapp); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
.phone-float { bottom: 90px; background: var(--orange); box-shadow: 0 4px 15px rgba(232, 93, 4, 0.4); }
.whatsapp-float:hover, .phone-float:hover { transform: scale(1.08); }

/* SAISON-BANNER */
.season-banner {
    color: #fff; text-align: center; padding: 0.85rem 1rem; font-weight: 600; font-size: 0.95rem;
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001; animation: slideDown 0.6s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.season-summer { background: linear-gradient(135deg, #e85d04 0%, #ff8c42 100%); }
.season-winter { background: linear-gradient(135deg, #1e6091 0%, #4a90c2 100%); }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.season-banner .season-icon { font-size: 1.1rem; margin-right: 0.4rem; display: inline-block; }
.season-banner a { color: #fff; text-decoration: underline; font-weight: 800; margin-left: 0.4rem; white-space: nowrap; }
.season-banner a:hover { opacity: 0.85; }
/* Höhe des Saison-Banners wird per JS exakt gemessen und in --banner-h
   geschrieben (main.js) – kein geratener Fixwert mehr, dadurch nie eine
   Lücke oder Überlappung zwischen Banner und Menüleiste, unabhängig von
   Textlänge/Zeilenumbruch/Bildschirmbreite. */
body.has-banner nav { top: var(--banner-h, 0px); }
body.has-banner { padding-top: var(--banner-h, 0px); }
@media (max-width: 600px) {
    .season-banner { font-size: 0.8rem; padding: 0.65rem 0.6rem; line-height: 1.3; }
}

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1f1f1f; color: #fff; padding: 1.3rem 1.5rem; z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); display: none; }
.cookie-banner.show { display: block; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: space-between; }
.cookie-text { flex: 1; min-width: 260px; font-size: 0.9rem; line-height: 1.5; }
.cookie-text strong { display: block; font-size: 1rem; margin-bottom: 0.3rem; color: var(--orange); }
.cookie-text a { color: var(--orange); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-btn { padding: 0.65rem 1.3rem; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 0.88rem; font-family: inherit; transition: all 0.2s; }
.cookie-btn-accept { background: var(--orange); color: #fff; }
.cookie-btn-accept:hover { background: var(--orange-dark); }
.cookie-btn-decline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.cookie-btn-decline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
@media (max-width: 600px) {
    .cookie-content { flex-direction: column; align-items: stretch; }
    .cookie-buttons { justify-content: center; }
    .cookie-btn { flex: 1; }
}

/* RECHTS-SEITEN (Impressum/Datenschutz) */
.legal-header { background: var(--bg-card); padding: 8rem 1.5rem 3rem; text-align: center; border-bottom: 1px solid var(--border); }
.legal-header .tag { display: inline-block; background: var(--orange-soft); color: var(--orange-dark); padding: 0.4rem 1rem; border-radius: 4px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.legal-header h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); color: var(--text-light); font-weight: 800; }
.legal-header .subtitle { color: var(--text-muted); margin-top: 0.8rem; font-size: 1rem; }
.legal-wrapper { max-width: 850px; margin: -2rem auto 4rem; padding: 0 1.5rem; position: relative; }
.legal-card { background: var(--bg-card); border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--border); padding: 3rem 2.5rem; }
.legal-toc { background: var(--bg-card-light); padding: 1.5rem 1.8rem; border-radius: 8px; margin-bottom: 2.5rem; border-left: 4px solid var(--orange); }
.legal-toc h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-light); margin-bottom: 0.8rem; font-weight: 700; }
.legal-toc ol { list-style: none; counter-reset: toc; columns: 2; column-gap: 2rem; }
.legal-toc ol li { counter-increment: toc; margin-bottom: 0.4rem; font-size: 0.92rem; break-inside: avoid; }
.legal-toc ol li::before { content: counter(toc) ". "; color: var(--orange); font-weight: 700; margin-right: 0.3rem; }
.legal-toc a { color: var(--text-light); text-decoration: none; }
.legal-toc a:hover { color: var(--orange); text-decoration: underline; }
.legal-section { padding: 1.7rem 0; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; padding-bottom: 0; }
.legal-section:first-of-type { padding-top: 0; }
.legal-section h2 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 1rem; color: var(--text-light); font-weight: 700; display: flex; align-items: center; gap: 0.7rem; }
.legal-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--orange); color: #fff; border-radius: 6px; font-size: 0.95rem; font-weight: 700; flex-shrink: 0; }
.legal-section h3 { font-family: var(--font-body); font-size: 1.05rem; color: var(--text-light); margin: 1.4rem 0 0.6rem; font-weight: 600; }
.legal-section h4 { font-family: var(--font-body); font-size: 0.98rem; color: var(--text-light); margin: 1rem 0 0.5rem; font-weight: 600; }
.legal-section p { color: var(--text-muted); margin-bottom: 0.9rem; font-size: 0.98rem; line-height: 1.7; }
.legal-section ul { margin: 0.8rem 0 1rem 1.5rem; }
.legal-section ul li { color: var(--text-muted); margin-bottom: 0.4rem; line-height: 1.6; }
.legal-section ul li::marker { color: var(--orange); }
.legal-section strong { color: var(--text-light); font-weight: 600; }
.legal-section a { color: var(--orange); text-decoration: none; font-weight: 500; word-break: break-word; }
.legal-section a:hover { text-decoration: underline; color: var(--orange-dark); }
.legal-info-card { background: var(--bg-card-light); padding: 1.3rem 1.5rem; border-radius: 8px; border-left: 4px solid var(--orange); margin: 1rem 0; }
.legal-info-card p { margin-bottom: 0.4rem; }
.legal-info-card p:last-child { margin-bottom: 0; }
.legal-contact-grid { display: grid; grid-template-columns: 140px 1fr; gap: 0.6rem 1rem; margin-top: 0.5rem; }
.legal-contact-grid .label { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.legal-contact-grid .value { color: var(--text-light); font-size: 0.95rem; }
.legal-uppercase-block { background: #fff8f0; border: 1px solid #ffd9b3; padding: 1rem 1.3rem; border-radius: 8px; margin: 1rem 0; font-size: 0.88rem; color: #8a4500; line-height: 1.6; }
.legal-last-updated { margin-top: 2.5rem; padding: 1rem 1.3rem; background: var(--bg-card-light); border-radius: 8px; color: var(--text-muted); font-size: 0.9rem; text-align: center; }

@media (max-width: 768px) {
    .legal-card { padding: 2rem 1.3rem; }
    .legal-toc ol { columns: 1; }
    .legal-contact-grid { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container, .about-grid, .contact-grid, .local-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-image { aspect-ratio: 16/10; }
    .about-image { aspect-ratio: 16/10; max-height: 400px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card);
        flex-direction: column; padding: 1.5rem; gap: 1.2rem; border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    section { padding: 3.5rem 1.2rem; }
    .hero { padding: 7rem 1.2rem 3rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
    .legal-header, .page-hero, .page-top { padding-top: 7rem; }
}
