/* ============================================================================
 * Jogoo Shop — Theme stylesheet  (mobile-first, robust on all devices)
 * Design "Swiss & High-Contrast" — sharp corners, big typography, bento grids.
 * ============================================================================ */

:root {
    --bg: #F8F9FA;
    --surface: #FFFFFF;
    --ink: #0A0A0A;
    --ink-2: #18181B;
    --muted: #52525B;
    --soft: #71717A;
    --line: #E4E4E7;
    --line-strong: #D4D4D8;
    --accent: #E63946;
    --accent-hover: #D62828;
    --navy: #003049;
    --container: 1400px;
    --header-h: 64px;
}

/* ============================================================================ */
/* Base                                                                         */
/* ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg, iframe { max-width: 100%; height: auto; display: block; }
iframe { width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

/* Utilities */
.font-display { font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: -0.03em; }
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}
.kicker { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin: 0; line-height: 1.4; }
.kicker.accent { color: var(--accent); font-weight: 600; }
.kicker.dim { color: var(--soft); }
.kicker.block { display: block; margin-top: 0.5rem; }
.lead { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; margin: 0; }
.strong { color: var(--ink); font-weight: 600; }
.muted { color: #A1A1AA; }
.accent { color: var(--accent); }
.text-center { text-align: center; }
.hide-mobile { display: none !important; }
.py-section { padding-block: 4rem; }
.screen-reader-text {
    position: absolute !important; clip: rect(1px, 1px, 1px, 1px); width: 1px; height: 1px; overflow: hidden;
}
.skip-link { position: absolute; left: -9999px; top: 0; background: #000; color: #fff; padding: 0.5rem 1rem; z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.95rem 1.25rem;
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
    border: 1px solid transparent;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
    border-radius: 0; line-height: 1; min-height: 48px;
    text-align: center; word-break: keep-all;
}
.btn svg { flex-shrink: 0; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--accent); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--accent); color: #fff; }
.btn-block { display: flex; width: 100%; }

/* ============================================================================ */
/* Header — Mobile first                                                        */
/* ============================================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: rgba(255,255,255,0.94);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.5rem; height: var(--header-h);
}
.logo-link { flex: 0 1 auto; min-width: 0; }
.primary-nav, .header-phone { display: none; }
.menu-toggle {
    background: transparent; border: 0; padding: 10px;
    width: 44px; height: 44px;
    display: inline-flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.menu-toggle .bar { width: 22px; height: 2px; background: var(--ink); display: block; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav: slides as a panel below the header */
.mobile-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 1.5rem 1rem 2rem;
    overflow-y: auto;
    z-index: 49;
    border-top: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav .menu-mobile { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0; }
.mobile-nav .menu-mobile li { border-bottom: 1px solid var(--line); }
.mobile-nav .menu-mobile a {
    display: block;
    font-size: 16px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--ink);
    padding: 1.1rem 0;
}
.mobile-nav .menu-mobile a:active,
.mobile-nav .menu-mobile a:hover { color: var(--accent); }

