* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: 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 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

.hero-minimal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.intro-space {
    padding: 8rem 2rem;
    background: #fff;
}

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

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

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

.intro-space h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.8;
    font-weight: 300;
}

.visual-break {
    padding: 0;
}

.full-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
}

.philosophy-section {
    padding: 8rem 2rem;
    background: #fafafa;
}

.philosophy-section h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.philosophy-section p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 10rem 2rem;
    background: #fff;
}

.services-preview h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 5rem;
}

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

.service-card {
    padding: 3rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
}

.service-card h4 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.btn-select-service {
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

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

.testimonial-space {
    padding: 8rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.testimonial-space blockquote {
    text-align: center;
}

.testimonial-space p {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-space cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    color: #999;
}

.form-section {
    padding: 10rem 2rem;
    background: #fff;
}

.form-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.final-cta {
    padding: 8rem 2rem;
    background: #fafafa;
    text-align: center;
}

.final-cta h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

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

.cta-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.footer-minimal {
    padding: 4rem 2rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

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

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #999;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.cookie-content a {
    color: #1a1a1a;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #333;
}

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

.btn-reject:hover {
    background: #fafafa;
}

.page-header {
    padding: 10rem 2rem 6rem;
    background: #fafafa;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.page-content {
    padding: 6rem 2rem;
    background: #fff;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
}

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

.page-content ul,
.page-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.contact-info {
    padding: 6rem 2rem;
    background: #fafafa;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.info-item a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-selected {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-minimal {
        padding: 6rem 1.5rem 4rem;
    }

    .intro-space,
    .philosophy-section,
    .form-section,
    .final-cta {
        padding: 4rem 1.5rem;
    }

    .services-preview {
        padding: 5rem 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

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

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

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

    .page-header {
        padding: 8rem 1.5rem 4rem;
    }

    .page-content {
        padding: 4rem 1.5rem;
    }
}