/* Dude Bikes — design tokens & base
   Brand extracted from dude-bikes.com (Shopify theme vars, 2026-09-11):
   ink #111010 · surface #e8e8e1 · accent #ffcd00 · sale #ff4f33 */
:root {
  --ink: #111010;
  --ink-2: #2b2929;
  --bg: #ffffff;
  --surface: #e8e8e1;
  --surface-2: #f6f6f2;
  --accent: #ffcd00;
  --accent-ink: #111010;
  --sale: #d02e2e;
  --line: #d9d9d0;
  --mut: #5c5c5c;
  --max: 1200px;
  --radius: 14px;
  --font-display: "Archivo", "Helvetica Neue", helvetica, arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto, sans-serif;
  --shadow-1: 0 1px 2px rgba(17,16,16,.06), 0 4px 16px rgba(17,16,16,.06);
  --shadow-2: 0 2px 6px rgba(17,16,16,.10), 0 12px 32px rgba(17,16,16,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: 1.05rem; font-weight: 600; }
.kicker {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink); background: var(--accent);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  padding: 10px 22px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 2px solid var(--ink); cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-ghost { background: transparent; }
.mut { color: var(--mut); }
.section { padding: 64px 0; }
.section-soft { background: var(--surface-2); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head p { margin: 0; max-width: 560px; }
.grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
