/* ================================================================
   TINYHOUSE — PREMIUM ARCHITECT DESIGN
   High-End Architektur & Immobilien Ästhetik.
   Inspiriert von: Norm Architects, Menu, Fritz Hansen Websites
   Perfekte Balance aus Wärme, Weißraum und Raffinesse.
   ================================================================ */

/* ---------- RESET & CUSTOM PROPERTIES ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Farb-System — Warmes Waldgrün + Honig-Gold */
    --c-forest: #1e3a2f;
    --c-forest-light: #2b5244;
    --c-forest-dark: #132820;
    --c-gold: #c2a36e;
    --c-gold-light: #dac6a0;
    --c-gold-muted: #e5d7c0;
    --c-gold-dark: #a0844f;
    --c-gold-glow: rgba(194,163,110,0.12);

    --c-bg: #ffffff;
    --c-bg-warm: #faf8f5;
    --c-bg-soft: #f4f1ec;
    --c-bg-muted: #eceae5;

    --c-text: #1f1f1f;
    --c-text-secondary: #5c5c5c;
    --c-text-tertiary: #9a9a9a;

    --c-line: #e6e2dc;
    --c-line-light: #f0ece6;

    /* Schatten-System */
    --sh-xs: 0 1px 2px rgba(0,0,0,0.03);
    --sh-sm: 0 2px 8px rgba(0,0,0,0.04);
    --sh-md: 0 6px 24px rgba(0,0,0,0.06);
    --sh-lg: 0 16px 48px rgba(0,0,0,0.08);
    --sh-xl: 0 24px 64px rgba(0,0,0,0.1);
    --sh-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
    --sh-card-hover: 0 4px 12px rgba(0,0,0,0.05), 0 20px 48px rgba(0,0,0,0.08);
    --sh-gold: 0 4px 16px rgba(194,163,110,0.25);

    /* Radius-System */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-full: 100px;

    /* Timing */
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --max-w: 1240px;
    --gutter: max(4vw, 24px);

    /* Kompatibilität mit alten Variablen */
    --primary: var(--c-forest);
    --primary-light: var(--c-forest-light);
    --primary-dark: var(--c-forest-dark);
    --accent: var(--c-gold);
    --accent-light: var(--c-gold-light);
    --accent-dark: var(--c-gold-dark);
    --cream: var(--c-bg-warm);
    --white: var(--c-bg);
    --text: var(--c-text);
    --text-light: var(--c-text-secondary);
    --text-muted: var(--c-text-tertiary);
    --border: var(--c-line);
    --border-light: var(--c-line-light);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection { background: var(--c-gold); color: #fff; }
::-moz-selection { background: var(--c-gold); color: #fff; }

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

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.serif { font-family: 'Cormorant Garamond', serif; }

/* ================================================================
   NAVIGATION
   ================================================================ */
header {
    position: fixed; top: 0; width: 100%; z-index: 100;
    transition: all 0.5s var(--ease);
    padding: 1.2rem var(--gutter);
}
header.transparent { background: transparent; }
header.scrolled {
    padding: 0.5rem var(--gutter);
}
header.scrolled nav {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(32px) saturate(1.6);
    -webkit-backdrop-filter: blur(32px) saturate(1.6);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), var(--sh-sm);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: var(--r-full);
    padding: 0.4rem 1.8rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0.2rem 0;
    transition: all 0.5s var(--ease);
    border-radius: var(--r-full);
}

/* Logo */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}
header.transparent .logo { color: #fff; }
header.scrolled .logo { color: var(--c-forest); }

/* Nav Links */
nav ul { list-style: none; display: flex; gap: 0.2rem; align-items: center; }
nav a {
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    transition: all 0.25s var(--ease);
    padding: 0.45rem 0.9rem;
    border-radius: var(--r-full);
    letter-spacing: 0.4px;
    position: relative;
}
nav a::after { display: none; }
header.transparent nav a { color: rgba(255,255,255,0.82); }
header.scrolled nav a { color: var(--c-text-secondary); }
nav a:hover { color: var(--c-gold-dark) !important; background: var(--c-gold-glow); }

/* CTA Button in Nav */
.nav-cta {
    background: var(--c-gold) !important;
    color: #fff !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: 500 !important;
    box-shadow: var(--sh-gold);
    border-radius: var(--r-full) !important;
}
.nav-cta:hover {
    background: var(--c-gold-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(194,163,110,0.4) !important;
}
header.scrolled .nav-cta { background: var(--c-gold) !important; color: #fff !important; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.nav-dropdown-toggle i { font-size: 0.5rem; transition: transform 0.3s var(--ease); }
.nav-dropdown.open .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 0.6rem); left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: var(--c-bg);
    box-shadow: var(--sh-lg), 0 0 0 1px var(--c-line-light);
    min-width: 220px; opacity: 0; visibility: hidden;
    transition: all 0.3s var(--ease-out); z-index: 1000;
    overflow: hidden; border-radius: var(--r-md);
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.8rem 1.4rem; font-size: 0.88rem;
    color: var(--c-text) !important; text-decoration: none;
    transition: all 0.2s var(--ease); border-bottom: 1px solid var(--c-line-light);
    border-radius: 0 !important; background: transparent !important;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--c-bg-warm) !important; color: var(--c-gold-dark) !important; padding-left: 1.7rem; }

/* Home Link */
.nav-home { display: flex; align-items: center; gap: 0.35rem; }
.nav-home i { font-size: 0.8rem; }

