:root {
    --color-primary: #2d4a3e;
    --color-secondary: #5a8f7b;
    --color-accent: #c9a959;
    --color-dark: #1a2e26;
    --color-light: #f7f5f0;
    --color-muted: #8b9d94;
    --color-white: #ffffff;
    --color-bg-alt: #e8e4db;
    --color-text: #2c3e36;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
    --max-width-narrow: 720px;
    --max-width-medium: 960px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-light);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

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

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

.container {
    width: 100%;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    padding: 0 2rem;
}

.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-muted);
    font-size: 0.75rem;
    padding: 0.4rem 0;
    text-align: center;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.nav-main {
    display: flex;
    gap: 2rem;
}

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

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

.nav-main a:hover::after,
.nav-main a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hero-editorial {
    background-color: var(--color-bg-alt);
    padding: 5rem 0 4rem;
}

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

.hero-editorial h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 580px;
    margin: 0 auto 2rem;
}

.hero-image-wrapper {
    margin-top: 3rem;
    background-color: var(--color-muted);
    border-radius: 8px;
    overflow: hidden;
}

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

.article-section {
    padding: 4rem 0;
}

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

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

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

.inline-image {
    margin: 2.5rem 0;
    background-color: var(--color-muted);
    border-radius: 6px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    color: var(--color-muted);
    background-color: var(--color-bg-alt);
}

.services-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 340px;
    background-color: var(--color-light);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

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

.service-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.service-price span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

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

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

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

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

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

.btn-accent:hover {
    background-color: #b8983f;
}

.cta-section {
    padding: 4rem 0;
    background-color: var(--color-primary);
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--color-bg-alt);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
}

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

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

.about-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
}

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

.about-intro-image {
    flex: 0 0 400px;
    background-color: var(--color-muted);
    border-radius: 8px;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 300px;
}

.values-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.value-item {
    flex: 0 1 280px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.contact-info-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 280px;
}

.contact-detail-item {
    margin-bottom: 1.5rem;
}

.contact-detail-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

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

.contact-map {
    flex: 1;
    min-width: 280px;
    min-height: 300px;
    background-color: var(--color-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

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

.disclaimer {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--color-accent);
    font-size: 0.9rem;
    color: var(--color-muted);
}

.disclaimer h4 {
    color: var(--color-text);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

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

.cookie-accept:hover {
    background-color: #b8983f;
}

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

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

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

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

.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-content p,
.legal-content li {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

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

.team-photo {
    width: 140px;
    height: 140px;
    background-color: var(--color-muted);
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
}

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

.team-member h4 {
    margin-bottom: 0.3rem;
}

.team-member p {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.split-section {
    display: flex;
    min-height: 400px;
}

.split-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-color: var(--color-muted);
    background-size: cover;
    background-position: center;
}

.highlight-box {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
}

.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 3rem 0;
    background-color: var(--color-white);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--color-bg-alt);
    }

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

    .nav-toggle {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

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

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

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

    .split-image {
        min-height: 250px;
    }

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

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

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

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