/* 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: #fdfdfb;
}

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

a {
    color: #8b5a3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5c3a25;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #5a5a5a;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #8b5a3c;
}

/* Editorial Container - Article-like Structure */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 4rem;
}

.hero-content-narrow {
    margin-bottom: 2.5rem;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

.hero-image {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 2px;
}

.hero-image img {
    width: 100%;
}

/* Content Flow - Story-driven */
.content-flow {
    margin-bottom: 3rem;
}

.text-block {
    margin-bottom: 2.5rem;
}

.text-block h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
}

.text-block h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 500;
    color: #2a2a2a;
}

.text-block p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.text-block p:last-child {
    margin-bottom: 0;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 3rem 0;
    overflow: hidden;
}

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

/* CTA Inline */
.cta-inline {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e8e5e0;
    border-bottom: 1px solid #e8e5e0;
}

.link-arrow {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #8b5a3c;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.link-arrow::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* Story Sections */
.story-section {
    margin-bottom: 4rem;
}

/* Insight Box */
.insight-box {
    background-color: #f7f5f2;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-left: 3px solid #8b5a3c;
}

.insight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: #2a2a2a;
}

/* Editorial List */
.editorial-list {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.editorial-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.editorial-list li strong {
    color: #2a2a2a;
}

/* Services Editorial Style */
.services-editorial {
    margin-bottom: 4rem;
}

.service-cards-editorial {
    margin-top: 3rem;
}

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

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

.service-card h2,
.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.service-card > h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-details {
    font-size: 0.95rem;
    color: #5a5a5a;
    font-style: italic;
}

.service-details-expanded {
    margin: 2rem 0;
}

.service-details-expanded h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-details-expanded ul {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-details-expanded li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b5a3c;
    margin: 1.5rem 0;
    display: block;
}

/* Testimonial Editorial */
.testimonial-flow {
    margin: 4rem 0;
}

.testimonial-editorial {
    padding: 2rem 0;
    border-left: 3px solid #d4c5b0;
    padding-left: 2rem;
    margin: 2rem 0;
}

.testimonial-editorial p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.testimonial-editorial cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #7a7a7a;
}

/* Approach Section */
.approach-section {
    margin-bottom: 4rem;
}

.approach-points {
    margin: 3rem 0;
}

.approach-item {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid #e8e5e0;
}

.approach-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
}

.approach-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

/* Form Editorial Style */
.cta-section-editorial {
    margin: 5rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e8e5e0;
}

.form-editorial {
    margin-top: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    border: 1px solid #d4d0c8;
    background-color: #fdfdfb;
    color: #2a2a2a;
    transition: border-color 0.3s ease;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: #8b5a3c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #5c3a25;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #8b5a3c;
    border: 1px solid #8b5a3c;
}

.btn-secondary:hover {
    background-color: #8b5a3c;
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-select-service {
    margin-top: 1rem;
    padding: 0.75rem 1.75rem;
    background-color: transparent;
    color: #8b5a3c;
    border: 1px solid #8b5a3c;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #8b5a3c;
    color: #ffffff;
}

/* Final Thought Section */
.final-thought {
    margin: 4rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e5e0;
}

.final-thought p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e5e0;
}

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

/* Contact Info Section */
.contact-info-section {
    margin: 4rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a5a5a;
}

/* Thanks Page */
.thanks-section {
    padding: 3rem 0;
}

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

.thanks-details {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f7f5f2;
    border-left: 3px solid #8b5a3c;
}

.thanks-details p {
    margin-bottom: 1rem;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.thanks-cta {
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Legal Page Styles */
.legal-page {
    max-width: 800px;
}

.legal-date {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-style: italic;
}

/* Footer */
.footer-minimal {
    background-color: #f7f5f2;
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 1px solid #e8e5e0;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #5a5a5a;
}

.footer-links a:hover,
.footer-links a.active {
    color: #8b5a3c;
}

.footer-copy {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #7a7a7a;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #8b5a3c;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(139, 90, 60, 0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #5c3a25;
    box-shadow: 0 6px 16px rgba(139, 90, 60, 0.4);
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

.cookie-actions button {
    padding: 0.625rem 1.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

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

    .editorial-container {
        padding: 2rem 1.5rem 3rem;
    }

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

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

    .text-block h2 {
        font-size: 1.75rem;
    }

    .text-block h3 {
        font-size: 1.25rem;
    }

    .text-block p {
        font-size: 1rem;
    }

    .insight-box {
        padding: 1.75rem;
    }

    .service-card h2 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .testimonial-editorial p {
        font-size: 1.1rem;
    }

    .contact-details {
        gap: 2rem;
    }

    .thanks-cta {
        flex-direction: column;
    }

    .thanks-cta a {
        width: 100%;
        text-align: center;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .thanks-content h1 {
        font-size: 2rem;
    }
}