/* Language Dropdown */
.lang-dropdown { position: relative; margin-left: 0.3rem; }
.lang-dropdown-toggle {
    display: flex; align-items: center; gap: 0.45rem;
    padding: 0.4rem 0.8rem; font-size: 0.82rem; font-weight: 500;
    cursor: pointer; border: none; background: transparent;
    border-radius: var(--r-full); transition: all 0.25s var(--ease);
}
header.transparent .lang-dropdown-toggle { color: rgba(255,255,255,0.88); }
header.scrolled .lang-dropdown-toggle { color: var(--c-text); }
.lang-dropdown-toggle:hover { background: var(--c-gold-glow); }
.lang-dropdown-toggle .flag { font-size: 1.1rem; }
.lang-dropdown-toggle i { font-size: 0.5rem; margin-left: 0.1rem; transition: transform 0.3s; }
.lang-dropdown.open .lang-dropdown-toggle i { transform: rotate(180deg); }
.lang-dropdown-menu {
    position: absolute; top: calc(100% + 0.4rem); right: 0;
    background: var(--c-bg); box-shadow: var(--sh-lg), 0 0 0 1px var(--c-line-light);
    min-width: 180px; width: max-content;
    opacity: 0; visibility: hidden;
    transform: translateY(-5px); transition: all 0.3s var(--ease-out);
    z-index: 1000; overflow: hidden; border-radius: var(--r-md);
    padding: 0.35rem;
}
.lang-dropdown.open .lang-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown-item {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.65rem 1rem; font-size: 0.88rem;
    color: var(--c-text) !important; text-decoration: none; transition: all 0.2s;
    border-radius: var(--r-sm);
}
.lang-dropdown-item:hover { background: var(--c-bg-warm); color: var(--c-gold-dark) !important; }
.lang-dropdown-item.active { background: var(--c-forest); color: #fff !important; border-radius: var(--r-sm); }
.lang-dropdown-item .flag { font-size: 1.15rem; }
.lang-dropdown-item .lang-name { flex: 1; color: inherit; }
.lang-dropdown-item.active .lang-name { color: #fff; }
.lang-dropdown-item .lang-check { opacity: 0; font-size: 0.8rem; color: var(--c-gold); }
.lang-dropdown-item.active .lang-check { opacity: 1; color: var(--c-gold-light); }

/* ================================================================
   MOBILE TOGGLE & MENU
   ================================================================ */
.mobile-toggle {
    display: none; background: transparent; border: none; cursor: pointer;
    padding: 0; width: 48px; height: 48px; position: fixed;
    top: 14px; right: 39px; z-index: 100000;
    border-radius: 50%; transition: all 0.3s;
}
.mobile-toggle:hover { background: rgba(255,255,255,0.1); }
body.scrolled .mobile-toggle:hover { background: rgba(0,0,0,0.04); }
.mobile-toggle-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 22px; height: 14px; }
.mobile-toggle span {
    display: block; position: absolute; left: 0; height: 2px;
    background: #fff; border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.mobile-toggle span:nth-child(1) { top: 0; width: 100%; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 60%; }
.mobile-toggle span:nth-child(3) { bottom: 0; width: 80%; }
body.scrolled .mobile-toggle span { background: var(--c-forest); }
.mobile-toggle.active { opacity: 0; visibility: hidden; pointer-events: none; }

.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.35);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.4s; z-index: 99998;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

.mobile-menu {
    position: fixed; top: 0; right: 0;
    width: 380px; max-width: 88vw; height: 100vh;
    background: var(--c-bg);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 99999; overflow-y: auto;
    display: flex; flex-direction: column; visibility: hidden;
    box-shadow: -10px 0 50px rgba(0,0,0,0.1);
}
.mobile-menu.active { transform: translateX(0); visibility: visible; }
.mobile-menu-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 1.8rem; border-bottom: 1px solid var(--c-line-light);
}
.mobile-menu-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600; color: var(--c-forest);
    letter-spacing: 2.5px; text-transform: uppercase;
}
.mobile-menu-close {
    background: var(--c-bg-soft); border: none;
    font-size: 1rem; color: var(--c-text-secondary);
    cursor: pointer; width: 42px; height: 42px;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.mobile-menu-close:hover { background: var(--c-gold); color: #fff; }
.mobile-menu-close:active { transform: scale(0.92); }
.mobile-menu-nav { padding: 0.8rem 0; flex: 1; display: flex; flex-direction: column; }
.mobile-menu-nav a {
    display: flex; align-items: center; width: 100%;
    padding: 0.95rem 1.8rem; font-size: 0.95rem; font-weight: 400;
    color: var(--c-text); text-decoration: none;
    transition: all 0.2s var(--ease); letter-spacing: 0.2px;
    -webkit-tap-highlight-color: rgba(194,163,110,0.12); touch-action: manipulation;
}
.mobile-menu-nav a:hover { background: var(--c-bg-warm); color: var(--c-gold-dark); }
.mobile-menu-nav a:active { background: var(--c-bg-soft); }
.mobile-menu-nav a i { width: 26px; margin-right: 0.8rem; color: var(--c-gold); font-size: 0.9rem; text-align: center; }
.mobile-menu-cta {
    padding: 1rem 1.8rem 1.5rem;
    border-top: 1px solid var(--c-line-light);
}
.mobile-menu-cta a {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    padding: 0.9rem; background: var(--c-gold); color: #fff;
    text-decoration: none; font-weight: 500; font-size: 0.88rem;
    border-radius: var(--r-sm); letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
    box-shadow: var(--sh-gold);
    -webkit-tap-highlight-color: rgba(194,163,110,0.3); touch-action: manipulation;
}
.mobile-menu-cta a:hover { background: var(--c-gold-dark); transform: translateY(-1px); }
.mobile-menu-lang {
    padding: 1rem 1.8rem; border-top: 1px solid var(--c-line-light);
}
.mobile-menu-lang-title {
    font-size: 0.65rem; font-weight: 600; color: var(--c-text-tertiary);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.7rem;
}
.mobile-menu-lang-grid { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-lang-btn {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.7rem 0.9rem; background: var(--c-bg-warm);
    border: 1px solid transparent; border-radius: var(--r-xs);
    font-size: 0.86rem; color: var(--c-text);
    text-decoration: none; transition: all 0.2s var(--ease);
}
.mobile-lang-btn:hover { border-color: var(--c-line); background: var(--c-bg); }
.mobile-lang-btn.active { background: var(--c-forest); border-color: var(--c-forest); color: #fff; }
.mobile-lang-btn .flag { font-size: 1.1rem; }
.mobile-lang-btn .lang-name { flex: 1; }
.mobile-lang-btn .lang-check { opacity: 0; font-size: 0.82rem; }
.mobile-lang-btn.active .lang-check { opacity: 1; color: var(--c-gold-light); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.8s ease;
    background-size: cover; background-position: center;
}
.hero-slide.active {
    opacity: 1;
    animation: heroScale 14s ease-out forwards;
}
@keyframes heroScale {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}
.hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,0.4) 0%,
            rgba(0,0,0,0.35) 35%,
            rgba(0,0,0,0.35) 65%,
            rgba(0,0,0,0.5) 100%
        );
    z-index: 1;
}
.hero-fallback {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1587061949409-02df41d5e562?w=1920') center/cover;
    z-index: 0;
}
.hero-fallback::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,0.4) 0%,
            rgba(0,0,0,0.35) 35%,
            rgba(0,0,0,0.35) 65%,
            rgba(0,0,0,0.5) 100%
        );
}
.hero::before { display: none; }
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(to top, var(--c-bg), transparent);
    z-index: 1; pointer-events: none;
}

