/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

/* Typography - Minimal Premium: Big Typography */
h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

a {
    color: #2c2c2c;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

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

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

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

/* Navigation - Minimal Premium Style */
.main-nav {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 400;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e5e5e5;
}

/* Content Containers - Large Spacing */
.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Sections - Minimal Premium: Large Spacing */
section {
    padding: 6rem 0;
}

.hero {
    padding: 8rem 0;
    background-color: #fafafa;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 4rem;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-top: 4rem;
}

/* Page Header */
.page-header {
    padding: 6rem 0 4rem;
    background-color: #fafafa;
    text-align: center;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 300;
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
}

/* Insight Block */
.insight-block {
    padding: 6rem 0;
    background-color: #fafafa;
}

.insight-text {
    flex: 1;
}

.insight-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 3rem;
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.approach-item {
    padding: 2rem 0;
}

/* Benefits Section */
.benefits-reveal {
    padding: 6rem 0;
    background-color: #fafafa;
}

.benefits-text {
    flex: 1;
    margin-top: 3rem;
}

.benefits-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

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

.benefits-list li {
    padding: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.125rem;
}

.benefits-list li:before {
    content: "—";
    position: absolute;
    left: 0;
}

.benefits-note {
    font-size: 1rem;
    color: #666;
}

/* Citations */
.citation {
    color: #0066cc;
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.citation:hover {
    text-decoration: underline;
}

/* Testimonial */
.testimonial-section {
    padding: 6rem 0;
}

.testimonial {
    padding: 3rem;
    background-color: #fafafa;
    border-left: 3px solid #2c2c2c;
}

.testimonial p {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
}

.testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: #666;
}

/* CTA Sections */
.cta-inline,
.cta-block,
.final-cta,
.about-cta,
.contact-cta {
    padding: 6rem 0;
    text-align: center;
}

.cta-button,
.cta-button-large {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #2c2c2c;
    color: #ffffff;
    font-size: 1.125rem;
    margin-top: 2rem;
    transition: opacity 0.3s ease;
}

.cta-button:hover,
.cta-button-large:hover {
    opacity: 0.8;
}

.cta-button-large {
    padding: 1.25rem 4rem;
    font-size: 1.25rem;
}

.secondary-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
    font-size: 1.125rem;
    margin-top: 2rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

/* Science Section */
.science-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

/* Service Preview */
.service-preview {
    padding: 6rem 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    padding: 3rem;
    background-color: #fafafa;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #0066cc;
    text-decoration: underline;
}

/* Commitment Section */
.commitment-section,
.commitment-detail {
    padding: 6rem 0;
    background-color: #fafafa;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
}

.story-image {
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
}

/* Approach Detail */
.approach-detail {
    padding: 6rem 0;
    background-color: #fafafa;
}

.approach-text {
    margin-bottom: 3rem;
}

.approach-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Team Section */
.team-intro {
    padding: 6rem 0;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    padding: 2rem 0;
}

/* Services Intro */
.services-intro {
    padding: 4rem 0;
}

/* Service Detail Sections */
.service-detail {
    padding: 5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 3rem;
}

.service-info {
    flex: 1;
}

.service-info ul {
    list-style: none;
    margin: 2rem 0;
}

.service-info ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.service-details-box {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #fafafa;
}

.service-details-box p {
    margin-bottom: 0.75rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1rem;
}

.select-button,
.submit-button {
    padding: 1rem 3rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    margin-top: 1rem;
    transition: opacity 0.3s ease;
}

.select-button:hover,
.submit-button:hover {
    opacity: 0.8;
}

/* Form Section */
.contact-form-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.service-form {
    margin-top: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #fafafa;
}

/* Contact Page */
.contact-info-section {
    padding: 5rem 0;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.location-section,
.visit-info {
    padding: 5rem 0;
}

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

.visit-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.visit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
}

.faq-contact {
    padding: 6rem 0;
    background-color: #fafafa;
}

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

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

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

.thanks-message {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.confirmation-box {
    background-color: #fafafa;
    padding: 3rem;
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    list-style: none;
    margin-top: 2rem;
}

.next-steps li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
}

.selected-service-info {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.while-waiting {
    padding: 5rem 0;
    background-color: #fafafa;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.resource-link {
    padding: 1rem 2rem;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: background-color 0.3s ease;
}

.resource-link:hover {
    background-color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background-color: #fafafa;
    font-weight: 500;
}

/* Footer */
.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 5rem 0 2rem;
    margin-top: 6rem;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
    font-size: 1rem;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 2rem;
    background-color: #1a1a1a;
    font-size: 0.9rem;
    color: #cccccc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

.references {
    margin: 2rem 0;
}

.references li {
    margin-bottom: 0.75rem;
    color: #cccccc;
}

.references a {
    color: #66aaff;
}

/* Tablet and Desktop Layouts */
@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .cookie-content {
        flex-direction: row;
    }

    .cookie-content p {
        margin-bottom: 0;
        text-align: left;
    }

    .nav-links {
        gap: 4rem;
    }

    section {
        padding: 8rem 0;
    }

    .hero {
        padding: 10rem 0;
    }

    .approach-grid {
        flex-direction: row;
    }

    .approach-item {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .service-cards {
        flex-direction: row;
    }

    .service-card {
        flex: 1;
    }

    .content-wide {
        display: flex;
        align-items: center;
        gap: 4rem;
    }

    .service-detail .content-wide {
        align-items: flex-start;
    }

    .service-detail.reverse .content-wide {
        flex-direction: row-reverse;
    }

    .insight-image,
    .benefits-image,
    .approach-image,
    .contact-image,
    .service-image {
        margin-top: 0;
        margin-bottom: 0;
    }

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

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

    .footer-section {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .resource-links {
        flex-direction: row;
        justify-content: center;
    }

    .resource-link {
        flex: 0 0 auto;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 3.5rem;
    }
}