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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

.brand-mark {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-text-float {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.hero-title {
    font-size: 62px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 45px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.intro-narrative {
    padding: 120px 40px;
    background-color: #ffffff;
}

.narrative-block {
    max-width: 720px;
    margin: 0 auto;
}

.opening-statement {
    font-size: 26px;
    line-height: 1.8;
    color: #3a3a3a;
    font-weight: 300;
    text-align: center;
}

.featured-experience {
    display: flex;
    min-height: 700px;
    background-color: #f8f8f8;
}

.experience-visual {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

.experience-visual img {
    width: 100%;
    height: 100%;
}

.experience-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 35px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.experience-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.link-arrow {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-top: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: " →";
}

.services-overview {
    padding: 120px 40px;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.7;
}

.services-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 280px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-info {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    display: block;
}

.select-service {
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a1a1a;
}

.reservation-form-section {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

.form-container-visual {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    border: 1px solid #e8e8e8;
}

.form-header {
    text-align: center;
    margin-bottom: 45px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-header p {
    font-size: 16px;
    color: #5a5a5a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    padding: 15px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 80px 40px 30px;
}

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

.footer-brand h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 80px;
}

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 25px 40px;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #e8e8e8;
    color: #4a4a4a;
}

.cookie-btn.reject:hover {
    background-color: #d8d8d8;
}

.cookie-link {
    color: #5a5a5a;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #2c2c2c;
}

.page-hero-minimal {
    padding: 180px 40px 80px;
    text-align: center;
    background-color: #fafafa;
}

.page-hero-minimal h1 {
    font-size: 56px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 20px;
    color: #5a5a5a;
    font-weight: 300;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.story-image {
    flex: 0 0 480px;
    height: 380px;
    background-color: #e8e8e8;
}

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

.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
}

.value-item h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-description {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.service-features li {
    font-size: 15px;
    color: #5a5a5a;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-size: 20px;
}

.service-pricing {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.price-display {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
}

.service-detail-image {
    flex: 0 0 500px;
    height: 450px;
    background-color: #e8e8e8;
}

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

.inquiry-cta {
    text-align: center;
    padding: 100px 40px;
    background-color: #fafafa;
}

.inquiry-cta h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.inquiry-cta p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.contact-info-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 120px;
}

.contact-details-block {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-item h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.email-display {
    color: #4a4a4a;
    font-weight: 500;
}

.contact-additional h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 100px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 500;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 100px;
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 25px;
    line-height: 1.7;
}

.thanks-content p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .featured-experience {
        flex-direction: column;
    }

    .experience-visual {
        flex: none;
        height: 350px;
    }

    .experience-content {
        padding: 50px 30px;
    }

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

    .service-card {
        flex: none;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: column;
    }

    .story-image {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .values-grid {
        flex-direction: column;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: none;
        width: 100%;
        height: 350px;
    }

    .contact-details-block {
        flex-direction: column;
        gap: 40px;
    }

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