.hero-content {
    text-align: center; color: #fff;
    position: relative; z-index: 2;
    max-width: 820px; padding: 0 2rem;
}
.hero-content > * {
    opacity: 0;
    animation: heroIn 1s var(--ease-out) forwards;
}
.hero-badge { animation-delay: 0.25s; }
.hero-content h1 { animation-delay: 0.5s; }
.hero-subtitle { animation-delay: 0.7s; }
.hero-buttons { animation-delay: 0.9s; }

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

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.7rem; font-weight: 500; margin-bottom: 1.6rem;
    text-transform: uppercase; letter-spacing: 3.5px;
    color: var(--c-gold-light);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.3rem; border-radius: var(--r-full);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-badge::before, .hero-badge::after { display: none; }
.hero-badge i { display: none; }

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    font-weight: 400; margin-bottom: 1.4rem;
    line-height: 1.1; letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.08rem; font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.72);
    max-width: 520px; margin-left: auto; margin-right: auto;
    line-height: 1.85;
}

.hero-buttons { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; font-weight: 500;
    text-decoration: none; font-size: 0.82rem;
    border: none; cursor: pointer;
    letter-spacing: 0.6px; border-radius: var(--r-sm);
    transition: all 0.3s var(--ease);
}
.btn-primary {
    background: var(--c-gold); color: #fff;
    box-shadow: var(--sh-gold);
}
.btn-primary:hover {
    background: var(--c-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(194,163,110,0.45);
}
.btn-outline {
    background: rgba(255,255,255,0.08); color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: #fff; color: var(--c-forest);
    border-color: #fff;
    box-shadow: 0 6px 20px rgba(255,255,255,0.12);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 50px; left: 50%;
    transform: translateX(-50%); z-index: 3;
}
.scroll-indicator a {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.7rem; color: rgba(255,255,255,0.45);
    text-decoration: none; font-size: 0.62rem;
    letter-spacing: 3px; text-transform: uppercase;
    transition: color 0.3s;
}
.scroll-indicator a:hover { color: rgba(255,255,255,0.75); }
.scroll-indicator i { font-size: 0.8rem; animation: indicatorBounce 2.2s ease-in-out infinite; }
@keyframes indicatorBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(7px); opacity: 1; }
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 7.5rem 0; width: 100%; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section-header {
    text-align: center; margin-bottom: 4rem;
    max-width: 650px; margin-left: auto; margin-right: auto;
}
.section-badge {
    display: inline-block;
    color: var(--c-gold-dark);
    font-size: 0.68rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 0.9rem;
    position: relative;
    padding: 0 0.5rem;
}
.section-badge::before,
.section-badge::after {
    content: ''; position: absolute; top: 50%;
    width: 28px; height: 1px; background: var(--c-gold-muted);
}
.section-badge::before { right: calc(100% + 0.6rem); }
.section-badge::after { left: calc(100% + 0.6rem); }
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: var(--c-forest);
    margin-bottom: 1rem; line-height: 1.18;
    letter-spacing: -0.5px;
}
.section-subtitle {
    color: var(--c-text-secondary);
    font-size: 1.02rem; font-weight: 300; line-height: 1.8;
}

