:root {
    --color-primary: #e07a3d;
    --color-secondary: #2d3142;
    --color-accent: #f4a261;
    --color-bg-light: #fdfbf7;
    --color-bg-warm: #fff8f0;
    --color-bg-dark: #1a1d26;
    --color-text: #2d3142;
    --color-text-light: #5c6378;
    --color-text-inverse: #fdfbf7;
    --color-border: #e8e4de;
    --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-bg-light);
}

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

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

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

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

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

.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-secondary);
    color: var(--color-text-inverse);
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem 1rem;
}

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

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-secondary);
    font-weight: 400;
}

.logo:hover {
    color: var(--color-primary);
}

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

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

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

.main-nav a:hover::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-secondary);
    margin: 5px 0;
    transition: transform 0.2s ease;
}

.hero-editorial {
    background-color: var(--color-bg-warm);
    padding: 5rem 2rem;
}

.hero-editorial-inner {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-image-container {
    background-color: #c9a87c;
    margin: 3rem auto;
    max-width: var(--max-width-medium);
    border-radius: 4px;
    overflow: hidden;
}

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

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

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

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

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    text-align: left;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: #8fa3b0;
    border-radius: 4px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
    background-color: var(--color-bg-light);
    font-style: italic;
}

.quote-block {
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background-color: var(--color-bg-warm);
    font-style: italic;
    font-size: 1.15rem;
}

.quote-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-text-light);
}

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

.cta-inline h3 {
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
}

.cta-inline p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
    background-color: var(--color-accent);
    color: var(--color-text-inverse);
    transform: translateY(-1px);
}

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

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

.btn-light {
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
}

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

.services-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-light);
}

.services-intro {
    max-width: var(--max-width-narrow);
    margin: 0 auto 3rem;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 2rem;
    flex: 1 1 320px;
    max-width: 380px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

.service-card-image {
    background-color: #b8c5cc;
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 180px;
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-warm);
}

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

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 6px;
    flex: 1 1 300px;
    max-width: 380px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-border);
    overflow: hidden;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
}

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

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

.form-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-light);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-section .section-intro {
    text-align: center;
    max-width: var(--max-width-narrow);
    margin: 0 auto 2.5rem;
    color: var(--color-text-light);
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 6px;
    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-secondary);
}

.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: inherit;
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    width: 100%;
    padding: 1rem 2rem;
}

.about-hero {
    background-color: var(--color-bg-warm);
    padding: 4rem 2rem;
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1rem;
}

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

.about-content {
    padding: 4rem 2rem;
}

.about-content-inner {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 400px;
    background-color: #a8b5bd;
    border-radius: 6px;
    overflow: hidden;
}

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

.values-section {
    padding: 4rem 2rem;
    background-color: var(--color-bg-warm);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.value-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    padding: 2rem;
}

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

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-text-inverse);
    fill: none;
    stroke-width: 2;
}

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

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

.contact-hero {
    background-color: var(--color-bg-warm);
    padding: 4rem 2rem;
    text-align: center;
}

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

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    max-width: var(--max-width-medium);
    margin: 0 auto;
}

.contact-info-item {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.contact-info-item h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.services-hero {
    background-color: var(--color-bg-warm);
    padding: 4rem 2rem;
    text-align: center;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detailed-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-width-wide);
    margin: 0 auto 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

.service-detailed-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detailed-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detailed-image {
    flex: 0 0 45%;
    background-color: #9aafb8;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-detailed-content {
    flex: 1;
}

.service-detailed-content h3 {
    margin-bottom: 1rem;
}

.service-detailed-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-detailed-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-page h1 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.legal-content h2 {
    font-size: 1.4rem;
    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;
}

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

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-text-inverse);
    fill: none;
    stroke-width: 2;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--color-text-inverse);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-links h4 {
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    max-width: var(--max-width-wide);
    margin-left: auto;
    margin-right: auto;
}

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

.disclaimer-section {
    background-color: var(--color-secondary);
    padding: 2rem;
}

.disclaimer-section p {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-align: center;
}

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

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

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

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

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

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

.cookie-buttons button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

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

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

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99;
    display: none;
}

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

.sticky-cta .btn {
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

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

    h2 {
        font-size: 1.6rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg-light);
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--color-border);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-editorial {
        padding: 3rem 1.5rem;
    }

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

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

    .about-content-inner {
        flex-direction: column;
    }

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

    .about-image img {
        height: 300px;
    }

    .service-detailed-item,
    .service-detailed-item:nth-child(even) {
        flex-direction: column;
    }

    .service-detailed-image {
        flex: none;
        width: 100%;
    }

    .service-detailed-image img {
        height: 220px;
    }

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

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