/*
Theme Name: HDS Theme
Theme URI: https://hamburger-dj-service.de
Author: Cedric Kiesel
Description: Custom Theme für Hamburger DJ Service
Version: 1.0.0
*/

/* ── CSS VARIABLES ───────────────────────────────────────────── */
:root {
    --navy:      #08122A;
    --navy-mid:  #0F1E3D;
    --navy-light:#162645;
    --wine:      #6B0F1A;
    --wine-mid:  #8B1525;
    --gold:      #C8963E;
    --gold-l:    #E4B45A;
    --gold-pale: #F2D898;
    --td:        rgba(255,255,255,0.45);
    --tm:        rgba(255,255,255,0.75);
    --tf:        rgba(255,255,255,0.95);
    --border:    rgba(200,150,62,0.25);
    --border-s:  rgba(255,255,255,0.07);
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    background: var(--navy);
    color: var(--tf);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
}
a { color: inherit; }
img { max-width:100%; height:auto; display:block; }

/* ── HEADER / NAV ────────────────────────────────────────────── */
#site-nav {
    position: fixed; top:0; left:0; right:0; z-index:100;
    display: flex; align-items:center; justify-content:space-between;
    padding: 0 48px; height: 72px;
    background: rgba(8,18,42,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-s);
    transition: background 0.3s;
}
#site-nav.scrolled { background: rgba(8,18,42,0.97); }
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-logo-mark { width:36px; height:36px; border-radius:8px; background:var(--wine); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.nav-logo-mark svg { width:18px; height:18px; fill:var(--gold-l); }
.nav-brand-name { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:400; color:var(--tf); line-height:1.1; }
.nav-brand-tag { font-size:10px; letter-spacing:0.12em; text-transform:uppercase; color:var(--td); }
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a, .nav-links li a {
    color: var(--td); text-decoration:none;
    font-size:13px; letter-spacing:0.08em; text-transform:uppercase;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links li a:hover,
.nav-links .current-menu-item a { color: var(--gold); }
.nav-cta {
    padding:9px 22px; border-radius:100px;
    border:1px solid var(--border); background:transparent;
    color:var(--gold); font-size:12px; letter-spacing:0.08em;
    text-transform:uppercase; text-decoration:none; transition:all 0.3s;
}
.nav-cta:hover { background:var(--gold); color:var(--navy); border-color:var(--gold); }
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--td); border-radius:2px; transition:all 0.3s; }
.mobile-menu {
    display:none; position:fixed; top:72px; left:0; right:0;
    background:rgba(8,18,42,0.98); backdrop-filter:blur(16px);
    border-bottom:1px solid var(--border-s);
    padding:24px 24px 32px; z-index:99; flex-direction:column;
}
.mobile-menu.open { display:flex; }
.mobile-menu a { display:block; padding:14px 0; color:var(--tm); text-decoration:none; font-size:14px; letter-spacing:0.08em; text-transform:uppercase; border-bottom:1px solid var(--border-s); transition:color 0.2s; }
.mobile-menu a:hover { color:var(--gold); }
.mobile-menu a:last-child { border-bottom:none; }
.mobile-burger { display:none; }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
    margin-top:72px; height:320px;
    position:relative; display:flex;
    align-items:center; justify-content:center; overflow:hidden;
}
.page-hero-bg {
    position:absolute; inset:0;
    background-size:cover; background-position:center;
}
.page-hero-bg::after {
    content:''; position:absolute; inset:0;
    background:linear-gradient(to bottom, rgba(8,18,42,0.4) 0%, rgba(8,18,42,0.8) 100%);
}
.page-hero-content { position:relative; text-align:center; z-index:2; }
.page-hero-label {
    font-size:11px; letter-spacing:0.2em; text-transform:uppercase;
    color:var(--gold); margin-bottom:16px;
}
.page-hero h1 {
    font-family:'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight:300; color:var(--tf); line-height:1;
}
.page-hero h1 em { font-style:italic; color:var(--gold-l); }
.hero-divider { width:60px; height:1px; background:var(--gold); margin:20px auto 0; opacity:0.6; }

