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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafaf8;
}

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

a {
    color: #1a1a1a;
    text-decoration: none;
}

/* Editorial Typography */
h1, h2, h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1.2rem;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 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;
    text-decoration: none;
}

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

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

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

/* Editorial Flow Layout */
.editorial-flow {
    background: #fafaf8;
}

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

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

/* Hero Editorial */
.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.hero-image-container {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-text-overlay {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 2.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-text-overlay h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
}

/* Typography Variations */
.opener {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
}

.emphasis-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Pull Quote */
.pull-quote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 3px solid #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
    color: #1a1a1a;
}

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

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

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

.full-width-img {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Content Highlight Box */
.content-highlight {
    background: #f5f5f3;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #1a1a1a;
}

.content-highlight h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

/* Lists */
.styled-list {
    margin: 1.5rem 0 1.5rem 2rem;
}

.styled-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Service Editorial Sections */
.service-editorial {
    display: flex;
    gap: 2.5rem;
    margin: 3rem 0;
    align-items: flex-start;
}

.service-editorial.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    margin-top: 0;
}

.service-detail {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn-select-service,
.btn-primary,
.btn-primary-large {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #1a1a1a;
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
    text-align: center;
}

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

.btn-primary-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
}

/* CTAs */
.inline-cta-soft {
    margin: 2rem 0;
}

.link-arrow {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.link-arrow:hover {
    opacity: 0.7;
}

.link-arrow::after {
    content: ' →';
}

.inline-cta-box {
    background: #1a1a1a;
    color: #fff;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    text-align: center;
}

.inline-cta-box h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
}

.inline-cta-box p {
    color: #ddd;
    margin-bottom: 1.5rem;
}

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

.inline-cta-box .btn-primary:hover {
    background: #f0f0f0;
}

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

.testimonial-inline {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9f9f7;
    border-left: 3px solid #ccc;
}

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

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

/* Forms */
.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
}

.form-intro {
    color: #555;
    margin-bottom: 2rem;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #333;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

.footer-copy {
    font-size: 0.9rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

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

.contact-item {
    margin: 2.5rem 0;
}

.contact-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

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

/* Thanks Page */
.thanks-page {
    padding: 3rem 0;
}

.thanks-content {
    text-align: center;
}

.thanks-info {
    text-align: left;
    margin: 2rem 0;
}

.highlight-service {
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Legal Pages */
.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 1.8rem;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

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

.legal-page strong {
    font-weight: 700;
}

.final-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #f5f5f3;
    border-radius: 4px;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .reading-width {
        padding: 0 1.5rem;
    }

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

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

    .service-editorial,
    .service-editorial.reverse {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-image {
        flex: 1;
    }

    .pull-quote {
        font-size: 1.3rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta-btn {
        display: block;
        width: 100%;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

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

    .hero-image {
        height: 350px;
    }

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

    h1 {
        font-size: 1.8rem;
    }

    .opener {
        font-size: 1.2rem;
    }
}