/* 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', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 300;
}

/* Minimal Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.6;
}

/* Navigation - Minimal Premium Style */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* Hero Section - Minimal Premium */
.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    margin-top: 5rem;
}

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

.hero-title-large {
    font-size: 4.5rem;
    font-weight: 200;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle-spaced {
    font-size: 1.35rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.02em;
}

/* Large Text Statement */
.intro-statement,
.final-statement {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.statement-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Content Sections - Narrow Layout for Premium Feel */
.philosophy-section,
.expertise-showcase,
.distinction-section,
.process-overview,
.about-intro,
.about-content-section,
.expertise-detail,
.values-section,
.services-intro,
.contact-intro,
.contact-note,
.thanks-details,
.next-steps {
    padding: 7rem 2rem;
}

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

.section-heading-minimal {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.body-spacious {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #333;
    font-weight: 300;
}

/* Image Features - Full Width for Impact */
.image-feature {
    margin: 0;
    padding: 0;
}

.feature-image-large {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.feature-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Preview - Minimal Cards */
.services-preview {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.services-grid-minimal {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-large {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.service-title {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

/* CTA Sections */
.cta-inline-section,
.cta-services,
.thanks-cta {
    padding: 7rem 2rem;
    text-align: center;
}

.cta-wrapper-centered {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.2rem;
    color: #666;
    margin: 1rem 0 2.5rem;
    font-weight: 300;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 400;
}

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

/* Testimonial - Minimal Style */
.testimonial-minimal {
    padding: 8rem 2rem;
    background-color: #f5f5f5;
}

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

.testimonial-large {
    border-left: 2px solid #1a1a1a;
    padding-left: 3rem;
}

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

.testimonial-large cite {
    font-size: 1rem;
    font-style: normal;
    color: #666;
    letter-spacing: 0.05em;
}

/* Process Steps */
.process-steps-spaced {
    margin-top: 3rem;
}

.process-step {
    margin-bottom: 3.5rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* Form Section - Minimal Premium */
.form-section-minimal {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.form-container-centered {
    max-width: 650px;
    margin: 0 auto;
}

.form-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
}

.contact-form-large {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    background-color: #fff;
    font-family: inherit;
    transition: border-color 0.3s ease;
    font-weight: 300;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-large {
    padding: 1.25rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    font-weight: 400;
}

.btn-submit-large:hover {
    background-color: #333;
}

/* Footer - Minimal */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 5rem 2rem 2rem;
}

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

.footer-brand {
    flex: 1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #999;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #999;
}

.footer-column a {
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 300;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
    font-weight: 300;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    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 {
    font-size: 0.95rem;
    font-weight: 300;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 400;
}

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

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

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

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

/* Page Hero */
.page-hero-minimal {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    margin-top: 5rem;
}

.page-title-large {
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: -0.03em;
}

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

.value-item h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* Service Detail Pages */
.service-detailed {
    padding: 6rem 2rem;
}

.service-alternate {
    background-color: #fafafa;
}

.service-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content {
    padding: 2rem 0;
}

.service-detail-title {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.service-detail-price {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.service-detail-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.service-features {
    margin: 2.5rem 0;
}

.service-features h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 300;
}

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

.service-timeline {
    font-size: 1rem;
    color: #999;
    font-style: italic;
    margin-top: 2rem;
    font-weight: 300;
}

/* Contact Information */
.contact-information {
    padding: 6rem 2rem;
}

.contact-info-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.info-block {
    padding: 2rem 0;
}

.info-details {
    margin-top: 2rem;
}

.info-item {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.info-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: #666;
}

/* Thanks Page */
.thanks-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    margin-top: 5rem;
}

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

.thanks-message {
    font-size: 1.35rem;
    color: #666;
    margin-top: 1.5rem;
    font-weight: 300;
}

.service-confirm {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 3px solid #1a1a1a;
}

.steps-minimal {
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 2rem 4rem;
    margin-top: 5rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 3rem;
    font-weight: 300;
}

.legal-container h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}

.legal-container h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #333;
    font-weight: 300;
}

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 300;
}

.legal-container a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-container a:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

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

    .page-title-large {
        font-size: 2.25rem;
    }

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

    .section-heading-minimal {
        font-size: 1.75rem;
    }

    .body-spacious {
        font-size: 1.05rem;
    }

    .intro-statement,
    .final-statement,
    .philosophy-section,
    .expertise-showcase,
    .distinction-section,
    .process-overview,
    .about-intro,
    .about-content-section,
    .expertise-detail,
    .values-section,
    .services-intro,
    .contact-intro,
    .contact-note,
    .thanks-details,
    .next-steps {
        padding: 4rem 1.5rem;
    }

    .services-preview,
    .cta-inline-section,
    .testimonial-minimal,
    .form-section-minimal {
        padding: 5rem 1.5rem;
    }

    .feature-image-large {
        height: 50vh;
    }

    .services-grid-minimal {
        gap: 2.5rem;
    }

    .testimonial-large {
        padding-left: 1.5rem;
    }

    .testimonial-large p {
        font-size: 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .legal-page {
        padding: 6rem 1.5rem 3rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-container h2 {
        font-size: 1.5rem;
    }
}