/* ── SECTION COMMON ──────────────────────────────────────────── */
.section-eyebrow {
    font-size:11px; letter-spacing:0.2em; text-transform:uppercase;
    color:var(--gold); margin-bottom:12px;
}
.section-header { margin-bottom:52px; }
.section-header h2 {
    font-family:'Cormorant Garamond', serif;
    font-size:clamp(2rem,4vw,3rem); font-weight:300;
    color:var(--tf); margin-bottom:12px;
}
.section-header p { font-size:15px; color:var(--td); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
    display:inline-block; padding:14px 32px; border-radius:100px;
    background:var(--gold); border:1px solid var(--gold);
    color:var(--navy); font-family:'Outfit', sans-serif;
    font-size:13px; font-weight:600; letter-spacing:0.08em;
    text-transform:uppercase; text-decoration:none; transition:all 0.3s;
}
.btn-primary:hover { background:var(--gold-l); border-color:var(--gold-l); }
.btn-outline {
    display:inline-block; padding:14px 32px; border-radius:100px;
    background:transparent; border:1px solid rgba(255,255,255,0.2);
    color:var(--tm); font-family:'Outfit', sans-serif;
    font-size:13px; letter-spacing:0.08em;
    text-transform:uppercase; text-decoration:none; transition:all 0.3s;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
    margin:0 48px 80px;
    background:linear-gradient(135deg, var(--wine) 0%, var(--navy-mid) 60%, var(--navy) 100%);
    border-radius:20px; padding:60px 48px;
    display:flex; align-items:center; justify-content:space-between; gap:40px;
    border:1px solid var(--border); position:relative; overflow:hidden;
}
.cta-banner::before {
    content:''; position:absolute; inset:0;
    background-size:cover; background-position:center; opacity:0.07;
}
.cta-text { position:relative; }
.cta-text h2 {
    font-family:'Cormorant Garamond', serif;
    font-size:2.4rem; font-weight:300; line-height:1.2; margin-bottom:10px;
}
.cta-text p { font-size:15px; color:var(--td); }
.cta-actions { position:relative; display:flex; gap:16px; flex-shrink:0; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background:var(--navy-mid); border-top:1px solid var(--border-s); padding:60px 48px 40px; }
.footer-grid {
    max-width:1200px; margin:0 auto;
    display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px;
    padding-bottom:40px; border-bottom:1px solid var(--border-s);
}
.footer-brand img { height:40px; margin-bottom:16px; }
.footer-brand p { font-size:13px; line-height:1.8; color:var(--td); }
.footer-col h5 {
    font-size:11px; letter-spacing:0.15em; text-transform:uppercase;
    color:var(--gold); margin-bottom:16px;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.footer-col ul a { color:var(--td); text-decoration:none; font-size:13px; transition:color 0.2s; }
.footer-col ul a:hover { color:var(--gold-l); }
.footer-bottom {
    max-width:1200px; margin:24px auto 0;
    display:flex; justify-content:space-between; font-size:12px; color:var(--td);
}

/* ── GOOGLE RATING ───────────────────────────────────────────── */
.hds-rating { display:inline-flex; align-items:center; gap:4px; }
.hds-rating__number { font-weight:600; color:var(--gold-l); }
.hds-rating__star { color:var(--gold); }
.hds-rating__count { color:var(--td); font-size:0.85em; }

/* ── PAKETE PAGE ─────────────────────────────────────────────── */
.toggle-section {
    padding:60px 48px 20px; max-width:1200px; margin:0 auto;
    display:flex; flex-direction:column; align-items:center; gap:12px;
}
.toggle-label { font-size:12px; letter-spacing:0.15em; text-transform:uppercase; color:var(--td); }
.toggle-wrapper { display:flex; align-items:center; gap:20px; }
.toggle-text { font-size:15px; font-weight:500; transition:color 0.3s; }
.toggle-text.active { color:var(--gold); }
.toggle-text.inactive { color:var(--td); }
.toggle-switch { position:relative; width:64px; height:32px; cursor:pointer; }
.toggle-switch input { display:none; }
.toggle-track {
    position:absolute; inset:0; background:var(--navy-light);
    border:1px solid var(--border); border-radius:100px; transition:0.3s;
}
.toggle-knob {
    position:absolute; top:4px; left:4px; width:24px; height:24px;
    border-radius:50%; background:var(--gold); transition:transform 0.3s;
    box-shadow:0 2px 8px rgba(200,150,62,0.4);
}
.toggle-switch input:checked ~ .toggle-knob { transform:translateX(32px); }

.pakete-section { padding:20px 48px 80px; max-width:1200px; margin:0 auto; }
.panel { display:none; }
.panel.active { display:block; }
.packages-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:8px; }

