/* ===========================================================================
   BR Hero - elegant full-height hero banner (dark + gold)
   =========================================================================== */
.pxl-hb {
    --pxl-hb-accent: #bd9a5f;
    position: relative; display: flex; width: 100%;
    min-height: 100vh; overflow: hidden;
    background: #0f0e0d; isolation: isolate;
}

/* ---------- Media ---------- */
.pxl-hb__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.pxl-hb__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.pxl-hb__media.has-zoom img { animation: pxl-hb-zoom 22s ease-in-out infinite alternate; transform-origin: center; }
@keyframes pxl-hb-zoom { from { transform: scale(1); } to { transform: scale(1.09); } }
@media (prefers-reduced-motion: reduce) { .pxl-hb__media.has-zoom img { animation: none; } }

/* ---------- Overlay ---------- */
.pxl-hb__overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.pxl-hb__overlay.ov-none { display: none; }
.pxl-hb__overlay.ov-solid { background: var(--pxl-hb-ov1, rgba(11, 10, 9, .5)); }
.pxl-hb__overlay.ov-gradient { background: linear-gradient(var(--pxl-hb-ov-angle, 180deg), var(--pxl-hb-ov1, rgba(11, 10, 9, .55)), var(--pxl-hb-ov2, rgba(11, 10, 9, .3))); }

/* ---------- Inner / positioning ---------- */
.pxl-hb__inner {
    position: relative; z-index: 2; width: 100%;
    display: flex; flex-direction: column;
    padding: clamp(40px, 6vw, 90px);
}
.pxl-hb.valign-top .pxl-hb__inner { justify-content: flex-start; }
.pxl-hb.valign-middle .pxl-hb__inner { justify-content: center; }
.pxl-hb.valign-bottom .pxl-hb__inner { justify-content: flex-end; }
.pxl-hb.align-left .pxl-hb__inner { align-items: flex-start; }
.pxl-hb.align-center .pxl-hb__inner { align-items: center; }
.pxl-hb.align-right .pxl-hb__inner { align-items: flex-end; }

.pxl-hb__content { max-width: 820px; width: 100%; }
.pxl-hb.align-center .pxl-hb__content { text-align: center; }
.pxl-hb.align-left .pxl-hb__content { text-align: left; }
.pxl-hb.align-right .pxl-hb__content { text-align: right; }
/* Subtle legibility boost over bright image areas */
.pxl-hb__eyebrow, .pxl-hb__title, .pxl-hb__subtitle { text-shadow: 0 2px 30px rgba(0, 0, 0, .28); }

/* ---------- Eyebrow ---------- */
.pxl-hb__eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--pxl-hb-accent); font-size: 13px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 22px;
}
.pxl-hb__eyebrow-line { display: inline-block; width: 34px; height: 1px; background: var(--pxl-hb-accent); opacity: .85; }

/* ---------- Title ---------- */
.pxl-hb__title {
    color: #fff; margin: 0; font-size: clamp(38px, 5.4vw, 72px);
    line-height: 1.08; font-weight: 300; letter-spacing: -0.015em;
}
.pxl-hb__title span { color: var(--pxl-hb-accent); }

/* ---------- Subtitle ---------- */
.pxl-hb__subtitle {
    color: rgba(255, 255, 255, .82); margin: 24px 0 0;
    font-size: clamp(15px, 1.35vw, 20px); line-height: 1.75; font-weight: 300; max-width: 640px;
}
.pxl-hb.align-center .pxl-hb__subtitle { margin-left: auto; margin-right: auto; }
.pxl-hb.align-right .pxl-hb__subtitle { margin-left: auto; }

/* ---------- Actions / buttons ---------- */
.pxl-hb__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.pxl-hb.align-center .pxl-hb__actions { justify-content: center; }
.pxl-hb.align-right .pxl-hb__actions { justify-content: flex-end; }
.pxl-hb__btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 34px; border-radius: 50px;
    border: 1px solid transparent; text-decoration: none;
    font-size: 14px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
    transition: background .35s ease, color .35s ease, border-color .35s ease, transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.pxl-hb__btn:hover { transform: translateY(-3px); }
.pxl-hb__btn-icon { display: inline-flex; font-size: 12px; transition: transform .3s ease; }
.pxl-hb__btn:hover .pxl-hb__btn-icon { transform: translateX(4px); }
/* Outline */
.pxl-hb__btn.is-outline { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff !important; }
.pxl-hb__btn.is-outline:hover { background: var(--pxl-hb-accent); border-color: var(--pxl-hb-accent); color: #171514 !important; box-shadow: 0 18px 40px -16px rgba(189, 154, 95, .6); }
/* Filled */
.pxl-hb__btn.is-fill { background: var(--pxl-hb-accent); border-color: var(--pxl-hb-accent); color: #171514 !important; box-shadow: 0 16px 34px -14px rgba(189, 154, 95, .55); }
.pxl-hb__btn.is-fill:hover { background: #fff; border-color: #fff; color: #171514 !important; }
/* Text link */
.pxl-hb__btn.is-text { padding-left: 6px; padding-right: 6px; border-radius: 0; border-color: transparent; color: #fff !important; }
.pxl-hb__btn.is-text:hover { color: var(--pxl-hb-accent) !important; transform: none; }

/* ---------- Bottom note ---------- */
.pxl-hb__note {
    position: absolute; left: clamp(40px, 6vw, 90px); bottom: 30px; z-index: 2;
    color: rgba(255, 255, 255, .5); font-size: 13px; letter-spacing: .3px;
}
.pxl-hb.align-center .pxl-hb__note { left: 0; right: 0; text-align: center; }

/* ---------- Reveal (GSAP sets initial state in JS) ---------- */

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .pxl-hb__inner { padding: 90px 44px; }
    .pxl-hb__title { font-size: clamp(34px, 5.8vw, 58px); }
}
@media (max-width: 767px) {
    .pxl-hb__inner { padding: 108px 26px 94px; }
    .pxl-hb__content { max-width: 460px; }
    .pxl-hb__eyebrow { margin-bottom: 16px; letter-spacing: 2.6px; }
    .pxl-hb__title { font-size: 34px; line-height: 1.16; letter-spacing: -0.01em; }
    .pxl-hb__subtitle { font-size: 15.5px; line-height: 1.7; margin-top: 18px; }
    .pxl-hb__actions { flex-direction: column; align-items: center; width: 100%; gap: 12px; margin-top: 32px; }
    .pxl-hb__btn { width: 100%; max-width: 300px; justify-content: center; padding: 15px 24px; font-size: 13px; letter-spacing: 1.4px; }
    .pxl-hb__btn.is-text { width: auto; }
    .pxl-hb__note { position: absolute; left: 0; right: 0; bottom: 18px; margin: 0; text-align: center; }
}
@media (max-width: 400px) {
    .pxl-hb__inner { padding: 100px 20px 88px; }
    .pxl-hb__title { font-size: 30px; }
    .pxl-hb__subtitle { font-size: 15px; }
}
