:root {
    --primary: #2d5a4a;
    --primary-dark: #1e3d32;
    --secondary: #c9a962;
    --accent: #8b5e3c;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #faf9f7;
    --bg-alt: #f0ede8;
    --bg-dark: #e5e0d8;
    --white: #ffffff;
    --border: #d4cfc5;
    --shadow: rgba(45, 90, 74, 0.08);
    --max-content: 720px;
    --max-wide: 1100px;
}

* {
    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(--bg);
}

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

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

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

.container {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 24px;
}

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

.ad-disclosure {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

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: var(--max-wide);
    margin: 0 auto;
}

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

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

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

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

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

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

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

nav a:hover::after {
    width: 100%;
}

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 24px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-image-wrap {
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-dark);
    box-shadow: 0 20px 60px var(--shadow);
}

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

.editorial-section {
    padding: 60px 24px;
}

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

.editorial-content {
    max-width: var(--max-content);
    margin: 0 auto;
}

.editorial-content h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.editorial-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin: 32px 0 16px;
}

.editorial-content p {
    margin-bottom: 20px;
    color: var(--text);
}

.editorial-content p:last-child {
    margin-bottom: 0;
}

.inline-image {
    margin: 40px -60px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

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

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

.cta-inline {
    margin: 40px 0;
    padding: 32px;
    background: var(--primary);
    border-radius: 12px;
    text-align: center;
}

.cta-inline p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

.btn-light:hover {
    background: var(--bg-alt);
}

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

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

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

.service-card-image {
    height: 160px;
    margin: -32px -32px 24px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background-color: var(--bg-dark);
}

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

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

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

.testimonial-block blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-block cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.form-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.form-section h2 {
    color: var(--white);
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
}

.form-section .lead {
    color: rgba(255,255,255,0.8);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

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

.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, 74, 0.1);
}

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

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

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

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

.benefits-list li {
    padding: 12px 0 12px 36px;
    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;
}

.references {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

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

.references ol {
    font-size: 14px;
    color: var(--text-light);
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
}

.references a {
    color: var(--primary);
    word-break: break-all;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: var(--max-wide);
    margin: 0 auto 48px;
}

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

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    max-width: var(--max-wide);
    margin: 0 auto;
}

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

.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.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text);
    min-width: 200px;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.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 24px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
}

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

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

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

.page-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin: 32px 0 16px;
}

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

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

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

.contact-info {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-top: 32px;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    margin-top: 0;
}

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

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

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

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

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

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

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

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.about-intro {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.about-intro-text {
    flex: 1;
}

.about-intro-image {
    flex: 0 0 340px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.about-intro-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 200px;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: 12px;
    text-align: center;
}

.value-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    color: var(--white);
}

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

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

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

    .hero-image-wrap img {
        height: 280px;
    }

    .inline-image {
        margin: 32px -24px;
    }

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

    .stats-row {
        gap: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .about-intro {
        flex-direction: column;
    }

    .about-intro-image {
        flex: none;
        width: 100%;
    }

    .footer-grid {
        gap: 32px;
    }

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

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

    .sticky-cta {
        right: 16px;
        bottom: 100px;
    }
}