.package-card {
    position:relative; border-radius:20px; overflow:hidden;
    border:1px solid var(--border-s); background:var(--navy-light);
    display:flex; flex-direction:column; transition:transform 0.3s, box-shadow 0.3s;
}
.package-card:hover { transform:translateY(-6px); box-shadow:0 24px 60px rgba(0,0,0,0.4); }
.package-card.featured { border-color:rgba(200,150,62,0.4); box-shadow:0 0 40px rgba(200,150,62,0.08); }
.package-card.featured::before {
    content:'BELIEBT'; position:absolute; top:20px; right:-28px;
    background:var(--gold); color:var(--navy);
    font-size:10px; font-weight:600; letter-spacing:0.15em;
    padding:4px 40px; transform:rotate(45deg); transform-origin:center;
}
.card-header { padding:32px 28px 24px; border-bottom:1px solid var(--border-s); }
.card-header.bronze { background:linear-gradient(135deg,rgba(107,15,26,0.6) 0%,rgba(8,18,42,0.4) 100%); }
.card-header.silber { background:linear-gradient(135deg,rgba(15,30,61,0.8) 0%,rgba(22,38,69,0.6) 100%); }
.card-header.gold   { background:linear-gradient(135deg,rgba(107,15,26,0.3) 0%,rgba(200,150,62,0.15) 100%); }
.tier-name { font-family:'Cormorant Garamond',serif; font-size:3.5rem; font-weight:600; line-height:1; margin-bottom:8px; }
.tier-name.bronze { color:#cd7f32; }
.tier-name.silber { color:#c0c0c0; }
.tier-name.gold   { color:var(--gold-l); }
.tier-subtitle { font-size:14px; color:var(--td); font-weight:300; }
.card-body { padding:24px 28px; flex:1; }
.card-desc { font-size:14px; line-height:1.7; color:var(--td); margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--border-s); }
.features-title { font-size:11px; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.feature-list { list-style:none; display:flex; flex-direction:column; gap:12px; }
.feature-list li { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--tm); line-height:1.5; }
.feature-list li::before { content:''; width:16px; height:16px; flex-shrink:0; margin-top:1px; background:url('https://hamburger-dj-service.de/wp-content/uploads/2025/02/Vector.png') center/contain no-repeat; opacity:0.8; }
.card-footer { padding:20px 28px 28px; }
.card-btn {
    display:block; width:100%; padding:14px 24px;
    border:1px solid var(--border); border-radius:100px;
    background:transparent; color:var(--gold);
    font-family:'Outfit',sans-serif; font-size:13px; font-weight:500;
    letter-spacing:0.08em; text-transform:uppercase;
    text-align:center; text-decoration:none; cursor:pointer; transition:all 0.3s;
}
.card-btn:hover, .package-card.featured .card-btn { background:var(--gold); border-color:var(--gold); color:var(--navy); }

.firmen-panel { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.firmen-intro h3 { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:300; line-height:1.2; margin-bottom:20px; }
.firmen-intro p { font-size:15px; line-height:1.8; color:var(--td); margin-bottom:16px; }
.firmen-why { background:var(--navy-light); border:1px solid var(--border-s); border-radius:16px; padding:28px; margin-top:24px; }
.firmen-why h4 { font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:400; color:var(--gold-l); margin-bottom:20px; }
.firmen-why-list { list-style:none; display:flex; flex-direction:column; gap:16px; }
.firmen-why-list li { padding-left:16px; border-left:2px solid var(--gold); font-size:14px; line-height:1.7; color:var(--td); }
.firmen-why-list li strong { display:block; color:var(--tf); font-weight:500; margin-bottom:2px; }
.firmen-contact { background:linear-gradient(135deg,var(--navy-light),rgba(107,15,26,0.3)); border:1px solid var(--border); border-radius:16px; padding:32px; }
.firmen-contact h4 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:300; font-style:italic; color:var(--gold-l); margin-bottom:24px; line-height:1.3; }
.contact-items { list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:28px; }
.contact-items li { display:flex; align-items:center; gap:12px; font-size:14px; color:var(--tm); }
.contact-items .icon { width:36px; height:36px; border-radius:50%; background:var(--navy); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.firmen-cta { display:block; padding:14px 28px; background:transparent; border:1px solid var(--gold); border-radius:100px; color:var(--gold); font-family:'Outfit',sans-serif; font-size:13px; letter-spacing:0.08em; text-transform:uppercase; text-align:center; text-decoration:none; transition:all 0.3s; }
.firmen-cta:hover { background:var(--gold); color:var(--navy); }

.vergleich-section { background:var(--navy-mid); border-top:1px solid var(--border-s); border-bottom:1px solid var(--border-s); padding:80px 48px; }
.vergleich-inner { max-width:1200px; margin:0 auto; }
.vergleich-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.vergleich-card { background:var(--navy-light); border:1px solid var(--border-s); border-radius:16px; padding:32px; }
.vergleich-card-icon { width:48px; height:48px; border-radius:12px; background:rgba(200,150,62,0.1); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.vergleich-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400; color:var(--tf); margin-bottom:12px; }
.vergleich-card p { font-size:14px; line-height:1.8; color:var(--td); }

/* ── ÜBER UNS PAGE ───────────────────────────────────────────── */
.intro-section { padding:80px 48px; max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.intro-text .eyebrow { font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.intro-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,3.5vw,2.8rem); font-weight:300; line-height:1.2; margin-bottom:24px; }
.intro-text p { font-size:15px; line-height:1.9; color:var(--td); }
.intro-gallery { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:auto auto; gap:12px; }
.intro-gallery img { width:100%; border-radius:12px; object-fit:cover; border:1px solid var(--border-s); }
.intro-gallery img:first-child { grid-column:1/-1; height:220px; }
.intro-gallery img:not(:first-child) { height:160px; }

.about-section { background:var(--navy-mid); border-top:1px solid var(--border-s); border-bottom:1px solid var(--border-s); padding:80px 48px; }
.about-inner { max-width:1200px; margin:0 auto; }
.info-blocks { display:flex; flex-direction:column; gap:32px; }
.info-block { display:grid; grid-template-columns:260px 1fr; gap:24px; align-items:start; }
.info-block:nth-child(even) { grid-template-columns:1fr 260px; }
.info-block:nth-child(even) .info-pill { order:2; }
.info-block:nth-child(even) .info-text { order:1; }
.info-pill { background:var(--wine); border-radius:100px; padding:18px 28px; text-align:center; display:flex; align-items:center; justify-content:center; min-height:74px; }
.info-pill h3 { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:400; color:var(--tf); white-space:nowrap; }
.info-text { background:rgba(255,255,255,0.05); border:1px solid var(--border-s); border-radius:14px; padding:28px 32px; display:flex; align-items:center; }
.info-text p { font-size:15px; line-height:1.8; color:var(--tm); }

.geschichte-section { padding:80px 48px; max-width:1200px; margin:0 auto; }
.geschichte-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; margin-top:40px; }
.geschichte-text p { font-size:15px; line-height:1.9; color:var(--td); margin-bottom:20px; }
.geschichte-text strong { color:var(--tm); font-weight:500; }
.stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:32px; }
.stat-card { background:var(--navy-light); border:1px solid var(--border-s); border-radius:14px; padding:24px 20px; text-align:center; }
.stat-number { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300; color:var(--gold-l); line-height:1; }
.stat-label { font-size:12px; color:var(--td); margin-top:6px; letter-spacing:0.05em; }
.team-card { background:linear-gradient(135deg,var(--navy-light),rgba(107,15,26,0.2)); border:1px solid var(--border); border-radius:16px; padding:28px; }
.team-card h4 { font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:400; color:var(--gold-l); margin-bottom:12px; }
.team-card p { font-size:14px; line-height:1.8; color:var(--td); }

