:root {
  --mcd-red: #db0007;
  --mcd-red-deep: #b00005;
  --mcd-yellow: #ffc72c;
  --mcd-yellow-hot: #ffb700;
  --ink: #292929;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --paper: #ffffff;
  --wash: #f7f7f7;
  --dark: #1a1a1a;
  --font: "Nunito", system-ui, sans-serif;
  --display: "Anton", Impact, sans-serif;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* TICKER */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 28px;
  overflow: hidden;
  background: var(--dark);
  color: var(--mcd-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  padding: 0.35rem 0;
  animation: ticker 45s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
}

.ticker .hot {
  color: #ff6b63;
}
.ticker .gold {
  color: var(--mcd-yellow);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* HEADER — mcdonalds + mockup */
.site-header {
  position: sticky;
  top: 28px;
  z-index: 50;
  background: var(--mcd-red);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--mcd-red);
}

.main-nav {
  display: flex;
  gap: 1.15rem;
  margin: 0 auto;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  padding: 0.35rem 0;
  border-bottom: 3px solid transparent;
  opacity: 0.92;
  transition: border-color 0.2s, opacity 0.2s;
}

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
  border-bottom-color: var(--mcd-yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.nav-burger {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-yellow {
  background: var(--mcd-yellow);
  color: #111;
}

.btn-dark {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-lg {
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  animation: heroDrift 20s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 8, 6, 0.88) 0%, rgba(18, 8, 6, 0.55) 42%, rgba(219, 0, 7, 0.35) 72%, rgba(18, 8, 6, 0.7) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 35%, rgba(0, 0, 0, 0.65));
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) 1.25rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.35rem;
  align-items: end;
}

.hero-side {
  display: grid;
  gap: 0.85rem;
}

.stream-card {
  background: rgba(12, 10, 9, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  animation: riseIn 0.85s ease 0.05s both;
}

.stream-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  background: rgba(0, 0, 0, 0.45);
}

.stream-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.5rem;
  border-radius: 5px;
  background: #e60023;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.stream-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: block;
  animation: blink 1s ease infinite;
}

.stream-top-right {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.stream-mute-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  font-size: 0.9rem;
  padding: 0;
  line-height: 1;
}

.stream-mute-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.stream-mute-btn.is-muted {
  opacity: 0.85;
}

.stream-viewers strong {
  font-variant-numeric: tabular-nums;
}

.stream-viewers em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stream-frame {
  position: relative;
  background: #000;
}

