/* ============================================
   Eventlocation Bad Homburg – Stylesheet
   Domain: eventlocation-bad-homburg.de
   Design: Light Elegant – Modern & Feminin
   Stand: März 2026
   ============================================ */

/* --- Custom Properties --- */
:root {
    --bg: #FAF6EE;
    --bg-alt: #F0EBE0;
    --bg-gold: #B8963E;
    --bg-dark: #1A1815;
    --bg-card: #fff;
    --text: #1A1B1F;
    --text-sec: #6B6358;
    --text-muted: #9A9088;
    --text-on-dark: #FAF6EE;
    --text-on-gold: #fff;
    --gold: #B8963E;
    --gold-light: #D4B35A;
    --gold-dark: #9A7A2E;
    --border: #E0D8CC;
    --border-dark: #2A2520;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

::selection {
    background: rgba(184,150,62,0.15);
    color: var(--text);
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(250,246,238,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(250,246,238,0.95);
    box-shadow: 0 1px 0 var(--border);
}

.nav-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.nav-brand span {
    display: block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 16px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 28px;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.3px;
    font-weight: 400;
    color: var(--text-sec);
}

.nav-dropdown-menu a:hover {
    color: var(--gold);
    background: var(--bg-alt);
}

.nav-dropdown-menu a::after {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-cta {
    display: none;
}

.mobile-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 36px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
}

.btn-primary {
    background: var(--gold);
    color: var(--text-on-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--text-on-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,150,62,0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--text-on-gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(250,246,238,0.35);
    color: var(--text-on-dark);
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.btn-dark:hover {
    background: #2a2520;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* --- Section Patterns --- */
section {
    padding: 140px 50px;
    position: relative;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 28px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-text {
    font-size: 17px;
    color: var(--text-sec);
    line-height: 1.85;
    max-width: 640px;
}

.text-center {
    text-align: center;
}

.text-center .section-text {
    margin-left: auto;
    margin-right: auto;
}

/* Background variants */
.bg-primary { background: var(--bg); }
.bg-alt { background: var(--bg-alt); }

.bg-gold {
    background: var(--bg-gold);
    color: var(--text-on-gold);
}
.bg-gold .section-label { color: rgba(255,255,255,0.6); }
.bg-gold .section-title { color: #fff; }
.bg-gold .section-title em { color: #fff; font-style: italic; }
.bg-gold .section-text { color: rgba(255,255,255,0.8); max-width: 640px; }

.bg-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}
.bg-dark .section-label { color: var(--gold); }
.bg-dark .section-title { color: var(--text-on-dark); }
.bg-dark .section-title em { color: var(--gold); }
.bg-dark .section-text { color: rgba(250,246,238,0.65); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    overflow: hidden;
}

.hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26,24,21,0.85) 0%,
        rgba(26,24,21,0.4) 40%,
        rgba(26,24,21,0.15) 70%,
        rgba(26,24,21,0.05) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 60px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 400;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-text {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.75;
    font-weight: 300;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* --- Cards (Räume, Anlässe) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 32px;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text);
}

.card-content p {
    font-size: 15px;
    color: var(--text-sec);
    margin-bottom: 24px;
    line-height: 1.7;
}

.card-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    gap: 12px;
    color: var(--gold-dark);
}

/* Anlass-Kacheln (Overlay) */
.anlass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.anlass-grid.top-row {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 12px;
}

.anlass-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.anlass-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.anlass-card:hover img {
    transform: scale(1.08);
}

.anlass-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,24,21,0.75) 0%, rgba(26,24,21,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: background var(--transition);
}

.anlass-card:hover .anlass-card-overlay {
    background: linear-gradient(to top, rgba(26,24,21,0.85) 0%, rgba(26,24,21,0.2) 60%);
}

.anlass-card-overlay h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.anlass-card-overlay p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
}

/* --- Bewertungen / Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--bg-card);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.testimonial:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 8px;
    left: 24px;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-sec);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
}

.testimonial-source {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 14px 28px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-sm);
}

.rating-badge-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-badge-text {
    font-size: 14px;
    color: var(--text-sec);
}

.rating-badge-text strong {
    color: var(--text);
    font-weight: 600;
}

/* --- FAQ Accordion --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 22px;
    color: var(--gold);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 20px;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 28px;
    font-size: 16px;
    color: var(--text-sec);
    line-height: 1.85;
}

.faq-answer a {
    color: var(--gold);
}

/* --- Google Maps --- */
.map-section {
    padding: 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.map-info {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.map-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.map-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    line-height: 1.5;
}

.map-detail-item strong {
    display: block;
    color: var(--text-on-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.map-detail-item p {
    color: rgba(250,246,238,0.55);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.map-embed {
    min-height: 550px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 550px;
    border: none;
    filter: brightness(0.82) contrast(1.05) sepia(0.1);
}

/* --- Footer --- */
footer {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 80px 50px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(250,246,238,0.5);
    line-height: 1.8;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(250,246,238,0.5);
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-betreiber {
    text-align: center;
    padding: 24px 0;
    margin-top: 48px;
    border-top: 1px solid rgba(250,246,238,0.08);
    font-size: 13px;
    color: rgba(250,246,238,0.3);
}

.footer-betreiber a {
    display: inline;
    color: var(--gold);
    font-size: 13px;
}

.footer-cross-links {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(250,246,238,0.06);
    font-size: 12px;
    color: rgba(250,246,238,0.2);
}

.footer-cross-links a {
    display: inline;
    color: rgba(250,246,238,0.3);
    margin: 0 10px;
    font-size: 12px;
}

.footer-cross-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(250,246,238,0.06);
    margin-top: 12px;
}

.footer-bottom p {
    color: rgba(250,246,238,0.2);
    font-size: 12px;
}

.footer-bottom a {
    display: inline;
    color: rgba(250,246,238,0.35);
    font-size: 12px;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* --- Legal Modals --- */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.legal-modal.active {
    display: flex;
}

.legal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,24,21,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.legal-modal-box {
    position: relative;
    background: #fff;
    color: var(--text);
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

.legal-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: color var(--transition);
}

.legal-modal-close:hover {
    color: var(--gold);
}

.legal-modal-box h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text);
    margin-bottom: 28px;
}

.legal-modal-box h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.legal-modal-box p {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.85;
    margin-bottom: 12px;
}

.legal-modal-box a {
    color: var(--gold);
}

/* --- Multi-Step Formular --- */
.form-steps {
    max-width: 700px;
    margin: 0 auto;
}

.form-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 56px;
}

.form-progress-step {
    width: 100px;
    height: 2px;
    background: var(--border);
    transition: background var(--transition);
}

.form-progress-step.active {
    background: var(--gold);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text);
}

/* Step 1: Anlass-Kacheln */
.anlass-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.anlass-select-card {
    padding: 32px 20px;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    transition: all var(--transition);
}

.anlass-select-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.anlass-select-card.selected {
    border-color: var(--gold);
    background: rgba(184,150,62,0.05);
    box-shadow: 0 0 0 1px var(--gold);
}

.anlass-select-card .anlass-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}

.anlass-select-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
}

/* Step 2 & 3: Formularfelder */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,150,62,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8963E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.form-checkbox label a {
    color: var(--gold);
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--gold);
    color: #fff;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-sec);
    line-height: 1.7;
}

