/* ═══════════════════════════════════════════════════════════
   HOLDING — Homepage  (body.rh-home)
   DELETE this file and the css/holding/ folder at go-live.
   ═══════════════════════════════════════════════════════════ */

body.rh-home {
    background: var(--navy);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rh-hero {
    position: relative;
    width: 100%;
    height: 100vh;
}

.rh-swiper {
    position: absolute;
    inset: 0;
}

.rh-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.rh-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: linear-gradient(
        160deg,
        rgba(0, 17, 56, 0.52) 0%,
        rgba(0, 17, 56, 0.15) 45%,
        rgba(0, 17, 56, 0.58) 100%
    );
    pointer-events: none;
}

.rh-top-fade {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 340px;
    z-index: 11;
    background: linear-gradient(
        to bottom,
        rgba(0, 17, 56, 0.96) 0%,
        rgba(0, 17, 56, 0.60) 55%,
        transparent 100%
    );
    pointer-events: none;
}

.rh-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.2rem 3rem 0;
}

.rh-logo {
    height: clamp(42px, 5.5vw, 64px);
    width: auto;
}

.rh-coming-soon {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-weight: var(--weight-light);
    font-size: clamp(0.68rem, 1.4vw, 0.88rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-top: 32px;
}

.rh-header-rule {
    width: 42px;
    height: 1px;
    background: var(--gold);
    margin-top: 0.75rem;
}

.rh-center {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    pointer-events: none;
}

.rh-panel {
    pointer-events: auto;
    background: rgba(0, 17, 56, 0.62);
    border: 1px solid rgba(204, 186, 120, 0.28);
    padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 6vw, 5.5rem);
    max-width: 680px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.rh-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.rh-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    font-size: clamp(0.68rem, 1.4vw, 0.88rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 2.6rem;
}

.rh-cta {
    display: inline-block;
    padding: 1rem 3.2rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: var(--weight-semibold);
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

.rh-cta:hover {
    background: var(--gold);
    color: var(--navy);
}

.rh-nav-prev,
.rh-nav-next {
    position: absolute;
    z-index: 40;
    color: rgba(255, 255, 255, 0.60);
    transition: color 0.2s;
    cursor: pointer;
}

.rh-nav-prev:hover,
.rh-nav-next:hover { color: var(--gold); }

.rh-nav-prev::after,
.rh-nav-next::after { font-size: 1.3rem; }

.rh-pagination {
    position: absolute;
    z-index: 40;
    bottom: 2rem !important;
    left: 0;
    right: 0;
    text-align: center;
}

.rh-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.40);
    opacity: 1;
    transition: background 0.3s, transform 0.3s;
}

.rh-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.35);
}

@media (max-width: 600px) {
    .rh-cta  { padding: 0.85rem 2rem; }
    .rh-panel { border-left: none; border-right: none; }
}
