/* Hero — full-screen portrait */

.hero {
    position: relative;
    margin-top: 115px;
    height: calc(100vh - 115px);
    min-height: 560px;
    overflow: hidden;
    isolation: isolate;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    will-change: opacity;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.30) 45%,
            rgba(0, 0, 0, 0.10) 100%),
        linear-gradient(to top,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.00) 60%);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 18px;
    opacity: 0.92;
}

.hero-title {
    font-family: 'Judson', Georgia, serif;
    font-size: clamp(2.6rem, 6.4vw, 5.4rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.5px;
    margin: 0 0 22px;
    max-width: 14ch;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 400;
    line-height: 1.55;
    margin: 0 0 36px;
    max-width: 46ch;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-cta {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    padding: 6px 0;
    transition: opacity 0.2s ease;
}

.hero-rating:hover { opacity: 0.8; }

.hero-stars {
    color: #FFB400;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-rating-text {
    opacity: 0.95;
}

.hero-rating-text strong {
    font-weight: 600;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    display: block;
}

.hero-scroll span {
    display: block;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    margin: 8px auto 0;
    animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.9; }
    50%      { transform: translateY(10px); opacity: 0.3; }
}

/* Tablet */
@media (max-width: 900px) {
    .hero-content {
        align-items: flex-start;
        padding: 0 6vw;
    }
    .hero-overlay {
        background:
            linear-gradient(to top,
                rgba(0, 0, 0, 0.65) 0%,
                rgba(0, 0, 0, 0.25) 50%,
                rgba(0, 0, 0, 0.10) 100%);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        margin-top: 90px;
        height: calc(100vh - 90px);
        min-height: 520px;
    }
    .hero-content {
        justify-content: flex-end;
        padding-bottom: 90px;
    }
    .hero-eyebrow { font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 12px; }
    .hero-title { font-size: 2.4rem; max-width: 100%; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 24px; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { flex: 1 1 auto; text-align: center; justify-content: center; }
    .hero-scroll { display: none; }
}
