:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #242424;
    --text-muted-custom: #888;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--dark);
    color: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100%;
}

/* ── NAV ── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 70px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.site-nav .brand {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
}

.site-nav .brand span { color: #fff; }

.nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/benjamin-peak.jpg') center top / cover no-repeat;
    filter: brightness(0.35);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.2) 0%,
        rgba(10,10,10,0.0) 40%,
        rgba(10,10,10,0.85) 75%,
        rgba(10,10,10,1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-name {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
}

.hero-name .first { display: block; color: #fff; }
.hero-name .last  { display: block; color: var(--gold); }

.hero-tagline {
    font-size: 1.125rem;
    color: #bbb;
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.badge-item {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: #000;
    transform: translateY(-2px);
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.95rem 2.5rem;
    text-decoration: none;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 1rem;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--dark-3);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 2.5rem 2.5rem;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted-custom);
    margin-top: 0.4rem;
    display: block;
}

/* ── ABOUT ── */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0 0 1.5rem;
}

.about-text {
    color: #999;
    line-height: 1.8;
    font-size: 1rem;
}

.about-text p { margin-bottom: 1rem; }

.profile-card {
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 2rem;
}

.profile-card table { width: 100%; border-collapse: collapse; }

.profile-card tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.profile-card tr:last-child { border-bottom: none; }

.profile-card td {
    padding: 0.85rem 0;
    font-size: 0.9rem;
}

.profile-card td:first-child {
    color: var(--text-muted-custom);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 40%;
}

.profile-card td:last-child { color: #fff; font-weight: 600; }

/* ── ACHIEVEMENTS ── */
.achievements-section {
    background: var(--dark-2);
    padding: 6rem 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.achievements-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-inner .section-title { margin-bottom: 3rem; }

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.achievement-card {
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 3px solid var(--gold);
    padding: 1.75rem;
    transition: transform 0.2s, border-color 0.2s;
}

.achievement-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-light);
}

.achievement-year {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.achievement-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.achievement-detail {
    font-size: 0.85rem;
    color: var(--text-muted-custom);
}

/* ── MERCH CTA ── */
.merch-cta {
    padding: 6rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.merch-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.merch-cta .section-label { text-align: center; }

.merch-cta .section-title { margin-bottom: 1rem; }

.merch-cta .lead {
    color: #999;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
    background: #000;
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 2rem 2.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 0.05em;
}

.site-footer a { color: var(--gold); text-decoration: none; }

/* ── MERCH PAGE ── */
.merch-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.merch-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.merch-coming-soon {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.coming-soon-big {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--dark-4);
    -webkit-text-stroke: 1px rgba(201,168,76,0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.merch-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.merch-page .section-label { display: block; text-align: center; margin-bottom: 1rem; }

.merch-page h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.merch-page h1 span { color: var(--gold); }

.merch-page p {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.merch-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .site-nav { padding: 0 1.25rem; }
    .hero-content { padding: 0 1.25rem; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .about-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.25rem; }
    .achievements-grid { grid-template-columns: 1fr; }
    .achievements-section { padding: 4rem 1.25rem; }
    .merch-cta { padding: 4rem 1.25rem; }
    .stats-bar { padding: 2rem 1.25rem; }
    .btn-outline-gold { margin-left: 0; margin-top: 0.75rem; }
}
