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

body {
    font-family: 'Georgia', serif;
    color: #2a2a2a;
    line-height: 1.7;
    background-color: #fafaf8;
}

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    background-color: transparent;
}

.nav-brand {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

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

.hero-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 80px;
    min-height: 85vh;
}

.hero-content {
    text-align: center;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 96px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    color: #666;
}

.hero-image-wrap {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-space {
    padding: 160px 80px;
}

.text-center-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.text-center-narrow h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.text-center-narrow p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

.services-preview {
    padding: 80px 0;
}

.service-block {
    display: flex;
    align-items: stretch;
    margin-bottom: 120px;
    gap: 100px;
    padding: 0 80px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    background-color: #e0e0dc;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

.service-text h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.service-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 32px;
}

.price-tag {
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.cta-section {
    background-color: #2a2a2a;
    padding: 140px 80px;
    text-align: center;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 19px;
    color: #cccccc;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.cta-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 18px 60px;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #2a2a2a;
}

.philosophy-section {
    padding: 160px 80px;
}

.philosophy-image {
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #e8e8e8;
}

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

.booking-section {
    padding: 140px 80px;
    background-color: #f5f5f0;
}

.booking-container {
    max-width: 640px;
    margin: 0 auto;
}

.booking-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.form-group label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}

.form-group input,
.form-group select {
    padding: 18px 20px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: 'Georgia', serif;
}

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

.submit-button {
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

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

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 100px 80px 40px 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-block h4 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-block a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-disclaimer {
    border-top: 1px solid #333333;
    padding-top: 40px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: #999999;
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 32px 80px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 32px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-minimal {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .intro-space,
    .philosophy-section,
    .booking-section {
        padding: 80px 30px;
    }

    .service-block {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
        margin-bottom: 80px;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .cta-section {
        padding: 80px 30px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .footer {
        padding: 60px 30px 30px 30px;
    }

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

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

    .cookie-banner {
        padding: 24px 30px;
    }
}