/* Honor page — hero + honors showcase */

.honor-page {
    --honor-brand: #00856f;
    --honor-brand-dark: #004d41;
    --honor-brand-bright: #6ee7c7;
    --honor-max: min(1480px, 100%);
    --honor-gutter: clamp(24px, 5vw, 96px);
    width: 100%;
    overflow-x: clip;
    color: #1a1a1a;
    background: #fff;
}

.honor-container {
    width: 100%;
    max-width: var(--honor-max);
    margin: 0 auto;
    padding-left: var(--honor-gutter);
    padding-right: var(--honor-gutter);
    box-sizing: border-box;
}

.honor-hero {
    position: relative;
    min-height: clamp(320px, 42vh, 460px);
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(48px, 6vw, 72px);
    overflow: hidden;
}

.honor-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 85% 20%, rgba(0, 168, 138, 0.2), transparent 55%),
        linear-gradient(155deg, #001512 0%, #003830 45%, #005a4a 100%);
}

.honor-hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 85%);
}

.honor-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 10% 30%, rgba(0, 133, 111, 0.25), transparent 55%),
        linear-gradient(160deg, rgba(0, 18, 15, 0.9) 0%, rgba(0, 50, 42, 0.75) 55%, rgba(0, 90, 74, 0.5) 100%);
}

.honor-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.honor-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.honor-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.15s ease;
}

.honor-breadcrumb a:hover {
    color: #fff;
}

.honor-hero__eyebrow {
    margin: 0 0 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--honor-brand-bright);
}

.honor-hero__title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
}

.honor-hero__tagline {
    margin: 0;
    max-width: 640px;
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.honor-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 0;
    border: 0;
    background: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.honor-hero__scroll:hover {
    color: #fff;
    transform: translateY(2px);
}

body:has(.honor-page) .site-footer {
    margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
    .honor-hero__scroll:hover {
        transform: none;
    }
}
