:root {
  --ink: #171713;
  --paper: #fff9ed;
  --cream: #fff3dc;
  --yellow: #f8a91b;
  --yellow-deep: #f19912;
  --garden-green: #103c16;
  --garden-green-soft: #5c8f16;
  --garden-brown: #6a3b10;
  --charcoal: #11110f;
  --muted: #6d6254;
  --line: #221e18;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #e6dfd0;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", system-ui, sans-serif;
  letter-spacing: 0;
}

body {
  padding: 0;
}

.menu-board {
  width: min(1920px, 100%);
  min-height: 1320px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.hero-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 720px;
  height: 370px;
  background: #071108;
  color: white;
}

.hero-art {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 62%, rgba(248, 169, 27, 0.22), transparent 34%),
    linear-gradient(110deg, #071108 0%, #11110f 54%, #1d1207 100%);
}

.brand-logo {
  position: absolute;
  top: 22px;
  left: 34px;
  z-index: 3;
  width: 190px;
  height: auto;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 249, 237, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  min-width: 0;
  height: 100%;
  gap: 18px;
  padding: 54px 32px 28px 230px;
}

.photo-stage {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 82%, rgba(248, 169, 27, 0.2), transparent 44%),
    linear-gradient(#fffef9, #f1eadc);
}

.photo-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.08) contrast(1.04) drop-shadow(0 13px 8px rgba(0, 0, 0, 0.26));
}

.hero-images .photo-stage {
  height: 230px;
  border: 1px solid rgba(248, 169, 27, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 78%, rgba(248, 169, 27, 0.24), transparent 44%),
    linear-gradient(145deg, #181813, #050505);
  box-shadow: inset 0 -55px 70px rgba(0, 0, 0, 0.28);
}

.hero-images .photo-stage img {
  object-position: center 58%;
}

.hero-images .photo-stage:nth-child(2) {
  height: 268px;
  transform: scale(1.04);
  z-index: 1;
}

.launch-ribbon {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 4;
  padding: 8px 14px;
  border: 1px solid rgba(248, 169, 27, 0.75);
  border-radius: 999px;
  background: rgba(16, 60, 22, 0.92);
  color: #fff7df;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.combo-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 22px 30px;
  background:
    linear-gradient(135deg, rgba(16, 60, 22, 0.9), rgba(12, 11, 9, 0.98) 55%),
    #0c0b09;
  border-left: 2px solid rgba(248, 169, 27, 0.62);
}

.kicker {
  margin: 0;
  color: var(--yellow);
  font-size: 24px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 4px;
  font-size: 52px;
  line-height: 0.9;
  text-transform: uppercase;
}

.combo-panel article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 13px 0;
  border-top: 2px wavy rgba(248, 169, 27, 0.72);
}

.combo-panel strong,
.combo-panel span {
  display: block;
}

.combo-panel strong {
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
}

.combo-panel span {
  margin-top: 8px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.combo-panel b,
.offer-stamp b {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: var(--yellow);
  font-size: 38px;
  line-height: 0.85;
  white-space: nowrap;
}

.combo-panel b small,
.offer-stamp b small {
  display: inline-block;
  margin-left: 1px;
  line-height: 1;
  vertical-align: super;
  transform: translateY(-0.18em);
}

small {
  font-size: 38%;
  vertical-align: super;
}

.offer-stamp b small {
  font-size: 45%;
}

.snacks-band {
  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: stretch;
  min-height: 150px;
  background: #f8f5ee;
  border-bottom: 2px solid #e4d9c3;
}

.snacks-band h2 {
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--yellow);
  font-size: 37px;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
}

.snack-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
}

.compact-card {
  position: relative;
  min-width: 0;
  padding: 10px 14px 12px;
  text-align: center;
  border-left: 2px wavy rgba(248, 169, 27, 0.7);
}

.compact-card .photo-stage {
  width: 100%;
  height: 88px;
  margin-bottom: 6px;
  border-radius: var(--radius);
}

.compact-card h3,
.product-card h3,
.premium-card h3 {
  margin: 2px 0 5px;
  font-size: 21px;
  line-height: 0.94;
  text-transform: uppercase;
}

.compact-card p,
.product-card p,
.premium-card p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.compact-card strong,
.product-card strong,
.premium-card strong {
  display: block;
  margin-top: 5px;
  color: var(--yellow-deep);
  font-size: 28px;
  line-height: 0.9;
}

.currency {
  margin-right: 4px;
  font-size: 40%;
  vertical-align: middle;
}

.amount {
  display: inline-block;
}

.main-layout {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 500px;
  min-height: 840px;
}

