:root {
  --ink: #071842;
  --ink-2: #13244c;
  --cream: #fff5df;
  --cream-2: #f8e7bd;
  --paper: #fffaf0;
  --red: #c90716;
  --red-dark: #8f0710;
  --yellow: #f6c635;
  --blue: #9bd7e7;
  --blue-deep: #1d6f8d;
  --coffee: #744624;
  --mint: #d6efe7;
  --line: #10204d;
  --muted: #5b5f69;
  --shadow: 10px 10px 0 rgba(7, 24, 66, 0.16);
  --radius: 6px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 66, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(var(--paper), var(--cream));
  color: var(--ink);
  font-family:
    "Trebuchet MS", "Arial Rounded MT Bold", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

body::before {
  background:
    repeating-linear-gradient(
      90deg,
      var(--red) 0 28px,
      #fff 28px 56px,
      var(--blue) 56px 84px,
      #fff 84px 112px
    );
  content: "";
  display: block;
  height: 11px;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  left: 1rem;
  padding: 0.6rem 0.9rem;
  position: fixed;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.announcement {
  align-items: center;
  background: var(--red);
  color: white;
  display: flex;
  font-size: 0.96rem;
  font-weight: 900;
  gap: 0.7rem;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 3px solid var(--ink);
  column-gap: clamp(1.25rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 88px;
  padding: 0.75rem clamp(1rem, 5vw, 5rem);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-stamp {
  align-items: center;
  background:
    linear-gradient(135deg, transparent 0 46%, var(--blue) 46% 55%, transparent 55%),
    var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--yellow);
  color: var(--red);
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 950;
  height: 54px;
  justify-content: center;
  transform: rotate(-4deg);
  width: 54px;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 0.88;
}

.brand small {
  color: var(--red);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 3.5rem);
  font-size: 0.94rem;
  font-weight: 950;
  text-transform: uppercase;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--red);
}

.cart-button {
  align-items: center;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  gap: 0.45rem;
  justify-self: end;
  min-height: 46px;
  padding: 0.45rem 0.8rem;
  position: relative;
  text-transform: uppercase;
}

.cart-icon {
  font-size: 1.2rem;
}

.cart-count {
  align-items: center;
  background: var(--red);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 950;
  height: 1.25rem;
  justify-content: center;
  left: 1.15rem;
  line-height: 1;
  position: absolute;
  top: -0.45rem;
  width: 1.25rem;
}

.cart-panel {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 28px),
    var(--ink);
  border-bottom: 3px solid var(--ink);
  color: white;
  display: none;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 5vw, 5rem);
}

.cart-panel.is-open {
  display: flex;
}

.cart-panel p {
  margin: 0.35rem 0 0;
}

.cart-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
}

.cart-items li {
  background: var(--paper);
  border: 2px solid var(--yellow);
  color: var(--ink);
  font-weight: 900;
  padding: 0.4rem 0.55rem;
}

.panel-message {
  max-width: 56rem;
}

.panel-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0 0;
  max-width: 30rem;
}

.panel-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid white;
  color: white;
  flex: 1 1 12rem;
  min-height: 48px;
  min-width: 0;
  padding: 0.6rem 0.85rem;
}

.panel-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.panel-form button {
  background: var(--yellow);
  border: 2px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  flex: 0 0 auto;
  font-weight: 950;
  min-height: 48px;
  padding: 0.6rem 1.1rem;
  text-transform: uppercase;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.panel-form button:hover {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
  transform: translate(2px, 2px);
}

.panel-status {
  color: var(--yellow);
  font-weight: 800;
  margin: 0.6rem 0 0;
  min-height: 1.2em;
}

.panel-contact {
  margin: 0.5rem 0 0;
}

.panel-cta-secondary {
  color: #d7e4ef;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.panel-cta-secondary:hover {
  color: white;
}

.panel-close {
  align-self: flex-start;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.1rem;
  padding: 0.1rem 0.4rem;
}

.panel-close:hover {
  color: white;
}

.hero {
  min-height: min(780px, calc(100svh - 139px));
  overflow: hidden;
  position: relative;
}

.hero-photo {
  inset: 0;
  position: absolute;
}

.hero-photo::after {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0 34%, rgba(255, 250, 240, 0.78) 45%, rgba(255, 250, 240, 0.08) 70%),
    linear-gradient(180deg, rgba(7, 24, 66, 0.12), rgba(7, 24, 66, 0));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.hero-copy {
  align-content: center;
  display: grid;
  min-height: min(780px, calc(100svh - 139px));
  max-width: 51rem;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}

.shop-sign {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.35rem);
  letter-spacing: 0;
  line-height: 0.86;
  margin: 0;
  /* xmax-width: 10.4ch; */
  text-shadow: 3px 3px 0 rgba(246, 198, 53, 0.5);
}

