/* EDITORIAL STORY ARCHETYPE - RESET & BASE */
* {
    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: #2a2a2a;
    background-color: #fafaf8;
    -webkit-font-smoothing: antialiased;
}

/* EDITORIAL NAVIGATION */
.editorial-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 0;
}

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

.brand-mark {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

/* EDITORIAL CONTENT - NARROW CENTERED */
.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

/* STORY HEADER */
.story-header {
    margin-bottom: 3rem;
    text-align: left;
}

.headline {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.subhead {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #5a5a5a;
    font-weight: 400;
    margin-bottom: 2rem;
}

.header-visual {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 1.5rem;
}

/* STORY SECTIONS - ARTICLE FLOW */
.story-intro {
    margin-bottom: 2.5rem;
}

.dropcap::first-letter {
    font-size: 4.2rem;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.15rem 0 0;
    font-weight: 700;
    color: #1a1a1a;
}

.story-intro p,
.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #2a2a2a;
}

.story-section {
    margin-bottom: 3rem;
}

.story-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    letter-spacing: -0.02em;
}

.story-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 0.8rem;
    margin-top: 1.8rem;
}

.story-section ul,
.story-intro ul {
    margin-left: 1.5rem;
    margin-bottom: 1.3rem;
}

.story-section li,
.story-intro li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    color: #2a2a2a;
}

/* INLINE IMAGES - EDITORIAL STYLE */
.inline-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}

/* HIGHLIGHT BACKGROUND SECTIONS */
.highlight-bg {
    background-color: #f5f5f3;
    padding: 2rem 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-radius: 6px;
}

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

.text-cta {
    font-size: 1.15rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.text-cta:hover {
    opacity: 0.7;
}

/* SERVICE CARDS - STACKED EDITORIAL STYLE */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2rem;
}

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

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

.service-card.featured {
    border: 2px solid #2a2a2a;
    background-color: #fafaf8;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.duration {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.select-service-btn:hover {
    background-color: #3a3a3a;
}

/* TESTIMONIALS - EDITORIAL FLOW */
.testimonial-flow {
    margin: 2rem 0;
}

.testimonial-flow blockquote {
    border-left: 3px solid #2a2a2a;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-flow blockquote p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

/* ENROLLMENT FORM - EDITORIAL STYLE */
.enrollment-section {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid #e0e0e0;
}

.enrollment-intro {
    font-size: 1.05rem;
    color: #4a4a4a;
    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;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.form-group textarea {
    resize: vertical;
}

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

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

/* FAQ FLOW - EDITORIAL */
.faq-flow {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

/* FOOTER - MINIMAL EDITORIAL */
.editorial-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 3rem 1.5rem 2rem;
    margin-top: 5rem;
}

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

.footer-brand strong {
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 0.3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-note {
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #808080;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #4a4a4a;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2a2a2a;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 200;
    display: none;
}

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

.cookie-content {
    max-width: 900px;
    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;
    line-height: 1.5;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

/* CONTACT PAGE */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

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

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2a2a2a;
}

.contact-block a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.contact-note,
.schedule-note {
    font-size: 0.95rem;
    color: #5a5a5a;
    margin-top: 0.8rem;
}

/* SERVICES PAGE */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.service-detail {
    padding: 2rem 0;
}

.service-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header-detail h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

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

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 1.8rem;
}

.service-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.detail-block ul {
    margin-left: 1.3rem;
}

.detail-block li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.detail-block p {
    font-size: 1rem;
    line-height: 1.7;
}

.featured-service {
    background-color: #f5f5f3;
    padding: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 6px;
}

/* THANKS PAGE */
.thanks-page {
    text-align: left;
}

.confirmation-list,
.preparation-list {
    margin-left: 1.5rem;
    margin-top: 1.5rem;
}

.confirmation-list li,
.preparation-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.thanks-note {
    font-size: 0.95rem;
    color: #5a5a5a;
    margin-top: 1rem;
}

/* LEGAL PAGES */
.legal-page {
    max-width: 800px;
}

.legal-section {
    font-size: 1rem;
    line-height: 1.7;
}

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

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

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

.legal-section a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

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

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

.cookie-table th {
    background-color: #f5f5f3;
    font-weight: 600;
    color: #1a1a1a;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .subhead {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .story-intro p,
    .story-section p {
        font-size: 1.05rem;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }

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

    .featured-service {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .editorial-content {
        padding: 2rem 1rem 3rem;
    }

    .headline {
        font-size: 1.7rem;
    }

    .brand-mark {
        font-size: 1.1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}