.testimonials-section { background:var(--navy-mid); border-top:1px solid var(--border-s); padding:80px 48px; }
.testimonials-inner { max-width:1200px; margin:0 auto; }

/* ── KONTAKT PAGE ────────────────────────────────────────────── */
.kontakt-section { padding:80px 48px; max-width:1200px; margin:0 auto; }
.kontakt-inner { display:grid; grid-template-columns:1fr 1.5fr; gap:48px; align-items:start; }
.info-card { display:flex; align-items:flex-start; gap:16px; padding:20px 24px; background:var(--navy-light); border:1px solid var(--border-s); border-radius:14px; border-left:3px solid var(--gold); margin-bottom:16px; }
.info-card-icon { width:36px; height:36px; border-radius:50%; background:rgba(200,150,62,0.1); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--gold); }
.info-card-label { font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:4px; }
.info-card-value { font-size:15px; color:var(--tf); text-decoration:none; }
.info-card-value:hover { color:var(--gold-l); }
.response-badge { display:inline-flex; align-items:center; gap:8px; padding:8px 16px; background:rgba(200,150,62,0.1); border:1px solid var(--border); border-radius:100px; font-size:13px; color:var(--gold-l); margin-bottom:24px; }
.pulse-dot { width:8px; height:8px; border-radius:50%; background:var(--gold); animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.social-links { display:flex; gap:12px; flex-wrap:wrap; }
.social-btn { display:flex; align-items:center; gap:8px; padding:10px 18px; background:var(--navy-light); border:1px solid var(--border-s); border-radius:100px; font-size:13px; color:var(--td); text-decoration:none; transition:all 0.2s; }
.social-btn:hover { border-color:var(--gold); color:var(--gold); }
.kontakt-form-wrap { background:var(--navy-light); border:1px solid var(--border-s); border-radius:20px; padding:40px; }
.form-header { margin-bottom:28px; }
.form-header h2 { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; color:var(--tf); margin-bottom:8px; }
.form-header p { font-size:14px; color:var(--td); }

/* ── GALERIE PAGE ────────────────────────────────────────────── */
.gallery-header { padding:56px 48px 36px; max-width:1200px; margin:0 auto; display:flex; align-items:flex-end; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.gallery-intro-text .eyebrow { font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.gallery-intro-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,3vw,2.4rem); font-weight:300; color:var(--tf); margin-bottom:8px; }
.gallery-intro-text p { font-size:14px; color:var(--td); }
.filter-tabs { display:flex; gap:8px; flex-shrink:0; }
.filter-tab { padding:8px 20px; border-radius:100px; border:1px solid var(--border-s); background:transparent; color:var(--td); font-family:'Outfit',sans-serif; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; cursor:pointer; transition:all 0.2s; }
.filter-tab:hover { border-color:var(--border); color:var(--tm); }
.filter-tab.active { background:var(--gold); border-color:var(--gold); color:var(--navy); font-weight:600; }
.gallery-section { padding:0 48px 80px; max-width:1200px; margin:0 auto; }
.date-group { margin-bottom:48px; }
.date-label { font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; display:flex; align-items:center; gap:12px; }
.date-label::after { content:''; flex:1; height:1px; background:var(--border-s); }
.masonry { columns:3; column-gap:10px; }
.gallery-item { break-inside:avoid; margin-bottom:10px; position:relative; overflow:hidden; border-radius:10px; cursor:pointer; background:var(--navy-light); }
.gallery-item img { width:100%; display:block; transition:transform 0.5s ease; border-radius:10px; }
.gallery-item:hover img { transform:scale(1.04); }
.gallery-item.is-video .thumb-wrap { position:relative; }
.gallery-item.is-video img { filter:brightness(0.75); }
.play-btn { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:52px; height:52px; border-radius:50%; background:rgba(200,150,62,0.9); display:flex; align-items:center; justify-content:center; transition:all 0.2s; pointer-events:none; }
.play-btn svg { margin-left:3px; }
.gallery-item.is-video:hover .play-btn { background:var(--gold-l); transform:translate(-50%,-50%) scale(1.1); }
.item-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(8,18,42,0.75) 0%,transparent 45%); opacity:0; transition:opacity 0.3s; border-radius:10px; display:flex; align-items:flex-end; padding:14px 16px; pointer-events:none; }
.gallery-item:hover .item-overlay { opacity:1; }
.item-overlay span { font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-l); }
.gallery-item.hidden { display:none; }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox { display:none; position:fixed; inset:0; z-index:999; background:rgba(5,10,25,0.97); backdrop-filter:blur(16px); align-items:center; justify-content:center; }
.lightbox.open { display:flex; }
.lb-media { position:relative; max-width:88vw; max-height:88vh; display:flex; align-items:center; justify-content:center; }
.lb-media img { max-width:88vw; max-height:82vh; border-radius:8px; display:block; box-shadow:0 40px 80px rgba(0,0,0,0.7); }
.lb-media iframe { width:min(88vw, 960px); height:min(60vw, 540px); border-radius:8px; border:none; box-shadow:0 40px 80px rgba(0,0,0,0.7); }
.lb-close { position:absolute; top:20px; right:28px; font-size:28px; color:var(--td); cursor:pointer; background:none; border:none; line-height:1; transition:color 0.2s; z-index:2; }
.lb-close:hover { color:var(--gold); }
.lb-caption { position:absolute; bottom:-36px; left:0; right:0; text-align:center; font-size:12px; color:var(--td); letter-spacing:0.08em; }
.lb-nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.06); border:1px solid var(--border-s); border-radius:50%; width:44px; height:44px; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--tm); transition:all 0.2s; }
.lb-nav:hover { background:var(--gold); color:var(--navy); border-color:var(--gold); }
#lb-prev { left:-60px; }
#lb-next { right:-60px; }

