:root {
    --primary: #2d5a47;
    --primary-dark: #1e3d30;
    --secondary: #7ba393;
    --accent: #c9a962;
    --text: #2c3e36;
    --text-light: #5a6e64;
    --bg: #fafbfa;
    --bg-alt: #f0f4f2;
    --white: #ffffff;
    --border: #d4ddd8;
    --shadow: rgba(45, 90, 71, 0.08);
}

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

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

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

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

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

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

h1, h2, h3, h4 {
    color: var(--primary-dark);
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

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

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

.btn-accent:hover {
    background-color: #b8983f;
    color: var(--primary-dark);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 4px;
}

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

.nav a {
    padding: 8px 16px;
    color: var(--text);
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.nav a:hover,
.nav a.active {
    background-color: var(--bg-alt);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

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

.hero-editorial .container-narrow {
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

/* Editorial Content */
.editorial-section {
    padding: 60px 0;
}

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

.editorial-content {
    font-size: 1.1rem;
}

.editorial-content p {
    margin-bottom: 1.5rem;
}

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

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

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

.inline-cta p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.inline-cta .btn {
    background-color: var(--accent);
    color: var(--primary-dark);
}

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

/* Services */
.services-section {
    padding: 80px 0;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 10px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card-horizontal {
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

.service-card-horizontal .service-image {
    flex: 0 0 280px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary);
}

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

.service-card-horizontal .service-content {
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin: 16px 0;
}

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

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
}

.about-grid {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 400px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--secondary);
}

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

/* Testimonial */
.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: var(--white);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

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

.contact-form {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    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;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Contact Page Specific */
.contact-info-section {
    padding: 80px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 12px var(--shadow);
}

.contact-icon {
    flex: 0 0 48px;
    height: 48px;
    background-color: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 3rem;
    color: var(--white);
}

.thanks-section h1 {
    color: var(--primary);
}

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

.legal-section h1 {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 1.2rem;
}

.legal-section li {
    margin-bottom: 8px;
}

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

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

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

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    padding: 6px 0;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

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

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

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

/* Disclaimer */
.disclaimer {
    background-color: var(--bg-alt);
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-inner p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-inner a {
    color: var(--accent);
}

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

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

.cookie-buttons button:hover {
    opacity: 0.9;
}

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

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

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
    }

    .about-image {
        flex: none;
        width: 100%;
        height: 280px;
    }

    .service-card-horizontal {
        flex-direction: column;
    }

    .service-card-horizontal .service-image {
        flex: none;
        width: 100%;
        height: 200px;
    }

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

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

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

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

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

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

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

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

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 16px;
    }

    .contact-form {
        padding: 24px;
    }

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