/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Palatino', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation - Minimal Editorial Style */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: transparent;
}

.nav-brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
}

/* Editorial Container - Narrow Centered Text */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero Section */
.editorial-hero {
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
}

.hero-narrow {
    max-width: 100%;
}

.editorial-title {
    font-size: 2.75rem;
    line-height: 1.25;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.editorial-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
    font-weight: 300;
}

/* Editorial Section */
.editorial-section {
    padding-bottom: 4rem;
}

.editorial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2a2a2a;
}

.editorial-text h2 {
    font-size: 1.875rem;
    line-height: 1.35;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.editorial-text h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
    font-weight: 600;
}

.editorial-text h4 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
    font-weight: 600;
}

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

/* Drop Cap */
.drop-cap::first-letter {
    font-size: 4rem;
    line-height: 0.9;
    float: left;
    margin: 0.1rem 0.1rem 0 0;
    font-weight: 600;
    color: #1a1a1a;
}

/* Editorial Lists */
.editorial-list {
    margin: 2rem 0 2rem 2rem;
    list-style-position: outside;
}

.editorial-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.editorial-list-negative {
    margin: 2rem 0 2rem 2rem;
    list-style: none;
}

.editorial-list-negative li::before {
    content: "×";
    color: #c44;
    font-size: 1.5rem;
    margin-right: 0.75rem;
    font-weight: bold;
}

.editorial-list-negative li {
    margin-bottom: 1rem;
}

/* Images */
.editorial-image {
    margin: 3rem 0;
    width: 100%;
}

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

.image-caption {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-top: 0.75rem;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
}

/* Blockquotes */
.editorial-quote {
    margin: 3rem 0;
    padding: 2rem 0;
    border-left: 3px solid #1a1a1a;
    padding-left: 2rem;
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
}

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

/* Inline CTAs - Editorial Style */
.inline-cta {
    margin: 3rem 0;
    text-align: center;
}

.cta-link {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 3px;
    transition: border-color 0.3s ease;
    letter-spacing: 0.3px;
}

.cta-link:hover {
    border-color: #666;
}

.cta-link-large {
    font-size: 1.125rem;
    font-weight: 500;
}

.inline-cta-secondary {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 3px solid #4a4a4a;
}

.cta-text {
    font-size: 1.125rem;
    color: #2a2a2a;
    font-style: italic;
}

.final-cta {
    margin: 4rem 0 2rem;
    padding: 3rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* Insight Box */
.insight-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #1a1a1a;
}

.insight-box p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.insight-box p:last-child {
    margin-bottom: 0;
}

/* Service Cards - Editorial Style */
.services-preview {
    margin: 3rem 0;
}

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

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

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
}

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

/* Detailed Service Sections */
.services-detailed {
    margin-top: 3rem;
}

.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #ddd;
}

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

.service-subtitle {
    font-size: 1.125rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.price-note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-select-service {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
}

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

.btn-submit {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

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

/* Forms - Editorial Style */
.form-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #ddd;
}

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

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 1px solid #ccc;
    background-color: #fff;
    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;
}

/* Testimonials */
.testimonial-section {
    margin: 3rem 0;
}

/* Contact Info */
.contact-info {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

/* Thanks Page */
.thanks-content {
    text-align: left;
}

.thanks-info-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #1a1a1a;
}

.service-confirmation {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 3px solid #4a4a4a;
}

.selected-service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1rem 0;
}

.contact-reminder {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff;
    border: 2px solid #ddd;
    text-align: center;
}

/* Legal Pages */
.legal-page .editorial-text {
    font-size: 1rem;
}

.legal-page h2 {
    margin-top: 3rem;
}

.rodo-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 3px solid #4a4a4a;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

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

/* Footer */
.footer-minimal {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 5%;
    margin-top: 5rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
}

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

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

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

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

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

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

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

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

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

.cookie-content p {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

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

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

.btn-cookie-secondary {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

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

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

    .editorial-lead {
        font-size: 1.15rem;
    }

    .editorial-text {
        font-size: 1.0625rem;
    }

    .editorial-text h2 {
        font-size: 1.5rem;
    }

    .editorial-text h3 {
        font-size: 1.25rem;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-secondary {
        flex: 1;
    }

    .drop-cap::first-letter {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .editorial-container {
        padding: 0 7%;
    }

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

    .editorial-title {
        font-size: 1.75rem;
    }

    .service-price,
    .price-emphasis {
        font-size: 1.5rem;
    }
}
