/* 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: #2c2c2c;
    background-color: #fafaf8;
}

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

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

a:hover {
    color: #5d2f0c;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.65rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-accept {
    background-color: #8b4513;
    color: #fff;
}

.btn-accept:hover {
    background-color: #5d2f0c;
}

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

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

/* Navigation */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c2c2c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    color: #2c2c2c;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #8b4513;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #8b4513;
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 5% 3rem;
    background-color: #fff;
}

.hero-text-narrow {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.hero-image {
    max-width: 900px;
    margin: 0 auto;
}

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

/* Content Narrow - Core Editorial Layout */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 2.5rem 5%;
}

.content-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.dropcap::first-letter {
    font-size: 4rem;
    line-height: 1;
    float: left;
    margin: 0 0.15em 0 0;
    color: #8b4513;
    font-weight: 700;
}

.content-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.btn-text-link {
    font-size: 1.1rem;
    color: #8b4513;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: #5d2f0c;
    border-bottom-color: #5d2f0c;
}

/* Image Break - Full Width Images */
.image-break {
    margin: 3rem 0;
    padding: 0;
}

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

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

/* Highlight Box */
.highlight-box {
    background-color: #f5f1ed;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #8b4513;
}

.highlight-box h3 {
    margin-top: 0;
    color: #8b4513;
}

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

/* Testimonial Inline */
.testimonial-inline {
    margin: 3rem 0;
    padding: 0 2rem;
}

.testimonial-inline blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: #4a4a4a;
    border-left: 3px solid #8b4513;
    padding-left: 1.5rem;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #666;
    font-weight: 600;
}

/* Services Editorial */
.services-editorial {
    background-color: #f9f7f5;
    padding: 3rem 5%;
}

.section-intro {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-image {
    width: 100%;
    margin-bottom: 1rem;
}

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

.service-content h3 {
    font-size: 1.6rem;
    margin: 0 0 0.75rem 0;
    color: #1a1a1a;
}

.service-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    color: #8b4513;
    font-weight: 600;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem 0;
}

.service-details li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: 700;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b4513;
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    padding: 0.85rem 2rem;
    background-color: #8b4513;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #5d2f0c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* CTA Section Editorial */
.cta-section-editorial {
    background-color: #2c2c2c;
    padding: 4rem 5%;
    text-align: center;
    color: #fff;
}

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

.cta-section-editorial p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e5e5e5;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #8b4513;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-large:hover {
    background-color: #5d2f0c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 0.5rem;
}

.btn-secondary:hover {
    background-color: #8b4513;
    color: #fff;
}

/* Form Section */
.form-section {
    background-color: #fff;
    padding: 4rem 5%;
}

.selected-service {
    background-color: #f5f1ed;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #8b4513;
    font-size: 1.05rem;
    color: #2c2c2c;
}

.booking-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #8b4513;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #5d2f0c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Page Header */
.page-header-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 5% 2rem;
    text-align: center;
}

.page-header-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.header-lead {
    font-size: 1.2rem;
    color: #4a4a4a;
    font-style: italic;
}

/* Contact Page */
.contact-info-box {
    background-color: #f9f7f5;
    padding: 2.5rem;
    border-radius: 2px;
    margin: 2rem 0;
}

.contact-info-box h2 {
    margin-top: 0;
}

.contact-detail {
    margin: 2rem 0;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #8b4513;
}

.contact-detail p {
    margin: 0;
    line-height: 1.6;
}

.small-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

/* FAQ */
.faq-item {
    margin: 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    margin: 0;
}

/* Thanks Page */
.thanks-header {
    background-color: #f5f1ed;
}

.thanks-icon {
    font-size: 4rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.thanks-box {
    background-color: #f9f7f5;
    padding: 2.5rem;
    border-radius: 2px;
    margin: 2rem 0;
}

.thanks-step {
    margin: 2rem 0;
}

.thanks-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #8b4513;
}

.thanks-step ul {
    margin: 0.75rem 0 0 1.5rem;
}

.thanks-step ul li {
    margin: 0.5rem 0;
}

.thanks-quote {
    background-color: #f5f1ed;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #8b4513;
    font-style: italic;
    font-size: 1.15rem;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.selected-service-confirmation {
    background-color: #e8f4e8;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #4caf50;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-page .content-narrow {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.legal-content h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

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

.legal-content ul li {
    margin: 0.5rem 0;
}

.legal-content p {
    font-size: 1.05rem;
}

.legal-date {
    font-style: italic;
    color: #666;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Final Thought */
.final-thought {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f1ed;
    border-left: 4px solid #8b4513;
}

.final-thought p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #e5e5e5;
    padding: 3rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.footer-column p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 0.5rem 0;
}

.footer-column ul li a {
    color: #e5e5e5;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f4a460;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #8b4513;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #5d2f0c;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.75rem 5%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a.active::after {
        display: none;
    }

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

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

    .content-narrow {
        padding: 2rem 5%;
    }

    .content-narrow p {
        font-size: 1.05rem;
    }

    .content-narrow h2 {
        font-size: 1.7rem;
    }

    .testimonial-inline {
        padding: 0 1rem;
    }

    .testimonial-inline blockquote {
        font-size: 1.1rem;
    }

    .service-item {
        padding: 1.5rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .btn-secondary {
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero-text-narrow h1 {
        font-size: 1.7rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .btn-select-service,
    .btn-primary-large,
    .btn-submit {
        width: 100%;
    }
}