.stream-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.stream-unmute {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.stream-unmute[hidden] {
  display: none !important;
}

.stream-card-meta {
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0.7rem 0.7rem;
}

.stream-card-meta strong {
  font-size: 0.88rem;
  font-weight: 900;
  color: #fff;
}

.stream-card-meta span {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.hero-eyebrow {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mcd-yellow);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  animation: riseIn 0.8s ease both;
}

.hero-sub {
  margin: 0.75rem 0 1.35rem;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 700;
  max-width: 28ch;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.live-panel {
  background: rgba(30, 30, 30, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
  animation: riseIn 0.9s ease 0.1s both;
}

.live-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.live-top img {
  border-radius: 8px;
}

.live-top strong {
  display: block;
  font-size: 1.05rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.price {
  font-weight: 900;
  color: #ff6b63;
  font-size: 1.15rem;
}

.chg.up {
  color: #3ddc84;
  font-weight: 800;
  font-size: 0.85rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(61, 220, 132, 0.15);
  color: #3ddc84;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84;
  display: block;
  animation: blink 1.2s ease infinite;
}

@keyframes blink {
  50% {
    opacity: 0.35;
  }
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.live-grid div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
}

.live-grid span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.live-grid strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.live-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.live-status span {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(61, 220, 132, 0.12);
  color: #9dffc0;
}

/* SECTIONS */
section {
  padding: clamp(2.75rem, 6vw, 4.5rem) 1.25rem;
}

.section-head {
  max-width: 1240px;
  margin: 0 auto 1.6rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  margin: 0 0 0.35rem;
  color: var(--mcd-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker.light {
  color: var(--mcd-yellow);
}

h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.lead {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.lead.tight {
  margin-bottom: 1rem;
}

.subhead {
  max-width: 1240px;
  margin: 2rem auto 0.35rem;
  font-size: 1.35rem;
  font-weight: 900;
}

/* STORY */
.story {
  background: #fff;
}

.story-grid {
  max-width: 1240px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.story-copy .lead {
  margin: 0.75rem 0 1.4rem;
}

.story-beats {
  display: grid;
  gap: 0.85rem;
}

.story-beats article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 1rem;
  background: var(--wash);
  border-radius: var(--radius);
  border-left: 4px solid var(--mcd-red);
}

.story-beats span {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--mcd-red);
  line-height: 1;
}

.story-beats h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.story-beats p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.story-shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-shot figcaption {
  padding: 0.9rem 1rem;
  background: var(--dark);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.story-shot strong {
  color: var(--mcd-yellow);
}

.manifesto {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(135deg, var(--mcd-red), var(--mcd-red-deep));
  color: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.manifesto p {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
}

.manifesto cite {
  font-style: normal;
  font-weight: 700;
  color: var(--mcd-yellow);
  font-size: 0.92rem;
}

/* MENU PRODUCTS */
.menu-section {
  background: var(--wash);
}

.product-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.15rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.product.featured {
  border-color: var(--mcd-yellow);
  background: linear-gradient(180deg, #fffcef, #fff);
}

.product-art {
  font-size: 2.6rem;
  margin-bottom: 0.4rem;
  animation: bob 2.6s ease-in-out infinite;
}

@keyframes bob {
  50% {
    transform: translateY(-5px);
  }
}

.product h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.product .tagline {
  margin: 0.2rem 0 0.55rem;
  color: var(--mcd-red);
  font-weight: 900;
}

.product p:not(.tagline) {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.sku {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #999;
}

.menu-chefs {
  max-width: 1240px;
  margin: 2.2rem auto 0;
}

.chef-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.85rem;
}

.hero-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.85rem;
  padding: 0.85rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100px;
  height: 124px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--mcd-yellow);
}

.hero-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--mcd-red);
}

.hero-card .role {
  margin: 0.2rem 0 0.4rem;
  font-weight: 800;
  color: #b8860b;
  font-size: 0.8rem;
}

.hero-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Heroes band — poster alone with copy */
.heroes-band {
  background: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.heroes-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.75rem;
  align-items: center;
}

.heroes-copy p {
  color: var(--muted);
  font-weight: 600;
  font-size: 1.05rem;
  max-width: 40ch;
}

.heroes-copy .btn {
  margin-top: 0.75rem;
}

.heroes-poster {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* Full-bleed selfie break */
.break-shot {
  padding: 0;
  background: var(--dark);
}

.break-shot figure {
  margin: 0;
  position: relative;
}

.break-shot img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  opacity: 0.88;
}

.break-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  max-width: 1240px;
  margin: 0 auto;
}

.break-shot h2 {
  color: var(--mcd-yellow);
  margin-bottom: 0.35rem;
}

.break-shot p {
  margin: 0;
  max-width: 52ch;
  font-weight: 700;
  opacity: 0.92;
}

/* Counter + MVP strip */
.counter-section {
  background: var(--wash);
}

.counter-layout {
  max-width: 1240px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

.counter-layout > img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.counter-bullets {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.counter-bullets li {
  font-weight: 700;
  color: var(--muted);
  padding-left: 0.9rem;
  border-left: 3px solid var(--mcd-yellow);
}

.mvp-strip {
  max-width: 1240px;
  margin: 0 auto;
}

.mvp-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.mvp-card {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.18s ease;
}

.mvp-card:hover {
  transform: translateY(-3px);
}

.mvp-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #222;
}

.mvp-card figcaption {
  padding: 0.45rem 0.5rem 0.55rem;
  background: var(--mcd-yellow);
}

.mvp-card strong {
  display: block;
  font-size: 0.72rem;
  line-height: 1.25;
}

.mvp-card span {
  display: block;
  font-size: 0.62rem;
  opacity: 0.75;
  font-weight: 700;
}

/* KITCHEN GAME */
.kitchen {
  background: #fff;
  border-block: 1px solid var(--line);
}

.game-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1rem;
}

.game-rail {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--wash);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0.55rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.stat strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--mcd-red);
}

.coach {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.helper {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.6rem;
  align-items: center;
  padding: 0.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.helper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--mcd-yellow);
}

.helper p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.game-stage {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--wash);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.order-ticket {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-left: 6px solid var(--mcd-red);
  border-radius: 10px;
}

.ticket-label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--mcd-red);
}

