:root {
  --black: #11100f;
  --charcoal: #1b1916;
  --ink: #201b18;
  --paper: #fffdf8;
  --foil: #efeee8;
  --red: #e92520;
  --yellow: #ffc619;
  --green: #4c7f2f;
  --acid: #98bd43;
  --muted: #6d6259;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 60px rgba(17, 16, 15, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(17, 16, 15, 0.96);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.header-phone {
  font-family: Anton, Impact, sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--yellow);
  white-space: nowrap;
  transition: color 180ms ease;
}

.header-phone:hover,
.header-phone:focus-visible { color: white; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 4px solid var(--yellow);
  border-radius: 50%;
  background: var(--red);
  color: var(--yellow);
  font-family: Shrikhand, cursive;
  font-size: 28px;
  line-height: 1;
  text-shadow: 2px 2px 0 #2a1510;
}

.brand strong,
.logo-type {
  display: block;
  color: var(--red);
  font-family: Shrikhand, cursive;
  line-height: 0.92;
  text-shadow: 2px 2px 0 var(--yellow), 4px 4px 0 #24130d;
}

.brand strong { font-size: 25px; }
.brand small { display: block; margin-top: 4px; color: white; font-size: 12px; font-weight: 800; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: white;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
}

.site-nav a {
  letter-spacing: 0;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--yellow); }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  color: white;
  background: var(--red);
  box-shadow: 0 5px 0 #8d1816;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #8d1816; }

.secondary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 5px 0 #9d7509;
}

.secondary:hover { box-shadow: 0 7px 0 #9d7509; }
.secondary.dark { border: 2px solid var(--yellow); background: var(--black); color: var(--yellow); }

.nav-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1.3fr) minmax(360px, 0.9fr);
  min-height: 640px;
  max-height: calc(100vh - 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 198, 25, 0.22), transparent 26%),
    linear-gradient(135deg, #211f1a 0%, #11100f 56%, #31302d 100%);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--red) 0 58px, var(--yellow) 58px 116px, var(--green) 116px 174px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 0 80px 6vw;
}

.mascot-lockup {
  width: 168px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
}

h1,
h2,
.menu-panel h3,
.catering h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(76px, 12vw, 158px);
  line-height: 0.84;
  color: var(--yellow);
  text-shadow: 5px 5px 0 rgba(233, 37, 32, 0.95);
}

.script {
  margin: 18px 0 14px;
  font-family: Shrikhand, cursive;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: #fff7e0;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-food {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-food img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.08);
}

.hero-food::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 16, 15, 0.55), transparent 42%);
}

img.hero-food-badge {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  width: 116px;
  height: 116px;
  object-fit: cover;
  object-position: center 15%;
  border: 6px solid #171717;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  transform: rotate(-6deg);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #315b25;
  color: white;
}

.quick-info div {
  padding: 28px 5vw;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent),
    var(--green);
}

.quick-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
}

.quick-info strong,
.quick-info b { display: block; font-size: 17px; line-height: 1.3; }
.quick-info b { color: var(--yellow); }

.section {
  padding: 70px 5vw;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.catering h2 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 0.95;
}

.section-heading p,
.catering p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 118px;
  height: 7px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 36px 10px 0 -2px var(--yellow);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dish-card {
  overflow: hidden;
  border: 3px solid #171717;
  border-radius: 8px;
  background: white;
  box-shadow: 8px 8px 0 #171717;
}

.dish-photo {
  height: 230px;
  overflow: hidden;
  background: var(--foil);
}

.dish-photo img,
.gallery-shot img { object-position: center; }

.dish-card h3 {
  min-height: 68px;
  margin: 18px 18px 6px;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 27px;
  line-height: 0.98;
}

