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

:root {
    --primary-dark: #2c2c2c;
    --primary-light: #f8f6f3;
    --accent: #a67c52;
    --accent-hover: #8b6642;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--primary-light);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 400;
}

nav a:hover {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

.split-hero {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

.split-left {
    flex: 1;
    background: var(--primary-dark);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8% 6%;
}

.split-right {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1200');
    background-size: cover;
    background-position: center;
}

.hero-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.split-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.split-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.cta-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.split-section {
    display: flex;
    min-height: 70vh;
}

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

.content-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6% 5%;
}

.image-half {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.content-half h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-dark);
}

.content-half h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-dark);
}

.content-half p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 600;
    margin: 1rem 0;
}

.cta-secondary {
    display: inline-block;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.8rem 2rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 1rem;
    font-weight: 500;
}

.cta-secondary:hover {
    background: var(--accent);
    color: white;
}

.full-width-section {
    padding: 6% 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.contact-split {
    display: flex;
    min-height: 80vh;
}

.form-container {
    flex: 1;
    padding: 5%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info {
    flex: 1;
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    background: #fafafa;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

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

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 1.2rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    font-weight: 600;
}

.submit-btn:hover {
    background: var(--accent-hover);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block p {
    line-height: 1.8;
    opacity: 0.9;
}

footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 3rem;
    gap: 4rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--accent);
    backdrop-filter: blur(10px);
}

.cookie-banner.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin-bottom: 0.5rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.cookie-accept {
    background: var(--accent);
    color: white;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s;
    font-weight: 600;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 7px 25px rgba(0,0,0,0.4);
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    margin-top: 80px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border: 1px solid var(--border-color);
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.thanks-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.policy-container {
    max-width: 900px;
    margin: 120px auto 4rem;
    padding: 0 5%;
}

.policy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.policy-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-dark);
}

.policy-container h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-dark);
}

.policy-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.policy-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.about-intro {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 8% 5%;
    margin-top: 80px;
    text-align: center;
}

.about-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
}

.grid-item {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 968px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    nav ul.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .split-hero,
    .split-section,
    .contact-split {
        flex-direction: column;
    }

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

    .split-right,
    .image-half {
        min-height: 400px;
    }

    .split-left h1 {
        font-size: 2.5rem;
    }

    .content-half h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-banner.active {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-grid {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .header-container {
        padding: 1rem 5%;
    }

    .split-left h1 {
        font-size: 2rem;
    }

    .about-intro h1 {
        font-size: 2rem;
    }

    .content-half h2 {
        font-size: 1.8rem;
    }
}
