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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: #6b5345;
}

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

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

.btn-accept:hover {
    background: #6b5345;
}

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

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

/* Navigation - Minimal Style */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    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.4rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #666;
}

.nav-links a:hover {
    color: #2c2c2c;
}

/* Editorial Flow - Main Layout Archetype */
.editorial-flow {
    background: #fff;
}

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

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 3px;
}

figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    font-style: italic;
}

/* Page Headers */
.page-header-editorial {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

/* Story Sections */
.story-section {
    padding: 3rem 0;
}

.story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.story-section p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Image Breaks */
.image-break {
    margin: 4rem 0;
}

.image-break img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 3px;
}

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

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #8b7355;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.cta-link:hover {
    background: #6b5345;
    color: #fff;
}

/* Services Editorial */
.services-editorial {
    padding: 3rem 0;
    background: #f9f9f9;
}

.service-cards-editorial {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.service-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

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

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

.service-details {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-bottom: 1.2rem;
}

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

.service-features li {
    margin-bottom: 0.5rem;
    color: #666;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b7355;
    margin: 1.5rem 0;
}

.select-service {
    padding: 0.8rem 1.8rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #1a1a1a;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 3rem 0;
    background: #f4f1ee;
}

.testimonial-inline blockquote {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem;
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #4a4a4a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #888;
}

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

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Final Message */
.final-message {
    padding: 4rem 0;
    text-align: center;
    background: #f9f9f9;
}

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

.cta-subtle {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border: 2px solid #8b7355;
    color: #8b7355;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-subtle:hover {
    background: #8b7355;
    color: #fff;
}

/* Contact Page Specific */
.contact-section {
    padding: 3rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.info-block h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-block p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.info-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

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

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

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

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9f9f9;
    border-left: 4px solid #8b7355;
}

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

.thanks-next h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-steps {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.thanks-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #8b7355;
    color: #fff;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #6b5345;
    color: #fff;
}

.btn-secondary {
    padding: 1rem 2rem;
    border: 2px solid #8b7355;
    color: #8b7355;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* Legal Pages */
.legal-page {
    padding: 2rem 0 4rem;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.updated-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-page section {
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c2c2c;
}

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

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

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookie-table th {
    background: #f4f1ee;
    font-weight: 600;
}

/* Footer */
.footer-minimal {
    background: #2c2c2c;
    color: #fff;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

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

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

.footer-nav a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-text {
    font-size: 0.9rem;
    color: #999;
}

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

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

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

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

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

    .story-section h2 {
        font-size: 1.5rem;
    }

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

    .service-card img {
        height: 250px;
    }

    .price {
        font-size: 1.5rem;
    }

    .cookie-content {
        padding: 0 1rem;
    }

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

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

    .thanks-actions a {
        text-align: center;
    }

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

    .contact-info {
        padding: 0 1.5rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-editorial h1 {
        font-size: 2.4rem;
    }

    .service-cards-editorial {
        max-width: 800px;
    }
}

@media (min-width: 1025px) {
    .service-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

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

    .service-card img {
        width: 45%;
        height: auto;
        object-fit: cover;
    }

    .service-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}