/* ================================================================
   VORTEILE / BENEFITS
   ================================================================ */
.benefits-section {
    background: var(--c-bg-warm);
    border-top: 1px solid var(--c-line-light);
    border-bottom: 1px solid var(--c-line-light);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.benefit-card {
    text-align: center;
    padding: 2.5rem 1.8rem;
    background: var(--c-bg);
    border: 1px solid var(--c-line-light);
    border-radius: var(--r-lg);
    transition: all 0.4s var(--ease);
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-card-hover);
    border-color: var(--c-gold-muted);
}
.benefit-icon {
    width: 58px; height: 58px; margin: 0 auto 1.4rem;
    background: var(--c-forest);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.35s var(--ease);
}
.benefit-card:hover .benefit-icon {
    background: var(--c-gold);
    transform: scale(1.06) rotate(-3deg);
    box-shadow: var(--sh-gold);
}
.benefit-icon i { font-size: 1.15rem; color: #fff; }
.benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 600;
    color: var(--c-forest); margin-bottom: 0.6rem;
}
.benefit-card p {
    color: var(--c-text-secondary); font-size: 0.88rem;
    line-height: 1.7; font-weight: 300;
}

/* ================================================================
   MODELLE / MODELS
   ================================================================ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.model-card {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.45s var(--ease);
}
.model-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-xl);
    border-color: transparent;
}
.model-image { position: relative; height: 300px; overflow: hidden; }
.model-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.9s var(--ease-out);
}
.model-card:hover .model-image img { transform: scale(1.05); }
.model-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--c-gold); color: #fff;
    padding: 0.35rem 0.9rem; font-size: 0.62rem;
    font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; border-radius: var(--r-full);
    box-shadow: var(--sh-gold);
}
.model-content { padding: 1.8rem 2rem 2rem; }
.model-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; font-weight: 500;
    color: var(--c-forest); margin-bottom: 0.4rem;
}
.model-content > p {
    color: var(--c-text-secondary); font-size: 0.88rem;
    margin-bottom: 1rem; font-weight: 300; line-height: 1.7;
}
.model-specs {
    display: flex; gap: 1.5rem; margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--c-line-light);
    border-bottom: 1px solid var(--c-line-light);
    color: var(--c-text-secondary); font-size: 0.8rem;
}
.model-specs span { display: flex; align-items: center; gap: 0.4rem; }
.model-specs i { color: var(--c-gold); font-size: 0.8rem; }
.model-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem; font-weight: 500;
    color: var(--c-forest); margin: 1rem 0;
}
.model-price small {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem; font-weight: 300;
    color: var(--c-text-tertiary); margin-left: 0.2rem;
}
.model-btn {
    display: block; text-align: center; padding: 0.85rem;
    background: var(--c-forest); color: #fff;
    text-decoration: none; font-weight: 500; font-size: 0.82rem;
    border-radius: var(--r-sm); letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
}
.model-btn:hover { background: var(--c-gold); box-shadow: var(--sh-gold); }

/* ================================================================
   GALERIE / GALLERY
   ================================================================ */
.gallery-section { background: var(--c-bg-warm); }
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}
.gallery-item {
    position: relative; overflow: hidden; cursor: pointer;
    border-radius: var(--r-md);
    aspect-ratio: 4 / 3;
}
.gallery-image,
.gallery-video {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover .gallery-image,
.gallery-item:hover .gallery-video { transform: scale(1.04); }
.gallery-video-placeholder {
    width: 100%; height: 100%; background: var(--c-forest-light);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2.5rem;
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(30,58,47,0.8) 0%,
        rgba(30,58,47,0.1) 50%,
        transparent 100%
    );
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    padding: 1.4rem; opacity: 0;
    transition: opacity 0.35s var(--ease);
    border-radius: var(--r-md);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fff; font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 400;
    transform: translateY(8px);
    transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }
.gallery-overlay .gallery-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-forest); font-size: 0.95rem;
    transition: transform 0.4s var(--ease-spring);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.gallery-item:hover .gallery-icon { transform: translate(-50%, -50%) scale(1); }
.gallery-item.video-item .gallery-icon i { margin-left: 2px; }
.gallery-item.youtube-item .gallery-icon { background: #ff0000; color: #fff; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 10000; display: flex;
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.35s var(--ease);
    backdrop-filter: blur(16px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content {
    position: relative; max-width: 90vw; max-height: 90vh;
    transform: scale(0.94);
    transition: transform 0.45s var(--ease-out);
}
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--r-xs); }
.lightbox-close {
    position: absolute; top: -50px; right: 0;
    background: rgba(255,255,255,0.08); border: none;
    color: #fff; font-size: 1.4rem; cursor: pointer;
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.65; transition: all 0.3s;
}
.lightbox-close:hover { opacity: 1; background: rgba(255,255,255,0.14); transform: rotate(90deg); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff; font-size: 1.1rem;
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.13); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-caption {
    position: absolute; bottom: -42px;
    left: 0; right: 0; text-align: center;
    color: rgba(255,255,255,0.55);
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
}
.lightbox-counter {
    position: absolute; top: -50px; left: 0;
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem; letter-spacing: 2px;
}

/* ================================================================
   DETAILS
   ================================================================ */
