:root {
  --cream: #fff6ee;
  --cream-2: #ffe9d4;
  --orange: #ff6a1a;
  --orange-dark: #d9460b;
  --black: #111111;
  --muted: #7b6657;
  --card: rgba(255, 246, 238, 0.88);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--black);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 106, 26, 0.16), transparent 28rem),
    radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.16), transparent 22rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

button { font: inherit; }
.site-shell { min-height: 100vh; position: relative; overflow: hidden; }
.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17,17,17,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  text-decoration: none;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.08em;
  line-height: 1;
}
.brand b { color: var(--orange); letter-spacing: 0; }
.nav-cta {
  border: 3px solid var(--black);
  color: var(--cream);
  background: var(--black);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.nav-cta:hover { transform: translateY(-2px) rotate(-1deg); background: var(--orange); color: white; }

.hero {
  min-height: 100vh;
  padding: 120px 20px 56px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 1000;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 12px;
}
h1 {
  margin: 0;
  font-size: clamp(52px, 10vw, 138px);
  letter-spacing: -0.08em;
  line-height: .86;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-style: italic;
}
.subhead {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 650;
}

.kitchen {
  position: relative;
  width: min(920px, 94vw);
  height: min(620px, 64vh);
  min-height: 470px;
  margin: 28px auto 0;
  --center-x: 50%;
  --center-y: 50%;
  --orbit-r-x: min(34vw, 315px);
  --orbit-r-y: min(24vw, 215px);
}
.mascot-button, .prop {
  position: absolute;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  filter: none;
}
.mascot-button {
  left: var(--center-x);
  top: calc(var(--center-y) - 22px);
  transform: translate(-50%, -50%);
  width: clamp(210px, 30vw, 380px);
  z-index: 3;
  transition: transform .18s ease;
}
.mascot-button:hover { transform: translate(-50%, -50%) scale(1.035) rotate(1.5deg); }
.mascot { display: block; width: 100%; animation: mascotFloat 4s ease-in-out infinite; }
.prop {
  width: clamp(82px, 10vw, 132px);
  left: calc(var(--center-x) + (cos(var(--angle)) * var(--orbit-r-x)));
  top: calc(var(--center-y) + (sin(var(--angle)) * var(--orbit-r-y)));
  transform: translate(-50%, -50%);
  transform-origin: center;
  z-index: 4;
  transition: transform .18s ease;
}
.prop img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  pointer-events: none;
  animation: float 4.8s ease-in-out infinite;
}
.prop:hover { transform: translate(-50%, -50%) scale(1.12) rotate(-4deg); }
.prop:active { transform: translate(-50%, -50%) scale(.92) rotate(8deg); }
.prop-hat { --angle: 135deg; }
.prop-pan { --angle: -30deg; }
.prop-flame { --angle: 8deg; }
.prop-star { --angle: 45deg; }
.prop-plate { --angle: 178deg; }
.prop-spoon { --angle: 210deg; }
.prop-hat img { animation-delay: -.4s; }
.prop-pan img { animation-delay: -1.2s; }
.prop-spoon img { animation-delay: -.8s; }
.prop-flame img { animation-delay: -2s; }
.prop-plate img { animation-delay: -1.6s; }
.prop-star img { animation-delay: -.2s; }

.hint {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 18px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: white;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 950;
  box-shadow: 6px 6px 0 var(--black);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.hint:hover { transform: translateY(-2px); background: var(--orange); color: white; }

.mini-section
 { padding: 0 20px 80px; }
.steps {
  width: min(1040px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps article {
  background: rgba(255,255,255,.62);
  border: 4px solid var(--black);
  border-radius: 32px;
  padding: 26px;
  text-align: left;
}
.steps span { color: var(--orange); font-weight: 1000; letter-spacing: .12em; }
.steps h2 { margin: 10px 0 6px; font-family: Georgia, serif; font-style: italic; font-size: 40px; letter-spacing: -.06em; }
.steps p { margin: 0; color: var(--muted); font-weight: 700; line-height: 1.45; }

.info-card {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 28px;
  width: min(390px, calc(100vw - 32px));
  transform: translate(-50%, 24px) scale(.96);
  opacity: 0;
  pointer-events: none;
  background: var(--card);
  backdrop-filter: blur(18px);
  border: 5px solid var(--black);
  border-radius: 34px;
  padding: 22px 24px 24px;
  box-shadow: 8px 8px 0 var(--black);
  text-align: center;
  transition: opacity .2s ease, transform .2s ease;
}
.info-card.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, 0) scale(1); }
.close-card, .close-waitlist {
  position: absolute;
  top: 10px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 3px solid var(--black);
  background: white;
  font-size: 24px;
  font-weight: 1000;
  line-height: 1;
  cursor: pointer;
}
.card-icon { width: 78px; height: 78px; object-fit: contain; margin-top: 2px; }
.card-kicker { margin: 8px 0 4px; color: var(--orange); font-size: 12px; font-weight: 1000; letter-spacing: .18em; text-transform: uppercase; }
.card-title { margin: 0; font-family: Georgia, serif; font-style: italic; font-size: 42px; letter-spacing: -.06em; }
.card-copy { margin: 8px 0 0; color: var(--muted); font-weight: 750; line-height: 1.45; }

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17,17,17,.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.waitlist-modal.is-open { opacity: 1; pointer-events: auto; }
.waitlist-panel {
  position: relative;
  width: min(480px, 100%);
  border: 5px solid var(--black);
  border-radius: 40px;
  background: var(--cream);
  padding: 34px;
  text-align: center;
  box-shadow: 10px 10px 0 var(--black);
}
.waitlist-panel img { width: 110px; }
.waitlist-panel h2 { margin: 8px 0; font-family: Georgia, serif; font-style: italic; font-size: 54px; letter-spacing: -.07em; }
.waitlist-panel p { color: var(--muted); font-weight: 700; }
.waitlist-panel form { display: flex; gap: 10px; margin-top: 20px; }
.waitlist-panel input, .waitlist-panel button[type="submit"] {
  border: 3px solid var(--black);
  border-radius: 999px;
  padding: 14px 16px;
  font-weight: 850;
}
.waitlist-panel input { min-width: 0; flex: 1; background: white; }
.waitlist-panel button[type="submit"] { background: var(--orange); color: white; cursor: pointer; }

.sauce-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  overflow: hidden;
}
.sauce-drop {
  position: absolute;
  width: 16px; height: 24px;
  border: 3px solid var(--black);
  border-radius: 70% 70% 80% 80%;
  background: var(--orange);
  transform: translate(-50%, -50%);
  animation: saucePop .78s ease-out forwards;
}

@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes mascotFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@keyframes saucePop {
  0% { opacity: 1; scale: .7; translate: -50% -50%; }
  100% { opacity: 0; scale: 1.1; translate: calc(-50% + var(--x)) calc(-50% + var(--y)); }
}

@media (max-width: 760px) {
  .nav { padding: 18px; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  .hero { padding-top: 100px; }

  /* Mobile-only tightening: brings the tap icons closer to the subhead */
  .kitchen {
    height: 500px;
    min-height: 500px;
    margin-top: -6px;
    --center-y: 49%;
    --orbit-r-x: min(38vw, 160px);
    --orbit-r-y: 198px;
  }

  .mascot-button {
    width: min(62vw, 270px);
    top: calc(var(--center-y) - 12px);
  }

  .prop { width: 76px; }
  .steps { grid-template-columns: 1fr; }
  .waitlist-panel form { flex-direction: column; }
}
