:root {
    --primary: #2d5a3d;
    --secondary: #8fb996;
    --accent: #d4a574;
    --dark: #1a2e23;
    --light: #f7f9f4;
    --white: #ffffff;
    --text: #3a3a3a;
    --text-light: #6b7a6f;
    --border: #dde5db;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

.container-wide {
    max-width: 1140px;
    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: 18px 0;
}

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

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

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

.main-nav a {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

.main-nav a:hover::after,
.main-nav a.active::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(--dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Editorial Hero */
.editorial-hero {
    padding: 80px 0 60px;
    text-align: center;
}

.editorial-hero .kicker {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

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

/* Hero Image */
.hero-image {
    margin: 40px 0 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

/* Editorial Content */
.editorial-content {
    padding: 40px 0;
}

.editorial-content p {
    margin-bottom: 28px;
    font-size: 1.1rem;
}

.editorial-content h2 {
    font-size: 1.9rem;
    color: var(--dark);
    margin: 50px 0 24px;
    font-weight: 700;
}

.editorial-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 40px 0 18px;
    font-weight: 600;
}

/* Inline Image */
.inline-image {
    margin: 50px -80px;
    border-radius: 8px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 14px 20px;
    background: var(--white);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Pull Quote */
.pull-quote {
    margin: 50px 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Inline CTA */
.inline-cta {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
}

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

.inline-cta svg {
    margin-left: 10px;
    width: 18px;
    height: 18px;
}

/* Section CTA Box */
.cta-box {
    background: var(--dark);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.cta-box .btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-box .btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Services Cards */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.service-card {
    flex: 1 1 calc(50% - 12px);
    background: var(--light);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .icon svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

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

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

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

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

/* Split Section */
.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;
    border-radius: 12px;
    overflow: hidden;
}

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

.split-content h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

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

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    background: var(--primary);
    border-radius: 12px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item .number {
    font-size: 2.8rem;
    font-weight: 700;
    display: block;
}

.stat-item .label {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Testimonial */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light) 0%, var(--white) 100%);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.testimonial-author .info strong {
    display: block;
    color: var(--dark);
}

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

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

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

.contact-info {
    flex: 1;
}

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

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item .icon {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
}

.contact-item .text strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-item .text span {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

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

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
    z-index: 90;
    transition: all 0.3s ease;
    display: none;
}

.sticky-cta:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.sticky-cta.visible {
    display: block;
}

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul 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;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

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

/* 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-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

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

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

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

.cookie-btn.reject:hover {
    background: var(--border);
}

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

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

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

.thanks-icon svg {
    width: 45px;
    height: 45px;
    color: var(--dark);
}

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

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

.thanks-service {
    background: var(--light);
    padding: 18px 24px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.thanks-service strong {
    color: var(--primary);
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 40px 0 18px;
}

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

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

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

/* About Page */
.about-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light) 100%);
}

.about-hero h1 {
    font-size: 2.6rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

.team-section {
    padding: 60px 0;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(33.333% - 20px);
    text-align: center;
}

.team-member .photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--secondary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.team-member h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.team-member .role {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

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

    .nav-toggle {
        display: block;
    }

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

    .inline-image {
        margin: 40px 0;
    }

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

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

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

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

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

    .footer-grid {
        flex-wrap: wrap;
    }

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

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

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

    .team-member {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .editorial-hero {
        padding: 50px 0 40px;
    }

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

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

    .pull-quote {
        padding: 24px;
        font-size: 1.15rem;
    }

    .cta-box {
        padding: 35px 24px;
    }

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