:root {
    --color-primary: #2d4a3e;
    --color-secondary: #5c8a72;
    --color-accent: #c9a962;
    --color-dark: #1a2e26;
    --color-light: #f7f5f0;
    --color-text: #2b2b2b;
    --color-text-muted: #5a5a5a;
    --color-border: #d4d0c8;
    --color-bg-alt: #e8e4dc;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
    --max-width-narrow: 680px;
    --max-width-medium: 920px;
    --max-width-wide: 1140px;
}

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

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.25s 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: 2rem;
    margin-bottom: 1.2rem;
}

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

p {
    margin-bottom: 1.4rem;
}

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

.ad-disclosure {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem 1rem;
}

.site-header {
    background-color: var(--color-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 1.5rem;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

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

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

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s 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-dark);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

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

.hero-editorial h1 {
    font-size: 2.6rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

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

.hero-image-wrap {
    max-width: var(--max-width-medium);
    margin: 2rem auto 0;
    background-color: var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

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

.section-story {
    padding: 4rem 1.5rem;
}

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

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

.story-content h2 {
    margin-bottom: 1.5rem;
}

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

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

.inline-image figcaption {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding: 0.75rem 1rem;
    background-color: rgba(0,0,0,0.03);
}

.highlight-box {
    background-color: var(--color-primary);
    color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 6px;
    margin: 2.5rem 0;
}

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

.highlight-box p {
    margin-bottom: 0;
    opacity: 0.95;
}

.cta-inline {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.cta-inline:hover {
    background-color: #b8993f;
    color: var(--color-dark);
    transform: translateY(-2px);
}

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

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #d4b46d;
    color: var(--color-dark);
    transform: translateY(-2px);
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 180px;
    background-color: var(--color-border);
    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.25rem;
    margin-bottom: 0.75rem;
}

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

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

.service-card .cta-inline {
    margin-top: 0;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
}

.testimonial-section {
    padding: 4rem 1.5rem;
    background-color: var(--color-bg-alt);
}

.testimonial-item {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.form-section {
    padding: 4rem 1.5rem;
    background-color: #fff;
}

.form-container {
    max-width: 540px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.form-intro {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.25s 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 {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.form-submit:hover {
    background-color: var(--color-dark);
}

.site-footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

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

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

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

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

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

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

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

.footer-contact-text {
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.disclaimer-section {
    padding: 2.5rem 1.5rem;
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.disclaimer-text {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: #fff;
    padding: 1.25rem 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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text {
    flex: 1 1 400px;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

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

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

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

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

.page-header {
    background-color: var(--color-bg-alt);
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header .lead {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.page-content {
    padding: 3rem 1.5rem;
}

.page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

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

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

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

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

.contact-info-section {
    padding: 4rem 1.5rem;
    background-color: var(--color-bg-alt);
}

.contact-grid {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.contact-details h2 {
    margin-bottom: 1.5rem;
}

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

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

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

.thanks-content h1 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thanks-content p {
    max-width: 480px;
    margin: 0 auto 2rem;
    color: var(--color-text-muted);
}

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

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

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 2rem;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: block;
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: var(--color-dark);
}

@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-light);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

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

    .nav-toggle {
        display: block;
    }

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

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

    .hero-image-wrap img {
        height: 240px;
    }

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

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

    .footer-grid {
        gap: 2rem;
    }

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

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

    .sticky-cta {
        bottom: 70px;
        right: 15px;
    }

    .about-intro {
        padding: 2.5rem 1.5rem;
    }
}
