/* ── Services Hero ───────────────────────────────────────── */

.jacana-sh-hero {
    position: relative;
    min-height: 90svh;
    display: flex;
    flex-direction: column;
    background-color: #0a0806;
    background-size: cover;
    background-position: center 35%;
    overflow: hidden;
    isolation: isolate;
    margin-top: -80px;
}

/* ── Video layer ─────────────────────────────────────────── */
.jacana-sh-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
    filter: saturate(0.88) brightness(0.94);
}

@media (prefers-reduced-motion: reduce) {
    .jacana-sh-hero-video { display: none; }
}

/* ── Overlay ─────────────────────────────────────────────── */
.jacana-sh-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 5, 3, 0.72) 0%, transparent 42%),
        linear-gradient(0deg, rgba(8, 5, 3, 0.96) 0%, rgba(8, 5, 3, 0.72) 40%, rgba(8, 5, 3, 0.28) 65%, transparent 88%),
        linear-gradient(180deg, transparent 30%, rgba(8, 5, 3, 0.38) 100%),
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(157, 203, 223, 0.06), transparent 65%);
}

/* ── Content ─────────────────────────────────────────────── */
.jacana-sh-hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: var(--max-width, 1180px);
    margin: 0 auto;
    width: 100%;
    padding: 160px var(--content-pad, 40px) 80px;
}

.jacana-sh-hero-text {
    max-width: 700px;
}

/* ── Kicker ──────────────────────────────────────────────── */
.jacana-sh-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.36em;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--jacana-dunes, #db9751);
    margin-bottom: 20px;
}

.jacana-sh-hero-kicker::before {
    content: "";
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--jacana-dunes, #db9751);
    flex-shrink: 0;
}

/* ── Headline ────────────────────────────────────────────── */
.jacana-sh-hero h1 {
    color: #f5f0e8 !important;
    font-size: clamp(34px, 4.6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
    text-wrap: balance;
}
.jacana-sh-hero .button-ghost--dark {
    color: #f5f0e8 !important;
}
.jacana-sh-hero .button-ghost--dark:hover {
    color: #db9751 !important;
}
/* ── Body copy ───────────────────────────────────────────── */
.jacana-sh-hero-copy {
    font-size: 17px;
    line-height: 1.72;
    color: rgba(245, 240, 232, 0.74);
    max-width: 560px;
    margin-bottom: 40px;
}

/* ── Actions ─────────────────────────────────────────────── */
.jacana-sh-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Oshiwambo stripe ────────────────────────────────────── */
.jacana-sh-hero-stripe {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .jacana-sh-hero { min-height: 80svh; }
    .jacana-sh-hero-inner { padding: 130px var(--content-pad, 20px) 60px; }
    .jacana-sh-hero-copy { font-size: 15.5px; }
}

@media (max-width: 540px) {
    .jacana-sh-hero { min-height: 85svh; }
    .jacana-sh-hero-inner { padding: 120px 20px 48px; }
    .jacana-sh-hero-actions .button { width: 100%; justify-content: center; }
}