.dish-card p {
  min-height: 70px;
  margin: 0 18px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.dish-card strong {
  display: block;
  margin: 0 18px 20px;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.menu-section {
  padding: 78px 5vw 84px;
  background:
    linear-gradient(rgba(17, 16, 15, 0.94), rgba(17, 16, 15, 0.96)),
    repeating-linear-gradient(45deg, #26231f 0 1px, #151412 1px 8px);
  color: white;
}

.inverse p { color: #d8d1c6; }

.menu-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.menu-panel h3 {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 30px;
}

.menu-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
  color: #fff7e7;
  font-size: 15px;
  line-height: 1.25;
}

.menu-list li span {
  display: flex;
  gap: 8px;
  align-items: end;
}

.menu-list li span::after {
  content: "";
  flex: 1;
  min-width: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.45);
  transform: translateY(-4px);
}

.menu-list b { color: white; white-space: nowrap; }
.sauce-line { margin: 18px 0 0; color: var(--acid); line-height: 1.45; }

.about-copy {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.testimonials {
  background: var(--foil);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  margin: 0;
  padding: 26px 24px;
  border: 3px solid #171717;
  border-radius: 8px;
  background: white;
  box-shadow: 8px 8px 0 #171717;
}

.testimonial-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.5;
}

.testimonial-card cite {
  display: block;
  color: var(--red);
  font-style: normal;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
}

.testimonial-note {
  margin: 26px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.map-placeholder {
  margin-top: 14px;
  padding: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: #ddd5c8;
  font-size: 13px;
  text-align: center;
}

.catering {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 68px 6vw;
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 198, 25, 0.26), transparent 24%),
    linear-gradient(110deg, #b71818 0%, var(--red) 54%, #ffcc1a 54%, #ffcc1a 100%);
  color: white;
}

.catering p {
  max-width: 680px;
  margin-left: 0;
  color: #fff5da;
}

.catering-art {
  display: grid;
  gap: 12px;
  transform: rotate(-3deg);
}

.catering-art span {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 14px 22px;
  border: 4px solid #171717;
  border-radius: 8px;
  background: white;
  color: var(--red);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.9;
  text-transform: uppercase;
  box-shadow: 9px 9px 0 #171717;
}

.catering-art span:nth-child(2) { margin-left: 86px; color: var(--green); }
.catering-art span:nth-child(3) { margin-left: 28px; color: var(--black); background: var(--yellow); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
  gap: 18px;
}

.gallery-shot {
  height: 290px;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid #171717;
  box-shadow: var(--shadow);
}

.footer {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 36px;
  padding: 50px 5vw;
  background: var(--black);
  color: white;
}

.footer h2,
.footer h3 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
  color: #ddd5c8;
  line-height: 1.55;
}

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

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-nav,
  .header-cta {
    display: none;
  }

  .header-phone { font-size: 15px; }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 48px;
    height: 48px;
    place-content: center;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    background: transparent;
  }

  .nav-toggle span {
    width: 22px;
    height: 3px;
    background: white;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.nav-open .site-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 0;
  }

  .site-header.nav-open .header-cta {
    width: max-content;
    margin-bottom: 18px;
  }

  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 52px 6vw 42px; }
  .hero-food { min-height: 420px; clip-path: none; }
  .hero-food img { object-position: center; }
  .dish-grid,
  .menu-columns,
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .catering { grid-template-columns: 1fr; }
  .gallery-grid,
  .footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .site-header { min-height: 70px; padding: 0 18px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 20px; }
  .brand small { font-size: 11px; }
  .brand-mark { width: 42px; height: 42px; font-size: 23px; }
  .mascot-lockup { transform: scale(0.78); transform-origin: left center; margin-bottom: -10px; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(62px, 22vw, 96px); }
  .hero-text { font-size: 17px; }
  .button { width: 100%; }
  .quick-info,
  .dish-grid,
  .menu-columns,
  .testimonial-grid,
  .gallery-grid,
  .footer { grid-template-columns: 1fr; }
  .quick-info div { padding: 24px 22px; }
  .section,
  .menu-section { padding: 54px 22px; }
  .dish-photo,
  .gallery-shot { height: 250px; }
  .catering {
    grid-template-columns: 1fr;
    padding: 54px 22px;
    background: linear-gradient(155deg, #b71818 0%, var(--red) 62%, var(--yellow) 62%);
  }
  .catering-art {
    transform: none;
    margin-bottom: 8px;
  }
  .catering-art span {
    font-size: clamp(30px, 10vw, 46px);
    padding: 10px 16px;
  }
  .catering-art span:nth-child(2),
  .catering-art span:nth-child(3) { margin-left: 0; }
}
