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

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.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: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Editorial Container - Main Layout Archetype */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.inline-image-small {
    margin: 2rem auto;
    max-width: 500px;
}

.inline-image-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

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

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

.story-section p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: #2c2c2c;
}

.story-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
    font-size: 1.125rem;
}

.story-section li {
    margin-bottom: 0.75rem;
}

/* Inline CTAs */
.inline-cta {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.cta-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #333333;
}

.inline-cta-alt {
    margin: 3rem 0;
    text-align: center;
}

.cta-link-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-link-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #f5f5f5;
    border-left: 4px solid #1a1a1a;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Services Preview */
.services-preview {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #1a1a1a;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    border: 2px solid #1a1a1a;
    position: relative;
}

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

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

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service {
    width: 100%;
    padding: 0.875rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #333333;
}

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

.service-detail {
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.service-detail.featured-service {
    border: 2px solid #1a1a1a;
    background-color: #fafafa;
}

.service-detail h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1rem 0 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.form-section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group input:disabled {
    background-color: #e5e5e5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

/* Contact Page */
.contact-info-section {
    margin: 3rem 0;
}

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

.contact-item {
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.contact-item a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.75rem;
    font-style: italic;
}

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

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f9f0;
    border-left: 4px solid #2d7a2d;
    border-radius: 4px;
}

.service-confirmed {
    font-size: 1.125rem;
    color: #2d7a2d;
}

.thanks-list {
    text-align: left;
    margin: 1.5rem auto;
    max-width: 500px;
}

/* Legal Content */
.legal-content h2 {
    margin-top: 3rem;
}

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

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

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

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #2c2c2c;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

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

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    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 {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cccccc;
}

.footer-text {
    font-size: 0.875rem;
    color: #999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

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

    .story-section p {
        font-size: 1rem;
    }

    .testimonial-inline {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-detail {
        padding: 1.5rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    .nav-links {
        gap: 0.75rem;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .services-preview h2 {
        font-size: 1.5rem;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}