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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    flex: 1;
    background-color: #e8e4df;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.cta-primary {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #e8e4df;
    color: #2c3e50;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #d4cfc7;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.intro-block {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-text {
    flex: 1.2;
    padding-right: 40px;
}

.intro-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.intro-image-offset {
    flex: 1;
    margin-top: 60px;
    background-color: #e8e4df;
}

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

.services-preview {
    background-color: #f8f6f3;
    padding: 100px 40px;
}

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

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

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

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-image-container {
    flex: 1;
    background-color: #e8e4df;
}

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

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 24px;
}

.select-service {
    background-color: #8b7355;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #6d5a43;
}

.philosophy-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.philosophy-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.philosophy-text {
    flex: 1.5;
}

.philosophy-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.philosophy-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.philosophy-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    padding: 30px;
    background-color: #f8f6f3;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

.reservation-section {
    background-color: #2c3e50;
    padding: 100px 40px;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-intro {
    flex: 1;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.8;
}

.form-wrapper {
    flex: 1.2;
}

.reservation-form {
    background-color: #ffffff;
    padding: 40px;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #8b7355;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #1a2a3a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8c5d0;
}

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

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block ul li a {
    color: #b8c5d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #8899a8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 40px;
}

.cookie-content p {
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-header-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 40px;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.header-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.header-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.story-content {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.story-block-asymmetric {
    display: flex;
    gap: 80px;
}

.story-text-wide {
    flex: 1.5;
}

.story-text-wide h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-text-wide p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.story-image-offset {
    flex: 1;
    background-color: #e8e4df;
}

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

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

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.team-section {
    padding: 100px 40px;
}

.team-intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-text {
    flex: 1.2;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.team-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.team-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.approach-section {
    background-color: #f8f6f3;
    padding: 100px 40px;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    gap: 60px;
}

.approach-left,
.approach-right {
    flex: 1;
}

.approach-left p,
.approach-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.cta-section-about {
    padding: 100px 40px;
    background-color: #8b7355;
}

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

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 32px;
}

.services-header {
    background-color: #f8f6f3;
    padding: 80px 40px;
    text-align: center;
}

.services-header-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.services-header-content p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price-highlight {
    font-size: 40px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-includes {
    margin: 32px 0;
    padding: 32px;
    background-color: #f8f6f3;
}

.service-includes h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
}

.service-includes ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

.reservation-cta-section {
    background-color: #2c3e50;
    padding: 80px 40px;
    text-align: center;
}

.reservation-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.reservation-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.reservation-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-header {
    background-color: #f8f6f3;
    padding: 80px 40px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-content-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-info-side {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.email-display {
    font-family: monospace;
    background-color: #f8f6f3;
    padding: 12px;
    display: inline-block;
}

.contact-visual-side {
    flex: 1;
}

.contact-visual-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 40px;
}

.contact-note {
    background-color: #f8f6f3;
    padding: 32px;
}

.contact-note h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.map-section {
    background-color: #e8e4df;
    padding: 100px 40px;
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    height: 400px;
    background-color: #d4cfc7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-text h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.map-text p {
    font-size: 18px;
    color: #5a6c7d;
}

.thanks-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.selected-service-display {
    background-color: #f8f6f3;
    padding: 20px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-note {
    font-size: 16px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.thanks-image {
    flex: 1;
    background-color: #e8e4df;
}

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

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

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.legal-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    font-style: italic;
    color: #8899a8;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-block,
    .service-card-split,
    .philosophy-content-split,
    .form-container-split,
    .footer-content,
    .page-header-split,
    .story-block-asymmetric,
    .team-intro-split,
    .approach-grid,
    .service-detail-split,
    .contact-content-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .hero-content h1,
    .header-content h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 20px;
    }

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

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