.vertical-title {
  display: grid;
  place-items: center;
  color: rgba(248, 169, 27, 0.72);
  font-size: 75px;
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.signature-section {
  padding: 20px 18px 16px;
  background: white;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 12px;
}

.section-title-row h2 {
  margin-bottom: 0;
  color: var(--yellow);
  font-size: 46px;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-title-row span {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 150px 1fr;
  min-height: 268px;
  overflow: hidden;
  text-align: center;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
}

.product-card .photo-stage {
  width: 100%;
  height: 152px;
  border-bottom: 1px solid rgba(34, 30, 24, 0.12);
}

.product-card .photo-stage img {
  width: 94%;
  height: 94%;
}

.product-card .copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 116px;
  padding: 9px 10px 8px;
}

.badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 84px;
  min-height: 28px;
  padding: 6px 9px;
  border: 3px solid white;
  border-radius: 999px;
  background: #df2958;
  color: white;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
}

.premium-rail {
  padding: 20px 22px;
  background:
    linear-gradient(180deg, var(--yellow) 0%, #f5a21a 72%, #d18411 100%);
}

.premium-rail h2 {
  margin: 0 0 18px;
  color: white;
  font-size: 54px;
  line-height: 0.85;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.9);
}

.premium-card {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  align-items: stretch;
  min-height: 132px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf6;
}

.premium-card .photo-stage {
  width: 100%;
  height: 132px;
  align-self: end;
  background:
    radial-gradient(circle at 50% 82%, rgba(248, 169, 27, 0.22), transparent 44%),
    linear-gradient(145deg, #181813, #050505);
}

.premium-card .copy {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 11px 12px 8px 14px;
}

.premium-card h3 {
  font-size: 21px;
  max-width: 100%;
}

.premium-card strong {
  text-align: right;
}

.offer-stamp {
  display: grid;
  place-items: center;
  width: 186px;
  height: 186px;
  margin: 16px auto 0;
  padding: 20px;
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  text-align: center;
  text-transform: uppercase;
}

.offer-stamp span {
  color: var(--yellow);
  font-size: 20px;
}

.offer-stamp strong {
  font-size: 27px;
  line-height: 0.95;
}

.bottom-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  min-height: 310px;
  border-top: 2px solid #e1d5be;
}

.feature-panel {
  padding: 18px 28px;
}

.feature-panel h2 {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 38px;
  line-height: 0.88;
  text-transform: uppercase;
}

.feature-panel.hot {
  background: var(--yellow);
}

.feature-panel.hot h2 {
  color: white;
  text-shadow: 0 4px 0 var(--charcoal);
}

.feature-panel.hot .compact-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 5px 0;
  text-align: left;
  border-left: 0;
  border-top: 2px wavy rgba(0, 0, 0, 0.28);
}

.feature-panel.hot #specialList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.feature-panel.hot .compact-card .photo-stage,
.feature-panel.sweets .compact-card .photo-stage {
  float: none;
  width: 100%;
  height: 76px;
  margin: 0;
}

.feature-panel.hot .compact-card h3,
.feature-panel.sweets .compact-card h3 {
  font-size: 18px;
}

.feature-panel.hot .compact-card p,
.feature-panel.sweets .compact-card p {
  font-size: 10px;
}

.feature-panel.hot .compact-card strong,
.feature-panel.sweets .compact-card strong {
  font-size: 24px;
}

.feature-panel.hot .compact-card strong {
  margin: 0;
  color: white;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.8);
  text-align: right;
}

.feature-panel.sweets {
  background: #fff7e7;
}

.feature-panel.sweets .compact-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 72px;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 7px 0;
  text-align: left;
  border-left: 0;
  border-top: 2px wavy rgba(248, 169, 27, 0.5);
}

.feature-panel.sweets .compact-card strong {
  margin: 0;
  text-align: right;
}

.feature-panel.drinks {
  background: var(--paper);
}

.price-columns {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 13px 22px;
  align-items: baseline;
  font-family: Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.price-columns strong {
  color: var(--yellow-deep);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", system-ui, sans-serif;
  font-size: 31px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  min-height: 46px;
  padding: 8px 30px;
  background: var(--charcoal);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

footer strong {
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", system-ui, sans-serif;
  font-size: 30px;
}

@media (max-width: 1180px) {
  body {
    padding: 0;
  }

  .menu-board {
    min-height: 0;
    border: 0;
  }

  .hero-strip {
    height: auto;
  }

  .hero-strip,
  .main-layout,
  .bottom-layout,
  .snacks-band {
    grid-template-columns: 1fr;
  }

  .combo-panel {
    min-height: 0;
    padding-bottom: 44px;
  }

  .snacks-band {
    margin-top: 0;
  }

  .snacks-band h2 {
    padding: 24px 14px 16px;
    font-size: 34px;
  }

  .vertical-title {
    writing-mode: initial;
    transform: none;
    padding: 14px;
    font-size: 42px;
  }

  .product-grid,
  .snack-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-card {
    grid-template-columns: 120px 1fr;
  }
}

@media print {
  @page {
    size: A3 landscape;
    margin: 0;
  }

  body {
    padding: 0;
    background: white;
  }

  .menu-board {
    width: 100vw;
    min-height: 100vh;
    box-shadow: none;
    border: 0;
  }
}
