:root {
    --color-primary: #2d5a27;
    --color-secondary: #f4a261;
    --color-accent: #e76f51;
    --color-bg-light: #fefae0;
    --color-bg-dark: #283618;
    --color-text-dark: #1a1a1a;
    --color-text-light: #fefae0;
    --color-border: #dda15e;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    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-dark);
    background-color: #fff;
}

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

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
}

.top-nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--color-text-dark);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-links a:hover {
    border-bottom-color: var(--color-secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #fff 100%);
}

.hero-editorial h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.3;
    color: var(--color-bg-dark);
    margin-bottom: 25px;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 35px;
}

.hero-image-wrap {
    margin: 40px 0;
    background-color: #ddd4c2;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 450px;
    display: block;
}

.section-editorial {
    padding: 60px 0;
}

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

.section-editorial h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-bg-dark);
    margin-bottom: 20px;
}

.section-editorial h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 30px 0 15px;
}

.section-editorial p {
    margin-bottom: 20px;
}

.inline-image {
    margin: 35px 0;
    background-color: #e8e0d5;
    border-radius: 6px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 350px;
    display: block;
}

.inline-image.float-left {
    float: left;
    width: 45%;
    margin: 10px 30px 20px 0;
}

.inline-image.float-right {
    float: right;
    width: 45%;
    margin: 10px 0 20px 30px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.cta-inline {
    background-color: var(--color-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    margin: 20px 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cta-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-dark);
}

.cta-secondary:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.testimonial-block {
    background-color: #fff;
    border-left: 4px solid var(--color-secondary);
    padding: 25px 30px;
    margin: 40px 0;
    font-style: italic;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.testimonial-block cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 18px;
}

.pricing-reveal {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, #fff 100%);
    padding: 70px 0;
    text-align: center;
}

.pricing-reveal h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-bg-dark);
    margin-bottom: 15px;
}

.pricing-reveal .subtitle {
    color: #666;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 25px;
    width: 320px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

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

.service-card-image {
    background-color: #ddd4c2;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-bg-dark);
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-primary);
}

.service-card .price-note {
    font-size: 13px;
    color: #888;
}

.form-section {
    background-color: var(--color-bg-dark);
    padding: 70px 0;
}

.form-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 550px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s 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-secondary);
    color: var(--color-text-dark);
    border: none;
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    padding: 15px 20px;
    text-align: center;
    z-index: 90;
    display: none;
}

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

.sticky-cta a {
    color: #fff;
    font-weight: 600;
}

.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #aaa;
    transition: color 0.3s ease;
}

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

.footer-col address {
    font-style: normal;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

.references-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.references-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--color-bg-dark);
}

.references-list {
    list-style: none;
    padding: 0;
}

.references-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.references-list a {
    color: var(--color-primary);
    word-break: break-word;
}

.disclaimer-section {
    background-color: #f0f0f0;
    padding: 40px 0;
    font-size: 14px;
    color: #666;
}

.disclaimer-section p {
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-reject {
    background-color: #555;
    color: #fff;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #fff 100%);
}

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-bg-dark);
    margin-bottom: 30px;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 35px 0 15px;
}

.legal-page p,
.legal-page li {
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, #fff 100%);
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-bg-dark);
    margin-bottom: 25px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e0d5;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    display: block;
}

.services-page {
    padding: 80px 0;
}

.services-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-bg-dark);
    margin-bottom: 20px;
    text-align: center;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-page {
    padding: 80px 0;
}

.contact-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-bg-dark);
    margin-bottom: 40px;
    text-align: center;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info .email-display {
    background-color: var(--color-bg-light);
    padding: 12px 18px;
    border-radius: 5px;
    font-family: monospace;
    user-select: all;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 20px;
        gap: 15px;
    }

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

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

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

    .inline-image.float-left,
    .inline-image.float-right {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

    .service-card {
        width: 100%;
    }

    .footer-col {
        min-width: 100%;
    }

    .contact-form {
        padding: 25px;
    }
}