.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.detail-card {
    background: var(--c-bg);
    padding: 2.2rem 1.8rem;
    border: 1px solid var(--c-line-light);
    border-radius: var(--r-lg);
    transition: all 0.4s var(--ease);
}
.detail-card::after { display: none; }
.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-card-hover);
    border-color: var(--c-gold-muted);
}
.detail-icon {
    width: 50px; height: 50px;
    background: var(--c-bg-soft);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem;
    transition: all 0.35s var(--ease);
}
.detail-card:hover .detail-icon {
    background: var(--c-gold);
    transform: scale(1.05);
    box-shadow: var(--sh-gold);
}
.detail-icon i { font-size: 1.1rem; color: var(--c-gold); transition: color 0.3s; }
.detail-card:hover .detail-icon i { color: #fff; }
.detail-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.32rem; font-weight: 600;
    color: var(--c-forest); margin-bottom: 0.5rem;
}
.detail-card p {
    color: var(--c-text-secondary);
    line-height: 1.75; font-weight: 300; font-size: 0.9rem;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
    background: var(--c-bg-warm);
    position: relative;
}
.faq-section.has-background {
    background-size: cover; background-position: center;
    background-attachment: fixed;
}
.faq-section .faq-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(30, 58, 47, 0.75) 0%,
        rgba(19, 40, 32, 0.92) 100%
    );
    z-index: 0;
}
.faq-section .section-inner { position: relative; z-index: 1; }
.faq-section.has-background .section-badge { color: var(--c-gold-light); }
.faq-section.has-background .section-badge::before,
.faq-section.has-background .section-badge::after { background: rgba(255,255,255,0.2); }
.faq-section.has-background .section-title { color: #fff; }
.faq-section.has-background .section-subtitle { color: rgba(255,255,255,0.7); }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.faq-card {
    background: var(--c-bg);
    padding: 2rem 1.8rem;
    border: 1px solid var(--c-line-light);
    border-radius: var(--r-lg);
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-card-hover);
    border-color: var(--c-gold-muted);
}
.faq-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 500;
    color: var(--c-forest);
    display: flex; align-items: flex-start; gap: 0.7rem;
    line-height: 1.4; margin-bottom: 0;
}
.faq-card h3 i { color: var(--c-gold); font-size: 0.8rem; margin-top: 0.2rem; flex-shrink: 0; }
.faq-card-link {
    font-size: 0.7rem; color: var(--c-gold-dark);
    text-transform: uppercase; letter-spacing: 1.5px;
    display: flex; align-items: center; gap: 0.4rem;
    margin-top: 1.1rem; font-weight: 500;
}
.faq-card-link i { transition: transform 0.3s var(--ease); font-size: 0.58rem; }
.faq-card:hover .faq-card-link i { transform: translateX(5px); }

/* FAQ Modal */
.faq-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 10000; display: flex;
    align-items: center; justify-content: center;
    padding: 2rem; opacity: 0; visibility: hidden;
    transition: all 0.3s; backdrop-filter: blur(8px);
}
.faq-modal.active { opacity: 1; visibility: visible; }
.faq-modal-content {
    background: var(--c-bg); max-width: 720px; width: 100%;
    max-height: 85vh; overflow-y: auto;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-xl);
    transform: translateY(20px) scale(0.98);
    transition: all 0.4s var(--ease-out);
}
.faq-modal.active .faq-modal-content { transform: translateY(0) scale(1); }
.faq-modal-header {
    background: var(--c-forest); color: #fff;
    padding: 1.8rem 2.2rem; position: sticky; top: 0; z-index: 1;
    display: flex; justify-content: space-between; align-items: center;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.faq-modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; margin: 0;
}
.faq-modal-close {
    background: rgba(255,255,255,0.08); border: none;
    font-size: 1.2rem; color: #fff; cursor: pointer;
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; line-height: 1;
}
.faq-modal-close:hover { background: var(--c-gold); }
.faq-modal-body { padding: 2.2rem; }
.faq-modal-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600;
    color: var(--c-forest); margin: 1.8rem 0 0.7rem;
}
.faq-modal-body h4:first-child { margin-top: 0; }
.faq-modal-body p { color: var(--c-text-secondary); line-height: 1.85; margin-bottom: 0.9rem; font-weight: 300; }
.faq-modal-body ul { list-style: none; padding: 0; margin: 0.8rem 0; }
.faq-modal-body ul li {
    position: relative; padding-left: 1.4rem;
    margin-bottom: 0.5rem; color: var(--c-text-secondary); line-height: 1.7;
}
.faq-modal-body ul li::before {
    content: ''; position: absolute; left: 0; top: 0.6rem;
    width: 7px; height: 7px; background: var(--c-gold-light); border-radius: 50%;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-section { background: var(--c-bg); }
.about-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem; align-items: start;
}
.about-content .section-badge { text-align: left; }
.about-content .section-badge::before { display: none; }
.about-content .section-title { text-align: left; margin-bottom: 1.8rem; }
.about-text {
    color: var(--c-text); line-height: 1.85;
    margin-bottom: 1.2rem; font-weight: 300; font-size: 1rem;
}
.about-text.highlight {
    color: var(--c-forest); font-weight: 400;
    font-style: italic;
    background: var(--c-bg-warm);
    padding: 1.3rem 1.6rem;
    border-radius: var(--r-sm);
    border-left: 3px solid var(--c-gold);
    margin-top: 1.5rem;
}
.promise-card {
    background: var(--c-bg);
    padding: 2.2rem;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    position: relative; overflow: hidden; margin-bottom: 0;
}
.promise-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--c-gold-light), var(--c-gold));
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.promise-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
    border-radius: var(--r-sm); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; margin-bottom: 1.2rem;
    box-shadow: var(--sh-gold);
}
.promise-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: var(--c-forest); margin-bottom: 0.7rem;
}
.promise-card p { color: var(--c-text-secondary); line-height: 1.75; font-weight: 300; }
.pricing-info {
    background: var(--c-forest); color: #fff;
    padding: 2rem 2.2rem; margin-top: 1.2rem;
    border-radius: var(--r-lg);
    position: relative; overflow: hidden;
}
.pricing-info::before {
    content: ''; position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    background: rgba(194,163,110,0.12);
    border-radius: 50%;
}
.pricing-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; margin-bottom: 0.7rem;
    display: flex; align-items: center; gap: 0.4rem;
    position: relative; z-index: 1;
}
.pricing-info h4 i { color: var(--c-gold-light); }
.pricing-info p { line-height: 1.75; margin-bottom: 0.7rem; opacity: 0.85; position: relative; z-index: 1; }
.pricing-info small { display: block; opacity: 0.45; font-size: 0.84rem; line-height: 1.6; position: relative; z-index: 1; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section {
    background: var(--c-bg-warm);
    border-top: 1px solid var(--c-line-light);
    position: relative;
}
.testimonials-section.has-background {
    background-size: cover; background-position: center; background-attachment: fixed;
}
.testimonials-section .testimonials-overlay {
    position: absolute; inset: 0;
    background: rgba(250,248,245,0.9);
    backdrop-filter: blur(2px); z-index: 0;
}
.testimonials-section .section-inner { position: relative; z-index: 1; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.testimonial-card {
    background: var(--c-bg);
    padding: 2.2rem;
    border: 1px solid var(--c-line-light);
    border-radius: var(--r-lg);
    position: relative;
    transition: all 0.35s var(--ease);
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-card-hover);
    border-color: var(--c-gold-muted);
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem; color: var(--c-gold-muted);
    position: absolute; top: 0.6rem; left: 1.8rem;
    line-height: 1; opacity: 0.6;
}
.testimonial-text {
    font-size: 0.95rem; line-height: 1.85;
    margin-bottom: 1.8rem; margin-top: 1.2rem;
    position: relative; z-index: 1;
    font-weight: 300; font-style: italic;
    color: var(--c-text-secondary);
}
.testimonial-author {
    display: flex; align-items: center; gap: 0.9rem;
    border-top: 1px solid var(--c-line-light);
    padding-top: 1.2rem;
}
.testimonial-avatar {
    width: 42px; height: 42px;
    background: var(--c-forest);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.85rem; color: #fff;
}
.testimonial-author h4 { font-size: 0.88rem; font-weight: 500; color: var(--c-forest); margin-bottom: 0.1rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--c-text-tertiary); font-weight: 300; }

