:root {
    --bg: #0b0b09;
    --surface: #131310;
    --surface2: #1a1a16;
    --border: #252520;
    --border-bright: #3a3a30;
    --gold: #b8862c;
    --gold-bright: #d4a030;
    --od: #3d5020;
    --od-bright: #5a7030;
    --text: #ccc4b0;
    --text-dim: #6a6458;
    --red: #7a1818;
    --red-bright: #cc2200;
    --white: #e8e0d0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Share Tech Mono', monospace;
    overflow-x: hidden;
}

/* Grain texture */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── HEADER ──────────────────────────── */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 900;
    background: rgba(11, 11, 9, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(6px);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    line-height: 1;
}

.brand-sub {
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    display: block;
    margin-top: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cart {
    position: relative;
    cursor: pointer;
    color: var(--text);
}

.cart-count {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--red-bright);
    color: white;
    font-size: 0.58rem;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

/* ── HERO ───────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

/* Military grid overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.018) 39px, rgba(255,255,255,0.018) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.018) 39px, rgba(255,255,255,0.018) 40px);
    pointer-events: none;
}

/* Diagonal accent stripe */
.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(61,80,32,0.08) 100%);
    pointer-events: none;
}

.hero-art-panel {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: min(42vw, 560px);
    height: min(78vh, 680px);
    border: 1px solid var(--od);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Scan-line effect */
.hero-art-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.12) 3px, rgba(0,0,0,0.12) 4px);
    pointer-events: none;
}

.hero-art-panel .corner { position: absolute; font-size: 0.55rem; color: var(--od-bright); letter-spacing: 0.12em; }
.hero-art-panel .corner.tl { top: 10px; left: 12px; }
.hero-art-panel .corner.tr { top: 10px; right: 12px; }
.hero-art-panel .corner.bl { bottom: 10px; left: 12px; }
.hero-art-panel .corner.br { bottom: 10px; right: 12px; }

/* Military corner brackets */
.hero-art-panel .bracket-tl,
.hero-art-panel .bracket-br {
    position: absolute;
    width: 24px; height: 24px;
}
.hero-art-panel .bracket-tl { top: 6px; left: 6px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.hero-art-panel .bracket-br { bottom: 6px; right: 6px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.art-note {
    text-align: center;
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    line-height: 2.2;
    z-index: 1;
}

/* Black redaction bar */
.redact-bar {
    position: absolute;
    background: #000;
    left: 12%; right: 12%;
    height: 22px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 2rem;
    margin-left: clamp(2rem, 6vw, 8%);
}

.hero-classmark {
    display: inline-block;
    border: 1px solid var(--red-bright);
    color: var(--red-bright);
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    padding: 3px 14px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3.8rem, 8.5vw, 7.5rem);
    font-weight: 700;
    line-height: 0.88;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.hero-title .gold { color: var(--gold); }

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--od-bright);
    margin: 1.8rem 0;
}

.hero-body {
    font-family: 'Special Elite', cursive;
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--text);
    max-width: 460px;
    border-left: 2px solid var(--od);
    padding-left: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #0b0b09;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 36px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--text);
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 13px 36px;
    text-decoration: none;
    border: 1px solid var(--border-bright);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--text-dim); color: var(--white); }

.hero-coord {
    position: absolute;
    bottom: 2rem;
    left: clamp(2rem, 6vw, 8%);
    font-size: 0.58rem;
    color: var(--text-dim);
    letter-spacing: 0.14em;
}

/* ── MARQUEE ─────────────────────────── */
.marquee-bar {
    background: var(--od);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

.marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 36s linear infinite;
}

.marquee-set {
    display: flex;
    flex-shrink: 0;
}

