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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

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

a {
    color: #2d5016;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #a8d08d;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 3px;
    transition: background 0.3s ease;
}

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

.btn-accept:hover {
    background: #3d6822;
}

.btn-reject {
    background: #666;
    color: #fff;
}

.btn-reject:hover {
    background: #777;
}

/* Navigation */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c2c2c;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5016;
    text-decoration: none;
}

/* Editorial Container */
.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
}

.narrow-text {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Story Hero */
.story-hero {
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    max-width: 800px;
}

/* Story Sections */
.story-intro {
    padding: 4rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.story-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c2c2c;
}

/* Section Grid - Split Layout */
.section-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-image {
    flex: 1;
}

.grid-image img {
    width: 100%;
    border-radius: 2px;
}

.grid-text {
    flex: 1;
}

.grid-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.grid-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.image-left .section-grid {
    flex-direction: row;
}

.image-right .section-grid {
    flex-direction: row-reverse;
}

/* Dark Background Sections */
.dark-bg {
    background: #2c2c2c;
    color: #f0f0f0;
}

.dark-bg .narrow-text {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.dark-bg h2,
.dark-bg .centered-heading {
    color: #fff;
}

.dark-bg p {
    color: #e0e0e0;
}

/* Story Quote */
.story-quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    border-left: 4px solid #2d5016;
    background: rgba(45, 80, 22, 0.05);
    color: #1a1a1a;
}

.dark-bg .story-quote {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #a8d08d;
    color: #f0f0f0;
}

/* Centered Heading */
.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Inline CTAs */
.inline-cta {
    margin: 2rem 0;
}

.text-link-arrow {
    font-size: 1.1rem;
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.text-link-arrow:hover {
    transform: translateX(5px);
    text-decoration: none;
}

.cta-button-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2d5016;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button-inline:hover {
    background: #3d6822;
    text-decoration: none;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.trust-item p {
    font-size: 1.05rem;
    color: #555;
}

/* Testimonials */
.testimonials-flow {
    padding: 5rem 0;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid #2d5016;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Reveal Section - Services */
.reveal-section {
    padding: 5rem 0;
    background: #fff;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c2c2c;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.price-reveal {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    margin: 1.5rem 1.5rem;
}

.select-service-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #2d5016;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
}

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

/* Urgency Section */
.urgency-section {
    padding: 4rem 0;
}

.urgency-box {
    background: #fff3cd;
    border-left: 4px solid #f0ad4e;
    padding: 2rem;
    border-radius: 3px;
}

.urgency-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #856404;
}

.urgency-box p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #856404;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-privacy {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #2d5016;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: #2c2c2c;
    color: #fff;
}

.final-cta-section h2 {
    color: #fff;
}

.final-cta-section p {
    color: #e0e0e0;
}

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

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2d5016;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 3px;
    margin-top: 1.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button-large:hover {
    background: #3d6822;
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 3px;
    margin-top: 1.5rem;
    margin-left: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-button-secondary:hover {
    background: #2d5016;
    color: #fff;
    text-decoration: none;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #2d5016;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.sticky-btn:hover {
    background: #3d6822;
    transform: scale(1.05);
    text-decoration: none;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 2.5rem 0;
    margin-top: 5rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b0b0b0;
    font-size: 0.9rem;
    text-decoration: none;
}

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

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

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    background: #f5f5f5;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Full Width Image */
.full-width-img {
    width: 100%;
    margin: 2rem 0;
    border-radius: 2px;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    padding-left: 1.5rem;
    border-left: 3px solid #2d5016;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 0;
    color: #2c2c2c;
}

.feature-item p {
    font-size: 1.05rem;
    color: #555;
}

/* Promise List */
.promise-list {
    list-style: none;
    padding: 0;
}

.promise-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.promise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

/* Services Detail */
.services-detail-section {
    padding: 3rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 2.5rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-description {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
    font-size: 1.3rem;
}

.price-box {
    background: #f9f9f9;
    border-left: 4px solid #2d5016;
    padding: 1.5rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
}

.cta-button-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5016;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.cta-button-service:hover {
    background: #3d6822;
    text-decoration: none;
}

/* Contact Info */
.contact-section {
    padding: 3rem 0 5rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-detail {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-detail a {
    color: #2d5016;
}

.contact-note {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-note p {
    font-size: 1.05rem;
    color: #555;
}

.contact-cta {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-cta p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
    min-height: 60vh;
}

.thanks-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.selected-service-box {
    background: #f0f8e8;
    border-left: 4px solid #2d5016;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 3px;
}

.selected-service-box p {
    margin: 0.5rem 0;
    font-size: 1.05rem;
    color: #2c2c2c;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.next-steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.next-steps-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.thanks-actions {
    margin: 2.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-contact {
    margin-top: 3rem;
    font-size: 1.05rem;
    color: #666;
}

.thanks-contact a {
    color: #2d5016;
    font-weight: 600;
}

/* Legal Content */
.legal-content {
    padding: 3rem 2rem;
}

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

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.legal-content a {
    color: #2d5016;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .hero-overlay {
        padding: 2rem;
    }

    .section-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .image-left .section-grid,
    .image-right .section-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .story-section h2,
    .centered-heading {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-secondary {
        margin-left: 0;
    }

    .service-detail-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .narrow-text {
        padding: 0 1.5rem;
    }

    .brand {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}