.hero-copy > p:not(.shop-sign) {
  color: #1d2440;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 650;
  line-height: 1.42;
  margin: 1.55rem 0 0;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.batch-note {
  color: var(--red-dark);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 1.1rem 0 0;
  max-width: 34rem;
}

.batch-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button,
.product-footer button,
.signup-form button {
  align-items: center;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 56px;
  padding: 0.85rem 1.35rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button-primary,
.signup-form button {
  background: var(--red);
  color: white;
}

.button-secondary {
  background: var(--paper);
  color: var(--ink);
}

.button:hover,
.product-footer button:hover,
.signup-form button:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.sticker {
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 rgba(7, 24, 66, 0.24);
  display: grid;
  font-size: 0.9rem;
  font-weight: 950;
  height: 118px;
  line-height: 1.05;
  /* padding: 1rem; */
  place-items: center;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 118px;
  z-index: 2;
}

.sticker-red {
  background: var(--red);
  color: white;
  right: 8%;
  top: 14%;
  transform: rotate(9deg);
}

.sticker-blue {
  background: var(--blue);
  bottom: 12%;
  color: var(--ink);
  right: 10%;
  transform: rotate(-10deg);
}

.product-section {
  background:
    linear-gradient(var(--cream), var(--cream)),
    var(--cream);
  border-bottom: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  position: relative;
}

.product-section::before {
  background:
    repeating-linear-gradient(
      90deg,
      var(--red) 0 40px,
      #fff 40px 80px,
      var(--yellow) 80px 120px,
      #fff 120px 160px
    );
  border-bottom: 4px solid var(--ink);
  content: "";
  height: 28px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.shelf-heading {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.shelf-heading p {
  color: var(--red);
  font-weight: 950;
  margin: 0;
  text-transform: uppercase;
}

.batch-status {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-weight: 700;
  margin: 1.5rem 0 0;
  padding: 0.75rem 1rem;
}

.shelf-heading h2,
.inside-band h2,
.how-it-works h2,
.story-strip h2,
.signup h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0;
}

.product-shelf {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.product-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 270px 1fr;
  min-height: 550px;
  position: relative;
  transform: rotate(-0.7deg);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:nth-child(2) {
  transform: rotate(0.8deg);
}

.product-card:nth-child(3) {
  transform: rotate(-0.3deg);
}

.product-card:hover {
  box-shadow: 4px 4px 0 rgba(7, 24, 66, 0.18);
  transform: rotate(0deg) translateY(-4px);
}

.product-card-yellow {
  background: #fff1bd;
}

.product-card-blue {
  background: #e2f5fb;
}

.product-image {
  border-bottom: 3px solid var(--ink);
  display: block;
  overflow: hidden;
  position: relative;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.shelf-tag {
  background: var(--red);
  border: 3px solid var(--ink);
  bottom: 0.9rem;
  box-shadow: 4px 4px 0 var(--ink);
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
  left: 0.9rem;
  padding: 0.45rem 0.65rem;
  position: absolute;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.product-copy {
  align-content: space-between;
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

.product-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 0.95;
  margin: 0;
}

.product-copy h3 a {
  text-decoration: none;
}

.product-copy h3 a:hover {
  color: var(--red);
}

.card-more {
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.product-copy p {
  color: var(--ink-2);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.38;
  margin: 0;
}

.product-footer {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.contents-list {
  border-top: 2px dashed var(--ink);
  display: grid;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0.8rem 0 0;
}

.contents-list li {
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 700;
}

.contents-list li::before {
  color: var(--red);
  content: "✓ ";
}

.product-footer strong {
  color: var(--red);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.product-footer strong small {
  color: var(--muted);
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-footer button {
  background: var(--paper);
  min-height: 48px;
  min-width: 98px;
  padding: 0.45rem 0.75rem;
  white-space: nowrap;
}

.inside-band {
  background:
    radial-gradient(circle at 20% 18%, rgba(246, 198, 53, 0.36), transparent 18rem),
    linear-gradient(135deg, #0b1a42, #123b5d);
  color: white;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  padding: clamp(2.75rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem);
}

.receipt {
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(7, 24, 66, 0.09) 31px 33px),
    var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 9px 9px 0 var(--yellow);
  color: var(--ink);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  transform: rotate(-1deg);
}

.receipt-top {
  border-bottom: 2px dashed var(--ink);
  color: var(--red);
  font-weight: 950;
  margin: 0 0 1rem;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
}

.receipt ul {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.receipt li {
  font-weight: 800;
}

.receipt li::before {
  color: var(--red);
  content: "✓ ";
}

.translation-guide {
  align-self: center;
}

.translation-guide h3 {
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  margin: 0 0 1.25rem;
}

.translation-guide dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.translation-guide div {
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
}

.translation-guide dt {
  font-size: 1.25rem;
  font-weight: 950;
  text-transform: uppercase;
}

.translation-guide dd {
  color: #d9e7ef;
  line-height: 1.45;
  margin: 0.25rem 0 0;
}

.how-it-works {
  background:
    linear-gradient(90deg, rgba(155, 215, 231, 0.9), rgba(255, 245, 223, 0.9)),
    var(--blue);
  border-bottom: 4px solid var(--ink);
  padding: clamp(2.75rem, 5vw, 4.75rem) clamp(1rem, 5vw, 5rem);
}

.how-it-works > div {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.how-it-works ol {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.how-it-works li {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(7, 24, 66, 0.14);
  min-height: 170px;
  padding: 1.25rem;
}

.how-it-works li:nth-child(2) {
  background: #fff0b9;
}

.how-it-works span {
  align-items: center;
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-weight: 950;
  height: 46px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 46px;
}

.how-it-works strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 950;
}

.how-it-works p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.4;
  margin: 0.35rem 0 0;
}

.story-strip {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 5vw, 5rem);
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem);
}

.postcard {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 9px 9px 0 var(--red);
  min-height: 260px;
  padding: 1.5rem;
  transform: rotate(-4deg);
}

.postcard span {
  color: var(--blue-deep);
  font-size: 3rem;
}

.postcard p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  margin: 1.5rem 0 0;
}

.story-strip p {
  color: var(--muted);
  font-size: 1.13rem;
  font-weight: 650;
  line-height: 1.55;
  margin: 1rem 0 0;
}

.faq {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1rem, 5vw, 5rem);
}

.faq .shelf-heading {
  margin-top: 0;
}

.faq .shelf-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.faq details {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(7, 24, 66, 0.14);
}

.faq details[open] {
  box-shadow: 5px 5px 0 var(--yellow);
}

.faq summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 950;
  padding: 1rem 1.15rem;
  text-transform: uppercase;
}

.faq summary::marker {
  color: var(--red);
}

.faq details p {
  border-top: 2px dashed var(--ink);
  color: var(--ink-2);
  font-weight: 650;
  line-height: 1.5;
  margin: 0;
  padding: 0.9rem 1.15rem 1.1rem;
}

.lore-band {
  background: var(--mint);
  border-bottom: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
}

.lore-band .shelf-heading {
  margin-top: 0;
}

.lore-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.lore-cards article {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(7, 24, 66, 0.14);
  display: grid;
  gap: 0.6rem;
  padding: 1.25rem;
}

.lore-cards h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 0.95;
  margin: 0;
}

.lore-cards h3 a {
  text-decoration: none;
}

.lore-cards h3 a:hover {
  color: var(--red);
}

.lore-cards p {
  color: var(--ink-2);
  font-weight: 650;
  line-height: 1.45;
  margin: 0;
}

.lore-cards .card-more {
  justify-self: start;
}

.corporate-strip {
  align-items: center;
  background:
    repeating-linear-gradient(-45deg, rgba(7, 24, 66, 0.04) 0 18px, transparent 18px 36px),
    var(--cream-2);
  border-bottom: 4px solid var(--ink);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 5vw, 5rem);
}

.corporate-strip h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 0.95;
  margin: 0 0 0.5rem;
}

.corporate-strip p {
  color: var(--ink-2);
  font-weight: 650;
  line-height: 1.5;
  margin: 0;
  max-width: 44rem;
}

.tier-note {
  background: var(--mint);
  border: 3px solid var(--ink);
  font-weight: 650;
  margin-top: 1.25rem;
  max-width: 32rem;
  padding: 0.85rem 1rem;
}

.signup {
  align-items: center;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 30px, transparent 30px 60px),
    var(--red);
  color: white;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(220px, 0.82fr) minmax(320px, 1fr);
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 5vw, 5rem);
  position: relative;
}

.signup .shop-sign {
  color: var(--yellow);
}

.signup h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.signup p {
  margin: 0.5rem 0 0;
}

.signup-form {
  display: flex;
  justify-self: stretch;
}

.hp-field {
  left: -9999px;
  position: absolute;
}

.signup-form input {
  border: 3px solid var(--ink);
  min-height: 58px;
  min-width: 0;
  padding: 0.9rem 1rem;
  width: 100%;
}

.signup-form button {
  background: var(--yellow);
  color: var(--ink);
  flex: 0 0 auto;
  min-width: 13rem;
}

.signup-status {
  bottom: 0.65rem;
  color: var(--yellow);
  font-weight: 950;
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 5vw, 5rem);
}

