:root {
  --bg: #07080a;
  --bg2: #0e1014;
  --card: #14171d;
  --line: #252a33;
  --text: #f3f4f6;
  --muted: #9aa3af;
  --silver: #c5ccd6;
  --accent: #d4af37;
  --accent2: #e8c76a;
  --max: 58rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--accent2); }
a:hover { color: #fff; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 1.25rem; }
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(7,8,10,.94);
  position: sticky; top: 0; backdrop-filter: blur(10px); z-index: 10;
}
.site-header .wrap {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.brand {
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--text); font-size: .82rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.brand span { color: var(--accent); }
nav {
  display: flex; flex-wrap: wrap; gap: .85rem; font-size: .84rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--accent2); }
.hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,175,55,.16), transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(197,204,214,.08), transparent 40%),
    linear-gradient(180deg, #0c0e12, var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.08; margin: .55rem 0 1rem; max-width: 14ch;
  font-weight: 600;
}
.eyebrow {
  color: var(--accent); letter-spacing: .16em; text-transform: uppercase;
  font-size: .72rem; font-weight: 700;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.lead { color: var(--muted); font-size: 1.12rem; max-width: 36rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.btn {
  display: inline-block; background: var(--accent); color: #111 !important;
  text-decoration: none !important; font-weight: 700; padding: .75rem 1.15rem;
  border-radius: 6px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: .9rem;
}
.btn.secondary {
  background: transparent; color: var(--text) !important;
  border: 1px solid var(--line);
}
.pills {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.pills span {
  border: 1px solid var(--line); padding: .35rem .6rem; border-radius: 999px;
}
section { padding: 2.75rem 0; border-bottom: 1px solid var(--line); }
h2 {
  font-size: 1.7rem; margin: 0 0 1rem; font-weight: 600;
}
h3 {
  margin: 0 0 .4rem; font-size: 1.05rem; font-weight: 600;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
p { color: #d1d5db; }
.grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 1.15rem 1.2rem;
}
.note {
  color: var(--muted); font-size: .88rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  counter-increment: step; position: relative;
  padding: .9rem 0 .9rem 2.7rem; border-bottom: 1px solid var(--line);
  color: #d1d5db;
}
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: .9rem;
  width: 1.7rem; height: 1.7rem; border-radius: 999px;
  background: var(--bg2); border: 1px solid var(--accent);
  color: var(--accent2); display: grid; place-items: center;
  font-size: .8rem; font-weight: 700;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.inventory-empty {
  border: 1px dashed var(--line); border-radius: 14px;
  padding: 2rem 1.25rem; text-align: center; background: var(--bg2);
}
.inventory-empty h3 { margin-bottom: .5rem; }
.site-footer {
  padding: 2rem 0 3rem; color: var(--muted); font-size: .85rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Blog */
.meta {
  color: var(--muted); font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; margin: 2rem 0 .5rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.blog-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.blog-list li {
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--card); padding: 1.1rem 1.2rem; margin-bottom: .85rem;
}
.blog-list a {
  text-decoration: none; color: var(--text); font-weight: 600;
  font-size: 1.1rem; display: block; margin-bottom: .35rem;
}
.blog-list a:hover { color: var(--accent2); }
.blog-list .meta { margin: 0 0 .4rem; }
.prose { max-width: 42rem; }
.prose h2 { font-size: 1.35rem; margin: 2rem 0 .75rem; }
.prose ul { color: #d1d5db; padding-left: 1.2rem; }
.prose li { margin: .4rem 0; }
