* {
    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.6;
    color: #2c2c2c;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.nav-main {
    display: flex;
    gap: 30px;
}

.nav-main a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #8b7355;
}

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 5px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #73604a;
}

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

.cta-secondary:hover {
    background: #ffffff;
    color: #2c2c2c;
}

.story-section {
    padding: 100px 0;
    background: #f9f7f4;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-text-overlap {
    padding: 120px 0;
    background: #ffffff;
}

.overlap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.overlap-image {
    flex: 1;
    background: #f5f5f5;
}

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

.overlap-text {
    flex: 1;
}

.overlap-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: #2c2c2c;
}

.overlap-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.visual-benefits {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.benefit-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.benefit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.benefit-overlay h2 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 50px;
}

.benefit-list {
    max-width: 700px;
    width: 100%;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.2rem;
    border-left: 3px solid #ffffff;
}

.testimonial-visual {
    padding: 100px 0;
    background: #f9f7f4;
}

.testimonial-card {
    background: #ffffff;
    padding: 50px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: #8b7355;
    font-weight: 500;
}

.services-reveal {
    padding: 120px 0;
    background: #ffffff;
}

.services-reveal h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 80px;
    color: #2c2c2c;
}

.services-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-visual {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-visual:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #f5f5f5;
}

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

.service-content {
    flex: 1;
    padding: 20px 0;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b7355;
    margin-top: 25px;
}

.form-section {
    padding: 100px 0;
    background: #f9f7f4;
}

.form-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
}

.form-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #2c2c2c;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #73604a;
}

.final-cta-visual {
    padding: 150px 0;
    background: #2c2c2c;
    text-align: center;
}

.cta-visual-container h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-visual-container p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 10000;
    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 {
    color: #ffffff;
    font-size: 0.95rem;
    flex: 1;
}

.cookie-content a {
    color: #8b7355;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #8b7355;
    color: #ffffff;
}

.btn-accept:hover {
    background: #73604a;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #2c2c2c;
}

.page-hero {
    margin-top: 70px;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 300;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.philosophy-section {
    padding: 80px 0;
    background: #f9f7f4;
}

.philosophy-grid {
    display: flex;
    gap: 50px;
}

.philosophy-item {
    flex: 1;
    text-align: center;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.team-visual {
    padding: 80px 0;
}

.team-visual h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}

.team-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

.team-image-container {
    background: #f5f5f5;
}

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

.cta-about {
    padding: 100px 0;
    background: #f9f7f4;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    background: #f5f5f5;
}

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

.service-detail-content {
    flex: 1;
    padding: 40px 0;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 600;
    color: #8b7355;
}

.cta-services {
    padding: 100px 0;
    background: #f9f7f4;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.contact-detail .note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    background: #f5f5f5;
}

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

.cta-contact {
    padding: 100px 0;
    background: #f9f7f4;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.thanks-section {
    padding: 150px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

#selectedService {
    font-weight: 600;
    color: #8b7355;
}

.legal-section {
    padding: 100px 0;
    margin-top: 70px;
}

.legal-section h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #555;
}

.legal-section a {
    color: #8b7355;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.last-updated {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .overlap-container {
        flex-direction: column;
        gap: 40px;
    }

    .service-visual {
        flex-direction: column;
    }

    .service-visual:nth-child(even) {
        flex-direction: column;
    }

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

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

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

    .service-detail {
        flex-direction: column;
    }

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

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