/* ── FORMIDABLE FORMS OVERRIDE ───────────────────────────────── */
.frm_forms input[type="text"],
.frm_forms input[type="email"],
.frm_forms input[type="tel"],
.frm_forms textarea,
.frm_forms select {
    width:100%; padding:12px 16px;
    background:rgba(255,255,255,0.05);
    border:1px solid var(--border-s);
    border-radius:8px; color:var(--tf);
    font-family:'Outfit',sans-serif; font-size:14px;
    transition:border-color 0.2s;
}
.frm_forms input:focus,
.frm_forms textarea:focus,
.frm_forms select:focus {
    outline:none; border-color:var(--gold);
    background:rgba(255,255,255,0.07);
}
.frm_forms input::placeholder,
.frm_forms textarea::placeholder { color:var(--td); }
.frm_forms label { font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; display:block; }
.frm_forms .frm_submit button,
.frm_forms input[type="submit"] {
    padding:14px 32px; border-radius:100px;
    background:var(--gold); border:1px solid var(--gold);
    color:var(--navy); font-family:'Outfit',sans-serif;
    font-size:13px; font-weight:600; letter-spacing:0.08em;
    text-transform:uppercase; cursor:pointer; transition:all 0.3s;
}
.frm_forms .frm_submit button:hover,
.frm_forms input[type="submit"]:hover { background:var(--gold-l); }

