.hotel-hero {
    position: relative;
    background: var(--dark-blue);
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hotel-hero-media {
    position: absolute;
    inset: 0;
    background: var(--dark-blue-300);
}
.hotel-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 37, 75, 0.78) 0%,
        rgba(8, 37, 75, 0.48) 45%,
        rgba(8, 37, 75, 0.92) 100%
    );
    pointer-events: none;
}

.hotel-hero-inner {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 180px 24px 88px;
}

.hotel-hero-content {
    display: flex;
    gap: 24px;
    max-width: 840px;
}

.hotel-hero-rule {
    width: 3px;
    background: var(--orange);
    flex-shrink: 0;
    align-self: stretch;
}

.hotel-hero-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.hotel-hero-eyebrow {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--light-blue);
    text-transform: uppercase;
}
.hotel-hero-text h1 {
    margin: 0;
    max-width: 560px;
    text-wrap: balance;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 58px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
}
.hotel-hero-venue {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.86);
}

@media screen and (max-width: 1024px) {
    .hotel-hero-inner {
        padding-top: 140px;
        padding-bottom: 72px;
    }
    .hotel-hero-text h1 {
        font-size: 32px;
    }
}

@media screen and (max-width: 640px) {
    .hotel-hero {
        min-height: 0;
    }
    .hotel-hero-inner {
        padding-top: 110px;
        padding-bottom: 40px;
    }
    .hotel-hero-text h1 {
        font-size: 28px;
    }
}