.order-ticket strong {
  font-size: 1.7rem;
  font-weight: 900;
}

.order-ticket span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.stations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.station {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0.8rem 0.5rem;
  background: var(--dark);
  color: #ffe08a;
  text-align: left;
  transition: transform 0.15s, border-color 0.15s;
}

.station span {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mcd-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.station strong {
  display: block;
  font-size: 0.92rem;
}

.station em {
  display: block;
  font-style: normal;
  opacity: 0.7;
  font-size: 0.75rem;
}

.station:not(:disabled):hover {
  transform: translateY(-2px);
  border-color: var(--mcd-yellow);
}

.station.active {
  border-color: var(--mcd-yellow);
  box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.25);
}

.station.done {
  background: #1d3a1f;
  color: #d7ffd4;
}

.station.wrong {
  background: #5a1010;
}

.station:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.fry-viz {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  min-height: 140px;
  border-radius: 14px;
  background: linear-gradient(180deg, #3a1c14, #1a0f0c);
  color: #ffe08a;
}

.fry-pot {
  position: relative;
  width: min(280px, 70%);
  height: 84px;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(180deg, #c48a18, #8a5a08 40%, #5a3a05);
  border: 3px solid #3a2208;
  overflow: hidden;
}

.bubbles::before,
.bubbles::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 240, 180, 0.55);
  animation: bubble 1.4s ease-in-out infinite;
}

.bubbles::before {
  left: 30%;
}
.bubbles::after {
  left: 62%;
  animation-delay: 0.4s;
}

@keyframes bubble {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-48px);
    opacity: 0;
  }
}

.fries {
  position: absolute;
  inset: 18px 20px auto;
  display: flex;
  justify-content: center;
  opacity: 0.25;
  transition: 0.25s ease;
}

.fries::before,
.fries::after {
  content: "";
  width: 10px;
  height: 46px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffe08a, #e0a020);
  box-shadow:
    16px 2px 0 #f0c040,
    -16px 4px 0 #e8b030,
    32px 0 0 #ffd060,
    -32px 3px 0 #d4a020;
}

.fries.stage-0 {
  opacity: 0.2;
}
.fries.stage-1 {
  opacity: 0.45;
  transform: translateY(8px);
}
.fries.stage-2 {
  opacity: 0.8;
}
.fries.stage-3,
.fries.stage-4 {
  opacity: 1;
}
.fries.stage-5 {
  opacity: 1;
  transform: translateY(-16px) scale(1.05);
}

.queue {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.q-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
}

.q-item.next {
  border-color: var(--mcd-red);
  background: #fff1f0;
}

.scenario-grid {
  max-width: 1240px;
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.scenario {
  text-align: left;
  padding: 1.05rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--wash);
  transition: transform 0.15s, border-color 0.15s;
}

.scenario:hover {
  transform: translateY(-2px);
  border-color: var(--mcd-red);
}

.scenario h3 {
  margin: 0 0 0.3rem;
  font-weight: 900;
  color: var(--mcd-red);
}

.scenario p {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.scenario span {
  font-weight: 900;
  color: #b8860b;
  font-size: 0.82rem;
}

/* TV */
.tv {
  background: var(--wash);
}

.tape-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.tape {
  position: relative;
  display: grid;
  gap: 0.3rem;
  text-align: left;
  padding: 0;
  border: 0;
  background: #140c0a;
  color: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tape video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.88;
}

.tape-play {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mcd-red);
  color: #fff;
  font-size: 0.9rem;
}

.tape-ep,
.tape strong,
.tape em {
  padding: 0 0.75rem;
}