.site-footer span {
  color: #c6d5de;
  display: block;
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  font-weight: 950;
  gap: 1.5rem;
  text-transform: uppercase;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.policy-main {
  margin: 0 auto;
  max-width: 46rem;
  padding: clamp(2rem, 5vw, 4rem) 1rem 4rem;
}

.policy-main h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.95;
  margin: 0 0 0.5rem;
}

.policy-updated {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 0 0 2rem;
  text-transform: uppercase;
}

.policy-main h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  margin: 2rem 0 0.5rem;
}

.policy-main p,
.policy-main li {
  color: var(--ink-2);
  font-weight: 550;
  line-height: 1.6;
}

.policy-main .back-link {
  display: inline-block;
  font-weight: 950;
  margin-top: 2.5rem;
  text-transform: uppercase;
}

.box-hero {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
}

.box-hero figure {
  margin: 0;
}

.box-hero img {
  aspect-ratio: 3 / 2;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  object-fit: cover;
  transform: rotate(-1deg);
  width: 100%;
}

.box-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 0.9;
  margin: 0;
  text-shadow: 3px 3px 0 rgba(246, 198, 53, 0.5);
}

.box-price {
  color: var(--red);
  font-size: 2.2rem;
  font-weight: 950;
  margin: 1.25rem 0 0;
}

