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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #a08469;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-floating {
    position: fixed;
    top: 30px;
    left: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

.nav-disclosure {
    font-size: 11px;
    color: #666;
    max-width: 250px;
    text-align: center;
}

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    margin-top: 100px;
    padding: 60px 40px;
}

.hero-offset-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
    margin-left: 80px;
}

.hero-text-block h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 480px;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 120px;
    width: 55%;
    height: 80%;
    z-index: 1;
}

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

.intro-diagonal {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    margin: 120px 0;
    transform: skewY(-2deg);
}

.diagonal-text {
    flex: 1;
    padding: 80px 100px 80px 120px;
    background: #f9f6f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: skewY(2deg);
}

.diagonal-text h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.diagonal-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a5a5a;
    max-width: 550px;
}

.diagonal-visual {
    flex: 1;
    transform: skewY(2deg);
    overflow: hidden;
}

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

.services-irregular {
    padding: 100px 60px;
    background: #fff;
}

.services-header-offset {
    margin-left: 120px;
    margin-bottom: 80px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.services-header-offset p {
    font-size: 19px;
    color: #666;
}

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

.service-card {
    width: calc(33.333% - 30px);
    min-width: 320px;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.service-card.selected {
    border-color: #8b7355;
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.25);
}

.offset-top {
    margin-top: -40px;
}

.offset-bottom {
    margin-top: 40px;
}

.offset-middle {
    margin-top: -20px;
}

.offset-left {
    margin-left: 30px;
}

.offset-right {
    margin-right: 30px;
}

.service-image {
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 35px 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

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

.btn-select {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid #8b7355;
    color: #8b7355;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.service-card.selected .btn-select {
    background: #8b7355;
    color: #fff;
}

.form-section-overlap {
    padding: 100px 40px;
    background: #f4ede8;
}

.form-container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    min-height: 700px;
}

.form-visual-side {
    flex: 0.9;
    overflow: hidden;
}

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

.form-content-side {
    flex: 1.1;
    padding: 80px 70px;
}

.form-content-side h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-intro {
    font-size: 17px;
    color: #666;
    margin-bottom: 45px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d4d4d4;
    font-size: 15px;
    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: #8b7355;
}

.btn-submit {
    padding: 18px;
    background: #8b7355;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #9f8566;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

.about-snippet-offset {
    padding: 120px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content-block {
    flex: 1;
    padding-left: 60px;
}

.about-content-block h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.link-inline {
    display: inline-block;
    margin-top: 15px;
    color: #8b7355;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid #8b7355;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: #9f8566;
    border-bottom-color: #9f8566;
}

.about-image-float {
    flex: 1;
    height: 500px;
    margin-top: -80px;
    overflow: hidden;
}

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

.footer-asymmetric {
    background: #2c2c2c;
    color: #d4d4d4;
    padding: 80px 60px 40px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-brand {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    line-height: 1.7;
    font-size: 15px;
}

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

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

.footer-col ul li a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #8b7355;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #444;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 20px;
    max-width: 900px;
}

.copyright {
    font-size: 14px;
    color: #999;
}

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

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

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.thanks-service {
    display: inline-block;
    margin: 30px 0;
    padding: 20px 40px;
    background: #f4ede8;
    border-left: 4px solid #8b7355;
    font-size: 18px;
    color: #2c2c2c;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #8b7355;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #9f8566;
    transform: translateY(-2px);
}

.page-header {
    padding: 180px 60px 80px;
    background: #f9f6f3;
    text-align: center;
}

.page-header h1 {
    font-size: 58px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 15px;
}

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

.content-section ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 10px;
}

.contact-info-box {
    background: #f9f6f3;
    padding: 40px;
    margin-top: 40px;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-info-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 10px;
}

.email-display {
    color: #8b7355;
    font-weight: 600;
    cursor: default;
}

@media (max-width: 1024px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        margin-top: 40px;
    }

    .intro-diagonal {
        flex-direction: column;
        transform: none;
    }

    .diagonal-text,
    .diagonal-visual {
        transform: none;
    }

    .service-card {
        width: calc(50% - 30px);
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

    .about-snippet-offset {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-text-block {
        margin-left: 0;
    }

    .hero-text-block h1 {
        font-size: 42px;
    }

    .service-card {
        width: 100%;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .about-content-block {
        padding-left: 0;
    }

    .footer-main {
        flex-direction: column;
    }
}