/* 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: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Editorial Navigation */
.nav-editorial {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8ecef;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Editorial Container - Narrow Centered */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

/* Story Header */
.story-header {
    margin-bottom: 3rem;
}

.story-header h1 {
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.story-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 400;
    margin-bottom: 1rem;
}

.story-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
    color: #718096;
    margin-top: 1.5rem;
}

/* Story Images */
.story-image {
    margin: 3rem 0;
    width: 100%;
}

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

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

.story-image-inline {
    margin: 2.5rem 0;
}

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

.story-section h2 {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    letter-spacing: -0.02em;
}

.story-section h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.story-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-section em {
    font-style: italic;
    color: #1a1a1a;
}

.story-section strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Story Lists */
.story-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.story-list li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

/* Blockquotes */
.story-quote {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.story-quote p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.story-quote cite {
    display: block;
    font-size: 1rem;
    color: #718096;
    font-style: normal;
    margin-top: 1rem;
}

/* Inline CTA */
.inline-cta {
    margin: 3.5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    text-align: center;
}

.inline-cta h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.inline-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-inline {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #ffffff;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Highlight Box */
.highlight-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff8e1;
    border-radius: 8px;
    border: 2px solid #ffd54f;
}

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

.highlight-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c3e50;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #e8ecef;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #3498db;
}

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

.service-card p,
.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

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

.service-features li {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e8ecef;
    border-bottom: 1px solid #e8ecef;
}

.service-duration {
    font-size: 0.95rem;
    color: #718096;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
}

.service-ideal {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.btn-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

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

.form-intro {
    font-size: 1.125rem;
    color: #4a5568;
    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-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    font-size: 1rem;
    border: 2px solid #e8ecef;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.0625rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ecf8f3;
    border-left: 4px solid #27ae60;
    border-radius: 6px;
}

.testimonial-inline p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-size: 1rem;
    color: #718096;
    font-style: normal;
}

/* Final CTA */
.final-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    text-align: center;
}

.final-cta h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: #ffffff;
    color: #f5576c;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Info Grid */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.contact-info-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: #3498db;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

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

/* FAQ Items */
.faq-item {
    margin-bottom: 2.5rem;
}

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

.faq-item p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 3rem 0;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ecf8f3;
    border-radius: 8px;
}

.service-confirmation p {
    font-size: 1.125rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 2rem 0;
}

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

.next-steps h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary {
    display: block;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.thanks-extra {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-extra p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.text-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.0625rem;
}

.text-link:hover {
    text-decoration: underline;
}

/* Legal Content */
.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    backdrop-filter: blur(10px);
    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.6;
    margin: 0;
    flex: 1;
}

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

.cookie-actions button {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

#cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

#cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

#cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.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.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #718096;
}

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

    .nav-links {
        gap: 1.25rem;
    }

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

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

    .story-lead {
        font-size: 1.15rem;
    }

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

    .story-section p,
    .story-list li {
        font-size: 1.0625rem;
    }

    .story-quote p {
        font-size: 1.125rem;
    }

    .inline-cta,
    .final-cta {
        padding: 2rem 1.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.25rem;
    }

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

    .cookie-actions button {
        width: 100%;
    }

    .thanks-actions {
        gap: 0.75rem;
    }

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

@media (min-width: 769px) {
    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        flex: 0 1 auto;
    }

    .contact-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .contact-info-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}
