/* ============================================================
   Drei · Sechs · Neun — Eventlocation
   Design: Elegant Gold & Black
   ============================================================ */

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

:root {
    /* Gold-Palette (aus dem Logo) */
    --gold:           #C9A84C;
    --gold-light:     #E8C97A;
    --gold-dark:      #8A6B1A;
    --gold-subtle:    rgba(201, 168, 76, 0.12);
    --gold-border:    rgba(201, 168, 76, 0.30);
    --gold-glow:      rgba(201, 168, 76, 0.18);

    /* Dunkle Hintergründe */
    --dark:           #0D0C09;
    --dark-2:         #151310;
    --dark-3:         #1E1C14;
    --dark-4:         #272519;
    --dark-5:         #302E21;

    /* Text */
    --text:           #F0EDE4;
    --text-2:         #C8C0A8;
    --text-3:         #7A7464;

    /* Borders & UI */
    --border:         rgba(201, 168, 76, 0.22);
    --border-subtle:  rgba(255, 255, 255, 0.06);
    --radius:         8px;
    --radius-lg:      14px;
    --shadow:         0 4px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold:    0 4px 24px rgba(201, 168, 76, 0.20);
    --max-w:          1100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--dark);
    line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- NAVIGATION ---- */
.nav {
    background: rgba(13, 12, 9, 0.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 88px;
}

/* Logo als Bild */
.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-logo-img {
    height: 78px;
    width: auto;
    display: block;
    /* Weißer Hintergrund des PNGs auf dunkler Nav sichtbar machen */
    border-radius: 6px;
}
/* Fallback: Text wenn kein Logo-Bild */
.nav-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    line-height: 1.1;
}
.nav-logo-text span {
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-3);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
    flex: 1;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    padding: 7px 13px;
    border-radius: var(--radius);
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0.3px;
}
.nav-links a:hover {
    background: var(--gold-subtle);
    color: var(--gold-light);
}
.nav-links a.aktiv {
    color: var(--gold);
    background: var(--gold-subtle);
}

.nav-sprache {
    display: flex;
    gap: 4px;
    font-size: 12px;
}
.nav-sprache a {
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--text-3);
    border: 1px solid transparent;
    letter-spacing: 0.5px;
}
.nav-sprache a.aktiv {
    border-color: var(--border);
    color: var(--gold-light);
    font-weight: 500;
}
.nav-sprache a:hover {
    color: var(--gold);
}

.nav-anfrage {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 9px 20px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.4px;
    white-space: nowrap;
    transition: background 0.15s, box-shadow 0.15s !important;
}
.nav-anfrage:hover {
    background: var(--gold-light) !important;
    box-shadow: var(--shadow-gold) !important;
    color: var(--dark) !important;
}

/* Mobile Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    background: none;
    border: none;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.25s;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--text);
    padding: 100px 0 88px;
    text-align: center;
    /* CSS-Gradient-Fallback wenn kein Bild/Video vorhanden */
    background:
        radial-gradient(ellipse 70% 80% at 50% -5%,  rgba(201,168,76,0.20) 0%, transparent 65%),
        radial-gradient(ellipse 90% 60% at 50% 110%, rgba(201,168,76,0.08) 0%, transparent 70%),
        var(--dark-2);
}

/* Gold-Shimmer-Linien oben/unten */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
    opacity: 0.55;
    z-index: 4;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold-border) 50%, transparent 95%);
    z-index: 4;
}

/* --- Hintergrund-Layer --- */
.hero-bg {
    position: absolute;
    /* Vertikal überdimensioniert → Spielraum für Parallax (nach unten) */
    top: -15%;
    left: 0;
    right: 0;
    bottom: -15%;
    z-index: 0;
    will-change: transform;
}

/* Hintergrundbild: Ken Burns (langsamer Zoom + leichter Schwenk) */
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0%   { transform: scale(1.00) translate(  0%,   0%); }
    25%  { transform: scale(1.04) translate(-1.0%, -0.5%); }
    50%  { transform: scale(1.07) translate( 0.5%, -1.5%); }
    75%  { transform: scale(1.05) translate( 1.5%, -0.5%); }
    100% { transform: scale(1.03) translate(-0.5%,  1.0%); }
}

/* Video: füllt den Layer, kein Zoom nötig (Video hat eigene Bewegung) */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Dunkles Overlay mit Gold-Glow unten --- */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 60% 50% at 50% 20%, rgba(201,168,76,0.10) 0%, transparent 65%),
        linear-gradient(
            to bottom,
            rgba(13,12,9,0.50) 0%,
            rgba(13,12,9,0.62) 40%,
            rgba(13,12,9,0.80) 80%,
            rgba(13,12,9,0.88) 100%
        );
}

