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

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

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

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

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

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

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

.hero-asymmetric {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0 60px 80px;
}

.hero-content-offset {
    width: 45%;
    z-index: 2;
    position: relative;
}

.hero-text-block {
    background: #ffffff;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.cta-hero {
    display: inline-block;
    background: #2c2c2c;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #d4a574;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 70%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.intro-offset {
    padding: 120px 80px;
    background: #f9f9f9;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 0 0 120px;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.services-grid-asymmetric {
    padding: 100px 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.section-header-offset {
    width: 100%;
    margin-bottom: 40px;
}

.section-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    max-width: 600px;
}

.service-card-large {
    width: calc(60% - 15px);
    display: flex;
    gap: 30px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.service-card-medium {
    width: 100%;
    display: flex;
    gap: 30px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.service-card-small {
    width: calc(40% - 15px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.service-image-bg {
    width: 50%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-small .service-image-bg {
    width: 100%;
    height: 220px;
}

.service-card-medium .service-image-bg {
    width: 45%;
}

.service-image-bg img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.service-card-small .service-content {
    width: 100%;
}

.service-card-medium .service-content {
    width: 55%;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.btn-select-service {
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #d4a574;
}

.form-section-offset {
    padding: 100px 80px;
    background: #2c2c2c;
}

.form-container-creative {
    max-width: 600px;
    margin-left: auto;
    margin-right: 140px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #d4d4d4;
    line-height: 1.7;
}

.booking-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 6px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #c49563;
}

.trust-section {
    padding: 100px 80px;
    background: #f9f9f9;
}

.trust-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    width: 50%;
}

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

.trust-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.trust-image {
    width: 50%;
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
}

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

.philosophy-narrow {
    padding: 100px 80px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.philosophy-narrow p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 4px;
    transition: border-color 0.3s;
}

.cta-inline:hover {
    border-color: #2c2c2c;
    color: #2c2c2c;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 40px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #b4b4b4;
}

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

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #888;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    z-index: 10000;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #2c2c2c;
}

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

.btn-cookie {
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #d4a574;
}

.btn-cookie-alt {
    background: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-alt:hover {
    background: #2c2c2c;
    color: #ffffff;
}

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

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

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

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

.thanks-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 12px;
}

.thanks-details strong {
    color: #2c2c2c;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 40px;
    }

    .hero-content-offset {
        width: 100%;
    }

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

    .nav-floating {
        top: 20px;
        right: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .services-grid-asymmetric {
        padding: 60px 40px;
    }

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        width: 100%;
        flex-direction: column;
    }

    .service-image-bg,
    .service-card-small .service-image-bg,
    .service-card-medium .service-image-bg {
        width: 100%;
    }

    .service-content,
    .service-card-small .service-content,
    .service-card-medium .service-content {
        width: 100%;
    }

    .trust-content-split {
        flex-direction: column;
    }

    .trust-text,
    .trust-image {
        width: 100%;
    }

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

    .form-container-creative {
        margin-right: auto;
    }
}