/* Logo */
.jogoo-logo { display: inline-flex; align-items: center; gap: 0.5rem; min-width: 0; }
.jogoo-logo img { max-height: 40px; width: auto; }
.jogoo-logo-mark {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background: var(--ink); flex-shrink: 0;
}
.jogoo-logo.invert .jogoo-logo-mark { background: #fff; }
.jogoo-logo-letter {
    font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 22px; line-height: 1; color: #fff;
}
.jogoo-logo.invert .jogoo-logo-letter { color: var(--ink); }
.jogoo-logo-corner { position: absolute; top: 0; right: 0; width: 7px; height: 7px; background: var(--accent); }
.jogoo-logo-word { display: flex; flex-direction: column; line-height: 0.95; min-width: 0; overflow: hidden; }
.jogoo-logo-name {
    font-size: 18px; font-weight: 900; letter-spacing: -0.03em; text-transform: uppercase;
    color: var(--ink); white-space: nowrap;
}
.jogoo-logo.invert .jogoo-logo-name { color: #fff; }
.jogoo-logo-name .dot { color: var(--accent); }
.jogoo-logo-sub {
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 8.5px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--muted); margin-top: 2px; white-space: nowrap;
}
.jogoo-logo.invert .jogoo-logo-sub { color: #A1A1AA; }

/* ============================================================================ */
/* Hero — Mobile first                                                          */
/* ============================================================================ */
.hero-section { padding-top: calc(var(--header-h) + 1.25rem); padding-bottom: 2rem; }
.hero-kicker {
    display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start;
    border-block: 1px solid var(--line-strong);
    padding: 0.75rem 0; margin: 0.5rem 0 1.5rem;
    font-size: 10.5px; letter-spacing: 0.25em; text-transform: uppercase; color: #3F3F46;
}
.hero-kicker > * { white-space: nowrap; }

.hero-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0.6rem; }
.bento-title {
    grid-column: 1 / -1;
    padding: 1.5rem 1.25rem; background: #fff; border: 1px solid var(--line-strong);
}
.hero-title {
    font-size: clamp(36px, 11vw, 56px);
    line-height: 0.95; text-transform: uppercase; margin: 0.75rem 0 1rem;
    word-break: break-word;
}
.hero-desc { max-width: 100%; font-size: 0.9375rem; }
.hero-ctas { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.hero-ctas .btn { width: 100%; }

.bento-portrait, .bento-landscape {
    grid-column: 1 / -1;
    position: relative; overflow: hidden; border: 1px solid var(--line-strong); margin: 0;
    aspect-ratio: 4/5;
}
.bento-landscape { aspect-ratio: 16/9; }
.bento-portrait img, .bento-landscape img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease;
}
.bento-portrait::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
    pointer-events: none;
}
.bento-portrait figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.25rem; color: #fff; z-index: 1;
}
.bento-portrait .caption-title { font-size: 1.4rem; margin: 0.25rem 0 0; text-transform: uppercase; line-height: 1.05; }