.tape-ep {
  margin-top: 0.15rem;
  color: var(--mcd-yellow);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tape strong {
  font-size: 0.95rem;
}

.tape em {
  padding-bottom: 0.85rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

/* CAREERS */
.careers {
  background: var(--mcd-red);
  color: #fff;
}

.careers-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.careers h2 {
  color: #fff;
}

.careers p {
  font-weight: 700;
  opacity: 0.92;
  max-width: 52ch;
}

.careers img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}

.job-board {
  max-width: 1240px;
  margin: 1.75rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.job-card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.15rem 1.1rem 1.25rem;
  color: #fff;
}

.job-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--mcd-yellow);
}

.job-card > p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.9;
}

.job-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.85;
}

.job-card li {
  margin: 0.2rem 0;
}

/* JOB INTERVIEW OVERLAY */
.interview {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 6, 4, 0.88);
  backdrop-filter: blur(6px);
}

.interview[hidden] {
  display: none !important;
}

.interview-panel {
  width: min(1080px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  background: #14110f;
  color: #fff;
  border-radius: 18px;
  border: 1px solid rgba(255, 199, 44, 0.25);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.interview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--mcd-red);
}

.interview-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.interview-brand img {
  border-radius: 8px;
}

.interview-brand strong {
  display: block;
  font-weight: 900;
}

.interview-brand span {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.9;
}

.interview-x {
  border: 0;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
}

.interview-progress {
  padding: 0.85rem 1.1rem 0;
}

.interview-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.interview-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--mcd-yellow), #ffe08a);
  transition: width 0.3s ease;
}

#interviewStepLabel {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--mcd-yellow);
}

.interview-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 1rem 1.1rem 1.25rem;
}

.interview-q .kicker {
  color: var(--mcd-yellow);
}

.interview-q h2 {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 0.5rem;
}

#interviewPrompt {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.interview-role {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffb0a8;
}

.interview-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  max-height: 220px;
  overflow: auto;
}

.interview-checklist li {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
}

.interview-checklist li.current {
  background: rgba(255, 199, 44, 0.15);
  color: var(--mcd-yellow);
}

.interview-checklist li.done {
  color: #9dffc0;
  background: rgba(61, 220, 132, 0.1);
}

.interview-stage video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #000;
}

.interview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.interview-actions .btn-dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.interview-actions .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.interview-hint {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.interview-hired {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 1.25rem 1.75rem;
}

.interview-hired[hidden] {
  display: none !important;
}

.interview-hired img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--mcd-yellow);
}

.interview-hired h2 {
  color: var(--mcd-yellow);
}

.interview-hired p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.interview-hired .btn {
  margin-top: 0.5rem;
}
.site-footer {
  background: var(--dark);
  color: #ddd;
  padding: 2.5rem 1.25rem 2rem;
}

.footer-brand {
  max-width: 1240px;
  margin: 0 auto 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-brand img {
  border-radius: 10px;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-brand p {
  margin: 0;
  color: var(--mcd-yellow);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-cols {
  max-width: 1240px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-cols h4 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-weight: 900;
}

.footer-cols a,
.footer-cols p {
  display: block;
  margin: 0.25rem 0;
  color: #aaa;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-cols a:hover {
  color: var(--mcd-yellow);
}

.legal {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.82rem;
  font-weight: 600;
}

/* TOASTS */
.toasts {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.4rem;
  width: min(320px, calc(100vw - 2rem));
}

.toast {
  padding: 0.75rem 0.9rem;
  background: var(--dark);
  color: var(--mcd-yellow);
  border-left: 4px solid var(--mcd-red);
  border-radius: 10px;
  box-shadow: var(--shadow);
  animation: toastIn 0.28s ease;
  font-size: 0.88rem;
  font-weight: 700;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* MOBILE */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mcd-red);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  .nav-burger {
    display: inline-flex;
  }

  .header-inner {
    position: relative;
  }

  .header-actions .btn-dark {
    display: none;
  }

  .hero-layout,
  .story-grid,
  .product-grid,
  .chef-row,
  .heroes-band-inner,
  .counter-layout,
  .careers-inner,
  .job-board,
  .interview-body,
  .interview-hired,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .mvp-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding-top: 3rem;
  }

  .break-shot figcaption {
    position: static;
    background: var(--dark);
  }
}

@media (max-width: 560px) {
  .product-grid,
  .mvp-row,
  .chef-row {
    grid-template-columns: 1fr;
  }

  .header-actions .btn-yellow {
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
  }
}
