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

.ad-disclosure {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f5c6cb;
}

.header-main {
    position: relative;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f4f1ed;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 15%;
    width: 62%;
    height: 70%;
    overflow: hidden;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    background-color: #d4c5b3;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 60px 0 60px 80px;
}

.hero-text-overlay h1 {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 420px;
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 120px 80px 100px;
    background-color: #fff;
}

.intro-block-left {
    flex: 1;
    max-width: 480px;
}

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.intro-image-right {
    flex: 1;
    position: relative;
    margin-top: -60px;
    background-color: #e8e3dc;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    display: block;
}

.services-preview-irregular {
    padding: 100px 60px 120px;
    background-color: #f9f7f4;
}

.section-header-offset {
    margin-left: 120px;
    margin-bottom: 70px;
}

.section-header-offset h2 {
    font-size: 52px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: 340px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 60px;
}

.card-offset-3 {
    margin-top: 30px;
}

.card-offset-4 {
    margin-top: -20px;
}

.card-offset-5 {
    margin-top: 50px;
}

.service-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.service-info {
    padding: 28px;
}

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

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 18px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
}

.cta-overlap {
    margin-top: -80px;
    padding: 0 80px 100px;
    position: relative;
    z-index: 3;
}

.cta-block {
    background: linear-gradient(135deg, #8b7355 0%, #a68968 100%);
    padding: 70px 60px;
    text-align: center;
    color: #fff;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.cta-block h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-block p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background-color: #fff;
    color: #8b7355;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 3px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: #f4f1ed;
    transform: scale(1.05);
}

.experience-section-split {
    display: flex;
    align-items: stretch;
    background-color: #fff;
}

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

.experience-text h2 {
    font-size: 46px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

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

.experience-image {
    flex: 1;
    position: relative;
    margin-top: 60px;
    margin-bottom: -60px;
    background-color: #e8e3dc;
}

.experience-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.reservation-form-section {
    padding: 120px 80px;
    background: linear-gradient(to bottom right, #f4f1ed 0%, #fff 100%);
}

.form-container-irregular {
    max-width: 600px;
    margin-left: 15%;
    background-color: #fff;
    padding: 50px 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.form-container-irregular h2 {
    font-size: 38px;
    margin-bottom: 36px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.footer-main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 80px 60px 30px;
}

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

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-block h3 {
    font-size: 22px;
}

.footer-block h4 {
    font-size: 18px;
}

.footer-block p {
    line-height: 1.7;
    color: #bdc3c7;
    font-size: 15px;
}

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

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

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

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

.footer-disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 24px;
    margin-bottom: 30px;
    border-left: 4px solid #8b7355;
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #8b7355;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #75614a;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 2px solid #8b7355;
    color: #8b7355;
}

.btn-cookie.btn-secondary:hover {
    background-color: #8b7355;
    color: #fff;
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 100px 80px 80px;
    background: linear-gradient(135deg, #8b7355 0%, #a68968 100%);
    color: #fff;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 56px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero-about p,
.page-hero-services p {
    font-size: 19px;
    opacity: 0.9;
}

.about-story-irregular {
    display: flex;
    gap: 70px;
    padding: 100px 80px;
    align-items: center;
    background-color: #fff;
}

.story-text-main {
    flex: 1.2;
}

.story-text-main h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text-main p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image-side {
    flex: 1;
    margin-top: -50px;
    background-color: #e8e3dc;
}

.story-image-side img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    padding: 100px 80px;
    background-color: #f9f7f4;
}

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

.values-grid-offset {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-block {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.value-block:nth-child(2) {
    margin-top: 40px;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-intro-offset {
    padding: 80px 100px 80px 180px;
    background-color: #fff;
}

.team-intro-offset h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
}

.philosophy-block {
    padding: 100px 80px;
    background: linear-gradient(to right, #f4f1ed 0%, #fff 100%);
}

.philosophy-text-irregular {
    max-width: 650px;
    margin-left: 20%;
}

.philosophy-text-irregular h2 {
    font-size: 46px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.philosophy-text-irregular p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 60px;
    background-color: #fff;
}

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

.offset-layout-1 {
    margin-left: 40px;
}

.offset-layout-2 {
    margin-left: -40px;
    flex-direction: row-reverse;
}

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

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

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

.service-detail-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-detail-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 28px;
}

.service-includes li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    color: #666;
    font-size: 16px;
}

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

.btn-service {
    display: inline-block;
    background-color: #8b7355;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s;
}

.btn-service:hover {
    background-color: #75614a;
    transform: translateY(-2px);
}

.additional-info-services {
    padding: 60px 80px;
    background-color: #f9f7f4;
    text-align: center;
}

.additional-info-services h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.additional-info-services p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto 16px;
}

.contact-content-irregular {
    display: flex;
    gap: 80px;
    padding: 100px 80px;
    background-color: #fff;
}

.contact-info-block {
    flex: 1.2;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #8b7355;
    font-weight: 600;
}

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

.contact-cta-block {
    flex: 1;
    background: linear-gradient(135deg, #8b7355 0%, #a68968 100%);
    padding: 50px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 60px;
}

.contact-cta-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.95;
}

.map-placeholder {
    padding: 80px;
    background-color: #f9f7f4;
    text-align: center;
}

.map-info {
    max-width: 600px;
    margin: 0 auto;
}

.map-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    background: linear-gradient(to bottom right, #f4f1ed 0%, #fff 100%);
}

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

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

.thanks-message {
    font-size: 20px;
    color: #8b7355;
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.service-selected {
    font-weight: 600;
    color: #2c3e50;
    font-size: 18px;
    margin-top: 20px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8b7355;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #8b7355;
    border-radius: 3px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #fff;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background-color: #fff;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.legal-page a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 400px;
        clip-path: none;
    }

    .hero-text-overlay {
        padding: 40px 30px;
    }

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

    .intro-offset,
    .about-story-irregular,
    .service-detail-item {
        flex-direction: column;
        padding: 60px 30px;
    }

    .services-grid-asymmetric {
        gap: 30px;
    }

    .service-card {
        margin-top: 0 !important;
    }

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

    .contact-content-irregular {
        flex-direction: column;
        padding: 60px 30px;
    }

    .experience-section-split {
        flex-direction: column;
    }

    .experience-image {
        margin: 0;
    }
}

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

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

    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .form-container-irregular {
        margin-left: 0;
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}