:root {
  --bg: #0a0a0a;
  --panel: #181818;
  --panel-2: #232323;
  --paper: #f5f5f3;
  --ink-light: #f3f3f0;
  --ink-soft: #8a8580;
  --rule: #2a2a2a;
  --accent: #ff5a1f;
  --accent-bright: #ff7d3a;
  --green: #29d96b;
  --sans: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', 'Iosevka', Menlo, 'SF Mono', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink-light); line-height: 1.55; -webkit-font-smoothing: antialiased; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-bright); }

/* Ticker tape */
.ticker { background: var(--accent); color: var(--bg); padding: 8px 0; overflow: hidden; white-space: nowrap; font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.ticker-inner { display: inline-block; animation: tickerScroll 30s linear infinite; }
.ticker-inner span { margin-right: 32px; }
.ticker-inner span::after { content: '•'; margin-left: 32px; color: var(--bg); opacity: 0.5; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

header.streetwear { padding: 18px 0; background: var(--bg); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 10; }
header.streetwear .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.brand-block { display: flex; align-items: center; gap: 12px; }
.brand-square { width: 38px; height: 38px; background: var(--accent); color: var(--bg); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; letter-spacing: -0.02em; transform: rotate(-6deg); }
.brand { font-family: var(--sans); font-size: 22px; font-weight: 900; color: var(--ink-light); letter-spacing: -0.02em; text-transform: uppercase; text-decoration: none; }
.brand small { display: inline-block; margin-left: 8px; padding: 2px 8px; font-size: 9px; font-weight: 800; letter-spacing: 0.18em; background: var(--accent); color: var(--bg); }
header.streetwear nav a { color: var(--ink-light); margin-left: 22px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; }
header.streetwear nav a:hover { color: var(--accent); }

/* Hero */
.streetwear-hero { padding: 64px 0 56px; position: relative; overflow: hidden; }
.streetwear-hero::before { content: 'HYPE'; position: absolute; top: 50%; left: -5%; transform: translateY(-50%); font-size: 320px; font-weight: 900; color: rgba(255,90,31,0.06); line-height: 0.85; letter-spacing: -0.05em; pointer-events: none; }
.streetwear-hero .container { position: relative; z-index: 1; }
.streetwear-hero .pill { display: inline-block; padding: 6px 14px; background: var(--green); color: var(--bg); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.streetwear-hero h1 { font-family: var(--sans); font-size: 76px; line-height: 0.95; font-weight: 900; color: var(--ink-light); margin-bottom: 18px; letter-spacing: -0.04em; max-width: 14ch; text-transform: uppercase; }
.streetwear-hero h1 span { color: var(--accent); }
.streetwear-hero .sub { font-size: 17px; color: var(--ink-soft); max-width: 56ch; line-height: 1.65; margin-bottom: 28px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-orange { background: var(--accent); color: var(--bg); padding: 14px 28px; font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; }
.btn-orange:hover { background: var(--accent-bright); color: var(--bg); }
.btn-ghost-dark { background: transparent; color: var(--ink-light); border: 1px solid var(--ink-light); padding: 13px 26px; font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; }
.btn-ghost-dark:hover { background: var(--ink-light); color: var(--bg); }

/* Just-in grid */
.justin { padding: 72px 0; border-top: 1px solid var(--rule); }
.section-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.section-eyebrow { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 900; color: var(--ink-light); letter-spacing: -0.02em; text-transform: uppercase; }
.section-meta { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }
.kicks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kick { background: var(--panel); border: 1px solid var(--rule); text-decoration: none; color: var(--ink-light); display: flex; flex-direction: column; transition: transform 0.15s, border-color 0.15s; }
.kick:hover { transform: translateY(-3px); border-color: var(--accent); }
.kick-image { aspect-ratio: 1; background: var(--panel-2); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.kick-image::after { content: ''; width: 70%; aspect-ratio: 2/1; background: linear-gradient(135deg, var(--accent) 0%, #b22b00 100%); border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%; opacity: 0.85; }
.kick-image.green::after { background: linear-gradient(135deg, var(--green) 0%, #15743a 100%); }
.kick-image.gray::after { background: linear-gradient(135deg, #6a6a6a 0%, #2a2a2a 100%); }
.kick-image.white::after { background: linear-gradient(135deg, var(--paper) 0%, #a0a0a0 100%); }
.kick-tag { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--bg); padding: 3px 8px; font-size: 9px; font-weight: 800; letter-spacing: 0.14em; }
.kick-body { padding: 16px 18px 20px; }
.kick h3 { font-size: 14px; font-weight: 800; color: var(--ink-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: -0.01em; }
.kick .size { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); margin-bottom: 8px; }
.kick .price { font-family: var(--mono); font-size: 14px; color: var(--accent); font-weight: 700; }

/* Consign */
.consign-band { background: var(--accent); color: var(--bg); padding: 64px 0; }
.consign-band .container { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: center; }
.consign-band h2 { font-size: 42px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; text-transform: uppercase; margin-bottom: 16px; }
.consign-band p { font-size: 16px; line-height: 1.65; max-width: 60ch; color: rgba(0,0,0,0.78); }
.consign-band .splits { display: grid; gap: 6px; }
.consign-band .split { background: var(--bg); color: var(--ink-light); padding: 14px 18px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; display: flex; justify-content: space-between; }
.consign-band .split strong { color: var(--accent); }

/* Visit */
.visit-band { padding: 80px 0; background: var(--bg); border-top: 1px solid var(--rule); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.visit-block h3 { font-size: 24px; font-weight: 900; color: var(--ink-light); margin-bottom: 16px; text-transform: uppercase; letter-spacing: -0.01em; }
.visit-block p { color: var(--ink-soft); margin-bottom: 8px; line-height: 1.65; }
.visit-block .address { font-family: var(--mono); font-size: 16px; color: var(--accent-bright); margin-top: 12px; line-height: 1.7; }

footer { background: var(--bg); border-top: 1px solid var(--rule); padding: 48px 0 24px; color: var(--ink-soft); font-family: var(--mono); }
footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; font-size: 12px; letter-spacing: 0.06em; }
footer a { color: var(--accent); }

article.page { padding: 64px 0; max-width: 760px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
article.page .breadcrumb { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); margin-bottom: 16px; letter-spacing: 0.06em; }
article.page .breadcrumb a { color: var(--ink-soft); }
article.page h1 { font-size: 44px; font-weight: 900; color: var(--ink-light); margin-bottom: 24px; line-height: 1.0; letter-spacing: -0.03em; text-transform: uppercase; }
article.page h2 { font-size: 22px; font-weight: 800; color: var(--ink-light); margin-top: 36px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: -0.01em; }
article.page p { margin-bottom: 16px; font-size: 16px; color: var(--ink-soft); line-height: 1.7; }
article.page strong { color: var(--ink-light); }
article.page ul, article.page ol { margin-bottom: 18px; padding-left: 24px; color: var(--ink-soft); }
article.page li { margin-bottom: 8px; }

body > header:not([class]) { padding: 18px 0; border-bottom: 1px solid var(--rule); background: var(--bg); }
body > header:not([class]) .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
body > header:not([class]) .brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 900; color: var(--ink-light); text-transform: uppercase; text-decoration: none; }
body > header:not([class]) .brand-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--accent); }
body > header:not([class]) nav { display: flex; gap: 22px; }
body > header:not([class]) nav a { font-size: 12px; color: var(--ink-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }

@media (max-width: 800px) {
  .streetwear-hero h1 { font-size: 44px; }
  .streetwear-hero::before { font-size: 180px; }
  .kicks-grid { grid-template-columns: 1fr 1fr; }
  .consign-band .container { grid-template-columns: 1fr; gap: 24px; }
  .consign-band h2 { font-size: 32px; }
  .visit-grid { grid-template-columns: 1fr; gap: 24px; }
  header.streetwear nav a { margin-left: 12px; }
}
