.about-hero {
    background: var(--navy);
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,54,45,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,148,10,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.about-hero__tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}
.about-hero__tag::before {
    content: '';
    width: 32px; height: 2px;
    background: var(--amber);
    border-radius: 1px;
}

.about-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.about-hero__title em {
    font-style: normal;
    color: var(--amber);
}

.about-hero__desc {
    font-size: 1.15rem;
    color: var(--text-on-dark-muted);
    line-height: 1.75;
    max-width: 620px;
}
