/* ============================================
   HERO — Standard
   ============================================ */
.hero {
    padding: 160px 0 100px;
    background: var(--wp--preset--color--navy, #0f1f3d);
    color: #fff !important;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,50,96,0.5) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero .label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wp--preset--color--gold, #c9a84c) !important;
    margin-bottom: 12px;
}

.hero h1,
.hero .wp-block-heading {
    color: #fff !important;
    margin-bottom: 20px;
}

.hero h1 em {
    color: var(--wp--preset--color--gold, #c9a84c);
    font-style: normal;
}

.hero .hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 16px;
    font-style: italic;
}

.hero .hero-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin-bottom: 36px;
}

.hero .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero .hero-phone {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
}

.hero .hero-phone a {
    color: var(--wp--preset--color--gold, #c9a84c);
    font-weight: 700;
}

/* ============================================
   HERO — With Video (two-column variant)
   ============================================ */
.hero-with-video {
    padding: 100px 0;
}

.hero-with-video .hero-columns {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-with-video .hero-video-col {
    flex: 0 0 38%;
}

.hero-with-video .hero-content {
    flex: 1;
}

/* ── Video block wrapper ── */
.hero-video-wrap {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
}

.hero-video-wrap .hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-video-wrap .hero-video-embed,
.hero-video-wrap .hero-video-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    display: block;
    border: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 782px) {
    .hero { padding: 120px 0 72px; }
    .hero-with-video { padding: 80px 0 60px; }
    .hero-with-video .hero-columns {
        flex-direction: column;
        gap: 32px;
    }
    .hero-with-video .hero-video-col {
        flex: 0 0 auto;
        width: 100%;
    }
    .hero .hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .hero { padding: 100px 0 60px; }
}