/* ── GUTENBERG BLOCK OVERRIDES ───────────────────────────────── */
.wp-block-group.has-background {
    background-color: var(--navy-light) !important;
}
.wp-block-button__link {
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    border-radius: 100px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    transition: all 0.3s !important;
}
.wp-block-button__link:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}
.wp-block-heading { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.wp-block-details { background: var(--navy-light); border: 1px solid var(--border-s); border-left: 3px solid var(--gold); border-radius: 8px; padding: 16px 20px; margin-bottom: 8px; }
.wp-block-details summary { cursor: pointer; font-weight: 500; color: var(--tf); }
p:empty { display: none; }

/* ── PAGE TEMPLATE (Impressum, Datenschutz) ──────────────────── */
.page-content {
    max-width: 800px; margin: 100px auto 80px;
    padding: 0 48px;
}
.page-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300;
    color: var(--tf); margin-bottom: 40px;
}
.page-content h2 { font-size: 1.4rem; color: var(--gold-l); margin: 32px 0 12px; }
.page-content h3 { font-size: 1.1rem; color: var(--tm); margin: 24px 0 8px; }
.page-content h4 { font-size: 1rem; color: var(--tm); margin: 16px 0 8px; }
.page-content p { font-size: 15px; line-height: 1.8; color: var(--td); margin-bottom: 16px; }
.page-content a { color: var(--gold-l); }
.page-content ul { margin: 12px 0 16px 20px; }
.page-content ul li { font-size:15px; color:var(--td); line-height:1.8; }
.page-content strong { color: var(--tm); font-weight: 500; }
.page-content address { font-style: normal; }

/* ── HOMEPAGE ────────────────────────────────────────────────── */
.hero {
    min-height: calc(100vh - 72px); margin-top:72px;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 80px 48px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    gap: 64px;
}
.hero-eyebrow { font-size:11px; letter-spacing:0.25em; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(3rem,5.5vw,5.5rem); font-weight:300; line-height:1.05; color:var(--tf); margin-bottom:24px; }
.hero-title em { font-style:italic; color:var(--gold-l); }
.hero-sub { font-size:16px; line-height:1.8; color:var(--td); max-width:440px; margin-bottom:36px; }
.hero-cta { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px; }
.hero-stats { display:flex; align-items:center; gap:24px; }
.stat { display:flex; flex-direction:column; }
.stat-n { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:300; color:var(--gold-l); line-height:1; }
.stat-l { font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--td); margin-top:4px; }
.stat-div { width:1px; height:36px; background:var(--border-s); }

