:root {
  --ketchup: #9d1f17;
  --mustard: #f4c43a;
  --wall: #b6a766;
  --paper: #f2e8bf;
  --ink: #17130e;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  background: radial-gradient(circle at 20% 20%, #90874e 0%, #5c5738 45%, #353222 100%);
  color: #f8efca;
  line-height: 1.4;
  text-shadow: 1px 1px 0 #000;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,.10) 0, rgba(0,0,0,.10) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: multiply;
  opacity: .5;
}

.grease-banner {
  background: linear-gradient(180deg, #c8362d, var(--ketchup));
  border-top: 8px solid var(--mustard);
  border-bottom: 8px solid var(--mustard);
  box-shadow: inset 0 -8px 18px rgba(0,0,0,.35);
}

.banner-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-size: .95rem;
}

.buy-btn {
  background: var(--mustard);
  color: #1a1300;
  padding: 8px 13px;
  border: 3px solid #1f1300;
  text-decoration: none;
  font-weight: 700;
  transform: rotate(-1deg);
}
.buy-btn:hover { filter: contrast(1.2) saturate(1.2); }

.banner-main { text-align: center; padding: 8px 15px 26px; }
.logo {
  margin: 0 auto 10px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #42531d;
  border: 4px solid #d8c57b;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #d9ca6d;
}

h1 {
  font-size: clamp(2rem, 7vw, 5.4rem);
  margin: .2rem 0;
  color: #f7e7aa;
  letter-spacing: 2px;
}
.banner-main p {
  margin: .2rem 0;
  font-size: clamp(1rem, 3.4vw, 2rem);
  font-weight: 700;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

section {
  margin: 26px 0;
  padding: 16px;
  border: 4px solid #1f1b11;
  background: rgba(32, 29, 16, 0.65);
  box-shadow: 5px 6px 0 rgba(0,0,0,.5);
}

.hero {
  background: linear-gradient(180deg, rgba(245,226,142,.28), rgba(42,39,22,.76));
}

h2, h3 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: clamp(2rem, 9vw, 6rem);
  margin-bottom: 10px;
  color: #ffefac;
}

.hero-card {
  border: 4px dashed #1d1708;
  background: rgba(25, 20, 8, .5);
  padding: 14px;
}
.wageie {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.paper {
  background: var(--paper);
  color: var(--ink);
  padding: 16px;
  border: 3px solid #5b4f28;
  transform: rotate(-.8deg);
  text-shadow: none;
}

.menu-box {
  background: #13190f;
  border: 4px solid #6a5a2f;
  padding: 16px;
}

.manual li,
.menu-box p,
.timeline .shift,
.paper p {
  margin: 10px 0;
}

.timeline {
  border-left: 5px solid var(--mustard);
  padding-left: 18px;
}
.shift span {
  display: inline-block;
  width: 88px;
  color: var(--mustard);
  font-weight: 700;
}

footer {
  background: #050505;
  border-top: 4px solid #c9b35d;
  text-align: center;
  padding: 16px;
  font-size: clamp(1rem, 2.7vw, 1.9rem);
}
