:root {
    --black: #000000;
    --iron: #181818;
    --charcoal: #202020;
    --white: #ffffff;
    --ash: #7d7d7d;
    --gold: #ffc000;
    --gold-text: #ffce3e;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
html,
body {
    margin: 0;
    padding: 0;
    background: var(--black);
    color: var(--white);
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("/static/images/hero-bg.d26648120ff6.jpeg");
    background-size: cover;
    background-position: center;
    opacity: 0.10;
    z-index: -1;
    pointer-events: none;
}
/* ─── Navigation ───────────────────────────────────────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--charcoal);
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav__logo-mark {
    width: 28px;
    height: 28px;
    color: var(--white);
    display: block;
}
.nav__logo-text {
    font-family: 'Signika', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__link {
    font-family: 'Signika', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.15s ease;
}
.nav__link:hover {
    color: var(--white);
}
.nav__cta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    text-decoration: none;
    padding: 10px 20px;
    transition: background 0.15s ease;
    white-space: nowrap;
}
.nav__cta:hover {
    background: #917300;
}
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: all 0.2s ease;
}
/* ─── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 1280px) {
    .hero__brand { font-size: 120px; }
    .product-hero__title { font-size: 96px; }
}
@media (max-width: 768px) {
    .nav { padding: 0 24px; }
    .nav__links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--black);
        border-bottom: 1px solid var(--charcoal);
        padding: 24px;
        gap: 24px;
    }
    .nav__links.is-open { display: flex; }
    .nav__cta {
        padding: 10px 0;
        background: transparent;
        color: var(--gold-text);
    }
    .nav__cta:hover { background: transparent; color: var(--white); }
    .nav__burger { display: flex; }
}
