
:root {
  --green: #122C1B;
  --green-deep: #0A2418;
  --green-mid: #1f4a38;
  --gold: #E0AC2E;
  --gold-soft: #E2B63B;
  --cream: #f6efe0;
  --cream-dark: #e8dcc4;
  --ink: #1a1714;
  --muted: #5c5348;
  --white: #fffdf8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
h1, h2, h3, .brand, .footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); }
.skip {
  position: absolute; left: -999px;
}
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem; z-index: 9; }
.site-header {
  background: var(--green);
  color: var(--white);
  position: sticky; top: 0; z-index: 20;
  width: 100%;
}
.header-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 1.2rem 2.85rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}
.brand {
  color: var(--white);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  white-space: nowrap;
  flex: 0 0 auto;
  letter-spacing: 0.01em;
  z-index: 1;
}
.nav {
  display: flex;
  gap: 2.15rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex-wrap: nowrap;
}
.nav a {
  color: var(--white);
  text-decoration: none;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.nav a:hover { color: var(--gold-soft); }
.cart {
  color: var(--gold);
  margin-left: auto;
  display: flex;
  z-index: 1;
}
.cart svg { stroke: currentColor; fill: none; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--gold);
  color: var(--gold); font-size: 1.2rem;
  padding: .2rem .5rem; cursor: pointer;
}
.hero {
  position: relative;
  display: block;
  width: 100%;
  background: var(--green-deep);
  overflow: hidden;
  line-height: 0;
}
.hero-fold {
  position: relative;
  width: 100%;
  display: block;
}
.hero-fold > img {
  width: 100%;
  height: auto;
  display: block;
}
/* Clickable overlays on the baked Shop merch / Play the game buttons. */
.hero-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background: transparent;
}
.hero-hotspot.shop {
  left: 4.69%;
  top: 49.14%;
  width: 12.5%;
  height: 7.6%;
}
.hero-hotspot.play {
  left: 18.49%;
  top: 49.14%;
  width: 14.32%;
  height: 7.6%;
}
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .7rem 1.15rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: .02em;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-green {
  background: var(--green-deep);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.gold-bar {
  background: var(--gold);
  color: #1a1408;
  text-align: center;
  padding: .85rem 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 18px,
    rgba(0,0,0,.08) 18px 20px,
    transparent 20px 38px,
    rgba(0,0,0,.08) 38px 46px
  );
}
.gold-bar span { background: var(--gold); padding: 0 .8rem; }
.section { max-width: 1200px; margin: 0 auto; padding: 3rem 1.2rem; }
.section h2 {
  font-size: 2.2rem;
  margin: 0 0 .4rem;
  color: var(--green);
}
.kicker { color: var(--gold); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
}
.card img {
  width: 100%; aspect-ratio: 1; object-fit: cover; background: #eee;
}
.card .meta { padding: .75rem .85rem 1rem; }
.card h3 { font-size: 1.05rem; margin: 0 0 .35rem; line-height: 1.25; }
.price { font-weight: 600; color: var(--green); }
.page-hero {
  background: var(--green);
  color: var(--white);
  padding: 3rem 1.2rem 2.4rem;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 .4rem; }
.prose { max-width: 760px; }
.prose p { margin: 0 0 1rem; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.gallery img { width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.collection-block { margin: 2.5rem 0 3rem; }
.collection-block h2 { border-bottom: 2px solid var(--gold); padding-bottom: .3rem; display: inline-block; }
.jump { display: flex; flex-wrap: wrap; gap: .45rem .7rem; margin: 1rem 0 0; }
.jump a {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  padding: .25rem .6rem;
  font-size: .85rem;
}
.coming {
  display: inline-block;
  margin-top: .8rem;
  background: var(--cream-dark);
  padding: .45rem .7rem;
  font-size: .9rem;
}
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 2.5rem 1.2rem 1.2rem;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem;
}
.footer-brand { font-size: 1.6rem; margin: 0 0 .4rem; color: var(--gold-soft); }
.site-footer a { color: var(--gold-soft); text-decoration: none; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 1rem; }
.copy { text-align: center; font-size: .85rem; opacity: .75; margin: 2rem 0 0; }
.muted { opacity: .75; font-size: .92rem; }
.audio-wrap {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  align-items: center;
}
audio { width: 100%; }
.blog-list { display: grid; gap: 1rem; }
.blog-item {
  background: var(--white);
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: inherit;
  border-left: 4px solid var(--gold);
}
.blog-item h2 { margin: 0 0 .2rem; font-size: 1.45rem; }
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.product-page img { width: 100%; background: #eee; }
.note { font-size: .92rem; color: var(--muted); }
@media (max-width: 880px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    transform: none;
    background: var(--green);
    padding: 1rem 1.2rem 1.4rem;
    gap: 0.85rem;
  }
  .nav-toggle { display: block; margin-left: auto; }
  .cart { margin-left: .6rem; }
  .footer-inner, .product-page, .audio-wrap { grid-template-columns: 1fr; }
}
