:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d29;
    --secondary: #8b6914;
    --accent: #d4a84b;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #fafaf8;
    --bg-alt: #f0ede6;
    --bg-dark: #e8e4da;
    --white: #ffffff;
    --border: #d1cdc3;
    --shadow: rgba(45, 90, 61, 0.08);
    --radius: 6px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

.ad-disclosure {
    background: var(--bg-dark);
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.top-nav {
    background: var(--white);
    padding: 18px 0;
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.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 var(--transition);
}

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

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

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

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.25;
    color: var(--primary-dark);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image-wrap {
    margin: 48px 0;
    background: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.editorial-section {
    padding: 64px 0;
}

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

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

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

.story-block {
    margin-bottom: 48px;
}

.story-block h3 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 16px;
}

.story-block p {
    margin-bottom: 16px;
}

.inline-image {
    margin: 32px 0;
    background: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-light);
    background: var(--white);
}

.cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    margin: 24px 0;
    transition: background var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-inline:hover {
    background: var(--primary-dark);
    color: var(--white);
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

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

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

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

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.testimonial-block {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin: 48px 0;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-block blockquote {
    font-size: 19px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.form-section {
    background: var(--primary-dark);
    padding: 80px 0;
    color: var(--white);
}

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

.form-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 600px;
}

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

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

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

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

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

.benefits-list {
    list-style: none;
    margin: 32px 0;
}

.benefits-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    background: var(--bg-alt);
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

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

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

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

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

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

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimer-section {
    background: var(--bg-dark);
    padding: 32px 0;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.disclaimer-section p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.cookie-banner.visible {
    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-inner p {
    flex: 1;
    font-size: 14px;
    color: var(--text-light);
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

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

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

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

.page-content h2 {
    font-size: 26px;
    color: var(--primary-dark);
    margin: 40px 0 16px;
}

.page-content h2:first-child {
    margin-top: 0;
}

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

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

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

.contact-info-block {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 40px;
}

.contact-info-block h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.contact-info-item strong {
    min-width: 120px;
    color: var(--text);
}

.contact-info-item span {
    color: var(--text-light);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

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

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

.thanks-container h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

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

.references-section {
    background: var(--bg-alt);
    padding: 40px 0;
}

.references-section h4 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 16px;
}

.references-list {
    list-style: none;
    font-size: 13px;
    color: var(--text-light);
}

.references-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.references-list li::before {
    content: attr(data-ref);
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

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

@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 8px 24px var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .stats-row {
        flex-direction: column;
        gap: 32px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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