:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #8b7355;
    --italy-green: #009246;
    --italy-white: #ffffff;
    --italy-red: #ce2b37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.lang-btn {
    padding: 10px 18px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    border-right: 1px solid var(--border-color);
}

.lang-btn:last-child {
    border-right: none;
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 50%, #f8f7f4 100%);
    color: var(--text-dark);
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        );
    opacity: 0.5;
}

.hero-accent {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-accent-1 {
    width: 400px;
    height: 400px;
    background: var(--italy-green);
    top: -150px;
    right: -100px;
}

.hero-accent-2 {
    width: 300px;
    height: 300px;
    background: var(--italy-red);
    bottom: -100px;
    left: -80px;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--italy-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.hero-badge::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--italy-green);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--primary-color);
    line-height: 1.1;
    position: relative;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--italy-green) 0%, var(--italy-white) 50%, var(--italy-red) 100%);
    margin: 30px auto;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--italy-green);
}

.hero-divider::before {
    left: -10px;
}

.hero-divider::after {
    right: -10px;
    background: var(--italy-red);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    line-height: 1.5;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-white);
}

.services .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.service-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.service-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 300;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--bg-light);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.cta-description {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 50px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn {
    text-decoration: none;
    display: inline-block;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.contacts-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.contacts-content {
    max-width: 600px;
    margin: 0 auto;
}

.contacts-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.contacts-email {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    border-bottom: 1px solid transparent;
}

.contacts-email:hover {
    border-bottom-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-white);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-text {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-accent-1 {
        width: 250px;
        height: 250px;
        top: -100px;
        right: -60px;
    }

    .hero-accent-2 {
        width: 200px;
        height: 200px;
        bottom: -60px;
        left: -50px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 40px 30px;
    }

    .cta {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .language-switcher {
        top: 20px;
        right: 20px;
    }

    .lang-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .contacts {
        padding: 80px 0;
    }

    .contacts-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-accent-1 {
        width: 180px;
        height: 180px;
        top: -80px;
        right: -40px;
    }

    .hero-accent-2 {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -30px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-divider {
        width: 60px;
        margin: 25px auto;
    }

    .services {
        padding: 60px 0;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contacts {
        padding: 60px 0;
    }

    .contacts-title {
        font-size: 2rem;
    }

    .contacts-email {
        font-size: 1.1rem;
    }
}
