:root {
    --gold: #C4A265;
    --gold-light: #D4B87A;
    --gold-dark: #A68745;
    --black: #0A0A0A;
    --dark: #111111;
    --dark-card: #161616;
    --dark-subtle: #1A1A1A;
    --cream: #F5F0E8;
    --cream-muted: #C8C0B4;
    --text-light: #E8E2D8;
    --text-muted: #8A8279;
    --brown-dark: #3D2E1F;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 3rem;
    border-bottom: 1px solid rgba(196, 162, 101, 0.15);
}

.nav-logo {
    height: 50px;
    transition: height 0.5s ease;
}

nav.scrolled .nav-logo {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--cream-muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

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

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

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

.nav-cta {
    padding: 0.6rem 1.8rem;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 0.7rem !important;
    letter-spacing: 3px !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black) !important;
}

.nav-cta::after {
    display: none !important;
}

/* ─── HAMBURGER ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
}

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

/* ─── HERO ─── */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(196, 162, 101, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(61, 46, 31, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(61, 46, 31, 0.1) 0%, transparent 60%);
}

.hero-ornament {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(196, 162, 101, 0.08);
    border-radius: 50%;
    animation: pulse-soft 6s ease-in-out infinite;
}

.hero-ornament:nth-child(1) { top: 15%; left: -5%; animation-delay: 0s; }
.hero-ornament:nth-child(2) { bottom: 10%; right: -8%; width: 400px; height: 400px; animation-delay: 2s; }
.hero-ornament:nth-child(3) { top: 30%; right: 10%; width: 150px; height: 150px; animation-delay: 4s; }

@keyframes pulse-soft {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: min(400px, 80vw);
    margin: 0 auto 2rem;
    display: block;
    animation: fadeUp 1.2s ease-out;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--cream-muted);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 1rem;
    animation: fadeUp 1.2s ease-out 0.3s both;
}

.hero-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 3rem;
    animation: fadeUp 1.2s ease-out 0.5s both;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
    animation: fadeUp 1.2s ease-out 0.7s both;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 40px rgba(196, 162, 101, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeUpCentered 1.2s ease-out 1s both;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

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

@keyframes fadeUpCentered {
    from { opacity: 0; transform: translateX(-50%) translateY(30px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── SECTIONS GENERAL ─── */
section {
    padding: 8rem 3rem;
    position: relative;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196, 162, 101, 0.3), transparent);
}

/* ─── HIGHLIGHTS / FAKTEN ─── */
.highlights {
    background: var(--dark);
}

.highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.highlight-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(196, 162, 101, 0.08);
    background: rgba(196, 162, 101, 0.02);
    transition: all 0.5s ease;
}

.highlight-card:hover {
    border-color: rgba(196, 162, 101, 0.2);
    background: rgba(196, 162, 101, 0.04);
    transform: translateY(-4px);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.highlight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
}

.highlight-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ─── ÜBER UNS ─── */
.about {
    background: var(--black);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--dark-subtle);
    overflow: hidden;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, var(--dark-subtle) 0%, var(--brown-dark) 100%);
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-image-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold-dark);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(196, 162, 101, 0.15);
    pointer-events: none;
}

.about-text p {
    font-size: 0.9rem;
    color: var(--cream-muted);
    margin-bottom: 1.5rem;
    line-height: 2;
}

.about-text .emphasis {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 162, 101, 0.1);
}

.stat-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 300;
}

.stat-item span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── SERVICES ─── */
.services {
    background: var(--dark);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    max-width: 600px;
    margin-bottom: 4rem;
}

.services-intro p {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.9;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(196, 162, 101, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}

.service-item:first-child {
    border-top: 1px solid rgba(196, 162, 101, 0.08);
}

.service-item:hover {
    padding-left: 1.5rem;
    border-color: rgba(196, 162, 101, 0.2);
}

.service-item:hover .service-name {
    color: var(--gold);
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream);
    transition: color 0.3s;
}

.service-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    white-space: nowrap;
}

.price-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ─── GALERIE ─── */
.gallery {
    background: var(--black);
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gallery-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.gallery-intro p {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.9;
}

.instagram-embed-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid rgba(196, 162, 101, 0.1);
    background: rgba(196, 162, 101, 0.02);
}

.instagram-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.instagram-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.instagram-placeholder h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.instagram-placeholder p {
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.instagram-link {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.instagram-link:hover {
    background: var(--gold);
    color: var(--black);
}

/* ─── KONTAKT / CTA ─── */
.contact {
    background: var(--dark);
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.contact-card {
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(196, 162, 101, 0.08);
}

.contact-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-card p, .contact-card a {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-phone {
    display: inline-block;
    margin-top: 3rem;
    padding: 1.2rem 4rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
}

.contact-phone:hover {
    background: var(--gold-light);
    box-shadow: 0 0 50px rgba(196, 162, 101, 0.25);
    transform: translateY(-2px);
}

/* ─── MAP ─── */
.map-section {
    position: relative;
    height: 400px;
    background: var(--dark-subtle);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) brightness(0.4) contrast(1.1);
    transition: filter 0.5s;
}

.map-section:hover iframe {
    filter: grayscale(0.6) brightness(0.6) contrast(1);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(196, 162, 101, 0.2);
    padding: 2rem 3rem;
    text-align: center;
    pointer-events: none;
    transition: opacity 0.5s;
}

.map-section:hover .map-overlay {
    opacity: 0;
}

.map-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.map-overlay p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    padding: 4rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(196, 162, 101, 0.08);
}

.footer-logo {
    width: 120px;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

footer p {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─── LEGAL MODALS ─── */
.legal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.legal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.legal-content {
    background: var(--dark);
    border: 1px solid rgba(196, 162, 101, 0.12);
    max-width: 800px;
    width: 100%;
    padding: 4rem;
    position: relative;
    margin: 2rem 0;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.legal-overlay.active .legal-content {
    transform: translateY(0);
}

.legal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(196, 162, 101, 0.2);
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.legal-content .legal-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0 2.5rem;
}

.legal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.85rem;
    color: var(--cream-muted);
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
}

.legal-content ul li::before {
    content: '—';
    color: var(--gold);
    margin-right: 0.75rem;
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 162, 101, 0.3);
    transition: border-color 0.3s;
}

.legal-content a:hover {
    border-color: var(--gold);
}

.legal-content .placeholder {
    background: rgba(196, 162, 101, 0.06);
    border: 1px dashed rgba(196, 162, 101, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-size: 0.8rem;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .legal-content {
        padding: 2.5rem 1.5rem;
    }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.6rem 1.5rem; }
    section { padding: 5rem 1.5rem; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s ease;
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        aspect-ratio: 4/3;
    }

    .about-stats {
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-section { height: 300px; }
}

@media (max-width: 600px) {
    section { padding: 4rem 1.2rem; }

    .hero-tagline {
        letter-spacing: 3px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .service-price {
        font-size: 1.1rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-item h4 { font-size: 2rem; }
}