/* --- Galerie --- */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-sec);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,24,21,0);
    transition: background var(--transition);
}

.gallery-item:hover::after {
    background: rgba(26,24,21,0.15);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(26,24,21,0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 88%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 36px;
    cursor: pointer;
    transition: color var(--transition);
    font-weight: 300;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 44px;
    padding: 20px;
    cursor: pointer;
    transition: color var(--transition);
    font-weight: 300;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { color: #fff; }

/* --- USP Grid (Gold Section) --- */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 56px;
}

.usp-item {
    text-align: center;
}

.usp-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}

.usp-item h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.usp-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    padding: 120px 50px;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-section h2 em {
    font-style: italic;
    color: var(--gold);
}

.cta-section p {
    font-size: 17px;
    color: var(--text-sec);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* --- Page Header (Unterseiten) --- */
.page-header {
    padding: 180px 50px 80px;
    text-align: center;
    background: var(--bg-alt);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
}

.page-header h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-header p {
    font-size: 17px;
    color: var(--text-sec);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* --- Sub-Hero (Landingpages, 70vh) --- */
.sub-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    overflow: hidden;
}

.sub-hero .hero-bg {
    animation: none;
    transform: scale(1.02);
}

.sub-hero .hero-content {
    max-width: 650px;
}

.sub-hero h1 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 18px;
}

.sub-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.sub-hero .hero-text {
    font-size: 17px;
    max-width: 460px;
}

/* --- Split Section (Bild + Text) --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.split-image:hover img {
    transform: scale(1.04);
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Contact Info Grid --- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.contact-info-item {
    padding: 28px 20px;
}

.contact-info-item .contact-icon {
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
}

.contact-info-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.7;
}

.contact-info-item a {
    color: var(--gold);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .card-grid, .testimonial-grid, .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-section {
        grid-template-columns: 1fr;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 20px;
    }

    /* --- NAV MOBILE --- */
    nav {
        padding: 0 20px;
        height: 60px;
    }

    .nav-brand {
        font-size: 18px;
    }

    .nav-brand span {
        font-size: 8px;
        letter-spacing: 3px;
    }

    /* Hide desktop nav links + CTA button */
    .nav-center .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(250,246,238,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 999;
        padding: 0;
    }

    .nav-center .nav-links.active {
        display: flex;
    }

    .nav-center .nav-links li {
        list-style: none;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    .nav-center .nav-links li:first-child {
        border-top: 1px solid var(--border);
    }

    .nav-center .nav-links > li > a {
        display: block;
        padding: 20px;
        font-size: 16px;
        letter-spacing: 3px;
        color: var(--text);
    }

    .nav-center .nav-links > li > a:hover {
        color: var(--gold);
        background: var(--bg-alt);
    }

    .nav-center .nav-links > li > a::after {
        display: none;
    }

    /* Dropdown im Mobile-Menü */
    .nav-dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        text-align: center;
        min-width: auto;
        background: var(--bg-alt);
    }

    .nav-dropdown-menu a {
        display: block;
        padding: 14px 20px;
        font-size: 14px;
        color: var(--text-sec);
        border-bottom: 1px solid var(--border);
    }

    .nav-dropdown-menu a:last-child {
        border-bottom: none;
    }

    .nav-dropdown-menu a:hover {
        color: var(--gold);
    }

    /* Mobile-only CTA im Menü */
    .mobile-cta {
        display: list-item;
        list-style: none;
    }

    .nav-center .nav-links .mobile-cta {
        padding: 28px 20px;
        border-bottom: none;
    }

    .nav-center .nav-links .mobile-cta a {
        display: inline-block;
        font-size: 12px;
        letter-spacing: 2px;
        padding: 14px 40px;
        background: var(--gold);
        color: #fff !important;
        text-transform: uppercase;
    }

    /* Burger sichtbar, CTA versteckt */
    .mobile-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-right {
        display: none;
    }

    .nav-center {
        flex: 0 0 auto;
        position: static;
    }

    /* --- HERO MOBILE --- */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-bottom: 60px;
        align-items: flex-end;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .hero-text {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        text-align: center;
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    /* --- TYPOGRAPHY MOBILE --- */
    .section-label {
        font-size: 10px;
        letter-spacing: 4px;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .section-text {
        font-size: 15px;
        line-height: 1.75;
    }

    /* --- CARDS MOBILE --- */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-image {
        height: 220px;
    }

    .card-content {
        padding: 24px;
    }

    .card-content h3 {
        font-size: 24px;
    }

    /* --- ANLASS-KACHELN MOBILE --- */
    .anlass-grid,
    .anlass-grid.top-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .anlass-card {
        aspect-ratio: 16/9;
    }

    .anlass-card-overlay {
        padding: 20px;
    }

    .anlass-card-overlay h3 {
        font-size: 24px;
    }

    /* --- TESTIMONIALS MOBILE --- */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial {
        padding: 28px;
    }

    .testimonial::before {
        font-size: 60px;
        top: 4px;
        left: 16px;
    }

    .rating-badge {
        padding: 10px 18px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rating-badge-text {
        font-size: 13px;
    }

    /* --- USP GRID MOBILE --- */
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .usp-item h4 {
        font-size: 20px;
    }

    /* --- FAQ MOBILE --- */
    .faq-question {
        font-size: 18px;
        padding: 22px 0;
    }

    .faq-answer p {
        font-size: 15px;
        padding-bottom: 22px;
    }

    /* --- MAP MOBILE --- */
    .map-section {
        grid-template-columns: 1fr;
    }

    .map-info {
        padding: 48px 20px;
    }

    .map-info .section-title {
        font-size: 28px;
    }

    .map-embed {
        min-height: 350px;
    }

    .map-embed iframe {
        min-height: 350px;
    }

    /* --- FORMULAR MOBILE --- */
    .anlass-select-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .anlass-select-card {
        padding: 20px 12px;
    }

    .anlass-select-card .anlass-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .anlass-select-card h4 {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-step h3 {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .form-progress-step {
        width: 60px;
    }

    .form-nav {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .form-nav .btn {
        width: 100%;
        text-align: center;
    }

    /* --- CONTACT INFO MOBILE --- */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- GALLERY MOBILE --- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .gallery-filter {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    /* --- CTA MOBILE --- */
    .cta-section {
        padding: 64px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 15px;
    }

    /* --- FOOTER MOBILE --- */
    footer {
        padding: 48px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 13px;
    }

    .footer-betreiber,
    .footer-cross-links,
    .footer-bottom p,
    .footer-bottom a {
        font-size: 11px;
    }

    .footer-cross-links a {
        margin: 0 6px;
        font-size: 11px;
    }

    /* --- PAGE HEADER MOBILE --- */
    .page-header {
        padding: 120px 20px 48px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 15px;
    }

    /* --- SUB-HERO MOBILE --- */
    .sub-hero {
        min-height: 55vh;
        padding-bottom: 48px;
    }

    .sub-hero h1 {
        font-size: 36px;
    }

    .sub-hero .hero-text {
        font-size: 15px;
    }

    /* --- LIGHTBOX MOBILE --- */
    .lightbox img {
        max-width: 96%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        font-size: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 32px;
        padding: 12px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    /* --- LEGAL MODAL MOBILE --- */
    .legal-modal-box {
        padding: 32px 24px;
        max-height: 90vh;
    }

    .legal-modal-box h3 {
        font-size: 24px;
    }

    /* --- SPLIT SECTION MOBILE --- */
    .split-section {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .split-section.reverse {
        direction: ltr;
    }

    .split-image {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 480px) {
    section {
        padding: 56px 16px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-text {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }

    .anlass-select-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .anlass-select-card {
        padding: 16px 10px;
    }

    .anlass-select-card .anlass-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .anlass-select-card h4 {
        font-size: 13px;
    }

    .cta-section h2 { font-size: 28px; }
    .page-header h1 { font-size: 30px; }
    .sub-hero h1 { font-size: 30px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card-image {
        height: 180px;
    }

    .testimonial {
        padding: 24px 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .map-info {
        padding: 40px 16px;
    }

    .btn {
        padding: 13px 24px;
        font-size: 11px;
    }
}
