:root {
    --color-primary: #8B5A2B;
    --color-secondary: #D4A574;
    --color-accent: #2E5339;
    --color-dark: #1A1A1A;
    --color-light: #FAF8F5;
    --color-cream: #F5EDE4;
    --color-text: #333333;
    --color-muted: #6B6B6B;
    --color-border: #E0D6CC;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, 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-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4 {
    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: 2.2rem;
    margin-bottom: 1.2rem;
}

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

p {
    margin-bottom: 1.2rem;
}

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

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

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

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

.header {
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: relative;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ad-disclosure {
    background-color: var(--color-cream);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    color: var(--color-muted);
    text-align: center;
    border-radius: 3px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

.nav-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2rem;
}

.nav-main a {
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-main a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.hero-editorial {
    padding: 5rem 0 4rem;
    text-align: center;
    background-color: var(--color-cream);
}

.hero-editorial h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-editorial .subtitle {
    font-size: 1.2rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-image-container {
    margin: 3rem auto 0;
    max-width: 900px;
    background-color: var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.section-editorial.accent-bg {
    background-color: var(--color-accent);
    color: #fff;
}

.section-editorial.accent-bg h2,
.section-editorial.accent-bg h3 {
    color: #fff;
}

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

.article-content p {
    font-size: 1.05rem;
}

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

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

.inline-image figcaption {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    color: var(--color-muted);
    text-align: center;
    background-color: var(--color-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    flex: 1 1 300px;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 200px;
    background-color: var(--color-secondary);
    overflow: hidden;
}

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

.service-card-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

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

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

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--color-cream);
    border-radius: 8px;
}

.cta-inline h3 {
    margin-bottom: 0.8rem;
}

.cta-inline p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.testimonial-block {
    background-color: #fff;
    border-left: 4px solid var(--color-primary);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 8px 8px 0;
}

.testimonial-block blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.testimonial-block cite {
    font-style: normal;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.form-container {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    margin-top: 2rem;
}

.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-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}

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

.contact-info-block {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    margin-bottom: 1rem;
}

.contact-info-block p {
    margin-bottom: 0.5rem;
}

.footer {
    background-color: var(--color-dark);
    color: #ccc;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

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

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

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

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

.footer-col a {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    background-color: var(--color-cream);
    padding: 1.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 3rem;
    line-height: 1.6;
}

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

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

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

.cookie-banner p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-banner .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.cookie-banner .btn-reject {
    background-color: transparent;
    border: 1px solid #666;
}

.cookie-banner .btn-reject:hover {
    background-color: #444;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

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

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

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

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

.legal-content li {
    margin-bottom: 0.5rem;
}

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

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

.about-intro-image {
    flex: 1 1 300px;
    background-color: var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.value-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .inline-image {
        margin: 2rem -0.5rem;
    }

    .hero-image-container img {
        height: 300px;
    }

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

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

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