/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.lx-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding-top: 96px;
    /* Extra bottom room so the absolutely-positioned scroll cue always clears
       the booking card. Mobile (≤600px, cue hidden) tightens this again below. */
    padding-bottom: clamp(5.25rem, 2rem + 5vw, 7rem);
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}

.lx-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: lx-kenburns 22s var(--ease) forwards;
}

@keyframes lx-kenburns {
    to {
        transform: scale(1.12) translateY(-1.5%);
    }
}

.lx-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            to top,
            rgba(18, 36, 70, 0.86) 0%,
            rgba(18, 36, 70, 0.34) 42%,
            rgba(18, 36, 70, 0.12) 70%,
            rgba(18, 36, 70, 0.42) 100%
        ),
        linear-gradient(to right, rgba(18, 36, 70, 0.45), rgba(18, 36, 70, 0) 60%);
}

.lx-hero__inner {
    width: 100%;
    max-width: min(1340px, 100%);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 0.8rem + 3vw, 5.5rem);
    align-items: end;
}

.lx-hero__copy {
    max-width: 620px;
    min-width: 0;
    padding-bottom: 0.5rem;
}

.lx-hero .lx-eyebrow {
    color: #fff;
}

.lx-hero .lx-eyebrow::before {
    background: var(--coral);
}

.lx-hero__title {
    font-family: var(--font-display);
    font-size: var(--t-hero);
    line-height: 0.98;
    letter-spacing: -0.015em;
    margin-top: 1rem;
    text-shadow: 0 2px 30px rgba(18, 36, 70, 0.45);
}

.lx-hero__title em {
    font-style: normal;
    color: var(--teal-200);
}

.lx .lx-hero__sub {
    margin-top: 2.5rem;
    font-size: var(--t-lead);
    max-width: 33ch;
    color: rgba(255, 255, 255, 0.92);
}

.lx-hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem 1.4rem;
    margin-top: 1.6rem;
}

.lx-hero__rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.55rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.lx-hero__rating strong {
    white-space: nowrap;
}

.lx-hero__rating strong {
    font-size: 1.05rem;
}

.lx-hero__rating span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.lx-hero__trustline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.3rem;
    margin-top: 1.1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
}

.lx-hero__trustline span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.lx-hero__trustline svg {
    width: 1.05em;
    height: 1.05em;
    color: var(--teal-200);
    flex: none;
}

.lx-scrollcue {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 0;
    background: transparent;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: color var(--dur) var(--ease);
}

.lx-scrollcue:hover,
.lx-scrollcue:focus-visible {
    color: #fff;
}

.lx-scrollcue svg {
    width: 20px;
    height: 20px;
    animation: lx-bob 1.8s var(--ease) infinite;
}

@keyframes lx-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* --------------------------------------------------------------------------
   7. Booking widget (glass card in hero)
   -------------------------------------------------------------------------- */
.lx-bw {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    padding: clamp(1.1rem, 0.9rem + 0.8vw, 1.6rem);
    color: var(--ink);
}

.lx-bw__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
}

.lx-bw__head h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.lx-bw__head p {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.1rem;
}

.lx-bw__free {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--teal-700);
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    padding: 0.3rem 0.6rem;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.lx-bw__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.lx-field {
    position: relative;
    grid-column: span 1;
    min-width: 0;
}

.lx-field--full {
    grid-column: 1 / -1;
}

.lx-field > label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.lx-control {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    width: 100%;
    min-height: 52px;
    min-width: 0;
    padding: 0 0.9rem;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    cursor: pointer;
    transition:
        border-color var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
}

.lx-control:focus-within {
    border-color: var(--ink-soft);
    box-shadow: 0 0 0 3px rgba(19, 33, 43, 0.08);
}

/* The container draws the focus ring; suppress the field's own cyan glow so it
   doesn't paint a second (blue) ring inside the control. */
.lx-control select:focus-visible,
.lx-control input:focus-visible {
    box-shadow: none;
}

/* Icon + caret are decorations only — the field sits on top of them, so the
   whole control surface (not just the middle) opens the field. */
.lx-control > svg.lx-control__icon,
.lx-control--select::after {
    pointer-events: none;
}

.lx-control > svg.lx-control__icon {
    width: 18px;
    height: 18px;
    color: var(--teal-600);
    flex: none;
}

/* Stretch the field across the entire control so a click anywhere — over the
   icon, the padding, or the caret — lands on it. */
.lx-control select,
.lx-control input {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    inset: 0;
    border: 0;
    outline: 0;
    background: transparent;
    min-width: 0;
    padding: 0 0.9rem 0 calc(0.9rem + 18px + 0.55rem);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
}

/* Keep the select's text clear of the caret on the right. */
.lx-control--select select {
    padding-right: calc(0.9rem + 11px + 0.55rem);
}

.lx-control select:invalid,
.lx-control input:placeholder-shown {
    color: var(--muted);
    font-weight: 500;
}

.lx-control input[type="date"],
.lx-control input[type="time"] {
    font-weight: 600;
}

.lx-control--select::after {
    content: "";
    width: 11px;
    height: 11px;
    flex: none;
    background: var(--teal-600);
    -webkit-mask: var(--lx-caret) center / contain no-repeat;
    mask: var(--lx-caret) center / contain no-repeat;
}

.lx {
    --lx-caret: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.lx-bw__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.lx-bw__price {
    line-height: 1.1;
}

.lx-bw__price .lx-bw__from {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 700;
}

.lx-bw__price .lx-bw__amount {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--teal-700);
}

.lx-bw__price .lx-bw__amount small {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
}

.lx-bw__foot .lx-btn {
    flex: 1;
    max-width: 60%;
}

/* `.lx ` prefix needed to beat the global `.lx p` margin reset in base.css. */
.lx .lx-bw__reassure {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.lx-bw__reassure svg {
    width: 1em;
    height: 1em;
    color: var(--success);
}

.lx-field.is-error .lx-control {
    border-color: var(--coral-text);
    box-shadow: 0 0 0 3px rgba(216, 58, 23, 0.16);
}

/* --------------------------------------------------------------------------
   8. Trust marquee / logo strip
   -------------------------------------------------------------------------- */
.lx-trustbar {
    background: var(--teal-900);
    color: #fff;
    padding-block: 1.15rem;
}

.lx-trustbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 2.4rem;
}

.lx-trustbar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    font-weight: 600;
}

.lx-trustbar__item svg {
    width: 1.4em;
    height: 1.4em;
    color: var(--teal-200);
    flex: none;
}

.lx-trustbar__item strong {
    color: #fff;
}

.lx-trustbar__sep {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.18);
}
