/* ============================================================
   WOW THEME — START HERE PAGE STYLES
   ============================================================ */

/* ----------------------------------------------------------
   HERO
---------------------------------------------------------- */
.sh-hero {
    background: var(--grad-primary);
    overflow: hidden;
    padding-top: var(--space-12);
    padding-bottom: 0;
    position: relative;
    min-height: 320px;
}

.sh-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sh-hero__glitter {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.07;
    mix-blend-mode: screen;
}

.sh-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-8);
    min-height: 420px;
}

.sh-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    padding-block: var(--space-12);
}

.sh-hero__label {
    font-family: var(--font-primary);
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: var(--text-lg);
    color: var(--color-navy);
}

.sh-hero__title {
    font-size: clamp(var(--text-3xl), 4.5vw, 4.5rem);
    line-height: 1.0;
    color: var(--color-white);
    text-shadow:
        2px 2px 0 rgba(4, 42, 93, 0.3),
        0 4px 16px rgba(4, 42, 93, 0.25);
}

.sh-hero__sub {
    font-size: var(--text-lg);
    color: var(--color-navy);
    max-width: 400px;
    line-height: 1.6;
}

.sh-hero__photo-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
}

.sh-hero__bokeh {
    position: absolute;
    inset: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: screen;
    pointer-events: none;
}

.sh-hero__photo {
    position: relative;
    z-index: 1;
    width: 125%;
    max-width: 600px;
    height: 460px;
    display: block;
    object-fit: cover;
    object-position: top 15%;
    filter: drop-shadow(0 20px 60px rgba(4, 42, 93, 0.2));
    align-self: flex-end;
    transform: scaleX(-1);
    margin-bottom: 0;
    margin-right: -20px;
}

/* ----------------------------------------------------------
   LEVEL 1 INFO — constrained width, matches FAQ card
---------------------------------------------------------- */
.sh-level {
    background: var(--color-white);
    padding-block: var(--space-16);
}

.sh-level__inner-wrap {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: var(--space-6);
}

.sh-level__left-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.sh-level__buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

.sh-level__eyebrow {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: var(--text-lg);
    color: var(--color-navy-60);
    margin-bottom: 0;
}

.sh-level__heading {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    color: var(--color-navy);
    line-height: 1.0;
    margin-bottom: 0;
}

.sh-level__cards {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr;
    gap: var(--space-6);
    align-items: start;
}

.sh-level__text-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.sh-level__text-card p {
    color: var(--color-navy-80);
    font-size: var(--text-base);
    line-height: 1.7;
}

.sh-level__info-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: var(--space-5);
    text-align: center;
}

.sh-level__info-card h3 {
    font-size: var(--text-xl);
    color: var(--color-navy);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.sh-level__info-row {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-navy-20);
    font-size: var(--text-base);
    color: var(--color-navy);
    line-height: 1.6;
    text-align: center;
}

.sh-level__info-row:last-child {
    border-bottom: none;
}

.sh-level__info-row strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}

.sh-level__info-row a {
    color: var(--color-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ----------------------------------------------------------
   CTA BUTTONS — under the cards
---------------------------------------------------------- */
.sh-cta {
    background: var(--color-white);
    padding-block: var(--space-8) var(--space-12);
}

.sh-cta__inner-wrap {
    max-width: 640px;
    margin-inline: auto;
    padding-inline: var(--space-6);
}

.sh-cta__buttons {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}

/* ----------------------------------------------------------
   FAQs — coral-peach gradient bg, white card matching level width
---------------------------------------------------------- */
.sh-faq {
    background: var(--grad-coral-peach);
    padding-block: var(--space-12);
    position: relative;
    overflow: hidden;
}

.sh-faq__bokeh {
    position: absolute;
    inset: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    object-fit: cover;
    opacity: 0.25;
    mix-blend-mode: screen;
    pointer-events: none;
}

.sh-faq__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(160, 40, 40, 0.18),
                0 8px 24px rgba(160, 40, 40, 0.12);
    padding: var(--space-10);
    max-width: 640px;
    margin-inline: auto;
}

.sh-faq__card h2 {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    color: var(--color-navy);
    margin-bottom: var(--space-6);
}

.sh-faq__list {
    display: flex;
    flex-direction: column;
}

.sh-faq__item {
    border-bottom: 1px solid var(--color-navy-20);
}

.sh-faq__item:first-child {
    border-top: 1px solid var(--color-navy-20);
}

.sh-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    font-family: var(--font-primary);
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--text-lg);
    color: var(--color-navy);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
}

.sh-faq__trigger:hover {
    color: var(--color-navy-60);
}

.sh-faq__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
    color: var(--color-navy);
}

.sh-faq__icon::before,
.sh-faq__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.sh-faq__icon::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.sh-faq__icon::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.sh-faq__item.is-open .sh-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.sh-faq__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.sh-faq__panel p {
    padding: var(--space-2) 0 var(--space-4);
    color: var(--color-navy-80);
    font-size: var(--text-base);
    line-height: 1.7;
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 900px) {
    .sh-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sh-hero__content {
        align-items: center;
        order: 0;
        padding-bottom: var(--space-2);
    }

    .sh-hero__photo-wrap {
        order: 1;
        min-height: 160px;
        max-height: 260px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .sh-hero__bokeh {
        inset: -60px;
        width: calc(100% + 120px);
        height: calc(100% + 120px);
    }

    .sh-hero__photo {
        width: 110%;
        max-width: none;
        height: 300px;
        object-fit: cover;
        object-position: top center;
        align-self: flex-end;
    }

    .sh-hero__sub {
        max-width: 100%;
    }

    .sh-level__cards {
        grid-template-columns: 1fr;
    }

    .sh-faq__card {
        padding: var(--space-6);
    }
}

@media (max-width: 900px) {
    .sh-hero__title {
        font-size: clamp(var(--text-3xl), 10vw, var(--text-5xl));
    }
    .sh-hero__sub {
        max-width: 260px;
        margin-inline: auto;
    }

    /* Level 1 section */
    .sh-level__eyebrow,
    .sh-level__heading {
        text-align: center;
    }
    .sh-level__buttons {
        align-items: center;
        margin-top: var(--space-6);
        margin-bottom: var(--space-6);
    }
    .sh-level__buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* First Night FAQs */
    .sh-faq__card h2 {
        text-align: center;
    }
}