.box-price small {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.box-pitch {
  color: #1d2440;
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.5;
  margin: 1.25rem 0 0;
  max-width: 32rem;
}

.box-hero .hero-actions {
  margin-top: 1.75rem;
}

.item-section {
  background: var(--cream);
  border-bottom: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
}

.item-section > p {
  color: var(--ink-2);
  font-weight: 650;
  max-width: 46rem;
}

.item-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.item-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(7, 24, 66, 0.14);
  display: grid;
  gap: 0.5rem;
  padding: clamp(1.1rem, 3vw, 1.75rem);
}

.art-slot {
  background: var(--paper);
  border: 3px solid var(--ink);
  height: 128px;
  margin: 0;
  overflow: hidden;
  transform: rotate(-2deg);
  width: 128px;
}

.art-slot img {
  aspect-ratio: 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.item-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 0.95;
  margin: 0;
}

.origin-tag {
  background: var(--blue);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  justify-self: start;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  text-transform: uppercase;
}

.item-card > p {
  color: var(--ink-2);
  font-weight: 650;
  line-height: 1.5;
  margin: 0;
}

.item-story {
  border-left: 4px solid var(--yellow);
  margin-top: 0.35rem;
  padding-left: 1rem;
}

.item-story h4 {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  margin: 0 0 0.3rem;
  text-transform: uppercase;
}

.item-story p {
  color: var(--ink-2);
  font-weight: 550;
  line-height: 1.55;
  margin: 0;
}

.exactness-note {
  background: var(--paper);
  border: 3px dashed var(--ink);
  font-weight: 650;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
}

.box-meta {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
}

.box-meta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 0.95;
  margin: 0 0 0.75rem;
}

.box-meta p,
.box-meta li {
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1.55;
}

.related-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(246, 198, 53, 0.3), transparent 16rem),
    linear-gradient(135deg, #0b1a42, #123b5d);
  color: white;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 5vw, 5rem);
}

.related-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 1rem;
}

.related-band a {
  color: var(--yellow);
  font-weight: 900;
}

.recipe-main {
  margin: 0 auto;
  max-width: 46rem;
  padding: clamp(2rem, 5vw, 4rem) 1rem 4rem;
}

.recipe-main h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.92;
  margin: 0 0 0.5rem;
  text-shadow: 3px 3px 0 rgba(246, 198, 53, 0.5);
}

.recipe-main h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 2.25rem 0 0.5rem;
}

.recipe-main p,
.recipe-main li {
  color: var(--ink-2);
  font-weight: 550;
  line-height: 1.6;
}

