* {
    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-color: #fafafa;
}

.ad-notice {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b6f47;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f2ed;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #6e5838;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-section {
    padding: 100px 40px;
    background-color: #fff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #6a6a6a;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 500px;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a5a5a;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #8b6f47;
}

.booking-split {
    display: flex;
    min-height: 700px;
}

.booking-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f5f2ed;
}

.booking-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.booking-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.booking-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.booking-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
    background-color: #fff;
}

.submit-btn {
    padding: 16px 50px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #6e5838;
}

.philosophy-section {
    padding: 100px 40px;
    background-color: #1a1a1a;
    color: #fff;
}

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

.philosophy-content-centered h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.philosophy-content-centered p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 40px 20px;
}

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

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1001;
    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;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #6e5838;
}

.cookie-btn.reject {
    background-color: #444;
    color: #fff;
}

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

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-hero-content {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 20px;
    color: #4a4a4a;
}

.about-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.story-split {
    display: flex;
    min-height: 500px;
}

.story-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #f5f2ed;
}

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

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 40px;
    background-color: #fff;
}

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

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

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #fafafa;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.team-split {
    display: flex;
    min-height: 500px;
}

.team-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.philosophy-detail {
    padding: 100px 40px;
    background-color: #1a1a1a;
    color: #fff;
}

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

.philosophy-content-wide h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.philosophy-content-wide p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-header {
    padding: 100px 40px 60px;
    text-align: center;
    background-color: #f5f2ed;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

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

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #8b6f47;
    margin: 30px 0 15px;
}

.duration-info {
    font-size: 16px;
    color: #6a6a6a;
    font-style: italic;
}

.booking-cta-section {
    padding: 100px 40px;
    background-color: #8b6f47;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.booking-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #f5f2ed;
}

.booking-cta-content .cta-primary {
    background-color: #1a1a1a;
}

.booking-cta-content .cta-primary:hover {
    background-color: #2c2c2c;
}

.contact-header {
    padding: 100px 40px 60px;
    text-align: center;
    background-color: #f5f2ed;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 20px;
    color: #4a4a4a;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.location-info {
    padding: 100px 40px;
    background-color: #f5f2ed;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.location-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-section {
    padding: 150px 40px;
    background-color: #f5f2ed;
    min-height: 600px;
}

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

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

.thanks-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.service-confirmation {
    padding: 30px;
    background-color: #fff;
    margin: 40px 0;
    font-size: 18px;
    color: #2c2c2c;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #6e5838;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

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

.legal-content li {
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content a {
    color: #8b6f47;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .booking-split,
    .about-hero-split,
    .story-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

    .nav-links {
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}