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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

a {
    color: #5a4a3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b6f47;
}

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

/* Navigation - Editorial Style */
.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    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;
}

.brand {
    font-size: 1.6rem;
    font-weight: bold;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    color: #4a4a4a;
}

.ad-label {
    font-size: 0.75rem;
    font-family: 'Arial', sans-serif;
    color: #999;
    border: 1px solid #ddd;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    background-color: #f9f9f9;
}

/* Editorial Content Container */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero - Editorial Story */
.hero-editorial {
    position: relative;
    margin: 0 0 3rem 0;
}

.hero-image-container {
    width: 100%;
    background-color: #e8e3db;
    overflow: hidden;
}

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

.hero-text-overlay {
    padding: 2rem 0;
    text-align: left;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    line-height: 1.5;
    font-style: italic;
}

/* Content Column - Narrow Editorial */
.content-column {
    margin-bottom: 3rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.content-column p {
    margin-bottom: 1.5rem;
}

.content-column h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
    color: #1a1a1a;
}

.content-column h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem 0;
    font-weight: 600;
    color: #2a2a2a;
}

.content-column ul,
.content-column ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-column li {
    margin-bottom: 0.8rem;
}

/* Image Break - Full Width Within Column */
.image-break {
    margin: 3rem 0;
    background-color: #f5f2ed;
    padding: 1rem;
}

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

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

/* Inline Quote */
.inline-quote {
    border-left: 4px solid #8b6f47;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.15rem;
    font-style: italic;
    color: #4a4a4a;
}

/* Visual Section - Two Column Within Editorial */
.visual-section {
    margin: 3rem 0;
}

.two-col-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-block {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 1.5rem;
}

.visual-block img {
    width: 100%;
    margin-bottom: 1rem;
    object-fit: cover;
    background-color: #f0ebe5;
}

.visual-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.visual-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* CTA Inline Box */
.cta-inline {
    margin: 3rem 0;
}

.cta-box {
    background-color: #f7f4f0;
    border: 2px solid #d4c7b5;
    padding: 2rem;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.cta-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #8b6f47;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6f5736;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #ffffff;
    color: #5a4a3a;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border: 2px solid #8b6f47;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

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

/* Testimonials Inline */
.testimonial-inline {
    background-color: #fafaf8;
    border-left: 3px solid #c9b599;
    padding: 1.5rem;
    margin: 2rem 0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

/* Services List */
.services-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.service-item p {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

.service-duration {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.service-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #8b6f47;
    margin: 1rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #2c2c2c;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: #4a4a4a;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    background-color: #f9f7f4;
    padding: 2.5rem;
    border: 1px solid #e0dcd5;
}

.form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.form-intro {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    color: #2c2c2c;
}

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

.form-group select:disabled {
    background-color: #f0f0f0;
    color: #999;
}

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

.btn-submit:hover {
    background-color: #6f5736;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #e6d89f;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5a5a;
}

.disclaimer-box strong {
    color: #3a3a3a;
}

/* References Section */
.references-section {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.references-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.references-list {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #5a5a5a;
}

.references-list li {
    margin-bottom: 0.8rem;
}

.references-list a {
    color: #5a4a3a;
    text-decoration: underline;
}

.references-list a:hover {
    color: #8b6f47;
}

/* Footer Editorial */
.footer-editorial {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem 2rem;
    margin-top: 4rem;
}

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

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

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

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #4a4a4a;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px 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;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d0d0d0;
}

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

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

.btn-cookie-accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #6f5736;
}

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

.btn-cookie-reject:hover {
    background-color: #4a4a4a;
    color: #ffffff;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    text-align: left;
}

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

.page-subtitle {
    font-size: 1.1rem;
    color: #6a6a6a;
    line-height: 1.5;
}

/* Image Float Left */
.image-float-left {
    float: left;
    margin: 0 2rem 1.5rem 0;
    max-width: 50%;
}

.image-float-left img {
    background-color: #f0ebe5;
}

/* Info Box */
.info-box {
    background-color: #f0ede8;
    border-left: 4px solid #8b6f47;
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

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

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 2rem 0;
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 2rem;
}

.service-img-wrapper {
    width: 100%;
    background-color: #f0ebe5;
}

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

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8b6f47;
    margin: 0.5rem 0;
}

.service-detail-duration {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-bottom: 1rem;
}

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

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    color: #4a4a4a;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-size: 1.3rem;
}

/* Contact Layout */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info {
    flex: 1;
}

.contact-detail {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #2a2a2a;
}

.contact-note {
    background-color: #f9f7f4;
    padding: 1.2rem;
    border-left: 3px solid #8b6f47;
    margin-top: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #f0ebe5;
}

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

/* Thanks Section */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

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

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #f7f4f0;
    padding: 1.5rem;
    border: 1px solid #e0dcd5;
    margin: 2rem 0;
}

.thanks-info p {
    font-size: 1rem;
    color: #3a3a3a;
}

.thanks-info strong {
    color: #2a2a2a;
}

.thanks-note {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2rem;
}

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

/* Legal Content */
.legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #2a2a2a;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    color: #3a3a3a;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.legal-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .image-float-left {
        float: none;
        max-width: 100%;
        margin: 0 0 1.5rem 0;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

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

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

@media (min-width: 769px) {
    .two-col-visual {
        flex-direction: row;
    }

    .visual-block {
        flex: 1;
    }

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

    .service-detail-item {
        flex-direction: row;
    }

    .service-img-wrapper {
        flex: 1;
        min-width: 45%;
    }

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

    .contact-layout {
        flex-direction: row;
    }
}