/* ================================================================
   KONTAKT / CONTACT
   ================================================================ */
.contact-section { background: var(--c-bg); }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0; align-items: stretch;
    border-radius: var(--r-xl); overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--c-line-light);
}
.contact-info-card {
    background: var(--c-forest); color: #fff;
    padding: 3rem 2.5rem; position: relative; overflow: hidden;
}
.contact-info-card::before {
    content: ''; position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(194,163,110,0.07);
    border-radius: 50%;
}
.contact-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem; font-weight: 400;
    margin-bottom: 0.3rem; position: relative; z-index: 1;
}
.contact-info-card > p {
    color: rgba(255,255,255,0.4); font-size: 0.88rem;
    margin-bottom: 2.2rem; font-weight: 300;
    position: relative; z-index: 1;
}
.contact-item {
    display: flex; gap: 0.9rem; margin-bottom: 1.6rem;
    position: relative; z-index: 1;
}
.contact-item-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--r-xs);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.25s;
}
.contact-item:hover .contact-item-icon { background: rgba(194,163,110,0.18); }
.contact-item-icon i { font-size: 0.82rem; color: var(--c-gold-light); }
.contact-item h4 {
    font-size: 0.6rem; font-weight: 600; margin-bottom: 0.2rem;
    color: var(--c-gold-light);
    text-transform: uppercase; letter-spacing: 2px;
}
.contact-item p { opacity: 0.82; line-height: 1.65; font-weight: 300; font-size: 0.9rem; }
.contact-item a { color: #fff; text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--c-gold-light); }
.contact-map-inline {
    margin-top: 1.4rem; overflow: hidden;
    border-radius: var(--r-sm); position: relative; z-index: 1;
}
.contact-map-inline iframe { display: block; filter: brightness(0.95) contrast(1.05); }
.contact-form-card {
    background: var(--c-bg); padding: 3rem 2.8rem;
}
.contact-form-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; font-weight: 400;
    color: var(--c-forest); margin-bottom: 0.3rem;
}
.contact-form-card > p {
    color: var(--c-text-secondary); margin-bottom: 2.2rem;
    font-weight: 300; font-size: 0.9rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { margin-bottom: 0.3rem; }
.form-group.full { grid-column: span 2; }
.form-group label {
    display: block; margin-bottom: 0.4rem;
    font-weight: 500; color: var(--c-forest);
    font-size: 0.75rem; letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 0.78rem 1rem;
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-xs);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem; font-weight: 300;
    transition: all 0.25s var(--ease);
    background: var(--c-bg-warm);
    outline: none; color: var(--c-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--c-gold);
    background: var(--c-bg);
    box-shadow: 0 0 0 3px var(--c-gold-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-text-tertiary); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
    width: 100%; padding: 0.9rem;
    background: var(--c-gold); color: #fff;
    border: none; font-size: 0.84rem; font-weight: 500;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center; gap: 0.6rem;
    border-radius: var(--r-sm); letter-spacing: 0.5px;
    box-shadow: var(--sh-gold);
    transition: all 0.3s var(--ease); margin-top: 0.4rem;
}
.form-submit:hover {
    background: var(--c-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194,163,110,0.4);
}
.alert-message {
    padding: 1rem 1.3rem;
    background: #ecfdf5; color: #065f46;
    margin-bottom: 1.8rem;
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.88rem;
    border-radius: var(--r-xs);
    border: 1px solid #a7f3d0;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
    background: var(--c-forest-dark);
    color: #fff;
    padding: 5rem var(--gutter) 2rem;
}
.footer-content {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; margin-bottom: 1.2rem;
    display: block; color: #fff;
    letter-spacing: 2.5px; text-transform: uppercase;
}
.footer-brand p {
    color: rgba(255,255,255,0.35);
    line-height: 1.8; margin-bottom: 1.5rem;
    font-weight: 300; font-size: 0.86rem;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none; font-size: 0.82rem;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    background: var(--c-gold); color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}
