:root {
  --ink: #1A1A1A;
  --ink-soft: rgba(26,26,26,0.75);
  --muted: #7a7a7a;
  --line: #e8e6e1;
  --bg: #faf9f6;
  --card: #fff;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; }
header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
.nav { max-width: 1280px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 22px; display: block; }
.nav-actions { display: flex; gap: 24px; align-items: center; font-size: 13px; letter-spacing: 0.04em; }
.nav-actions a, .nav-actions button { color: var(--ink); text-decoration: none; background: none; border: none; cursor: pointer; font: inherit; padding: 6px 0; letter-spacing: 0.04em; }
.nav-actions a:hover, .nav-actions button:hover { opacity: 0.65; }
.btn-secondary { padding: 10px 22px; background: #fff; color: var(--ink) !important; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--ink); cursor: pointer; transition: all 0.15s; display: inline-block; text-decoration: none; }
.btn-secondary:hover { background: var(--ink); color: #fff !important; }
.btn { padding: 10px 22px; background: var(--ink); color: #fff !important; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--ink); cursor: pointer; text-decoration: none; transition: all 0.15s; display: inline-block; }
.btn:hover { background: #fff; color: var(--ink) !important; }

.crumb { max-width: 1280px; margin: 0 auto; padding: 24px 32px 0; font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--ink); }

.brand-hero {
  max-width: 1280px; margin: 0 auto; padding: 32px 32px 16px;
}
.brand-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.brand-title { font-size: 56px; line-height: 1; letter-spacing: -0.03em; font-weight: 800; margin: 0 0 18px; text-transform: uppercase; }
.brand-tagline { font-size: 18px; line-height: 1.4; color: var(--ink); font-weight: 500; margin: 0 0 24px; max-width: 720px; }
.brand-intro { font-size: 14px; line-height: 1.7; color: var(--ink-soft); max-width: 760px; margin: 0; }
.brand-stats { display: flex; gap: 24px; margin: 28px 0 8px; font-size: 12px; letter-spacing: 0.04em; color: var(--muted); border-top: 1px solid var(--line); padding-top: 20px; }
.brand-stats strong { color: var(--ink); display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; font-variant-numeric: tabular-nums; }

.section-head { max-width: 1280px; margin: 24px auto 16px; padding: 0 32px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.section-head h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.section-head .meta { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }

main { max-width: 1280px; margin: 0 auto; padding: 0 32px 64px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--line); transition: all 0.2s; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.card:hover { border-color: var(--ink); }
.card-img { aspect-ratio: 1/1; background: #f4f2ed; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img.placeholder { color: var(--muted); font-size: 32px; opacity: 0.3; }
.card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.card-brand { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); font-weight: 600; margin-bottom: 6px; }
.card-name { font-size: 13px; line-height: 1.4; flex-grow: 1; margin-bottom: 14px; color: var(--ink); font-weight: 400; }
.card-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 12px; font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.stock-pill { padding: 3px 8px; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.stock-pill.in { background: #f0f4ec; color: #2d5016; }
.stock-pill.low { background: #fdf6e3; color: #8a6d1d; }
.stock-pill.out { background: #faeded; color: #842020; }
.price { font-size: 18px; font-weight: 700; color: var(--ink); margin: 4px 0 12px; letter-spacing: -0.01em; }
.price small { font-size: 10px; font-weight: 400; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; margin-left: 4px; }
.price-locked { background: #f4f2ed; padding: 10px 12px; font-size: 11px; color: var(--muted); text-align: center; margin: 8px 0 12px; cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase; }

footer { margin-top: 64px; padding: 48px 32px; background: var(--ink); color: rgba(255,255,255,0.7); text-align: center; font-size: 12px; letter-spacing: 0.04em; }
footer img { height: 18px; margin-bottom: 16px; opacity: 0.85; }
footer .footer-line { margin: 6px 0; }

@media (max-width: 880px) {
  .nav { padding: 16px 20px; flex-wrap: wrap; gap: 8px; }
  .nav-actions { gap: 14px; font-size: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-actions a, .nav-actions button { padding: 4px 0; }
  .crumb, .brand-hero, .section-head, main { padding-left: 20px; padding-right: 20px; }
  .brand-title { font-size: 36px; }
  .brand-tagline { font-size: 16px; }
}
@media (max-width: 520px) {
  .nav-actions { gap: 12px; font-size: 11.5px; }
  .nav-actions .btn-secondary { padding: 8px 14px; font-size: 11px; }
}
