:root {
  --bg: #0a0d0c;
  --text: #f4f1ea;
  --muted: #8d958f;
  --primary: #c2a05c;
  --line: #1e2422;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
body { display: flex; flex-direction: column; min-height: 100vh; }

header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; border-bottom: 1px solid var(--line); }
header a { color: var(--text); text-decoration: none; font-weight: 600; }
header nav { display: flex; gap: 2rem; }
header nav a:hover { color: var(--primary); }

main { flex: 1; max-width: 1000px; margin: 0 auto; padding: 3rem 2rem; width: 100%; }
section { margin-bottom: 4rem; }

h1 { font-size: 2.2rem; margin: 1rem 0; font-weight: 700; line-height: 1.2; }
h2 { font-size: 1.5rem; margin-bottom: 2rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

.eyebrow { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.hero > p:not(.eyebrow) { color: var(--muted); max-width: 600px; margin: 1rem 0; }

.actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.button { display: inline-block; padding: 0.75rem 1.5rem; background: var(--primary); color: var(--bg); text-decoration: none; border-radius: 0.5rem; font-weight: 600; cursor: pointer; transition: opacity 0.2s; }
.button:hover { opacity: 0.9; }
.button.secondary { background: transparent; color: var(--primary); border: 1px solid var(--primary); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { padding: 1.5rem; border: 1px solid var(--line); border-radius: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

.store-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.store-link { display: inline-flex; flex-direction: column; padding: 1rem 1.5rem; border: 1px solid var(--line); border-radius: 0.5rem; text-decoration: none; color: var(--text); transition: border-color 0.2s; }
.store-link:hover { border-color: var(--primary); }
.store-name { font-weight: 600; margin-bottom: 0.25rem; }
.store-status { color: var(--muted); font-size: 0.85rem; }

.links nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.links nav a { color: var(--text); text-decoration: none; }
.links nav a:hover { color: var(--primary); }

footer { border-top: 1px solid var(--line); padding-top: 2rem; color: var(--muted); font-size: 0.9rem; }

@media (max-width: 600px) {
  header { flex-direction: column; gap: 1rem; text-align: center; }
  h1 { font-size: 1.8rem; }
  .actions { flex-direction: column; }
  .button { width: 100%; text-align: center; }
}
