:root {
    --primary: #2c5f4a;
    --primary-light: #3d7a62;
    --primary-dark: #1e4232;
    --secondary: #d4a574;
    --secondary-light: #e8c9a8;
    --accent: #8b7355;
    --text-dark: #2a2a2a;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --bg-light: #faf9f7;
    --bg-warm: #f5f1eb;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-light: #e5e0d8;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

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

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

p {
    margin-bottom: 1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--bg-warm);
    padding: 4px 12px;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

.nav-desktop a {
    color: var(--text-medium);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
    box-shadow: var(--shadow-medium);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

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

.btn-accent {
    background: var(--secondary);
    color: var(--text-dark);
}

.btn-accent:hover {
    background: var(--accent);
    color: var(--bg-white);
}

.hero {
    padding-top: 70px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-split {
    display: flex;
    min-height: calc(85vh - 70px);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: var(--bg-warm);
}

.hero-image {
    flex: 1;
    position: relative;
    background-color: var(--border-light);
}

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

.hero h1 {
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 480px;
}

.section {
    padding: 100px 0;
}

.section-warm {
    background: var(--bg-warm);
}

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--bg-white);
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    position: relative;
    background-color: var(--border-light);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.service-image {
    height: 200px;
    position: relative;
    background-color: var(--border-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: var(--font-main);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
}

.feature-item h4 {
    font-family: var(--font-main);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item h4 {
    font-family: var(--font-main);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

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

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

.footer {
    background: var(--bg-dark);
    color: var(--bg-light);
    padding: 80px 0 40px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--bg-white);
    font-family: var(--font-main);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 1rem;
}

.footer-col p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    padding: 6px 0;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.disclaimer {
    background: var(--bg-warm);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--bg-light);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    min-width: 280px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background: var(--primary-light);
}

.cookie-reject {
    background: transparent;
    color: var(--bg-light);
    border: 1px solid var(--text-light);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.page-header {
    padding: 140px 0 60px;
    background: var(--bg-warm);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    margin: 48px 0 24px;
}

.page-content h3 {
    margin: 32px 0 16px;
}

.page-content ul,
.page-content ol {
    margin: 16px 0 24px 24px;
}

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    background: var(--bg-warm);
    text-align: center;
}

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

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

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

.thanks-content h1 {
    margin-bottom: 24px;
}

.thanks-content p {
    color: var(--text-medium);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.cta-section {
    text-align: center;
    padding: 100px 24px;
    background: var(--primary);
    color: var(--bg-white);
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 32px;
}

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

.cta-section .btn:hover {
    background: var(--secondary-light);
}

.inline-cta {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.inline-cta h3 {
    margin-bottom: 16px;
}

.inline-cta p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-image {
        min-height: 400px;
    }

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

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

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

    .split-content {
        padding: 60px 40px;
    }
}

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

    .nav-hamburger {
        display: block;
    }

    .ad-disclosure {
        position: static;
        transform: none;
        margin: 8px 0;
        display: inline-block;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .section {
        padding: 60px 0;
    }

    .split-content {
        padding: 40px 24px;
    }

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

    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}