.footer-col h4 {
    font-size: 0.7rem; font-weight: 600;
    margin-bottom: 1.3rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1.3px; text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.86rem; font-weight: 300;
    transition: all 0.3s var(--ease);
}
.footer-col a:hover { color: var(--c-gold-light); }
.footer-bottom {
    max-width: var(--max-w); margin: 0 auto;
    padding-top: 1.8rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.76rem; color: rgba(255,255,255,0.22); font-weight: 300;
}
.footer-bottom a {
    color: rgba(255,255,255,0.22);
    text-decoration: none; margin-left: 1.8rem;
    transition: color 0.3s; cursor: pointer;
}
.footer-bottom a:hover { color: var(--c-gold-light); }

/* ================================================================
   LEGAL MODAL
   ================================================================ */
.legal-modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.45); opacity: 0;
    transition: opacity 0.3s; padding: 1rem;
    backdrop-filter: blur(8px);
}
.legal-modal.active { display: flex; align-items: center; justify-content: center; opacity: 1; }
.legal-modal-content {
    background: var(--c-bg); width: 100%; max-width: 840px; max-height: 90vh;
    overflow: hidden; position: relative;
    display: flex; flex-direction: column;
    animation: legalIn 0.4s var(--ease-out);
    box-shadow: var(--sh-xl); border-radius: var(--r-xl);
}
@keyframes legalIn {
    from { opacity: 0; transform: translateY(25px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.legal-modal-header {
    background: var(--c-forest); padding: 1.6rem 2.2rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-shrink: 0; border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.legal-modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; color: #fff; margin: 0;
}
.legal-modal-close {
    background: rgba(255,255,255,0.08); border: none;
    font-size: 1.2rem; color: #fff; cursor: pointer;
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; line-height: 1;
}
.legal-modal-close:hover { background: var(--c-gold); }
.legal-modal-body {
    padding: 2.2rem; color: var(--c-text);
    line-height: 1.8; font-size: 0.93rem;
    overflow-y: auto; flex: 1;
    scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.12) transparent;
}
.legal-modal-body::-webkit-scrollbar { width: 5px; }
.legal-modal-body::-webkit-scrollbar-track { background: transparent; }
.legal-modal-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 3px; }
.legal-modal-body::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.22); }
.legal-modal-body h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 500; color: var(--c-forest);
    margin: 2.2rem 0 1rem; padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--c-gold);
}
.legal-modal-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 500; color: var(--c-forest);
    margin: 1.8rem 0 0.9rem; padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--c-line);
}
.legal-modal-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 600; color: var(--c-forest);
    margin: 1.5rem 0 0.7rem;
}
.legal-modal-body h4 {
    font-size: 0.98rem; font-weight: 500;
    color: var(--c-forest-light); margin: 1.2rem 0 0.6rem;
}
.legal-modal-body h1:first-child,
.legal-modal-body h2:first-child,
.legal-modal-body h3:first-child,
.legal-modal-body h4:first-child { margin-top: 0; }
.legal-modal-body p { margin-bottom: 0.9rem; font-weight: 300; color: var(--c-text); }
.legal-modal-body strong, .legal-modal-body b { font-weight: 500; color: var(--c-forest); }
.legal-modal-body em,
.legal-modal-body i:not(.fas):not(.fab):not(.far) { font-style: italic; color: var(--c-text-secondary); }
.legal-modal-body ul, .legal-modal-body ol { margin: 0.8rem 0 1.2rem 0.8rem; padding: 0; }
.legal-modal-body li { margin-bottom: 0.45rem; font-weight: 300; line-height: 1.75; }
.legal-modal-body ul li { list-style-type: none; position: relative; padding-left: 1.1rem; }
.legal-modal-body ul li::before {
    content: ''; position: absolute; left: 0; top: 0.65rem;
    width: 6px; height: 6px; background: var(--c-gold-light); border-radius: 50%;
}
.legal-modal-body ol { counter-reset: item; list-style: none; }
.legal-modal-body ol li { counter-increment: item; padding-left: 1.8rem; position: relative; }
.legal-modal-body ol li::before { content: counter(item) "."; position: absolute; left: 0; font-weight: 500; color: var(--c-gold); }
.legal-modal-body a { color: var(--c-gold-dark); text-decoration: none; border-bottom: 1px solid transparent; transition: all 0.3s; }
.legal-modal-body a:hover { border-bottom-color: var(--c-gold-dark); }
.legal-modal-body blockquote {
    margin: 1.2rem 0; padding: 1.1rem 1.5rem;
    background: var(--c-bg-warm); border-left: 3px solid var(--c-gold);
    font-style: italic; color: var(--c-text-secondary);
    border-radius: 0 var(--r-xs) var(--r-xs) 0;
}
.legal-modal-body hr { border: none; height: 1px; background: var(--c-line); margin: 1.8rem 0; }
.legal-modal-body table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.9rem; }
.legal-modal-body table th, .legal-modal-body table td { padding: 0.8rem; text-align: left; border-bottom: 1px solid var(--c-line); }
.legal-modal-body table th { background: var(--c-bg-warm); font-weight: 500; color: var(--c-forest); }
.legal-modal-body table tr:hover td { background: var(--c-bg-warm); }
.legal-modal-body .info-box,
.legal-modal-body div[class*="info"],
.legal-modal-body div[class*="notice"],
.legal-modal-body div[class*="hinweis"] {
    background: var(--c-bg-warm); border-left: 3px solid var(--c-gold);
    padding: 1.1rem; margin: 1.2rem 0;
    border-radius: 0 var(--r-xs) var(--r-xs) 0;
}
.legal-modal-body address { font-style: normal; background: var(--c-bg-warm); padding: 1.1rem; margin: 1rem 0; border-radius: var(--r-xs); }

