/* Hero Layout: Centered Minimal */
.aum-hcm {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    background: var(--bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    overflow: hidden;
}

.aum-hcm-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.aum-hcm-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.aum-hcm-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
}

.aum-hcm-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

.aum-hcm-title {
    margin: 0;
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-on-bg);
}

.aum-hcm-rule {
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 4px;
    background: var(--primary);
    margin: 4px 0;
}

.aum-hcm-desc {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 60ch;
}

.aum-hcm-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.aum-hcm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.aum-hcm-btn.is-primary {
    gap: 8px;
    padding: 15px 38px;
    border-radius: 999px;
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
}
.aum-hcm-btn.is-text {
    color: var(--text-on-bg);
    padding: 15px 8px;
}
.aum-hcm-btn.is-text:hover { color: var(--primary); }

.aum-hcm-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 1em;
    height: 1em;
    font-size: 1em;
}
.aum-hcm-btn-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

.aum-hcm-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.85;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .aum-hcm { padding: 72px 20px; }
}