/* --- Inhalt liegt über allem --- */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-logo {
    margin: 0 auto 28px;
    max-width: 260px;
    filter: drop-shadow(0 8px 40px rgba(201,168,76,0.40));
    /* Sanftes Einblenden */
    animation: heroFadeUp 0.9s ease both;
}
.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.15;
    animation: heroFadeUp 0.9s ease 0.15s both;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
}
.hero p {
    font-size: 18px;
    color: var(--text-2);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: heroFadeUp 0.9s ease 0.28s both;
}
.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 0.9s ease 0.40s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
}
.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
    color: var(--dark);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold-border);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 15px;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    display: inline-block;
}
.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold-subtle);
    color: var(--gold-light);
}
/* Legacy alias */
.btn-weiss { background: var(--gold); color: var(--dark); padding: 14px 32px; border-radius: var(--radius); font-weight: 700; font-size: 15px; display: inline-block; transition: background 0.15s; }
.btn-weiss:hover { background: var(--gold-light); color: var(--dark); }

/* ---- SECTIONS ---- */
.section { padding: 72px 0; }
.section-grau { background: var(--dark-3); }

/* Gold-Ornament über Überschriften */
.section-titel {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    color: var(--text);
}
.section-untertitel {
    font-size: 15px;
    color: var(--text-3);
    margin-bottom: 48px;
    letter-spacing: 0.2px;
}

/* Richtext-Ausgabe (TinyMCE-Inhalte) */
.richtext { font-size: 15px; color: var(--text-2); line-height: 1.7; }
.richtext p { margin: 0 0 0.8em !important; }
.richtext p:last-child { margin-bottom: 0 !important; }
.richtext strong, .richtext b { color: var(--text); font-weight: 600; }
.richtext em, .richtext i { font-style: italic; }
.richtext ul, .richtext ol { padding-left: 1.6em !important; margin: 0 0 0.8em !important; }
.richtext ul { list-style: disc !important; }
.richtext ol { list-style: decimal !important; }
.richtext li { margin-bottom: 0.3em !important; padding: 0; }
.richtext a { color: var(--gold); }
.richtext a:hover { color: var(--gold-light); }
.richtext h2 { font-size: 18px; font-weight: 600; color: var(--text); margin: 24px 0 8px; }
.richtext h2:first-child { margin-top: 0; }

/* Gold-Trennlinie als Deko */
.section-titel::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 12px;
}

/* ---- OBJEKT-KARTEN ---- */
.objekt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.objekt-karte {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-3);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.objekt-karte:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
    border-color: var(--gold-border);
}
.objekt-karte-bild {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--dark-4);
}
.objekt-karte-bild-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-bottom: 1px solid var(--border-subtle);
}
.objekt-karte-body { padding: 22px; }
.objekt-karte-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}
.objekt-karte-body p  { font-size: 14px; color: var(--text-3); margin-bottom: 16px; line-height: 1.6; }
.objekt-preis { font-size: 13px; color: var(--text-3); margin-bottom: 14px; }
.objekt-preis strong { color: var(--gold); font-size: 16px; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.15s;
}
.btn-primary {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    font-weight: 600;
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}
.btn-secondary {
    background: transparent;
    color: var(--text-2);
    border-color: var(--border);
}
.btn-secondary:hover {
    background: var(--dark-4);
    color: var(--text);
    border-color: var(--gold-border);
}
.btn-lg { padding: 14px 28px; font-size: 16px; font-weight: 600; }
.btn-block { width: 100%; justify-content: center; }

/* ---- PREISTABELLE ---- */
.preis-tabelle {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 16px 0;
}
.preis-tabelle td {
    padding: 11px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-2);
}
.preis-tabelle td:last-child { text-align: right; font-weight: 500; color: var(--gold-light); }
.preis-tabelle tr:last-child td { border-bottom: none; }

/* ---- PAKETE ---- */
.pakete-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin: 16px 0; }
.paket-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 13px;
    background: var(--dark-3);
}
.paket-box strong { display: block; margin-bottom: 4px; color: var(--text); }
.paket-box span   { color: var(--text-3); }

/* ---- GALERIE ---- */
.galerie { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin: 20px 0; }
.galerie img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); cursor: pointer; transition: opacity 0.15s, box-shadow 0.15s; border: 1px solid var(--border-subtle); }
.galerie img:hover { opacity: 0.85; box-shadow: var(--shadow-gold); }

