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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #d4a574;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background-color: #d4a574;
    color: #1a1a1a;
}

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

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

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

.ad-disclosure {
    background-color: #fff3e0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header-asymmetric {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

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

.nav-right a:hover {
    color: #d4a574;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    flex: 0 0 45%;
    padding: 80px 6% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1a1a1a;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #e0e0e0;
}

.cta-primary {
    align-self: flex-start;
    padding: 16px 36px;
    background-color: #d4a574;
    color: #1a1a1a;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #c49563;
    transform: translateY(-2px);
}

.hero-image-block {
    flex: 1;
    position: relative;
    margin-left: -60px;
    margin-top: 40px;
    margin-bottom: -40px;
    background-color: #e8dfd5;
}

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

.intro-diagonal {
    padding: 120px 6%;
    background-color: #fff;
    position: relative;
}

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

.text-overlap {
    flex: 1;
    padding-right: 40px;
}

.text-overlap h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.2;
}

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

.image-offset {
    flex: 0 0 480px;
    position: relative;
    margin-top: -80px;
    background-color: #f5f0eb;
}

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

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

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-left p {
    font-size: 18px;
    color: #666;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1400px;
}

.service-card {
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.card-large {
    flex: 0 0 calc(40% - 12px);
}

.card-medium {
    flex: 0 0 calc(60% - 12px);
}

.card-small {
    flex: 0 0 calc(30% - 16px);
}

.card-image {
    overflow: hidden;
    background-color: #e8dfd5;
}

.card-large .card-image {
    height: 380px;
}

.card-medium .card-image {
    height: 320px;
}

.card-small .card-image {
    height: 240px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #d4a574;
}

.booking-section-offset {
    padding: 80px 6%;
    background-color: #1a1a1a;
    position: relative;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.booking-text {
    flex: 0 0 380px;
    color: #fff;
    padding-top: 20px;
}

.booking-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #d0d0d0;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 16px 20px;
    font-size: 15px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #d4a574;
}

.booking-form textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit {
    padding: 18px 40px;
    background-color: #d4a574;
    color: #1a1a1a;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #c49563;
    transform: translateY(-2px);
}

.why-us-stacked {
    padding: 100px 6%;
    background-color: #fff;
}

.why-us-stacked h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.reasons-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.reason-block {
    padding: 48px 60px;
    background-color: #f9f7f4;
    margin-bottom: 2px;
}

.reason-highlight {
    background-color: #1a1a1a;
    color: #fff;
    padding: 56px 60px;
}

.reason-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.reason-highlight p {
    color: #d0d0d0;
}

.footer-asymmetric {
    background-color: #0f0f0f;
    color: #d0d0d0;
    padding: 80px 6% 30px;
}

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

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

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

.footer-block p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.email-display {
    color: #d4a574;
}

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

.footer-block a:hover {
    color: #d4a574;
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: #1a1a1a;
    font-size: 13px;
    line-height: 1.7;
    color: #999;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
    font-size: 13px;
    color: #666;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 6%;
    background-color: #f9f7f4;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: #fff;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.service-selected {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f9f7f4;
    color: #d4a574;
    font-weight: 600;
    margin: 20px 0;
    font-size: 18px;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #d4a574;
    color: #1a1a1a;
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 60px 6%;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.page-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.page-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-page {
    padding: 80px 6%;
    background-color: #f9f7f4;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 44px;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 36px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.contact-map {
    flex: 0 0 500px;
    background-color: #e8dfd5;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -40px;
}

.about-hero {
    padding: 100px 6%;
    background-color: #1a1a1a;
    color: #fff;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-hero p {
    font-size: 19px;
    line-height: 1.8;
    color: #d0d0d0;
}

.about-story {
    padding: 100px 6%;
    background-color: #fff;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.services-page {
    padding: 80px 6%;
    background-color: #f9f7f4;
}

.services-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block {
        flex: 1;
        padding: 60px 6%;
    }

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

    .hero-image-block {
        margin-left: 0;
        margin-top: 0;
        min-height: 400px;
    }

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

    .image-offset {
        flex: 1;
        margin-top: 0;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

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

    .booking-text {
        flex: 1;
    }

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

    .contact-map {
        flex: 1;
        margin-top: 0;
    }

    .nav-right {
        gap: 16px;
        font-size: 14px;
    }
}