.marquee-set span {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    color: rgba(232,224,208,0.65);
    padding: 0 2.8rem;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── SECTION HEADERS ─────────────────── */
.section-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.sec-head {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.sec-num {
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.22em;
    border: 1px solid var(--border-bright);
    padding: 3px 10px;
    white-space: nowrap;
}

.sec-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.sec-line { flex: 1; height: 1px; background: var(--border); }

/* ── PRODUCT GRID ─────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    transition: border-color 0.25s, transform 0.25s;
    cursor: pointer;
}

.product-card:hover { border-color: var(--gold); transform: translateY(-4px); }

/* Corner brackets on hover */
.product-card::before,
.product-card::after {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 2;
}

.product-card::before { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.product-card::after  { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.product-card:hover::before,
.product-card:hover::after { opacity: 1; }

.card-img {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img.g1 { background: linear-gradient(145deg, #0d1a08, #111e0a, #08120504); }
.card-img.g2 { background: linear-gradient(145deg, #1a100a, #1e1408, #100a04); }
.card-img.g3 { background: linear-gradient(145deg, #0a0a16, #0e0e1e, #060610); }
.card-img.g4 { background: linear-gradient(145deg, #1a0a0a, #1e0e0e, #100404); }

/* Scan-line overlay on card images */
.card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.1) 3px, rgba(0,0,0,0.1) 4px);
    pointer-events: none;
}

.card-redact {
    position: absolute;
    background: #000;
    height: 18px;
    left: 16%; right: 16%;
}

.card-art-label {
    font-size: 0.58rem;
    color: var(--text-dim);
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 2;
    z-index: 1;
}

.card-serial {
    position: absolute;
    bottom: 7px; right: 9px;
    font-size: 0.5rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    z-index: 3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.card-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--red-bright);
    color: #fff;
    font-size: 0.52rem;
    letter-spacing: 0.15em;
    padding: 3px 9px;
    text-transform: uppercase;
    z-index: 3;
}

.card-badge.limited { background: var(--gold); color: #0b0b09; }

.card-body { padding: 1rem 1.2rem; }

.card-tag {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--od-bright);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.card-desc {
    font-size: 0.64rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 0.85rem;
}

.card-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.card-add {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    background: transparent;
    border: 1px solid var(--border-bright);
    padding: 6px 14px;
    cursor: pointer;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
}

.card-add:hover { border-color: var(--gold); color: var(--gold); }

.card-img-link { display: block; text-decoration: none; color: inherit; }

/* ── CATEGORIES ──────────────────────── */
.cat-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.cat-card {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--surface2);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s;
}

.cat-card:hover { border-color: var(--od-bright); }
.cat-card:hover .cat-overlay { background: rgba(0,0,0,0.3); }

.cat-bg-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.54rem;
    color: rgba(255,255,255,0.12);
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 2.2;
    pointer-events: none;
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
    transition: background 0.25s;
}

.cat-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cat-count {
    font-size: 0.58rem;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    display: block;
    margin-top: 3px;
}

/* ── ABOUT ───────────────────────────── */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-art-panel {
    aspect-ratio: 4/5;
    background: var(--surface2);
    border: 1px solid var(--border-bright);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-art-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.1) 3px, rgba(0,0,0,0.1) 4px);
    pointer-events: none;
}

.about-art-panel .art-label {
    font-size: 0.62rem;
    color: var(--text-dim);
    letter-spacing: 0.14em;
    text-align: center;
    line-height: 2.2;
    z-index: 1;
}

/* Corner brackets */
.bracketed::before { content: ''; position: absolute; top: 0; left: 0; width: 22px; height: 22px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.bracketed::after  { content: ''; position: absolute; bottom: 0; right: 0; width: 22px; height: 22px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.about-stamp {
    position: absolute;
    bottom: 22px; right: 22px;
    border: 3px solid var(--red-bright);
    color: var(--red-bright);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 6px 10px;
    transform: rotate(-9deg);
    opacity: 0.65;
    text-align: center;
    line-height: 1.4;
    z-index: 2;
}

.about-text p {
    font-family: 'Special Elite', cursive;
    font-size: 0.92rem;
    line-height: 1.95;
    color: var(--text);
    margin-bottom: 1.3rem;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.stat-item { text-align: center; }

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* ── TEAM ────────────────────────────── */
#team { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    transition: border-color 0.25s;
}

.team-card:hover { border-color: var(--gold); }

.team-img {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-placeholder {
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.14em;
    line-height: 2.2;
    text-align: center;
    z-index: 1;
}

.team-body { padding: 1.2rem; }

.team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.team-desc {
    font-family: 'Special Elite', cursive;
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.team-role {
    font-size: 0.52rem;
    letter-spacing: 0.16em;
    color: var(--text-dim);
    border-left: 2px solid var(--od);
    padding-left: 0.7rem;
    text-transform: uppercase;
}

/* ── FOOTER ──────────────────────────── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 5rem 2rem 2rem;
}

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.18em;
}

.footer-brand p {
    font-size: 0.74rem;
    color: var(--text-dim);
    line-height: 1.85;
    margin-top: 1.1rem;
    max-width: 290px;
}

.footer-tag {
    margin-top: 1.5rem;
    font-size: 0.58rem;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    border-left: 2px solid var(--od);
    padding-left: 0.8rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: var(--white);
    margin-bottom: 1.3rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul li a {
    font-size: 0.73rem;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.58rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
}

/* ── PRODUCT MODAL ───────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 1rem 2rem;
    overflow-y: auto;
}

.modal-overlay.open { display: flex; }

.modal-box {
    background: var(--surface);
    border: 1px solid var(--border-bright);
    width: 100%;
    max-width: 500px;
    position: relative;
    animation: modalIn 0.18s ease;
    margin: auto;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 10px; right: 12px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 2;
    padding: 8px 12px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.modal-close:hover { color: var(--white); }

.modal-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: var(--bg);
}

.modal-body {
    padding: 1.4rem 1.6rem 1.8rem;
}

.modal-tag {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: var(--od-bright);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.modal-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.modal-desc {
    font-size: 0.78rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.4rem;
    border-left: 2px solid var(--od);
    padding-left: 1rem;
}

.modal-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.modal-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
}

.modal-acquire {
    font-size: 0.75rem;
    padding: 12px 24px;
    letter-spacing: 0.16em;
}

/* ── HAMBURGER + MOBILE NAV ──────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    pointer-events: none;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 11, 9, 0.99);
    z-index: 898;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    border-top: 1px solid var(--border);
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-nav-overlay a:active { color: var(--gold); }

/* ── TOUCH TARGET HELPERS ────────────── */
.card-add {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-cart {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
    .hero-art-panel { width: 40vw; }
}

@media (max-width: 860px) {
    /* Hero: stack vertically instead of side-by-side */
    .hero {
        flex-direction: column;
        align-items: stretch;
        padding-top: 64px;
        min-height: unset;
    }
    .hero-content {
        margin-left: 0;
        max-width: 100%;
        padding: 1.2rem 1.2rem 0.8rem;
        order: 1;
    }
    .hero-classmark { margin-bottom: 0.8rem; }
    .hero-divider { margin: 0.8rem 0; }
    .hero-body { margin-bottom: 1rem; }
    .hero-art-panel {
        order: 2;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 70vw;
        max-height: 420px;
        flex-shrink: 0;
        z-index: 1;
        overflow: hidden;
    }
    .hero-art-panel img {
        position: absolute !important;
        top: 0 !important; left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        z-index: 0;
    }
    .hero-art-panel > div,
    .hero-art-panel > span,
    .hero-art-panel .redact-bar {
        z-index: 2;
    }
    .hero-dossier {
        font-size: 0.72rem !important;
        line-height: 1.9 !important;
        left: 1rem !important;
        right: 1rem !important;
        z-index: 3 !important;
    }
    .hero-coord { position: relative; bottom: auto; left: auto; padding: 0.8rem 2rem; font-size: 0.5rem; order: 3; }

    /* About: show photo above text */
    .about-inner { grid-template-columns: 1fr; }
    .about-art-panel {
        display: flex;
        aspect-ratio: 3/4;
        max-height: 480px;
    }
    .about-art-panel img {
        object-position: center top !important;
    }

    .cat-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-wrap: wrap; gap: 0.5rem; }
}

@media (max-width: 580px) {
    nav { padding: 0 1rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .brand-sub { font-size: 0.37rem; letter-spacing: 0.08em; white-space: nowrap; }

    .hero { padding-top: 80px; }
    .hero-content { padding: 1.5rem 1rem; }
    .hero-title { font-size: clamp(2.6rem, 11vw, 3.4rem); }
    .hero-classmark { font-size: 0.6rem; margin-bottom: 1.2rem; }
    .hero-body { font-size: 0.9rem; }
    .hero-coord { font-size: 0.45rem; letter-spacing: 0.08em; bottom: 1rem; left: 1rem; }

    .section-wrap { padding: 3.5rem 1rem; }
    #shop .section-wrap { padding-bottom: 0.875rem; }
    #about .section-wrap { padding-top: 0.875rem; }

    .sec-head { flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
    .sec-head h2 { font-size: 1.6rem; white-space: normal; }
    .sec-num { font-size: 0.58rem; }
    .sec-line { display: none; }

    .product-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .card-body { padding: 0.75rem 0.9rem; }
    .card-name { font-size: 0.95rem; }
    .card-desc { font-size: 0.62rem; line-height: 1.6; }
    .card-tag { font-size: 0.5rem; }
    .card-price { font-size: 1rem; }
    .card-add { font-size: 0.58rem; padding: 10px 8px; }
    .card-foot { padding-top: 0.65rem; }

    .cat-grid { grid-template-columns: 1fr; }

    .about-text p { font-size: 0.88rem; }
    .stat-row { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 1.5rem; }
    .stat-num { font-size: 1.6rem; }

    footer { padding: 3rem 1rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }
    .footer-bottom p { font-size: 0.56rem; }
}

@media (max-width: 380px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.6rem; }
    .card-add { font-size: 0.55rem; letter-spacing: 0.08em; }
}
