/* 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: #2c2c2c;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #2c2c2c;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    font-weight: 600;
}

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

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

.logo {
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 3rem;
    text-align: left;
    padding-top: 2rem;
}

.hero-editorial h1 {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Text Blocks */
.text-block {
    margin-bottom: 2.5rem;
}

.text-block p:last-child {
    margin-bottom: 0;
}

/* Highlight Boxes */
.highlight-box {
    background-color: #f5f5f5;
    border-left: 4px solid #2c2c2c;
    padding: 1.5rem 1.75rem;
    margin: 2.5rem 0;
}

.highlight-box h3 {
    margin-top: 0;
}

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

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

.inline-image-small {
    margin: 2.5rem auto;
    max-width: 500px;
}

.inline-image-small img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTAs */
.cta-inline {
    margin: 2.5rem 0;
    text-align: left;
}

.btn-primary,
.btn-text,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

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

.btn-text {
    background-color: transparent;
    color: #2c2c2c;
    padding: 0;
    text-decoration: underline;
    font-size: 1.0625rem;
}

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

/* Services Editorial */
.services-editorial {
    margin: 3rem 0;
}

.service-card {
    border-top: 1px solid #e0e0e0;
    padding: 2.5rem 0;
}

.service-card:first-child {
    border-top: none;
    padding-top: 0;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-card p {
    color: #555;
}

.service-details {
    margin: 1.5rem 0;
}

.service-details strong {
    display: block;
    margin-bottom: 0.5rem;
}

.service-details ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service {
    background-color: #2c2c2c;
    color: #fff;
    width: 100%;
}

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

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 3px solid #2c2c2c;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.125rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.9375rem;
    color: #666;
}

/* Forms */
.form-section {
    margin: 4rem 0;
    padding: 2.5rem 0;
    border-top: 2px solid #2c2c2c;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #2c2c2c;
    color: #fff;
    width: 100%;
    margin-top: 1rem;
}

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

/* Contact Info */
.contact-info {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-block h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

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

.contact-block a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
}

.contact-block a:hover {
    text-decoration: underline;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    padding: 1rem;
    text-align: center;
    z-index: 90;
    display: none;
}

.btn-sticky {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-sticky:hover {
    opacity: 0.9;
}

/* Footer */
.footer-editorial {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-col p,
.footer-col a {
    color: #ccc;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    text-decoration: none;
}

.footer-col 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 {
    color: #999;
    font-size: 0.875rem;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c2c2c;
    padding: 1.25rem;
    z-index: 200;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.btn-cookie {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

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

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

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

/* Legal Pages */
.legal-page {
    max-width: 800px;
}

.legal-date {
    font-size: 0.9375rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Thanks Page */
.thanks-page .hero-editorial {
    text-align: center;
}

/* Closing Sections */
.closing {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Tablet Styles */
@media (min-width: 768px) {
    html {
        font-size: 17px;
    }

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

    .nav-container {
        flex-wrap: nowrap;
    }

    .editorial-content {
        padding: 4rem 2rem 6rem;
    }

    .sticky-cta {
        display: block;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1;
        min-width: 250px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }

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

    .editorial-content {
        padding: 5rem 2rem 7rem;
    }

    .service-card {
        padding: 3rem 0;
    }

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

    .testimonial-inline {
        padding: 2.5rem 3rem;
    }
}

/* Print Styles */
@media print {
    .nav-minimal,
    .sticky-cta,
    .cookie-banner,
    .footer-editorial {
        display: none;
    }

    body {
        background-color: #fff;
    }

    .editorial-content {
        max-width: 100%;
    }
}