:root {
  --ink: #17201d;
  --green: #153b32;
  --green-light: #eaf1ee;
  --red: #b9322b;
  --cream: #f7f3e9;
  --white: #fff;
  --muted: #5f6965;
  --line: #d9dfdc;
  --radius: 12px;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: 1rem; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1100px, calc(100% - 32px)); margin-inline: auto; }
.topbar { background: var(--green); color: var(--white); font-size: .88rem; }
.topbar-row { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar a { color: var(--white); font-weight: 700; text-decoration: none; }
.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); }
.nav { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { color: var(--green); font-size: 1.02rem; font-weight: 800; text-decoration: none; }
.brand span { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 1.25rem; }
.nav-links a { font-size: .92rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"] { color: var(--red); }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 0; border-radius: 8px; padding: .72rem 1.05rem; background: var(--red); color: var(--white); font-weight: 800; line-height: 1.2; text-decoration: none; }
.button:hover { background: #952720; }
.button.secondary { border: 1px solid var(--green); background: transparent; color: var(--green); }
.page-hero { padding: 68px 0; background: var(--cream); }
.eyebrow { margin: 0 0 .55rem; color: var(--red); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--green); line-height: 1.15; }
h1 { max-width: 760px; margin-bottom: 1rem; font-size: clamp(2.5rem, 6vw, 4.4rem); letter-spacing: -.04em; }
h2 { margin-bottom: .7rem; font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -.03em; }
.lead { max-width: 720px; margin: 0 0 1.4rem; color: var(--muted); font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; }
section { padding: 72px 0; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading p:last-child { margin: 0; color: var(--muted); }
.empty-state { padding: clamp(2rem, 7vw, 5rem); border: 1px dashed #aebbb5; border-radius: var(--radius); background: #f8faf9; text-align: center; }
.empty-state h2 { margin-bottom: .5rem; }
.empty-state p { max-width: 660px; margin: 0 auto 1.35rem; color: var(--muted); }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.listing-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.listing-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.listing-body { padding: 1.15rem; }
.listing-price { margin: 0 0 .25rem; color: var(--red); font-size: 1.35rem; font-weight: 800; }
.listing-body p { color: var(--muted); }
.merch-hero { min-height: 66vh; display: grid; place-items: center; padding: 60px 0; background: var(--cream); text-align: center; }
.merch-logo { width: min(260px, 70vw); margin: 0 auto 1.4rem; clip-path: circle(47.5% at 50% 50%); }
.merch-hero h1 { margin-inline: auto; }
.merch-hero .lead { margin-inline: auto; }
.merch-hero .actions { justify-content: center; }
footer { padding: 32px 0; border-top: 1px solid var(--line); }
.footer-row { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .9rem; }
.footer-row strong { color: var(--green); }

@media (max-width: 820px) {
  .site-header { position: static; }
  .nav { align-items: flex-start; flex-direction: column; padding: .75rem 0; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: .25rem; }
  .nav-links .button { display: none; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 24px, 1100px); }
  .topbar-row { padding: .45rem 0; align-items: flex-start; flex-direction: column; gap: .1rem; }
  .page-hero { padding: 46px 0; }
  section { padding: 56px 0; }
  .listing-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
}
