:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d29;
    --secondary: #8fbc8f;
    --accent: #c4a35a;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #fafaf8;
    --bg-alt: #f0efe8;
    --white: #ffffff;
    --border: #e0ddd5;
    --shadow: rgba(45, 90, 61, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

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

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

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

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

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

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

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

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

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

.ad-disclosure {
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #b3943e;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

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

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

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

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

/* Editorial Content */
.editorial-section {
    padding: 80px 24px;
}

.editorial-intro {
    font-size: 21px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

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

/* Article Flow */
.article-block {
    margin-bottom: 60px;
}

.article-block h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.article-block h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
    margin-top: 32px;
}

.article-block p {
    margin-bottom: 20px;
}

.inline-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.inline-image img {
    width: 100%;
    display: block;
}

.image-caption {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-light);
    background: var(--bg-alt);
}

/* CTA Inline */
.cta-inline {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: 12px;
    margin: 48px 0;
    text-align: center;
    border-left: 4px solid var(--accent);
}

.cta-inline h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

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

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 48px 0;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 200px;
    background-color: var(--secondary);
    overflow: hidden;
}

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

.service-card-content {
    padding: 24px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

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

/* Alternating Sections */
.alt-section {
    background: var(--bg-alt);
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

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

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--secondary);
}

.split-image img {
    width: 100%;
    display: block;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 24px;
    background: var(--primary-dark);
    color: var(--white);
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 12px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-role {
    font-size: 14px;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 24px;
}

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

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 320px;
}

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

.contact-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 17px;
    color: var(--text);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.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(45, 90, 61, 0.1);
}

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

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 24px 30px;
}

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

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

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

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

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

.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
}

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

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

/* Disclaimer */
.disclaimer {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--text);
}

.cookie-text a {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    font-weight: 500;
}

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

.cookie-reject {
    background: var(--bg-alt);
    color: var(--text);
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

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

/* Legal Pages */
.legal-content {
    padding: 60px 24px;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 32px;
}

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

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* About Page */
.about-hero {
    background: var(--primary);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin: 48px 0;
}

.value-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 32px;
}

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

.value-item h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

/* Page Header */
.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

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

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .split-content {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

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

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    padding: 80px 24px;
}

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

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
}

/* References */
.references-section {
    background: var(--bg-alt);
    padding: 40px 24px;
    margin-top: 60px;
}

.references-section h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

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

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