.hero-right { display:flex; justify-content:center; }
.hero-img-wrap { position:relative; width:100%; max-width:520px; }
.hero-img { width:100%; border-radius:20px; object-fit:cover; height:520px; border:1px solid var(--border-s); }
.hero-badge { position:absolute; top:24px; right:24px; background:var(--wine); border:1px solid var(--border); border-radius:12px; padding:14px 18px; text-align:center; }
.badge-year { display:block; font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; color:var(--gold-l); line-height:1; }
.badge-label { font-size:10px; letter-spacing:0.15em; text-transform:uppercase; color:var(--td); margin-top:2px; }
.hero-float-card { position:absolute; bottom:24px; left:-32px; background:rgba(8,18,42,0.92); border:1px solid var(--border); border-radius:14px; padding:14px 18px; display:flex; align-items:center; gap:12px; backdrop-filter:blur(16px); }
.hero-float-card img { width:44px; height:44px; border-radius:50%; object-fit:cover; border:2px solid var(--gold); }
.float-name { font-size:14px; font-weight:500; color:var(--tf); }
.float-title { font-size:11px; color:var(--td); margin-top:2px; }

.home-about { padding:100px 48px; max-width:1200px; margin:0 auto; }
.home-about-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.home-about-img img { border-radius:20px; object-fit:cover; height:480px; width:100%; border:1px solid var(--border-s); }
.home-about-text .section-eyebrow { margin-bottom:16px; }
.home-about-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,3.5vw,3rem); font-weight:300; line-height:1.2; margin-bottom:20px; }
.home-about-text h2 em { font-style:italic; color:var(--gold-l); }
.home-about-text p { font-size:15px; line-height:1.9; color:var(--td); }

.home-leistungen { background:var(--navy-mid); border-top:1px solid var(--border-s); border-bottom:1px solid var(--border-s); padding:100px 48px; }
.home-leistungen-inner { max-width:1200px; margin:0 auto; }
.leistungen-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:52px; }
.leistung-card { background:var(--navy-light); border:1px solid var(--border-s); border-radius:16px; padding:32px 28px; transition:border-color 0.3s, transform 0.3s; }
.leistung-card:hover { border-color:var(--border); transform:translateY(-4px); }
.leistung-icon { width:48px; height:48px; border-radius:12px; background:rgba(200,150,62,0.1); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--gold); margin-bottom:20px; }
.leistung-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400; color:var(--tf); margin-bottom:10px; }
.leistung-card p { font-size:14px; line-height:1.7; color:var(--td); }

.home-bewertungen { padding:100px 48px; max-width:1200px; margin:0 auto; }
.home-bewertungen-inner .section-eyebrow { margin-bottom:12px; }
.home-bewertungen-inner h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,3.5vw,3rem); font-weight:300; color:var(--tf); margin-bottom:8px; }
.home-bewertungen-inner p { font-size:15px; color:var(--td); }

.home-faq { background:var(--navy-mid); border-top:1px solid var(--border-s); padding:100px 48px; }
.home-faq-inner { max-width:800px; margin:0 auto; }
.home-faq-inner .section-eyebrow { margin-bottom:12px; }
.home-faq-inner h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,3.5vw,3rem); font-weight:300; color:var(--tf); margin-bottom:40px; }
.faq-item { border:1px solid var(--border-s); border-radius:12px; margin-bottom:8px; overflow:hidden; }
.faq-question { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; cursor:pointer; transition:background 0.2s; }
.faq-question:hover { background:rgba(255,255,255,0.03); }
.faq-question span { font-size:15px; color:var(--tm); font-weight:400; }
.faq-icon { color:var(--gold); flex-shrink:0; transition:transform 0.3s; }
.faq-item.open .faq-icon { transform:rotate(180deg); }
.faq-answer { display:none; padding:0 24px 20px; }
.faq-item.open .faq-answer { display:block; }
.faq-answer p { font-size:14px; line-height:1.8; color:var(--td); }

/* ── MOBILE RESPONSIVE ───────────────────────────────────────── */
.mobile-burger {
    display: none; flex-direction:column; gap:5px;
    background:none; border:none; cursor:pointer; padding:4px;
}
.mobile-burger span { display:block; width:22px; height:2px; background:var(--td); border-radius:2px; transition:all 0.3s; }
.mobile-nav { display:none; position:fixed; top:72px; left:0; right:0; background:rgba(8,18,42,0.98); backdrop-filter:blur(16px); border-bottom:1px solid var(--border-s); padding:24px 24px 32px; z-index:99; flex-direction:column; gap:0; }
.mobile-nav.open { display:flex; }
.mobile-nav a { display:block; padding:14px 0; color:var(--tm); text-decoration:none; font-size:14px; letter-spacing:0.08em; text-transform:uppercase; border-bottom:1px solid var(--border-s); transition:color 0.2s; }
.mobile-nav a:hover { color:var(--gold); }
.mobile-nav a:last-child { border-bottom:none; }

