:root {
    --primary: #4a6741;
    --primary-dark: #3a5234;
    --secondary: #8b7355;
    --accent: #c9a962;
    --text: #2d3436;
    --text-light: #636e72;
    --bg: #fafaf8;
    --bg-alt: #f0ede8;
    --bg-dark: #e8e4dd;
    --white: #ffffff;
    --shadow: rgba(45, 52, 54, 0.08);
    --shadow-strong: rgba(45, 52, 54, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 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.25s ease;
}

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

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

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

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

header {
    background: var(--white);
    border-bottom: 1px solid var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background: var(--bg-alt);
    padding: 8px 24px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

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

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

.logo span {
    color: var(--secondary);
}

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

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

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

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

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

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 80px 24px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 20px;
}

.hero p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

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

.btn-accent:hover {
    background: #b8963f;
}

section {
    padding: 80px 0;
}

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

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

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

h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.section-intro {
    max-width: 640px;
    margin-bottom: 48px;
}

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

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

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

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

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

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

.inline-cta p {
    margin-bottom: 20px;
    font-size: 18px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    display: flex;
    gap: 32px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 320px;
    background-color: var(--bg-alt);
}

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

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

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

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

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

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

.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 80px;
    color: var(--bg-dark);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 0 0 280px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
}

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

.contact-info {
    flex: 1;
}

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

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

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

.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(--bg-dark);
    border-radius: 6px;
    background: var(--white);
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.25s ease;
}

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

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

footer {
    background: var(--text);
    color: var(--bg);
    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;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: var(--bg-dark);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: var(--bg-dark);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.25s ease;
}

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

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

.footer-bottom p {
    color: var(--bg-dark);
    font-size: 13px;
}

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

.footer-links a {
    color: var(--bg-dark);
    font-size: 13px;
}

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

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

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

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

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

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

.cookie-buttons button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.25s ease;
}

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

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

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

.cookie-reject:hover {
    border-color: var(--text);
}

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

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

.page-header p {
    color: var(--text-light);
    font-size: 18px;
}

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

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

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

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

.disclaimer {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 13px;
    color: var(--text-light);
    border-left: 4px solid var(--secondary);
}

.references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-dark);
}

.references h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.references ol {
    margin-left: 20px;
}

.references li {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.references a {
    word-break: break-all;
}

@media (max-width: 900px) {
    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 200px;
    }

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

    .footer-grid {
        gap: 32px;
    }

    .footer-col {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .header-main {
        padding: 14px 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid var(--bg-dark);
        box-shadow: 0 4px 20px var(--shadow);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--bg-alt);
        width: 100%;
    }

    nav a::after {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 420px;
    }

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

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

    h2 {
        font-size: 28px;
    }

    section {
        padding: 60px 0;
    }

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

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

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

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