/* ================================================================
   SCROLL BUTTON
   ================================================================ */
.scroll-btn {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--c-gold); color: #fff;
    border: none; cursor: pointer; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    box-shadow: var(--sh-gold);
    opacity: 1; visibility: visible;
    transition: all 0.3s var(--ease); z-index: 999;
}
.scroll-btn:hover {
    background: var(--c-forest);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}
.scroll-btn.at-top { transform: rotate(180deg); }
.scroll-btn.at-top:hover { transform: rotate(180deg) translateY(2px); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .models-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .details-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    h1 { font-size: 3.2rem; }
    .section-title { font-size: 2.4rem; }
    .contact-wrapper { grid-template-columns: 1fr; border-radius: var(--r-lg); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    nav ul { display: none; }
    .lang-dropdown { display: none; }

    header { padding: 0.8rem var(--gutter); }
    header.scrolled nav { padding: 0.4rem 1rem; }
    h1 { font-size: 2.6rem; letter-spacing: -0.5px; }
    .hero-badge { font-size: 0.6rem; letter-spacing: 2.5px; }
    .hero-subtitle { font-size: 0.92rem; }
    .hero-content { padding: 0 1.2rem; }
    .section { padding: 4.5rem 0; }
    .section-header { margin-bottom: 2.8rem; }
    .section-title { font-size: 2.1rem; }
    .section-badge::before, .section-badge::after { width: 18px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .benefit-card { padding: 1.8rem 1.4rem; }
    .models-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
    .footer-brand { grid-column: span 2; text-align: center; }
    .footer-social { justify-content: center; }
    .details-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-modal { padding: 0.8rem; }
    .faq-modal-content { max-height: 95vh; border-radius: var(--r-lg); }
    .faq-modal-header { padding: 1.3rem; border-radius: var(--r-lg) var(--r-lg) 0 0; }
    .faq-modal-body { padding: 1.3rem; }
    .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
    .footer-bottom a { margin: 0 0.7rem; }
    .lightbox-nav { width: 42px; height: 42px; font-size: 1rem; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-content img { max-height: 70vh; }
    .legal-modal { padding: 0.4rem; }
    .legal-modal-content { max-height: 98vh; border-radius: var(--r-lg); }
    .legal-modal-header { padding: 1.2rem 1.3rem; border-radius: var(--r-lg) var(--r-lg) 0 0; }
    .legal-modal-header h2 { font-size: 1.2rem; }
    .legal-modal-body { padding: 1.3rem; font-size: 0.9rem; }
    .legal-modal-body h1 { font-size: 1.35rem; margin: 1.3rem 0 0.7rem; }
    .legal-modal-body h2 { font-size: 1.2rem; margin: 1.3rem 0 0.7rem; }
    .legal-modal-body h3 { font-size: 1.05rem; }
    .legal-modal-body h4 { font-size: 0.95rem; }
    .legal-modal-body ul, .legal-modal-body ol { margin-left: 0.3rem; }
    .legal-modal-body blockquote { padding: 0.9rem; }
    .legal-modal-body table { font-size: 0.83rem; }
    .legal-modal-body table th, .legal-modal-body table td { padding: 0.55rem 0.4rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.1rem; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.8rem; }
    .btn { padding: 0.8rem 1.6rem; font-size: 0.78rem; }
    .hero-buttons { flex-direction: column; width: 82%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .benefits-grid { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .mobile-menu { width: 100%; max-width: 100vw; }
    .contact-info-card { padding: 2.2rem 1.6rem; }
    .contact-form-card { padding: 2.2rem 1.4rem; }
    .model-content { padding: 1.5rem 1.6rem 1.8rem; }
    .model-image { height: 240px; }
    .legal-modal-body { padding: 0.9rem; }
    .legal-modal-body p { font-size: 0.86rem; }
    .scroll-btn { bottom: 18px; right: 18px; width: 40px; height: 40px; }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
