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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* Editorial Layout - Main Container */
.editorial-main {
    max-width: 100%;
}

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

/* Hero - Editorial Style */
.hero-editorial {
    padding: 4rem 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text-centered h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.5;
    font-weight: 400;
}

.hero-image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Typography - Editorial Style */
.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    color: #2a2a2a;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 2rem 0 0.8rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 3rem 0;
    border-radius: 6px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
}

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

/* Pullquote */
.pullquote {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 600;
    font-style: italic;
    color: #2a2a2a;
    margin: 3rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #0066cc;
    background: #f8f8f8;
}

/* Sections */
section {
    margin-bottom: 4rem;
}

.intro-story,
.about-story,
.services-intro {
    margin-top: 3rem;
}

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

.cta-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 2px;
}

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

.inline-cta-box {
    background: #f4f7fa;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.inline-cta-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #004499;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    background: #f0f0f0;
    color: #333;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

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

.btn-submit {
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Service Cards - Editorial Style */
.service-card {
    background: #fafafa;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #0066cc;
}

.service-card h4 {
    margin-top: 0;
    font-size: 1.4rem;
}

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

.service-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 2px;
}

.service-cta:hover {
    color: #004499;
    border-bottom-color: #004499;
}

/* Finding Items */
.finding-item {
    margin-bottom: 2.5rem;
}

.finding-item h4 {
    margin-top: 0;
}

/* Testimonials - Inline */
.testimonial-inline {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 6px;
    margin: 2.5rem 0;
    border-left: 3px solid #0066cc;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Approach List */
.approach-list {
    margin: 2rem 0;
}

.approach-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #e0e0e0;
}

.approach-item h4 {
    margin-top: 0;
    color: #0066cc;
}

/* Service Detail Pages */
.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.service-detail li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
    margin: 2rem 0;
}

/* Contact Form - Editorial Style */
.contact-form {
    margin: 3rem 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

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

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

.thanks-section h1 {
    margin-bottom: 1.5rem;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.legal-content h3 {
    margin-top: 2rem;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:not(.btn-secondary) {
    background: #0066cc;
    color: #ffffff;
}

.btn-cookie:not(.btn-secondary):hover {
    background: #004499;
}

.btn-cookie.btn-secondary {
    background: #555;
    color: #ffffff;
}

.btn-cookie.btn-secondary:hover {
    background: #444;
}

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

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

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

.footer-col h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .subtitle {
        font-size: 1.1rem;
    }

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

    h2 {
        font-size: 1.6rem;
    }

    .pullquote {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content p {
        min-width: auto;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .hero-text-centered h1 {
        font-size: 1.7rem;
    }

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