/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #faf8f5;
}

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

a {
    color: #2d5016;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a7824;
}

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e8e4de;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d5016;
    letter-spacing: 0.5px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #2a2a2a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e8e4de;
    padding: 1rem 0;
    list-style: none;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    padding: 0.75rem 1.5rem;
}

.nav-menu a {
    font-size: 1.1rem;
    color: #2a2a2a;
}

/* Editorial Flow Layout */
.editorial-flow {
    max-width: 100%;
    margin: 0 auto;
}

/* Narrow Text Container - Core of Editorial Archetype */
.text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section - Editorial Style */
.editorial-hero {
    padding: 3rem 0 2rem;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7a6f5d;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: normal;
}

.hero-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 2rem;
}

.hero-image {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 3px;
}

/* Editorial Text Sections */
.editorial-text {
    padding: 2.5rem 0;
}

.editorial-text h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    font-weight: normal;
    color: #1a1a1a;
}

.editorial-text h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #2a2a2a;
}

.editorial-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.editorial-text em {
    font-style: italic;
    color: #3a3a3a;
}

/* Inline CTA - Editorial Style */
.inline-cta {
    text-align: center;
    margin: 2rem 0;
}

.cta-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: transparent;
    border: 2px solid #2d5016;
    color: #2d5016;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #2d5016;
    color: #fff;
}

/* Editorial Image Blocks */
.editorial-image-block {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.editorial-image-block img {
    width: 100%;
    border-radius: 3px;
}

.image-caption {
    font-size: 0.9rem;
    color: #7a6f5d;
    margin-top: 0.75rem;
    text-align: center;
    font-style: italic;
}

/* Editorial Quote */
.editorial-quote {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.editorial-quote blockquote {
    border-left: 3px solid #2d5016;
    padding-left: 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: #3a3a3a;
}

.editorial-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #7a6f5d;
}

/* Editorial Image Grid */
.editorial-image-grid {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.grid-two {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.grid-two img {
    width: 100%;
    border-radius: 3px;
}

/* Services - Editorial Card Style */
.services-editorial {
    max-width: 680px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.service-card-editorial {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e4de;
}

.service-card-editorial:last-child {
    border-bottom: none;
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.service-price {
    font-size: 1.75rem;
    font-weight: bold;
    color: #2d5016;
    margin: 1.5rem 0 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background-color: #2d5016;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-select-service:hover {
    background-color: #3d6820;
}

/* Service Card Detailed (for services page) */
.service-card-detailed {
    display: flex;
    flex-direction: column;
}

.service-image {
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    border-radius: 3px;
}

.service-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.service-price-large {
    font-size: 2rem;
    font-weight: bold;
    color: #2d5016;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #2d5016;
    color: #fff;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #3d6820;
    color: #fff;
}

/* Testimonials - Inline Editorial Style */
.editorial-testimonials {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.testimonial-inline {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f5f2ed;
    border-radius: 3px;
}

.testimonial-inline p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 0.75rem;
}

.testimonial-inline cite {
    font-size: 0.9rem;
    color: #7a6f5d;
    font-style: normal;
}

/* Form Section - Editorial */
.form-section {
    background-color: #f5f2ed;
    padding: 3rem 0;
    margin: 3rem 0;
}

.form-container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: normal;
    text-align: center;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d4cfc5;
    background-color: #fff;
    font-size: 1rem;
    font-family: Georgia, serif;
    color: #2a2a2a;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5016;
}

.btn-submit {
    padding: 0.95rem 2.5rem;
    background-color: #2d5016;
    color: #fff;
    border: none;
    font-size: 1.05rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background-color: #3d6820;
}

/* Final CTA - Editorial */
.editorial-final-cta {
    text-align: center;
    padding: 3rem 1.5rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5016;
    color: #fff;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #3d6820;
    color: #fff;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5016;
    padding: 1rem;
    text-align: center;
    z-index: 90;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: #fff;
    color: #2d5016;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #f5f2ed;
    color: #2d5016;
}

/* Footer - Minimal */
.footer-minimal {
    background-color: #2a2a2a;
    color: #d4cfc5;
    padding: 2.5rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #d4cfc5;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #8a8578;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.25rem;
    z-index: 150;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.65rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2d5016;
    color: #fff;
}

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

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

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

/* Page Header - Simple */
.page-header-simple {
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-header-simple h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #1a1a1a;
}

.header-intro {
    font-size: 1.1rem;
    color: #3a3a3a;
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    padding: 2rem 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: normal;
    color: #2d5016;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-note {
    font-size: 0.9rem;
    color: #7a6f5d;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-visual img {
    width: 100%;
    border-radius: 3px;
}

/* Thanks Page */
.thanks-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #1a1a1a;
}

.thanks-main-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 2rem;
}

.thanks-service-info {
    margin: 2rem 0;
}

.selected-service {
    font-size: 1.1rem;
    color: #2d5016;
    padding: 1rem;
    background-color: #f5f2ed;
    border-radius: 3px;
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 2.5rem auto;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.steps-list {
    list-style-position: inside;
    padding-left: 0;
}

.steps-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.thanks-note {
    font-size: 0.95rem;
    color: #7a6f5d;
    margin: 2rem 0;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2d5016;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3d6820;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #2d5016;
    color: #2d5016;
}

.btn-secondary:hover {
    background-color: #2d5016;
    color: #fff;
}

.thanks-image img {
    width: 100%;
    border-radius: 3px;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem 3rem;
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 2.5rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #2a2a2a;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: normal;
    color: #3a3a3a;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

.legal-updated {
    font-size: 0.9rem;
    color: #7a6f5d;
    margin-top: 3rem;
    font-style: italic;
}

/* Tablet and Desktop Responsive */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 2rem;
        padding: 0;
        border: none;
        background: none;
    }

    .nav-menu li {
        padding: 0;
    }

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

    .grid-two {
        flex-direction: row;
    }

    .contact-container {
        flex-direction: row-reverse;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
    }

    .contact-visual {
        flex: 1;
    }

    .thanks-container {
        flex-direction: row;
        gap: 4rem;
    }

    .thanks-content {
        flex: 1.2;
        text-align: left;
    }

    .thanks-icon {
        justify-content: flex-start;
    }

    .thanks-image {
        flex: 0.8;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .sticky-cta {
        display: none;
    }

    .service-card-detailed {
        flex-direction: row;
        gap: 2rem;
    }

    .service-image {
        flex: 0 0 300px;
    }

    .service-content {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .editorial-hero h1 {
        font-size: 3.75rem;
    }

    .services-editorial {
        max-width: 900px;
    }

    .form-container-narrow {
        max-width: 600px;
    }
}
