/* ============================================
   Hero
   ============================================ */

.hero {
    background:
        radial-gradient(ellipse at top, rgba(176,138,74,0.12), transparent 60%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: #fff;
    text-align: center;
    padding: 140px 24px 130px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.35;
    pointer-events: none;
}

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

.hero .eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--brass-2);
    font-weight: 600;
    margin-bottom: 22px;
    padding: 6px 14px;
    border: 1px solid rgba(201,167,106,0.4);
    border-radius: var(--radius-pill);
}

.hero h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.hero h2 .accent {
    background: linear-gradient(90deg, var(--brass-2), var(--brass-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.68);
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero { padding: 90px 24px 80px; }
    .hero h2 { font-size: 28px; }
    .hero p { font-size: 14px; }
}
