/* 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', 'Oxygen', 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

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

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.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-color: #fff;
    color: #1a1a1a;
}

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

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

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

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1a1a1a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

/* Editorial Container */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 4rem;
}

.hero-text-narrow {
    margin-bottom: 2.5rem;
}

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

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

.hero-image-inline {
    margin: 0;
}

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

/* Content Sections */
.content-narrow {
    margin-bottom: 3rem;
}

.content-narrow h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    letter-spacing: -0.02em;
}

.content-narrow h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

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

.content-narrow ul {
    margin-left: 1.5rem;
    margin-bottom: 1.3rem;
}

.content-narrow ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
    color: #3a3a3a;
}

/* Inline CTA */
.inline-cta-soft {
    background-color: #f5f5f5;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 3px solid #1a1a1a;
}

.inline-cta-soft p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.link-arrow {
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    color: #1a1a1a;
}

.link-arrow:hover {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

/* Principles List */
.principles-list {
    margin: 3rem 0;
}

.principle-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.principle-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d0d0d0;
    flex-shrink: 0;
    line-height: 1;
}

.principle-content h3 {
    font-size: 1.3rem;
    margin: 0 0 0.8rem 0;
    font-weight: 600;
}

.principle-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

/* Wide Images */
.image-wide-editorial {
    margin: 3rem -1.5rem;
}

.image-wide-editorial img {
    width: 100%;
    border-radius: 4px;
}

.image-wide-editorial figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.8rem;
    text-align: center;
    font-style: italic;
}

/* Quote Section */
.quote-section {
    margin: 4rem 0;
}

.quote-section blockquote {
    border-left: 3px solid #1a1a1a;
    padding-left: 2rem;
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
    margin: 2rem 0;
}

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

/* Insight Box */
.insight-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin: 3rem 0;
}

.insight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.insight-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

/* Testimonial Inline */
.testimonial-inline {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.testimonial-inline p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #2a2a2a;
    margin: 0 0 1rem 0;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

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

.service-card-editorial {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

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

.service-card-editorial h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Form Container */
.form-container-editorial {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    margin: 3rem 0;
}

.form-container-editorial h3 {
    font-size: 1.6rem;
    margin: 0 0 0.8rem 0;
    font-weight: 600;
}

.form-container-editorial > p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-editorial {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit-editorial {
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.form-privacy {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-top: 1rem;
}

.form-privacy a {
    text-decoration: underline;
}

/* Final Thought */
.final-thought p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2a2a2a;
    font-weight: 400;
}

/* Page Headers */
.page-header-narrow {
    margin-bottom: 3rem;
}

.page-header-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.legal-date {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* CTA Sections */
.cta-about,
.cta-services,
.cta-contact {
    background-color: #f5f5f5;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-services {
    text-align: center;
}

.cta-services h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.cta-services p {
    margin-bottom: 1.5rem;
}

.btn-primary-editorial {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary-editorial:hover {
    background-color: #333;
    color: #fff;
}

/* Services Page */
.services-full-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-detail-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-header {
    background-color: #f9f9f9;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-header h2 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-body {
    padding: 2rem;
}

.service-body > p:first-child {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.service-duration {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 1.5rem;
}

.services-note {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 3rem 0;
}

/* Contact Page */
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin: 0 0 0.8rem 0;
    font-weight: 600;
}

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

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

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

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

.thanks-message h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-service-info {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.thanks-service-info p {
    font-size: 1.05rem;
    color: #2a2a2a;
    margin: 0;
}

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

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

.thanks-next p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.link-secondary {
    font-size: 1rem;
    color: #666;
    text-decoration: underline;
}

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

/* Legal Content */
.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

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

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

.btn-reset-cookies {
    padding: 0.8rem 1.5rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    margin: 1.5rem 0;
    transition: background-color 0.3s ease;
}

.btn-reset-cookies:hover {
    background-color: #333;
}

/* Footer */
.footer-minimal {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text-narrow h1 {
        font-size: 2.2rem;
    }

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

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

    .image-wide-editorial {
        margin: 3rem 0;
    }

    .principle-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

@media (min-width: 769px) and (max-width: 1024px) {
    .editorial-container {
        max-width: 680px;
    }
}

@media (min-width: 1025px) {
    .image-wide-editorial {
        margin: 3rem -2rem;
    }
}