:root {
    --bg: #f8f6f4;
    --surface: #ede9e5;
    --gold: #6b9b6e;
    --white: #2c3e3e;
    --text-dim: #5a6565;
    --accent: #509b82;
    --burgundy: #7d3f45;
    --wine-red: #8b4553;
    --forest-green: #4a7c59;
    --sage-green: #7b9a7e;
    --light-green: #9db89f;
    --soft-beige: #f0ebe5;
    --font-heading: 'Cormorant Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

/* UX: Custom Cursor */

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

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

.section {
    padding: 120px 0;
}

.bg-dark {
    background: var(--surface);
}

.bg-light-dark {
    background: var(--light-green);
}

.text-center {
    text-align: center;
    margin-bottom: 50px;
}

/* Custom Cursor UX */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: 0.1s;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 30px 0;
    z-index: 1000;
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(74, 124, 89, 0.1);
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--wine-red) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(125, 63, 69, 0.35);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--wine-red) 0%, var(--burgundy) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(125, 63, 69, 0.5);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--forest-green);
    color: var(--forest-green);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: #ffffff;
    border-color: var(--forest-green);
    box-shadow: 0 3px 10px rgba(74, 124, 89, 0.35);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--soft-beige) 0%, #e5f0e6 50%, var(--surface) 100%);
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(123, 154, 126, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    right: -5%;
    top: 0;
    height: 100%;
    width: 55%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.2) 70%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.2) 70%,
            transparent 100%);
    filter: grayscale(20%) brightness(0.9);
}

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

.hero-content>span {
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}

.hero-content>span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.15;
    margin: 20px 0 30px;
    font-weight: 600;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
    display: block;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.btn-gold {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 89, 0.6);
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(74, 124, 126, 0.35);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Cards UX */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.intro-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.intro-image-item {
    text-align: center;
}

.intro-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
    border: 3px solid rgba(123, 154, 126, 0.3);
}

.leistungen-layout {
    display: grid;
    grid-template-columns: 0.7fr 2.3fr;
    gap: 40px;
    align-items: start;
}

.leistungen-image-wrap {
    position: sticky;
    top: 100px;
}

.leistungen-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
}

.leistungen-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.card {
    padding: 40px;
    background: var(--surface);
    border: 2px solid rgba(74, 124, 89, 0.3);
    transition: 0.4s;
    border-radius: 10px;
}

.card:hover {
    border-color: var(--forest-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(157, 184, 159, 0.2) 100%);
}

.link-gold {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin-top: 20px;
}

/* Pricing & FAQ */
.price-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 2px solid rgba(74, 124, 126, 0.25);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

details {
    margin-bottom: 20px;
    background: var(--surface);
    border-radius: 8px;
    border: 2px solid rgba(74, 124, 89, 0.3);
    transition: all 0.3s ease;
}

details:hover {
    border-color: var(--forest-green);
    box-shadow: 0 3px 15px rgba(74, 124, 89, 0.2);
}

details[open] {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(157, 184, 159, 0.25) 100%);
    border-color: var(--burgundy);
    box-shadow: 0 5px 20px rgba(125, 63, 69, 0.15);
}

summary {
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    padding: 20px 60px 20px 20px;
    list-style: none;
    position: relative;
    user-select: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

summary::-webkit-details-marker {
    display: none;
}

summary::before {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    transition: transform 0.3s ease;
}

summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

details[open] summary {
    color: var(--gold);
    border-bottom: 1px solid rgba(143, 188, 143, 0.3);
    margin-bottom: 15px;
}

summary:hover {
    color: var(--gold);
}

details p {
    padding: 0 20px 20px 20px;
    color: var(--text-dim);
    line-height: 1.8;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Team Section */
.team-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

.tag {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.info-box {
    background: var(--surface);
    padding: 20px;
    border-left: 4px solid var(--forest-green);
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(74, 124, 89, 0.15);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.services-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-dim);
}

/* Language-specific Images */
.language-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.language-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 500px;
    border-radius: 24px;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--forest-green);
    color: var(--forest-green);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: 0.3s;
    font-weight: 600;
    font-size: 1rem;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: #ffffff;
    border-color: var(--sage-green);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.35);
    transform: translateY(-2px);
}

/* News Section */
.news-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.news-card {
    flex: 1;
    min-width: 300px;
    background: var(--surface);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(74, 124, 89, 0.3);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.25);
    border-color: var(--burgundy);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(125, 63, 69, 0.08) 100%);
}

.news-date {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-card h3 {
    margin: 15px 0;
}

/* Contact Form */
.contact-info {
    margin: 20px 0;
}

.contact-info p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--surface);
    border: 2px solid rgba(74, 124, 89, 0.35);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group select {
    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='%234a7c59' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    appearance: none;
}

.form-group select option {
    background: var(--bg);
    color: var(--white);
}

.form-status {
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.success-message {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 0;
}

.error-message {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 0;
}

.call-btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.video-card {
    background: var(--surface);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(74, 124, 89, 0.3);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
    border-color: var(--forest-green);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #e5f0e6 0%, var(--soft-beige) 100%);
}

.video-wrapper iframe,
.video-wrapper blockquote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper blockquote {
    position: relative;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    color: var(--forest-green);
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.video-info p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Footer */
.footer {
    border-top: 2px solid rgba(74, 124, 126, 0.35);
}

.maps-box {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.bottom-bar {
    text-align: center;
    padding-top: 50px;
    border-top: 2px solid rgba(74, 124, 126, 0.25);
    margin-top: 50px;
    font-size: 0.9rem;
}

.bottom-bar a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.bottom-bar a:hover {
    color: var(--white);
}

.copyright {
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Section Headers */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-head p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* Responsive */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-bg-image {
        width: 45%;
    }

    .section-head h2 {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .leistungen-layout {
        grid-template-columns: 1fr;
    }

    .leistungen-image-wrap {
        position: relative;
        top: 0;
    }

    .leistungen-image {
        max-height: 420px;
        object-position: center;
    }
}

/* Mobile & Tablet Navigation */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg);
        width: 280px;
        height: 100vh;
        padding: 100px 30px 30px;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
    }

    .menu-btn {
        display: block;
        z-index: 1000;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header {
        padding: 20px 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .hero {
        min-height: 80vh;
        padding: 80px 0 40px;
    }

    .hero-bg-image {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-content>span {
        padding-left: 50px;
        font-size: 0.85rem;
    }

    .hero-content>span::before {
        width: 35px;
    }

    .hero-content {
        text-align: left;
    }

    .btn-gold {
        width: 100%;
        text-align: center;
        padding: 18px 30px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .language-image-container {
        padding: 0 10px;
    }

    .language-image {
        max-width: 100%;
        max-height: 350px;
        border-radius: 18px;
    }

    .intro-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-image {
        max-width: 100%;
    }

    .leistungen-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leistungen-image-wrap {
        position: relative;
        top: 0;
    }

    .leistungen-image {
        max-height: 320px;
    }

    .leistungen-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 30px 20px;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
    }

    .news-card {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

    .btn-outline,
    .call-btn {
        width: 100%;
        padding: 15px;
    }

    details {
        padding: 15px;
    }

    summary {
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .section-head h2 {
        font-size: 1.75rem;
    }

    .language-image {
        max-height: 250px;
        border-radius: 14px;
    }

    .lang-switcher {
        gap: 5px;
    }

    .lang-btn {
        padding: 5px 10px;
    }

    .leistungen-image {
        max-height: 260px;
    }
}