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

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c2c2c;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #5d2f0a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: #8b4513;
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-cookie:hover {
    background-color: #5d2f0a;
}

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

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0e6d6;
    border-bottom: 1px solid #d4c4a8;
    padding: 0.5rem 0;
    text-align: center;
}

.ad-label {
    font-size: 0.85rem;
    color: #666;
    font-family: Arial, sans-serif;
}

/* Header - Editorial Style */
.header-editorial {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

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

.brand-mark {
    font-size: 1.25rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    color: #2c2c2c;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #2c2c2c;
    text-transform: lowercase;
    letter-spacing: 0.03em;
}

.nav-links a:hover {
    color: #8b4513;
}

/* Editorial Container */
.editorial-container {
    width: 100%;
}

.editorial-flow {
    width: 100%;
}

/* Hero Section - Editorial */
.hero-editorial {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e8e0d5;
}

.hero-editorial.small {
    min-height: 400px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    background-color: rgba(44, 44, 44, 0.75);
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 2rem;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.4;
}

/* Content Sections - Narrow Column */
.content-narrow {
    max-width: 720px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.content-narrow h1 {
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.content-narrow h2 {
    font-size: 1.75rem;
    font-weight: normal;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #2c2c2c;
}

.content-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

/* Content with Inline Images */
.content-image-inline {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
}

.content-image-inline.reverse {
    flex-direction: row-reverse;
}

.inline-image-left,
.inline-image-right {
    flex: 1;
    background-color: #e8e0d5;
}

.inline-image-left img,
.inline-image-right img {
    width: 100%;
    height: auto;
}

.inline-text-right,
.inline-text-left {
    flex: 1;
}

.inline-text-right h2,
.inline-text-left h2 {
    font-size: 1.75rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #2c2c2c;
}

.inline-text-right p,
.inline-text-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #3a3a3a;
}

/* Testimonial - Inline Quote */
.testimonial-inline {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.editorial-quote {
    border-left: 4px solid #8b4513;
    padding-left: 2rem;
    font-style: italic;
}

.editorial-quote p {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.editorial-quote cite {
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

/* CTA Inline Editorial */
.cta-inline-editorial {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.cta-box {
    background-color: #f5f0e8;
    padding: 3rem;
    text-align: center;
    border-top: 2px solid #8b4513;
}

.cta-box h3 {
    font-size: 1.75rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    color: #4a4a4a;
}

.btn-editorial {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b4513;
    color: #ffffff;
    font-size: 1rem;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-editorial:hover {
    background-color: #5d2f0a;
    color: #ffffff;
}

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

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

/* Services Preview - Editorial Cards */
.services-preview-editorial {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-preview-editorial h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c2c2c;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card img {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
    background-color: #e8e0d5;
}

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

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

.service-card .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #8b4513;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-card > div:last-child {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-service {
    padding: 0.875rem 2rem;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
    margin-top: auto;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #5d2f0a;
}

/* Services Detailed Page */
.services-detailed {
    width: 100%;
}

.service-detail-card {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e8e0d5;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-detail-content {
    flex: 1;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #3a3a3a;
}

.service-details-list ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-details-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.service-details-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #8b4513;
}

.price-large {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b4513;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

/* Form Section - Editorial */
.form-section-editorial {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-container-narrow {
    max-width: 720px;
    margin: 0 auto;
    background-color: #f5f0e8;
    padding: 3rem;
    border-top: 2px solid #8b4513;
}

.form-container-narrow h2 {
    font-size: 1.75rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #d4c4a8;
    background-color: #ffffff;
    font-family: 'Georgia', serif;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #5d2f0a;
}

/* Contact Info Section */
.contact-info-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-info-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.contact-info-card {
    flex: 1;
    background-color: #f5f0e8;
    padding: 2rem;
    border-top: 2px solid #8b4513;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #e8e0d5;
    padding: 0.25rem 0.5rem;
    display: inline-block;
}

.email-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
}

.thanks-details {
    background-color: #f5f0e8;
    padding: 2rem;
    margin: 2rem 0;
    border-top: 2px solid #8b4513;
}

.service-reference {
    font-size: 1.25rem;
    color: #8b4513;
}

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

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Disclaimer Section */
.disclaimer-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
    background-color: #f9f6f0;
    border-left: 4px solid #8b4513;
    padding: 2rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

/* Legal Content */
.legal-content h1 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: normal;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: normal;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

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

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

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #666;
}

/* Footer - Editorial */
.footer-editorial {
    background-color: #2c2c2c;
    color: #d4c4a8;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d4c4a8;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.875rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-image-inline,
    .content-image-inline.reverse,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-card img {
        width: 100%;
        height: 300px;
    }

    .contact-info-grid {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

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

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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