/* ---- ANFRAGEFORMULAR ---- */
.anfrage-wrap { max-width: 720px; margin: 0 auto; }
.fortschritt { display: flex; gap: 0; margin-bottom: 40px; }
.fortschritt-schritt {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: var(--text-3);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-subtle);
    transition: all 0.2s;
}
.fortschritt-schritt.aktiv {
    color: var(--gold);
    border-bottom-color: var(--gold);
    font-weight: 500;
}
.fortschritt-schritt.fertig {
    color: var(--text-3);
    border-bottom-color: var(--gold-dark);
}
.formular-schritt { display: none; }
.formular-schritt.aktiv { display: block; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 7px;
    color: var(--text-2);
    letter-spacing: 0.2px;
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text);
    background: var(--dark-3);
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
}
.form-control:focus {
    border-color: var(--gold);
    background: var(--dark-4);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-control::placeholder { color: var(--text-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* Verfügbarkeits-Anzeige */
.verfuegbar-ok {
    background: rgba(26, 80, 65, 0.35);
    color: #6FD9B8;
    border: 1px solid rgba(111,217,184,0.3);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 14px;
    margin-top: 8px;
}
.verfuegbar-nein {
    background: rgba(120, 30, 30, 0.35);
    color: #F59898;
    border: 1px solid rgba(245,152,152,0.3);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 14px;
    margin-top: 8px;
}
.verfuegbar-pruefe {
    background: rgba(100, 70, 10, 0.35);
    color: #E8C97A;
    border: 1px solid rgba(232,201,122,0.3);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 14px;
    margin-top: 8px;
}

/* Kostenvorschau */
.kosten-liste {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 16px 0;
    background: var(--dark-3);
}
.kosten-zeile {
    display: flex;
    justify-content: space-between;
    padding: 11px 16px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
    color: var(--text-2);
}
.kosten-zeile:last-child { border-bottom: none; }
.kosten-summe {
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
}
.kosten-kaution {
    background: rgba(100, 70, 10, 0.3);
    color: var(--gold-light);
    font-size: 13px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 12px;
}
.checkbox-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); }
.pakete-auswahl { display: flex; flex-direction: column; gap: 8px; }
.paket-option {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: var(--dark-3);
    color: var(--text-2);
}
.paket-option:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-subtle);
    color: var(--text);
}

/* ---- GETRÄNKEKARTE ---- */
.getraenke-kategorie { margin-bottom: 48px; }
.getraenke-kategorie h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    color: var(--gold);
    display: inline-block;
}
.getraenke-liste {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px;
}
.getraenk-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    font-size: 14px;
    background: var(--dark-3);
    transition: border-color 0.15s;
}
.getraenk-item:hover { border-color: var(--gold-border); }
.getraenk-info { display: flex; flex-direction: column; }
.getraenk-name  { font-weight: 500; color: var(--text); }
.getraenk-menge { font-size: 12px; color: var(--text-3); }
.getraenk-preis { font-weight: 600; color: var(--gold); white-space: nowrap; }

/* ---- FOOTER ---- */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 56px 0 28px;
}
.footer-logo {
    display: block;
    height: 64px;
    width: auto;
    margin-bottom: 16px;
    border-radius: 6px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--gold-light);
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
}
.footer p, .footer address {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.9;
    font-style: normal;
}
.footer a { font-size: 14px; color: var(--text-3); }
.footer a:hover { color: var(--gold-light); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-links li a { font-size: 14px; }
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-3);
    flex-wrap: wrap;
    gap: 8px;
    letter-spacing: 0.2px;
}
.footer-bottom a { color: var(--text-3); font-size: 12px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- ALERTS ---- */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; margin-bottom: 20px; }
.alert-erfolg {
    background: rgba(26, 80, 65, 0.35);
    color: #6FD9B8;
    border: 1px solid rgba(111,217,184,0.3);
}
.alert-fehler  {
    background: rgba(120, 30, 30, 0.35);
    color: #F59898;
    border: 1px solid rgba(245,152,152,0.3);
}

/* ---- HIGHLIGHT-KARTEN (Startseite) ---- */
.highlight-karte {
    background: var(--dark-3);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.highlight-karte:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-gold);
}
.highlight-karte .emoji { font-size: 38px; margin-bottom: 14px; display: block; }
.highlight-karte h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.highlight-karte p  { font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* ---- SELECT & TEXTAREA ---- */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* ---- OBJEKT-DETAIL-GRID (2 Spalten → 1 Spalte auf Mobile) ---- */
.objekt-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.objekt-detail-grid.objekt-detail-grid-stacked {
    grid-template-columns: 1fr;
    gap: 24px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .objekt-detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .nav-logo-img { height: 48px; }
    .hero { padding: 72px 0 60px; }
    .hero h1 { font-size: 34px; }
    .hero p   { font-size: 16px; }
    .hero-logo { max-width: 190px; margin-bottom: 20px; }
    /* Auf Mobile: Parallax deaktivieren (performance) */
    .hero-bg { top: 0; bottom: 0; }
    .hero-bg-img { animation-duration: 28s; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .objekt-grid { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
    .section-titel { font-size: 26px; }
}

/* Mobile Nav offen */
.nav-mobile {
    display: none;
    background: var(--dark-2);
    border-top: 1px solid var(--border-subtle);
    padding: 12px 0 16px;
}
.nav-mobile.offen { display: block; }
.nav-mobile ul { list-style: none; padding: 0 24px; }
.nav-mobile ul li a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-2);
    border-bottom: 1px solid var(--border-subtle);
}
.nav-mobile ul li:last-child a { border-bottom: none; }
.nav-mobile ul li a.aktiv { color: var(--gold); }
.nav-mobile-anfrage {
    display: block;
    margin: 14px 24px 0;
    padding: 12px;
    text-align: center;
    background: var(--gold);
    color: var(--dark) !important;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
}
