.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    font-size: 22px;
    font-weight: 800;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-size: 15px;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 24px;
}

.hero-section {
    padding: 110px 0;
    background: #f7f7f8;
}

.hero-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hero-section h1 {
    max-width: 780px;
    margin: 0 0 22px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-section p {
    max-width: 650px;
    margin: 0 0 32px;
    font-size: 19px;
    line-height: 1.7;
    color: #666;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    font-weight: 700;
}

.button-primary {
    background: #171717;
    color: #ffffff;
}

.button-secondary {
    border: 1px solid #d7d7d7;
    background: #ffffff;
}

.profiles-section {
    padding: 90px 0;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.section-heading h2 {
    margin: 8px 0;
    font-size: 40px;
}

.section-heading p {
    color: #666;
}

.empty-profiles {
    padding: 60px 30px;
    text-align: center;
    border: 1px dashed #d8d8d8;
    border-radius: 18px;
}

.empty-profiles h3 {
    margin-top: 0;
}

.empty-profiles p {
    color: #777;
}

.booking-preview {
    padding: 80px 0;
    background: #f7f7f8;
}

.booking-preview h2 {
    margin-top: 0;
    font-size: 38px;
}

.booking-preview p {
    color: #666;
    margin-bottom: 28px;
}

.site-footer {
    padding: 45px 0;
    border-top: 1px solid #eeeeee;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner p {
    color: #666;
}

.default-content {
    padding: 70px 0;
}

@media (max-width: 768px) {

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        padding: 75px 0;
    }

    .hero-section h1 {
        font-size: 44px;
    }

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