@media (max-width: 1024px) {
    .packages-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
    .hero { grid-template-columns:1fr; text-align:center; min-height:auto; padding:80px 24px; }
    .hero-cta { justify-content:center; }
    .hero-stats { justify-content:center; }
    .hero-right { display:none; }
    .home-about-inner { grid-template-columns:1fr; }
    .home-about-img { display:none; }
    .leistungen-grid { grid-template-columns:1fr 1fr; }
    .intro-section { grid-template-columns:1fr; }
    .intro-gallery { display:none; }
    .info-block { grid-template-columns:1fr; }
    .info-block:nth-child(even) { grid-template-columns:1fr; }
    .info-block:nth-child(even) .info-pill { order:1; }
    .info-block:nth-child(even) .info-text { order:2; }
    .geschichte-grid { grid-template-columns:1fr; }
    .kontakt-inner { grid-template-columns:1fr; }
    .firmen-panel { grid-template-columns:1fr; }
    .vergleich-grid { grid-template-columns:1fr; }
    .masonry { columns:2; }
    .cta-banner { flex-direction:column; text-align:center; }
    .cta-actions { justify-content:center; }
    .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px) {
    #site-nav { padding:0 24px; }
    .nav-links { display:none; }
    .nav-cta { display:none; }
    .nav-hamburger { display:flex; }
    .hero { padding:60px 24px; }
    .page-hero { height:240px; }
    .leistungen-grid { grid-template-columns:1fr; }
    .masonry { columns:1; }
    .toggle-section, .pakete-section, .gallery-section, .gallery-header,
    .vergleich-section, .home-about, .home-leistungen, .home-bewertungen,
    .home-faq, .intro-section, .about-section, .geschichte-section,
    .testimonials-section, .kontakt-section { padding-left:24px; padding-right:24px; }
    .cta-banner { margin:0 24px 60px; padding:40px 28px; }
    .footer-grid { grid-template-columns:1fr; gap:32px; }
    footer { padding:48px 24px 32px; }
    .page-content { padding:0 24px; }
    #lb-prev { left:-12px; }
    #lb-next { right:-12px; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
#site-footer {
    background: var(--navy-mid);
    border-top: 1px solid var(--border-s);
    padding: 60px 48px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-s);
}
.footer-brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; margin-bottom: 16px;
}
.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 400; color: var(--tf);
}
.footer-brand-tag {
    font-size: 10px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--td);
}
.footer-brand-desc {
    font-size: 13px; line-height: 1.8; color: var(--td);
    max-width: 280px;
}
.footer-nav-group h4, .footer-social-group h4 {
    font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 16px; font-weight: 400;
}
.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav-group ul a {
    color: var(--td); text-decoration: none;
    font-size: 13px; transition: color 0.2s;
}
.footer-nav-group ul a:hover { color: var(--gold-l); }
.footer-social-links { display: flex; flex-direction: column; gap: 8px; }
.footer-social-links a {
    color: var(--td); text-decoration: none;
    font-size: 13px; transition: color 0.2s;
}
.footer-social-links a:hover { color: var(--gold-l); }
.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; padding-top: 24px;
    font-size: 12px; color: var(--td);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--td); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-l); }

/* ── NAV LINKS (WordPress wp_nav_menu) ───────────────────────── */
.nav-links li { list-style: none; }
.nav-links li a {
    color: var(--td); text-decoration: none;
    font-size: 13px; letter-spacing: 0.08em;
    text-transform: uppercase; transition: color 0.2s;
}
.nav-links li a:hover,
.nav-links li.current-menu-item > a { color: var(--gold); }

/* ── RESPONSIVE FOOTER ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    #site-footer { padding: 48px 24px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── VIDEO PLACEHOLDER ───────────────────────────────────────── */
.video-placeholder { position:relative; aspect-ratio:4/3; }
.video-thumb-bg {
    width:100%; height:100%; min-height:180px;
    background:linear-gradient(135deg, var(--navy-light) 0%, var(--wine) 100%);
    border-radius:10px;
    display:flex; flex-direction:column;
    align-items:center; justify-content:center; gap:12px;
}
.video-filename {
    font-size:11px; color:rgba(255,255,255,0.4);
    letter-spacing:0.05em; max-width:80%;
    overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
    text-align:center;
}
