:root {
  --slate-1: #2a2d34;
  --slate-2: #3c4250;
  --ink: #e9ecf2;
  --muted: rgba(233, 236, 242, 0.78); /* spec said 0.65; raised to 0.78 for WCAG AA contrast headroom — do not lower */
  --hair: rgba(255, 255, 255, 0.12);
  --fill: rgba(255, 255, 255, 0.06);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--slate-1), var(--slate-2));
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 1.6;
  padding: 24px;
}
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 0.85rem;
}
.wordmark { text-align: center; }
.cart { text-align: right; }
.topbar a, .foot a { color: inherit; text-decoration: none; }
.wordmark { letter-spacing: 0.3em; font-size: 1rem; }
.cart { color: var(--muted); }
.brandline {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
}
.shop { max-width: 760px; margin: 0 auto; }
.shop-mount[data-shopify-placeholder="true"] {
  border: 1px solid var(--hair);
  background: var(--fill);
  border-radius: 6px;
  padding: 64px 24px;
  text-align: center;
}
.shop-soon { font-size: 1.3rem; letter-spacing: 0.08em; }
.shop-note { color: var(--muted); font-size: 0.85rem; margin-top: 10px; }
.shop-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.foot {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
@media (min-width: 480px) {
  .shop-grid { grid-template-columns: 1fr 1fr; }
}
