/* 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: #2a2a2a;
    background-color: #fafafa;
}

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

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

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

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

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

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

/* Editorial Container - Narrow Centered */
.editorial-container {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Hero Editorial */
.hero-editorial {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
}

/* Centered Narrow Text Sections */
.centered-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-section {
    padding: 3rem 2rem;
}

.text-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 2rem;
}

.text-section h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.text-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
}

.text-section h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #3a3a3a;
}

/* Inline Images */
.inline-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
    display: block;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #f8f8f8;
    border-left: 4px solid #1a1a1a;
    padding: 2rem;
    margin: 2.5rem 0;
}

.inline-cta-box h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem;
}

.cta-inline {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.cta-inline:hover {
    background-color: #3a3a3a;
}

/* Highlight Section */
.highlight-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
    margin: 3rem 0;
}

.highlight-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-card {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

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

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

/* Services Preview */
.services-preview {
    margin: 3rem 0;
}

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

.service-mini {
    background-color: #f8f8f8;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

.service-mini.featured {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
}

.service-mini.featured h4,
.service-mini.featured .price {
    color: #ffffff;
}

.service-mini h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0.5rem 0;
}

.service-mini p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.8rem 0;
}

.btn-select-service {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 1rem;
    transition: all 0.2s;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.service-mini.featured .btn-select-service {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.service-mini.featured .btn-select-service:hover {
    background-color: #f0f0f0;
}

.services-link {
    text-align: center;
    margin-top: 2rem;
}

.services-link a {
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 1.05rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 3rem 2rem;
}

blockquote {
    border-left: 4px solid #1a1a1a;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #3a3a3a;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
}

/* Dark Section */
.dark-section {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.dark-section h2 {
    color: #ffffff;
}

.dark-section h4 {
    color: #ffffff;
}

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

.faq-item h4 {
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #d0d0d0;
}

/* Form Section */
.form-section {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
    margin: 3rem 0;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-section > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: #1a1a1a;
}

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

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

/* CTA Text Link */
.cta-text-link {
    display: inline-block;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
    font-size: 1.1rem;
    margin: 2rem 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-button-large {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.2s;
}

.cta-button-large:hover {
    background-color: #3a3a3a;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.2s;
}

.sticky-cta:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
}

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

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

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

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

/* Page Header */
.page-header {
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.2rem;
    color: #6a6a6a;
}

/* Legal Content */
.legal-content {
    padding: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
}

.legal-content h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.8rem;
    color: #3a3a3a;
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
}

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

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

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

/* Contact Info Box */
.contact-info-box {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

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

.more-questions {
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
}

/* Services Full Page */
.services-full {
    padding: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

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

.badge-popular {
    position: absolute;
    top: -12px;
    left: 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

.service-duration {
    font-size: 1.05rem;
    color: #6a6a6a;
    margin-bottom: 1.5rem;
}

.service-description h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.service-description ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.service-description li {
    margin-bottom: 0.6rem;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 2rem;
    text-align: center;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
}

.selected-service-box {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 4px;
    display: inline-block;
    text-align: left;
}

.selected-service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.selected-service-box p {
    margin: 0.4rem 0;
}

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

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a4a4a;
}

.thanks-tips {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-tips h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.thanks-tips ul {
    margin: 1rem 0 0 1.5rem;
    line-height: 1.8;
}

.thanks-tips li {
    margin-bottom: 0.6rem;
}

.thanks-cta {
    margin: 2rem 0;
}

.thanks-cta a {
    color: #1a1a1a;
    text-decoration: underline;
}

.thanks-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #e0e0e0;
    color: #2a2a2a;
    text-decoration: none;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.final-about-cta {
    text-align: center;
    padding: 3rem 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

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

    .centered-narrow {
        padding: 0 1.5rem;
    }

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

    .intro-text {
        font-size: 1.15rem;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

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

    .btn-cookie {
        width: 100%;
    }

    .thanks-navigation {
        flex-direction: column;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-text-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.6rem;
    }
}