.bento-stat {
    grid-column: span 6;
    padding: 1.25rem; background: #fff; border: 1px solid var(--line-strong);
}
.bento-stat.dark { background: var(--ink); color: #fff; }
.bento-stat .stat-value { font-size: 2.25rem; margin: 0; line-height: 1; }
.bento-stat .kicker.dim { color: #A1A1AA; margin-top: 0.5rem; }

/* Marquee */
.marquee {
    overflow: hidden; border-block: 1px solid var(--line-strong);
    margin-top: 2rem; padding: 0.85rem 0;
}
.marquee-track {
    display: flex; gap: 1.25rem; align-items: center; white-space: nowrap;
    animation: marquee 35s linear infinite;
    will-change: transform;
}
.marquee-track > * {
    flex-shrink: 0; font-size: 1.5rem; text-transform: uppercase;
    letter-spacing: -0.02em; color: var(--ink);
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================================ */
/* Section heads                                                                */
/* ============================================================================ */
.section-head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.section-title {
    font-size: clamp(28px, 9vw, 48px);
    line-height: 1; text-transform: uppercase; margin: 0.5rem 0 0;
    word-break: break-word;
}

/* ============================================================================ */
/* Brand section                                                                */
/* ============================================================================ */
.brand-section { padding: 3.5rem 0; background: #fff; border-block: 1px solid var(--line-strong); }
.brand-grid { display: flex; flex-direction: column; gap: 2rem; }
.brand-body p { color: var(--muted); margin: 0 0 1rem; font-size: 0.9375rem; }
.brand-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.feature-card {
    padding: 1.25rem; background: var(--bg); border: 1px solid var(--line-strong);
    transition: background-color .25s ease, color .25s ease;
}
.feature-card:hover { background: var(--ink); color: #fff; }
.feature-card:hover p { color: #D4D4D8; }
.feature-card .ic { color: var(--accent); margin-bottom: 0.5rem; }
.feature-card h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: -0.01em; margin: 0.5rem 0 0.25rem; }
.feature-card p { color: var(--muted); margin: 0; font-size: 0.825rem; line-height: 1.5; }

/* ============================================================================ */
/* Collection section                                                           */
/* ============================================================================ */
.collection-section { padding: 3.5rem 0; }
.filters {
    display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.85rem 0;
    border-block: 1px solid var(--line-strong); margin-bottom: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.filter-btn {
    padding: 0.6rem 1rem; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
    background: transparent; border: 1px solid var(--line-strong); color: #3F3F46;
    transition: all .2s ease; cursor: pointer; white-space: nowrap; min-height: 38px;
}
.filter-btn:hover, .filter-btn:active { border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.product-grid-list { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.product-card {
    background: #fff; border: 1px solid var(--line-strong); transition: transform .3s ease;
}
.product-card.is-hidden { display: none; }
.product-card:hover { transform: translateY(-2px); }
.product-card-link { display: block; }
.product-card-media {
    position: relative; aspect-ratio: 4/5; overflow: hidden; background: #F4F4F5;
}
.product-card-media img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.05); }
.badge {
    position: absolute; top: 0.85rem; padding: 0.3rem 0.65rem;
    font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}
.badge-accent { left: 0.85rem; background: var(--accent); color: #fff; }
.badge-light { right: 0.85rem; background: rgba(255,255,255,0.9); color: var(--ink); }
.product-card-body {
    padding: 1rem 1.25rem 1.25rem; border-top: 1px solid var(--line-strong);
    display: flex; gap: 0.75rem; align-items: flex-start; justify-content: space-between;
}
.product-card-title { font-size: 1.05rem; text-transform: uppercase; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
.product-card-excerpt { color: var(--muted); font-size: 0.85rem; margin: 0.4rem 0 0; line-height: 1.5; }
.product-card-arrow { color: #A1A1AA; flex-shrink: 0; transition: color .25s ease; }
.product-card:hover .product-card-arrow { color: var(--accent); }

.collection-cta {
    margin-top: 2rem; padding: 1.5rem; background: var(--ink); color: #fff;
    display: flex; flex-direction: column; gap: 1.25rem; border: 1px solid var(--ink);
}
.collection-cta .cta-title {
    font-size: clamp(1.25rem, 5vw, 1.85rem);
    text-transform: uppercase; line-height: 1.1; margin: 0.5rem 0 0;
}
.collection-cta .btn { width: 100%; }

/* ============================================================================ */
/* Store section                                                                */
/* ============================================================================ */
.store-section { padding: 3.5rem 0; background: #fff; border-block: 1px solid var(--line-strong); }
.store-grid { display: flex; flex-direction: column; gap: 2rem; }
.store-info .lead { max-width: 100%; }
.store-accent { color: var(--navy); }
.store-contacts { margin: 1.75rem 0; border: 1px solid var(--line-strong); }
.store-contact-row {
    display: flex; gap: 0.85rem; padding: 1rem; align-items: flex-start; color: inherit;
    border-bottom: 1px solid var(--line-strong);
}
.store-contact-row:last-child { border-bottom: 0; }
.store-contact-row.link:hover, .store-contact-row.link:active { background: var(--bg); }
.store-contact-row .ic { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.store-contact-row .kicker { font-size: 9.5px; }
.store-contact-row p { margin: 0; line-height: 1.4; }

.store-info .btn { width: 100%; }

.store-side { display: flex; flex-direction: column; gap: 0.75rem; }
.store-map { aspect-ratio: 4/3; border: 1px solid var(--line-strong); overflow: hidden; }
.store-map iframe { height: 100%; display: block; }
.store-hours { background: var(--bg); border: 1px solid var(--line-strong); padding: 1.25rem; }
.hours-title {
    display: flex; align-items: center; gap: 0.5rem; font-size: 10.5px;
    letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: #3F3F46; margin: 0 0 0.85rem;
}
.hours-title .ic { color: var(--accent); }
.hours-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 0; }
.hours-list li {
    display: flex; justify-content: space-between; padding: 0.6rem 0;
    border-bottom: 1px solid var(--line); font-size: 0.875rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .closed { color: var(--accent); }

/* ============================================================================ */
/* Contact section                                                              */
/* ============================================================================ */
.contact-section { padding: 3.5rem 0; }
.contact-grid { display: flex; flex-direction: column; gap: 2rem; }
.contact-info .lead { max-width: 100%; }
.contact-direct { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-strong); display: flex; flex-direction: column; gap: 1rem; }
.contact-direct p { margin: 0; }
.contact-direct .strong { color: var(--ink); }
.contact-direct .strong:hover { color: var(--accent); }

.contact-form {
    background: #fff; border: 1px solid var(--line-strong); padding: 1.25rem;
    display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.field label {
    display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: #3F3F46; margin-bottom: 0.5rem; font-weight: 600;
}
.field .required { color: var(--accent); }
.field input, .field textarea {
    width: 100%; border: 1px solid var(--line-strong); background: var(--bg);
    padding: 0.85rem 0.85rem; font-family: inherit; font-size: 16px; /* 16px to prevent iOS zoom */
    color: var(--ink); border-radius: 0;
    transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 110px; }
.field.full { grid-column: 1 / -1; }
.hp-field { position: absolute; left: -9999px; }

.form-foot { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 1rem; align-items: stretch; padding-top: 0.5rem; }
.form-foot .btn { width: 100%; }
.form-status { grid-column: 1 / -1; min-height: 1.5em; font-size: 0.875rem; }
.form-status.is-success { color: #16a34a; }
.form-status.is-error { color: var(--accent); }

/* ============================================================================ */
/* Footer                                                                       */
/* ============================================================================ */
.site-footer { background: var(--ink); color: #fff; overflow: hidden; }
.footer-inner { padding: 3rem 1rem 1.5rem; }
.footer-grid {
    display: flex; flex-direction: column; gap: 2rem;
    padding-bottom: 2rem; border-bottom: 1px solid #27272A;
}
.footer-brand .footer-tagline { color: #A1A1AA; max-width: 100%; margin: 1rem 0 0; font-size: 0.875rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; }
.footer-col a { color: #fff; transition: color .2s ease; }
.footer-col a:hover, .footer-col a:active { color: var(--accent); }
.footer-title {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: #71717A; margin: 0 0 0.75rem; font-weight: 600;
}
.footer-col address { font-style: normal; }
.footer-mega { text-align: center; padding: 2rem 0; line-height: 0.85; }
.footer-mega span {
    font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 0.85;
    letter-spacing: -0.04em; font-size: 18vw;
    text-transform: uppercase; color: rgba(255,255,255,0.95);
    display: inline-block;
}
.footer-bottom {
    display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1.5rem; border-top: 1px solid #27272A;
    color: #71717A; font-size: 0.75rem; text-align: center;
}
.footer-tag { letter-spacing: 0.2em; text-transform: uppercase; }

/* Single product */
.product-single { padding-top: calc(var(--header-h) + 1.5rem); }
.product-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.product-media { background: #F4F4F5; border: 1px solid var(--line-strong); aspect-ratio: 4/5; overflow: hidden; position: relative; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media-fallback {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: #F4F4F5;
}
.product-media-fallback img { object-fit: cover; }
.product-info { display: flex; flex-direction: column; gap: 1rem; }
.product-title { font-size: clamp(1.75rem, 7vw, 3.25rem); text-transform: uppercase; margin: 0.25rem 0; line-height: 1; }
.product-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.meta-pill {
    padding: 0.35rem 0.85rem; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 700; border: 1px solid var(--line-strong); background: #fff;
}
.meta-pill.meta-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.product-content { color: var(--muted); }
.product-cta { display: flex; flex-direction: column; gap: 0.6rem; align-items: stretch; margin-top: 1rem; }
.product-cta .btn { width: 100%; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); animation: reveal .9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
    .reveal, .marquee-track { animation: none !important; opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* Pagination */
.pagination-wrap { margin-top: 2.5rem; }
.nav-links { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.nav-links .page-numbers {
    padding: 0.6rem 0.85rem; border: 1px solid var(--line-strong); font-weight: 600; min-height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
}
.nav-links .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Prose for pages/products */
.prose p { margin: 0 0 1rem; }
.prose h2 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; margin: 1.5rem 0 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin: 0 0 1rem; }
.prose a { color: var(--accent); text-decoration: underline; }

/* ============================================================================ */
/* Responsive — Small tablets (≥ 480px)                                         */
/* ============================================================================ */
@media (min-width: 480px) {
    .container { padding-left: 1.25rem; padding-right: 1.25rem; }
    .hero-ctas { flex-direction: row; flex-wrap: wrap; }
    .hero-ctas .btn { width: auto; flex: 1 1 auto; min-width: 180px; }
    .product-grid-list { grid-template-columns: 1fr 1fr; }
    .footer-bottom { text-align: left; }
}

/* ============================================================================ */
/* Tablets (≥ 640px)                                                            */
/* ============================================================================ */
@media (min-width: 640px) {
    .hero-kicker { flex-direction: row; align-items: center; justify-content: space-between; }
    .hours-list { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
    .form-foot { flex-direction: row; align-items: center; justify-content: space-between; }
    .form-foot .btn { width: auto; }
    .store-info .btn, .collection-cta .btn { width: auto; }
}

/* ============================================================================ */
/* Desktop (≥ 768px)                                                            */
/* ============================================================================ */
@media (min-width: 768px) {
    :root { --header-h: 80px; }
    body { font-size: 17px; }
    .container { padding-left: 2rem; padding-right: 2rem; }
    .py-section { padding-block: 6rem; }
    .hide-mobile { display: inline-flex !important; }

    .header-inner { gap: 1rem; }
    .primary-nav { display: flex; flex: 1 1 auto; justify-content: center; }
    .primary-nav .menu-primary {
        list-style: none; padding: 0; margin: 0;
        display: flex; gap: 2.25rem;
    }
    .primary-nav .menu-primary a {
        font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: #3F3F46;
        transition: color .2s ease;
    }
    .primary-nav .menu-primary a:hover { color: var(--accent); }
    .header-phone { display: inline-flex; padding: 0.85rem 1.25rem; }
    .menu-toggle { display: none; }
    .mobile-nav { display: none !important; }

    .jogoo-logo-mark { width: 42px; height: 42px; }
    .jogoo-logo-letter { font-size: 26px; }
    .jogoo-logo-name { font-size: 22px; }
    .jogoo-logo-sub { font-size: 9.5px; letter-spacing: 0.45em; }

    .hero-section { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 3rem; }
    .hero-bento {
        display: grid; grid-template-columns: repeat(12, 1fr);
        grid-auto-flow: dense; gap: 1rem;
    }
    .bento-title { grid-column: span 8; padding: 2.25rem; aspect-ratio: auto; }
    .bento-portrait { grid-column: span 4; grid-row: span 2; aspect-ratio: auto; min-height: 480px; }
    .bento-stat { grid-column: span 3; padding: 1.5rem; }
    .bento-stat:nth-of-type(2) { grid-column: span 2; }
    .bento-landscape { grid-column: span 3; aspect-ratio: auto; min-height: 180px; }
    .bento-stats-row { display: contents; }
    .hero-title { font-size: clamp(48px, 8vw, 80px); }
    .marquee-track > * { font-size: clamp(1.75rem, 3vw, 2.5rem); gap: 2rem; }

    .section-title { font-size: clamp(2rem, 6vw, 4rem); }
    .brand-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; }
    .brand-features { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .feature-card { padding: 1.75rem; }
    .feature-card h3 { font-size: 1.25rem; margin-top: 0.75rem; }
    .feature-card p { font-size: 0.9rem; }

    .store-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 2.5rem; }
    .contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; }
    .product-grid-list { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

    .collection-cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 2.5rem; }
    .footer-grid {
        display: grid; grid-template-columns: 5fr 3fr 4fr; gap: 3rem; padding-bottom: 3rem;
    }
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
    .footer-mega span { font-size: clamp(3rem, 14vw, 12rem); }

    .contact-form { padding: 2.5rem; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 3rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: clamp(56px, 8vw, 88px); }
    .product-cta { flex-direction: row; align-items: center; }
}

/* Print */
@media print {
    .site-header, .menu-toggle, .mobile-nav, .marquee, .contact-form { display: none !important; }
    body { background: #fff; }
}
