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

:root {
    --primary: #1a3d2e;
    --secondary: #c9a962;
    --accent: #4a7c59;
    --dark: #0d1f17;
    --light: #f8f6f0;
    --cream: #f5f0e6;
    --text: #2c3e36;
    --text-light: #6b7d75;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

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

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 61, 46, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

.hero-editorial {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%231a3d2e" stroke-width="0.3" opacity="0.1"/></svg>');
    background-size: 100px;
    transform: rotate(15deg);
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.hero-editorial h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-editorial p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
}

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

.btn-gold {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: #b8943d;
    transform: translateY(-2px);
}

.editorial-section {
    padding: 90px 20px;
}

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

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

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

.editorial-section.dark-bg p {
    color: rgba(255, 255, 255, 0.85);
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 600;
}

.editorial-title {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.editorial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 24px;
}

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

.inline-image {
    margin: 50px 0;
    position: relative;
}

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

.inline-image-full {
    margin: 50px -100px;
    width: calc(100% + 200px);
}

.image-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

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

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    position: relative;
}

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

.split-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--secondary);
    z-index: -1;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(26, 61, 46, 0.1);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(26, 61, 46, 0.12);
    transform: translateY(-5px);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.quote-section {
    padding: 100px 20px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.quote-author {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 70px 20px;
    background: var(--white);
    border-bottom: 1px solid rgba(26, 61, 46, 0.1);
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-left: 4px solid var(--secondary);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-section {
    padding: 100px 20px;
    background: var(--cream);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(26, 61, 46, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid rgba(26, 61, 46, 0.2);
    background: var(--white);
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cta-inline {
    background: var(--secondary);
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    gap: 30px;
}

.cta-inline p {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 500;
    margin: 0;
}

.cta-inline .btn-primary {
    flex-shrink: 0;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 20px 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1rem;
    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);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-accept:hover {
    background: #b8943d;
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

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

.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.1);
}

.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.content-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--cream);
}

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-item p {
    color: var(--text);
    line-height: 1.7;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.thanks-content {
    text-align: center;
    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 30px;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-values {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid rgba(26, 61, 46, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
}

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

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.timeline {
    margin-top: 60px;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border-radius: 50%;
}

.timeline-year {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-item h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, #e8e4da 100%);
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path d="M0 0h80v80H0z" fill="none"/><path d="M0 80L80 0" stroke="%231a3d2e" stroke-width="0.3" opacity="0.1"/></svg>');
    background-size: 80px;
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--primary);
    opacity: 0.3;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: right 0.3s;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(26, 61, 46, 0.1);
}

.mobile-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close::before,
.mobile-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--dark);
}

.mobile-close::before {
    transform: rotate(45deg);
}

.mobile-close::after {
    transform: rotate(-45deg);
}

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

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

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

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

    .testimonials {
        flex-direction: column;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 40px;
    }

    .inline-image-full {
        margin: 50px 0;
        width: 100%;
    }
}

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

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay.open {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .hero-editorial {
        padding: 140px 20px 70px;
    }

    .hero-editorial h1 {
        font-size: 2.2rem;
    }

    .hero-editorial p {
        font-size: 1.1rem;
    }

    .editorial-title {
        font-size: 1.8rem;
    }

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

    .quote-text {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

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

    .cta-inline {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

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

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