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

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

.minimal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

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

.brand {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: lowercase;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
}

main {
    padding-top: 90px;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 4rem;
    z-index: 2;
}

.hero-minimal h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: #555;
    letter-spacing: 0.5px;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    overflow: hidden;
    background: #e5e5e5;
}

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

.spacious-intro {
    padding: 10rem 2rem;
    background: #fff;
}

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

.large-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: #2a2a2a;
}

.image-statement {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #ddd;
}

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

.philosophy-section {
    padding: 10rem 2rem;
    background: #fafaf9;
}

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

.philosophy-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.philosophy-section p {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 6rem;
    letter-spacing: -0.5px;
}

.services-grid-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.service-card-minimal {
    flex: 0 1 calc(50% - 2rem);
    max-width: 600px;
    background: #fafaf9;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #e5e5e5;
    margin-bottom: 2rem;
}

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

.service-card-minimal h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    letter-spacing: -0.3px;
}

.service-card-minimal p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    padding: 0 2rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: auto;
    margin-bottom: 2rem;
}

.select-service {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 0 2rem 2rem 2rem;
}

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

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

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

.form-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

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

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 1rem 0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    border: 1px solid #ccc;
    padding: 1rem;
}

.btn-submit {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1.3rem 4rem;
    font-size: 1rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
    align-self: center;
}

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

.final-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #ddd;
}

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

.disclaimer-section {
    padding: 6rem 2rem;
    background: #fff;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #aaa;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 2rem;
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    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;
    color: #555;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 1.5rem 2rem;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 1.5rem;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-minimal h1 {
        font-size: 2.5rem;
    }

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

    .services-grid-minimal {
        flex-direction: column;
    }

    .service-card-minimal {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }
}

.about-hero {
    padding: 8rem 2rem 6rem 2rem;
    background: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.about-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 6rem 2rem;
    background: #fafaf9;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 6rem auto;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
}

.about-section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.services-hero {
    padding: 8rem 2rem 6rem 2rem;
    background: #fff;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.services-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 6rem 4rem;
    background: #fafaf9;
}

.contact-hero {
    padding: 8rem 2rem 6rem 2rem;
    background: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

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

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

.contact-block {
    text-align: center;
}

.contact-block h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.2px;
}

.contact-block p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #3a3a3a;
}

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

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

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

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.2px;
}

.legal-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    background: #fafaf9;
}

.thanks-page h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.thanks-page p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thanks-page .btn-home {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.thanks-page .btn-home:hover {
    background: #333;
}