:root{
  --bg:#0a0a0a;
  --panel:#111;
  --ink:#f3f3f3;
  --muted:#bdbdbd;
  --brand:#ffcc00;
  --brand-ink:#111;
  --line:#1e1e1e;
  --radius:12px;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}

body{
  background:var(--bg);
  color:var(--ink);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  -webkit-font-smoothing:antialiased;
  padding:24px;
}

.wrap{
  width:100%;
  max-width:920px;
  margin:0 auto;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
}

.site-header .header-inner{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:16px;
}
.header-logo{width:140px;height:auto;display:block}
.header-text h1{
  margin:0 0 6px 0;
  font-size:clamp(1.8rem,4.5vw,2.6rem);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.10em;
}
.kicker{color:var(--muted);font-style:italic}

main,section,footer{border-top:1px solid var(--line);padding-top:16px}

.grid{
  display:grid;
  gap:16px;
  grid-template-columns:1fr;
  align-items:stretch;
  grid-auto-rows:1fr;
}
@media (min-width:720px){
  .grid{grid-template-columns:1fr 1fr}
}

.card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  min-height:200px;
  background:#0f0f0f;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  height:100%;
}
.card h2{
  font-size:clamp(1.1rem,2vw,1.5rem);
  font-weight:900;
  letter-spacing:.04em;
  margin-bottom:8px;
  color:var(--brand);
}
.card p{color:#e6e6e6}

.card .pill,
.card h2,
.card p{
  margin-left:12px;
  margin-right:12px;
}
.card h2{margin-top:2px}
.card p{margin-bottom:0}

.card a.btn:last-child{
  margin-top:auto;
  align-self:stretch;
  text-align:center;
  margin-left:12px;
  margin-right:12px;
  margin-bottom:4px;
}

.pill{
  display:inline-block;
  font-weight:800;
  font-size:.8rem;
  letter-spacing:.06em;
  padding:.28rem .6rem;
  border-radius:999px;
  border:1px solid var(--brand);
  color:var(--brand);
  background:transparent;
  margin-bottom:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.6rem 1rem;
  border-radius:10px;
  text-decoration:none;
  font-weight:900;
  background:var(--brand);
  color:var(--brand-ink);
  border:1px solid #d4a800;
  transition:filter .15s ease, transform .15s ease;
}
.btn:hover{filter:brightness(1.05);transform:translateY(-1px)}
.btn.alt{
  background:transparent;
  color:var(--ink);
  border-color:var(--brand);
}
.btn.alt:hover{color:var(--brand)}

footer{text-align:center;color:var(--muted);font-size:.9rem}

h3{font-size:1.15rem;margin-top:16px;margin-bottom:6px;font-weight:800}
h4{font-size:.98rem;margin-top:10px;margin-bottom:4px;color:var(--muted);text-transform:uppercase;letter-spacing:.05em}

section ul{list-style:none}
section ul li{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:.4rem 0;
  border-bottom:1px dashed #1c1c1c;
}
section ul li:last-child{border-bottom:0}
.price{color:var(--brand);font-weight:900}

a:focus-visible,.btn:focus-visible{outline:3px solid var(--brand);outline-offset:2px}

@media (max-width:700px){
  .site-header .header-inner{flex-direction:column;text-align:center}
  .header-logo{width:96px}
  .wrap{padding:16px}
}

.header-home-link {
  display:inline-block;
  text-decoration:none;
  border:none;
}
.header-home-link img.header-logo {
  display:block;
  height:auto;
  max-width:100%;
  cursor:pointer;
}
.header-home-link:hover img.header-logo {
  opacity:0.9;
  transition:opacity 0.2s ease;
}

.site-header { margin: 0 0 16px 0; padding: 16px; }
.site-header.card { min-height: 0; height: auto; }
.site-header .header-inner { margin: 0; padding: 0; gap: 16px; align-items: center; }
.site-header .header-text { margin: 0; }
.site-header .header-text h1 { margin: 0 0 6px 0; }
.site-header::before { display: none; }

.wrap > * + * { margin-top: 0; }
main { margin-top: 0; padding-top: 16px; border-top: 1px solid var(--line); }

