/* Reset and 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;
    overflow-x: hidden;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation - Minimal Style */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

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

/* Hero - Minimal Premium Style */
.hero-minimal {
    padding: 120px 60px 80px;
    background-color: #fafafa;
}

.hero-content-wide {
    max-width: 900px;
    margin: 0 auto 80px;
}

.display-title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 300;
    max-width: 700px;
}

.hero-visual {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Spacing - Large Gaps */
.section-spaced {
    padding: 140px 60px;
}

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

.content-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.section-heading {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.section-heading-center {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-align: center;
}

.text-large {
    font-size: 1.75rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #2a2a2a;
    font-weight: 300;
}

.text-medium {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4a4a4a;
}

/* Image Offset Section */
.section-image-offset {
    padding: 100px 60px;
    background-color: #fafafa;
}

.offset-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.offset-text {
    flex: 1;
}

.offset-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.subsection-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 35px;
    letter-spacing: -0.01em;
}

/* Form Section - Centered Minimal */
.form-section-centered {
    padding: 140px 60px;
    background-color: #ffffff;
}

.form-container-minimal {
    max-width: 900px;
    margin: 0 auto;
}

.form-heading {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.02em;
}

.form-intro {
    font-size: 1.25rem;
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 70px;
}

.minimal-form {
    width: 100%;
}

.service-cards-horizontal {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
    justify-content: center;
}

.service-card-radio {
    flex: 1;
    cursor: pointer;
    max-width: 280px;
}

.service-card-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.service-card-radio .card-content {
    border: 2px solid #e0e0e0;
    padding: 40px 30px;
    background-color: #fafafa;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card-radio input[type="radio"]:checked + .card-content {
    border-color: #1a1a1a;
    background-color: #f5f5f5;
}

.service-card-radio .card-content:hover {
    border-color: #a0a0a0;
}

.service-card-radio h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-radio .price {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-radio .service-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.form-fields-stacked {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.form-fields-stacked input {
    padding: 20px 25px;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

.form-fields-stacked input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-primary-large {
    padding: 22px 50px;
    font-size: 1.15rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary-large:hover {
    background-color: #333333;
}

.btn-secondary {
    padding: 18px 40px;
    font-size: 1rem;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

/* Testimonial */
.testimonial-minimal {
    padding: 140px 60px;
    background-color: #f5f5f5;
}

.quote-large {
    font-size: 2.25rem;
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.quote-author {
    font-size: 1.1rem;
    color: #666;
    font-style: normal;
}

/* Principles Grid */
.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.principle-block {
    flex: 1 1 calc(50% - 25px);
    min-width: 300px;
}

.principle-block h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.principle-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Page Header */
.page-header-minimal {
    padding: 120px 60px 80px;
    background-color: #fafafa;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #4a4a4a;
    font-weight: 300;
}

/* Full Bleed Image */
.image-full-bleed {
    width: 100%;
    background-color: #e8e8e8;
    margin: 80px 0;
}

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

/* Stats */
.stats-minimal {
    padding: 100px 60px;
    background-color: #1a1a1a;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
}

.stat-block {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* Services Layout */
.services-layout-stacked {
    padding: 60px 0;
}

.service-item-large {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 60px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item-large.reverse {
    flex-direction: row-reverse;
    background-color: #fafafa;
}

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-image-right,
.service-image-left {
    flex: 1;
    background-color: #e8e8e8;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: auto;
    display: block;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.service-price {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.service-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 1.05rem;
    line-height: 2;
    color: #4a4a4a;
    padding-left: 30px;
    position: relative;
}

.service-features li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #999;
}

/* CTA Section */
.cta-section-minimal {
    padding: 140px 60px;
    background-color: #f5f5f5;
}

.cta-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.35rem;
    color: #4a4a4a;
    margin-bottom: 50px;
}

/* Contact Section */
.contact-section-centered {
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.contact-item p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.email-display {
    color: #4a4a4a;
    font-weight: 400;
}

.contact-note {
    background-color: #fafafa;
    padding: 50px;
    border-left: 3px solid #1a1a1a;
}

.text-link {
    color: #1a1a1a;
    text-decoration: underline;
}

.text-link:hover {
    color: #4a4a4a;
}

/* Map Placeholder */
.map-placeholder {
    width: 100%;
    background-color: #e8e8e8;
    margin: 80px 0;
}

.map-container {
    width: 100%;
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Thanks Page */
.thanks-section {
    padding: 140px 60px;
    min-height: 70vh;
}

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

.thanks-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.thanks-subtitle {
    font-size: 1.5rem;
    color: #4a4a4a;
    margin-bottom: 60px;
    font-weight: 300;
}

.thanks-message {
    margin-bottom: 70px;
    text-align: left;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 80px 60px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-content h4 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.legal-content em {
    color: #999;
    font-size: 0.95rem;
}

/* Footer */
.footer-minimal {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 80px 60px 40px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #444;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #999;
}

.footer-disclaimer strong {
    color: #b0b0b0;
}

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

.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: #ffffff;
    padding: 30px;
    z-index: 1000;
    display: none;
    border-top: 1px solid #333;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #e0e0e0;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .display-title {
        font-size: 3.5rem;
    }

    .section-heading,
    .section-heading-center {
        font-size: 2.5rem;
    }

    .offset-container {
        flex-direction: column;
        gap: 50px;
    }

    .service-item-large,
    .service-item-large.reverse {
        flex-direction: column;
        gap: 50px;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-minimal {
        padding: 30px 30px;
    }

    .nav-links {
        gap: 25px;
    }

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

    .hero-minimal,
    .section-spaced {
        padding: 80px 30px;
    }

    .display-title {
        font-size: 2.5rem;
    }

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

    .section-heading,
    .section-heading-center {
        font-size: 2rem;
    }

    .text-large {
        font-size: 1.35rem;
    }

    .service-cards-horizontal {
        flex-direction: column;
    }

    .service-card-radio {
        max-width: 100%;
    }

    .principles-grid {
        flex-direction: column;
    }

    .principle-block {
        flex: 1 1 100%;
    }

    .quote-large {
        font-size: 1.75rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .page-title {
        font-size: 3rem;
    }

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