/**
 * Homepage showcase styles — brings the "Chambers for Sale" look (the page the
 * client signed off on) onto the homepage.
 *
 * Two independent parts, both additive:
 *
 *   1. `.hero-slider--cinematic` — a modifier on the existing homepage hero.
 *      Only overrides colour/layout; the markup, the `.slide`/`.dot` classes and
 *      the slider JS in assets/js/main.js are untouched.
 *
 *   2. `.home-showcase` — scope for the new chamber-range / step-inside /
 *      what's-included bands. Scoped so nothing leaks onto Bootstrap or
 *      style.css (which also define .btn, .card, .grid, .container).
 *
 * Palette and type deliberately mirror assets/css/catalogue.css:
 *   ink #1e2a3a · primary #27AAE1 · page #f4f7fa · muted #5a6577 / #8a9bae
 */

/* ============================================================
   1. CINEMATIC HERO (modifier on .hero-slider)
   ============================================================ */

.hero-slider--cinematic { background: #1e2a3a; height: 80vh; min-height: 580px; max-height: 840px; }

/* The old flat blue wash hid the chamber photography. Swap it for the
   catalogue's bottom-up scrim: dark where the text sits, clear over the render. */
.hero-slider--cinematic .slide-overlay {
    background:
        linear-gradient(to top,   rgba(20, 30, 44, .88) 0%, rgba(20, 30, 44, .42) 46%, rgba(20, 30, 44, .10) 78%),
        linear-gradient(to right, rgba(20, 30, 44, .78) 0%, rgba(20, 30, 44, .30) 48%, rgba(20, 30, 44, 0) 74%);
}

/* Caption sits on the baseline like the catalogue hero, clear of the dots. */
.hero-slider--cinematic .slide .container { align-items: flex-end; padding-bottom: 104px; }
.hero-slider--cinematic .slide-inner { justify-content: flex-start; }
.hero-slider--cinematic .slide-content { max-width: 660px; }

/* The inset poster duplicated the background render — the full-bleed image
   carries the hero on its own now. */
.hero-slider--cinematic .slide-image { display: none; }

.hero-slider--cinematic .slide-badge {
    background: rgba(39, 170, 225, .18);
    border: 1px solid rgba(39, 170, 225, .55);
    color: #7fd0f3;
    font-size: .78rem;
    letter-spacing: 1.5px;
    backdrop-filter: blur(4px);
    margin-bottom: 16px;
}
.hero-slider--cinematic .slide-title {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    letter-spacing: .5px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
    margin-bottom: 14px;
}
.hero-slider--cinematic .slide-description {
    color: #dbe9f4;
    font-size: 1.08rem;
    max-width: 540px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

/* Pill dots, matching the catalogue hero. */
.hero-slider--cinematic .slider-dots { bottom: 28px; }
.hero-slider--cinematic .dot {
    width: 9px; height: 9px; border: 0;
    background: rgba(255, 255, 255, .45);
    transition: width .3s ease, background .3s ease;
}
.hero-slider--cinematic .dot.active { width: 26px; background: #27AAE1; }

@media (max-width: 767px) {
    .hero-slider--cinematic { height: 68vh; min-height: 460px; }
    .hero-slider--cinematic .slide .container { padding-bottom: 76px; }
}

/* ============================================================
   2. SHOWCASE BANDS
   ============================================================ */

.home-showcase { color: #1e2a3a; }
.home-showcase * { box-sizing: border-box; }
.home-showcase h2,
.home-showcase h3 { font-family: 'Exo', sans-serif; }

.home-showcase .hs-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.home-showcase .hs-head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.home-showcase .hs-eyebrow {
    display: inline-block; margin-bottom: 12px;
    background: #eaf6fc; color: #1a7fb0; border: 1px solid #bfe4f5;
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 999px;
}
.home-showcase .hs-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: #1e2a3a; margin: 0; }
.home-showcase .hs-head > p { margin-top: 10px; color: #5a6577; font-size: 15.5px; line-height: 1.6; }

/* Shared pill buttons (scoped so they beat Bootstrap's .btn) */
.home-showcase .hs-btn {
    display: inline-block; font-family: 'Exo', sans-serif; font-weight: 600; font-size: 15px;
    padding: 13px 30px; border-radius: 999px; text-decoration: none; border: 0; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.home-showcase .hs-btn:hover { transform: translateY(-2px); }
.home-showcase .hs-btn-primary { background: #27AAE1; color: #fff; box-shadow: 0 4px 16px rgba(39, 170, 225, .4); }
.home-showcase .hs-btn-primary:hover { background: #1a94c8; color: #fff; }
.home-showcase .hs-btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .5); }
.home-showcase .hs-btn-ghost:hover { background: rgba(255, 255, 255, .22); color: #fff; }

/* ---------- Chamber range ---------- */
.home-showcase .hs-range { background: #f4f7fa; padding: 72px 0; }

.home-showcase .hs-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.home-showcase .hs-cat {
    display: flex; align-items: center; gap: 16px; text-decoration: none;
    background: #fff; border-radius: 14px; padding: 16px 18px;
    box-shadow: 0 6px 24px rgba(30, 42, 58, .10);
    transition: transform .2s ease, box-shadow .2s ease;
}
.home-showcase .hs-cat:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30, 42, 58, .18); }
.home-showcase .hs-cat img {
    width: 74px; height: 74px; object-fit: contain; flex-shrink: 0;
    background: #f4f7fa; border-radius: 10px; padding: 6px;
}
.home-showcase .hs-cat h3 { font-size: 16.5px; font-weight: 700; color: #1e2a3a; margin: 0; }
.home-showcase .hs-cat p { margin: 3px 0 0; font-size: 12.5px; color: #5a6577; line-height: 1.45; }
.home-showcase .hs-cat .go { margin-left: auto; color: #27AAE1; font-size: 20px; flex-shrink: 0; }

/* Featured model cards — same anatomy as the catalogue cards */
.home-showcase .hs-cards {
    margin-top: 28px;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px;
}
.home-showcase .hs-card {
    background: #fff; border-radius: 12px; overflow: hidden; border: 0;
    box-shadow: 0 2px 10px rgba(30, 42, 58, .08);
    display: flex; flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.home-showcase .hs-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(30, 42, 58, .14); }
.home-showcase .hs-card-img {
    background: #fff; padding: 18px; height: 220px;
    display: flex; align-items: center; justify-content: center;
}
.home-showcase .hs-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.home-showcase .hs-card-body { padding: 20px 22px 22px; border-top: 1px solid #eef2f6; flex: 1; display: flex; flex-direction: column; }
.home-showcase .hs-model { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.home-showcase .hs-model h3 { font-size: 21px; font-weight: 700; color: #1e2a3a; margin: 0; }
.home-showcase .hs-ata {
    background: #27AAE1; color: #fff; font-size: 12px; font-weight: 500;
    padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.home-showcase .hs-type { color: #5a6577; font-size: 14px; margin: 4px 0 0; }
.home-showcase .hs-label {
    font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
    color: #8a9bae; margin: 15px 0 6px; font-weight: 500;
}
.home-showcase .hs-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.home-showcase .hs-chip {
    background: #f0faf4; color: #1f8a4c; border: 1px solid #bfe8cf;
    border-radius: 8px; padding: 6px 11px; font-size: 12.5px; font-weight: 500;
}
.home-showcase .hs-chip-size { background: #eaf6fc; color: #1a7fb0; border-color: #bfe4f5; }
.home-showcase .hs-card-cta { margin-top: auto; padding-top: 16px; }
.home-showcase .hs-card-cta a {
    display: block; text-align: center; text-decoration: none;
    font-family: 'Exo', sans-serif; font-weight: 600; font-size: 14px;
    padding: 11px 20px; border-radius: 999px;
    background: #27AAE1; color: #fff; box-shadow: 0 4px 16px rgba(39, 170, 225, .35);
    transition: background .2s ease;
}
.home-showcase .hs-card-cta a:hover { background: #1a94c8; }

.home-showcase .hs-range-cta { margin-top: 34px; text-align: center; }

/* ---------- Step inside (dark band) ---------- */
.home-showcase .hs-experience { background: #1e2a3a; padding: 72px 0; color: #fff; }
.home-showcase .hs-experience .hs-head h2 { color: #fff; }
.home-showcase .hs-experience .hs-head > p { color: #b8c9d8; }
.home-showcase .hs-experience .hs-eyebrow { background: rgba(39, 170, 225, .18); border-color: rgba(39, 170, 225, .55); color: #7fd0f3; }

.home-showcase .hs-exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.home-showcase .hs-exp-card { position: relative; border-radius: 14px; overflow: hidden; min-height: 320px; margin: 0; }
.home-showcase .hs-exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.home-showcase .hs-exp-card:hover img { transform: scale(1.04); }
.home-showcase .hs-exp-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20, 30, 44, .8) 0%, rgba(20, 30, 44, .05) 55%);
}
.home-showcase .hs-exp-card figcaption { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: 22px 24px; }
.home-showcase .hs-exp-card figcaption h3 { color: #fff; font-size: 19px; font-weight: 700; margin: 0; }
.home-showcase .hs-exp-card figcaption p { margin: 5px 0 0; font-size: 13.5px; color: #cfe0ee; line-height: 1.5; }

.home-showcase .hs-gallery { margin-top: 24px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.home-showcase .hs-gal { grid-column: span 2; border-radius: 14px; overflow: hidden; height: 240px; }
.home-showcase .hs-gal:nth-child(4),
.home-showcase .hs-gal:nth-child(5) { grid-column: span 3; height: 310px; }
.home-showcase .hs-gal img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.home-showcase .hs-gal:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
    .home-showcase .hs-gal,
    .home-showcase .hs-gal:nth-child(4),
    .home-showcase .hs-gal:nth-child(5) { grid-column: span 6; height: 250px; }
}

.home-showcase .hs-exp-cta { margin-top: 34px; text-align: center; }

/* ---------- What's included ---------- */
.home-showcase .hs-included { background: #f4f7fa; padding: 72px 0; text-align: center; }
.home-showcase .hs-inc-grid {
    margin-top: 28px; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px;
}
.home-showcase .hs-inc {
    background: #fff; border: 1px solid #e3eaf1; border-radius: 12px; padding: 22px 16px;
}
.home-showcase .hs-inc .ico { font-size: 26px; line-height: 1; }
.home-showcase .hs-inc h3 { margin: 10px 0 0; font-size: 15px; font-weight: 600; color: #1e2a3a; }
.home-showcase .hs-inc p { margin: 5px 0 0; font-size: 12.5px; color: #8a9bae; line-height: 1.45; }
