* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.nav-editorial {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c2c2c;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 3rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
    font-weight: 300;
}

.hero-image {
    margin: 0;
}

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

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

.story-intro {
    padding: 3rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-intro p,
.problem-section p,
.insight-reveal p,
.experience-details p,
.practical-details p,
.urgency-subtle p,
.final-thought p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.inline-cta-soft {
    padding: 2.5rem 0;
    background: #f5f5f3;
    margin: 3rem 0;
}

.cta-whisper {
    font-size: 1.15rem;
    font-style: italic;
    color: #444;
    text-align: center;
    padding: 1rem;
}

.problem-section,
.insight-reveal,
.experience-details,
.practical-details,
.urgency-subtle,
.final-thought {
    padding: 3rem 0;
}

.problem-section h2,
.insight-reveal h2,
.experience-details h2,
.services-preview h2,
.practical-details h2,
.booking-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

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

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

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

.styled-list {
    margin: 1.5rem 0 1.5rem 2rem;
    list-style: none;
}

.styled-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.styled-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #999;
    font-size: 1.2rem;
}

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

.testimonial-inline {
    padding: 3rem 0;
    background: #fff;
    margin: 3rem 0;
}

.testimonial-inline blockquote {
    border-left: 3px solid #2c2c2c;
    padding-left: 2rem;
    font-size: 1.15rem;
    font-style: italic;
    color: #444;
}

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

.services-preview {
    padding: 4rem 0;
    background: #fff;
    margin: 3rem 0;
}

.service-card-editorial {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-editorial:last-child {
    border-bottom: none;
}

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

.service-card-editorial p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #444;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f9f9f7;
    border-radius: 4px;
}

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

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
}

.btn-inline {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-inline:hover {
    background: #1a1a1a;
}

.service-card-editorial.highlight {
    background: #f5f5f3;
    padding: 2rem;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
}

.note-small {
    font-size: 0.9rem;
    color: #777;
    margin-top: 2rem;
    font-style: italic;
}

.detail-block {
    margin-bottom: 2.5rem;
}

.detail-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: #1a1a1a;
}

.detail-block p {
    font-size: 1.05rem;
    color: #444;
}

.booking-form-section {
    padding: 4rem 0;
    background: #fff;
    margin: 3rem 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2c2c2c;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    background: #1a1a1a;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

.signature {
    font-size: 1.25rem;
    font-style: italic;
    margin-top: 2rem;
    color: #2c2c2c;
}

.footer-editorial {
    background: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

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

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

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

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #2c2c2c;
    padding: 1.5rem;
    z-index: 2000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #444;
}

.cookie-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.btn-cookie.accept {
    background: #2c2c2c;
    color: #fff;
}

.btn-cookie.accept:hover {
    background: #1a1a1a;
}

.btn-cookie.reject {
    background: #e0e0e0;
    color: #2c2c2c;
}

.btn-cookie.reject:hover {
    background: #d0d0d0;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #e0e0e0;
        gap: 1rem;
    }

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

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

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

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

    .problem-section h2,
    .insight-reveal h2,
    .experience-details h2,
    .services-preview h2,
    .practical-details h2,
    .booking-form-section h2 {
        font-size: 1.6rem;
    }

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

    .footer-content {
        flex-direction: column;
    }

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

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

    .btn-cookie {
        width: 100%;
    }
}

.thanks-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    text-align: center;
}

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

.thanks-page p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #444;
}

.thanks-page .btn-inline {
    margin-top: 2rem;
}

.contact-page,
.about-page,
.services-page,
.legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.contact-page h1,
.about-page h1,
.services-page h1,
.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #1a1a1a;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #444;
}

.contact-info strong {
    color: #2c2c2c;
}

.service-full {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 4px;
    border-left: 4px solid #2c2c2c;
}

.service-full h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #1a1a1a;
}

.service-full p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #444;
}

.service-full .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    display: block;
    margin: 1.5rem 0;
}

.about-page p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #444;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 400;
    color: #2c2c2c;
}

.legal-page p,
.legal-page li {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

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

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