:root {
    --primary: #1a1a1a;
    --secondary: #c9a962;
    --accent: #8b7355;
    --light: #f8f6f3;
    --white: #ffffff;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --border: #e5e0d8;
    --shadow: rgba(0, 0, 0, 0.08);
    --fallback-img: #e8e4de;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
}

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    background: var(--light);
    padding: 4px 10px;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-list a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--secondary);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-color: var(--fallback-img);
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

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

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 28px;
}

.hero-text {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 520px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--fallback-img);
    min-height: 500px;
    position: relative;
}

.split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 24px;
    color: var(--primary);
}

.split-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: var(--white);
    padding: 0;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    height: 220px;
    background-color: var(--fallback-img);
    position: relative;
    overflow: hidden;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 32px;
}

.service-name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.service-card .btn-secondary {
    width: 100%;
    text-align: center;
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 400px;
    background: var(--white);
    padding: 40px;
    box-shadow: 0 4px 24px var(--shadow);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-light);
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.benefit-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.benefit-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--primary);
}

.benefit-text {
    font-size: 15px;
    color: var(--text-light);
}

/* Form Styles */
.form-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 56px;
    box-shadow: 0 8px 40px var(--shadow);
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--secondary);
}

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

.cta-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--white);
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-col {
    flex: 1 1 240px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--secondary);
}

.footer-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--primary);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--primary);
}

.thanks-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Legal Pages */
.legal-content {
    padding-top: 140px;
    padding-bottom: 80px;
}

.legal-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--primary);
}

.legal-text h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal-text h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary);
}

.legal-text p {
    margin-bottom: 16px;
    color: var(--text);
}

.legal-text ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-text li {
    margin-bottom: 8px;
    color: var(--text);
}

/* About Page */
.about-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    background: var(--light);
}

.about-hero-title {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 24px;
    color: var(--primary);
}

.about-hero-text {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 300px;
    padding: 40px;
    background: var(--light);
}

.value-number {
    font-size: 48px;
    font-weight: 200;
    color: var(--secondary);
    margin-bottom: 16px;
}

.value-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--primary);
}

.value-text {
    font-size: 15px;
    color: var(--text-light);
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-form-wrapper {
    flex: 1 1 400px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 17px;
    color: var(--text);
    line-height: 1.6;
}

/* Disclaimer */
.disclaimer {
    background: var(--light);
    padding: 24px;
    margin-top: 48px;
    border-left: 4px solid var(--secondary);
}

.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* References */
.references {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.references-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.references-list {
    list-style: none;
}

.references-list li {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.references-list a {
    color: var(--secondary);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
        gap: 48px;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .split-image {
        min-height: 400px;
        width: 100%;
    }

    .hero-title {
        font-size: 42px;
    }

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

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

    .section {
        padding: 64px 0;
    }

    .form-wrapper {
        padding: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-title {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

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

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
