/* 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: #fafafa;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

a {
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

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

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

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.btn-cookie:hover {
    background: #e0e0e0;
}

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

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

/* Navigation */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

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

/* Editorial Container */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

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

/* Hero Section */
.article-hero {
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
    border-bottom: 1px solid #e0e0e0;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.page-hero-simple {
    padding: 4rem 2rem 3rem;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero-simple h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Narrative Sections */
.narrative-section {
    padding: 4rem 2rem;
}

.opening-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #1a1a1a;
}

.narrative-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.section-heading {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
}

/* Inline Images */
.inline-image-container {
    margin: 3rem 0;
}

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

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

/* CTAs */
.inline-cta,
.inline-cta-strong {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.8rem 2rem;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.inline-cta:hover,
.inline-cta-strong:hover {
    background: #333;
    color: #fff;
}

.inline-cta-strong {
    background: #2a2a2a;
    font-weight: 600;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
}

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

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Visual Breaks */
.visual-break {
    padding: 3rem 2rem;
    background: #f5f5f5;
}

.pull-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    color: #1a1a1a;
}

/* Testimonials */
.testimonial-inline,
.testimonial-card {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #1a1a1a;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-inline cite,
.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.testimonials-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

/* Service Blocks */
.service-story-block {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid #e0e0e0;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-price {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

.btn-select-service {
    padding: 0.8rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 2px;
}

.btn-select-service:hover {
    background: #333;
}

/* Service Detail Blocks */
.services-detailed {
    padding: 2rem 0;
}

.service-detail-block {
    margin: 4rem 0;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-child {
    border-bottom: none;
}

.service-title-large {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.service-price-large {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 0 0.5rem;
    color: #1a1a1a;
}

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

/* Process List */
.process-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.process-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Forms */
.booking-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.editorial-form {
    margin: 2rem 0;
    max-width: 600px;
}

.selected-service-box {
    background: #e8f4f8;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #1a1a1a;
    border-radius: 2px;
}

.selected-service-box p {
    margin: 0.5rem 0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
}

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

.btn-submit {
    padding: 1rem 3rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 2px;
}

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

/* Contact Page */
.contact-section {
    padding: 4rem 2rem;
}

.contact-info-block,
.contact-text-block,
.contact-cta-block {
    margin: 3rem 0;
}

.contact-detail {
    margin: 2rem 0;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    margin: 0.3rem 0;
    font-size: 1.05rem;
}

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

.contact-text-block p {
    margin-bottom: 1.5rem;
}

.contact-cta-block {
    text-align: center;
    padding: 3rem 2rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.thanks-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.service-confirmation-box {
    background: #e8f4f8;
    padding: 2rem;
    margin: 2rem auto;
    border-left: 4px solid #1a1a1a;
    border-radius: 2px;
    text-align: left;
}

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

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

.thanks-contact {
    margin-top: 3rem;
}

.contact-info-text {
    font-size: 0.95rem;
    color: #666;
}

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

.legal-update {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin: 3rem 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Team Section */
.team-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: #f5f5f5;
}

/* Closing Section */
.closing-section {
    padding: 4rem 2rem;
    text-align: center;
    background: #1a1a1a;
    color: #fff;
}

.closing-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #fff;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-heading {
        font-size: 1.6rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .article-hero {
        padding: 3rem 1.5rem 2.5rem;
    }

    .narrative-section {
        padding: 3rem 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}