.recipe-kicker {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.recipe-card-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.recipe-card-list .art-slot {
  background: var(--paper);
  border: 3px solid var(--ink);
  display: block;
  height: auto;
  margin: 0 0 0.5rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  transform: none;
  width: 100%;
}

.recipe-card-list .art-slot img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.recipe-card-list .art-slot figcaption {
  background: rgba(255, 250, 235, 0.92);
  border-top: 2px solid var(--ink);
  color: var(--ink-2);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  padding: 0.35rem 0.5rem;
  text-transform: uppercase;
}

.recipe-card-list .art-slot figcaption a {
  color: var(--ink);
}

.recipe-hero {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
  margin: 1.75rem 0 2rem;
  overflow: hidden;
}

.recipe-hero img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.recipe-hero figcaption {
  background: rgba(255, 250, 235, 0.94);
  border-top: 2px solid var(--ink);
  color: var(--ink-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  padding: 0.45rem 0.6rem;
  text-transform: uppercase;
}

.recipe-hero figcaption a {
  color: var(--ink);
}

.recipe-ingredients {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
  padding: 1.25rem 1.5rem;
}

.recipe-ingredients h3 {
  border-bottom: 2px dashed var(--ink);
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  margin: 0 0 0.75rem;
  padding-bottom: 0.6rem;
  text-transform: uppercase;
}

.recipe-ingredients ul {
  display: grid;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recipe-ingredients li::before {
  color: var(--red);
  content: "✓ ";
}

.recipe-steps {
  margin: 1rem 0 0;
  padding-left: 1.3rem;
}

.recipe-steps li {
  margin-bottom: 0.7rem;
}

.recipe-cta {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 30px, transparent 30px 60px),
    var(--red);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  color: white;
  margin-top: 2.5rem;
  padding: 1.5rem;
}

.recipe-cta h2 {
  color: white;
  margin: 0 0 0.5rem;
}

.recipe-cta p {
  color: #ffe9ea;
  margin: 0 0 1rem;
}

.recipe-cta .button {
  background: var(--yellow);
  color: var(--ink);
}

.lore-note {
  background: var(--mint);
  border: 3px solid var(--ink);
  font-weight: 600;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
}

.lore-note strong {
  color: var(--red);
  text-transform: uppercase;
}

.error-main {
  display: grid;
  min-height: 60vh;
  place-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.error-main h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.9;
  margin: 0;
  text-shadow: 3px 3px 0 rgba(246, 198, 53, 0.5);
}

.error-main p {
  font-size: 1.15rem;
  font-weight: 650;
}

.error-main .button {
  justify-self: center;
  margin-top: 1.5rem;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 0.5rem;
  }

  .primary-nav {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 0.35rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    height: 440px;
    position: relative;
  }

  .hero-photo::after {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.08), var(--paper));
  }

  .hero-copy {
    min-height: auto;
    padding-top: 2.25rem;
  }

  .sticker {
    display: none;
  }

  .product-shelf {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 330px;
  }

  .product-image {
    border-bottom: 0;
    border-right: 3px solid var(--ink);
  }
}

@media (max-width: 760px) {
  body::before {
    height: 8px;
  }

  .announcement {
    font-size: 0.76rem;
    line-height: 1.25;
    min-height: 42px;
  }

  .site-header {
    min-height: 76px;
    padding: 0.7rem 1rem;
  }

  .brand-stamp {
    height: 42px;
    width: 42px;
  }

  .brand strong {
    font-size: 1.45rem;
  }

  .cart-button {
    min-height: 40px;
    padding: 0.4rem 0.62rem;
  }

  .cart-button span:last-child {
    display: none;
  }

  .cart-panel.is-open {
    display: block;
  }

  .hero-photo {
    height: 330px;
  }

  .hero-photo img {
    object-position: 62% center;
  }

  .hero-copy {
    padding: 1.75rem 1rem 2.25rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.15rem);
    /* max-width: 10ch; */
  }

  .hero-copy > p:not(.shop-sign) {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-section {
    padding: 2rem 1rem;
  }

  .shelf-heading {
    align-items: start;
    display: grid;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: auto;
    transform: rotate(0deg) !important;
  }

  .product-image {
    border-bottom: 3px solid var(--ink);
    border-right: 0;
    min-height: 235px;
  }

  .inside-band,
  .story-strip,
  .signup,
  .faq-grid,
  .box-hero,
  .box-meta,
  .lore-cards,
  .corporate-strip {
    grid-template-columns: 1fr;
  }

  .receipt {
    transform: rotate(0deg);
  }

  .how-it-works > div {
    align-items: start;
    display: grid;
  }

  .how-it-works ol {
    grid-template-columns: 1fr;
  }

  .postcard {
    min-height: 220px;
    transform: rotate(0deg);
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-form button {
    width: 100%;
  }

  .signup-status {
    position: static;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
