:root {
  --black: #11100f;
  --coal: #1c1714;
  --red: #cf2f24;
  --yellow: #ffc53d;
  --cream: #fff2d1;
  --paper: #fff8ea;
  --muted: #7b6858;
  --line: rgba(17, 16, 15, 0.14);
  --shadow: 0 24px 70px rgba(17, 16, 15, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 13px clamp(16px, 4vw, 56px);
  background: rgba(17, 16, 15, 0.9);
  border-bottom: 1px solid rgba(255, 197, 61, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: Anton, Impact, sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0;
  color: var(--yellow);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 38px);
  color: rgba(255, 242, 209, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
}

.lang-switch {
  display: flex;
  padding: 3px;
  border: 1px solid rgba(255, 242, 209, 0.18);
  border-radius: 999px;
}

.lang {
  width: 38px;
  height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 242, 209, 0.74);
  font-weight: 900;
  cursor: pointer;
}

.lang.active {
  background: var(--yellow);
  color: var(--black);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(46px, 7vw, 94px) clamp(16px, 5vw, 72px) 52px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(207, 47, 36, 0.32), transparent 34%),
    linear-gradient(120deg, rgba(17, 16, 15, 1) 0%, rgba(28, 23, 20, 0.9) 54%, rgba(85, 25, 18, 0.62) 100%);
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  font-size: clamp(4.2rem, 10vw, 9.8rem);
}

h2 {
  font-size: clamp(2.8rem, 6vw, 6.4rem);
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 242, 209, 0.78);
  font-size: clamp(1.04rem, 1.45vw, 1.3rem);
  line-height: 1.68;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 16px 36px rgba(255, 197, 61, 0.22);
}

.secondary {
  border: 1px solid rgba(255, 242, 209, 0.24);
  background: rgba(255, 242, 209, 0.08);
  color: var(--cream);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin-top: 34px;
  border: 1px solid rgba(255, 242, 209, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.stats div {
  padding: 18px;
  background: rgba(255, 242, 209, 0.07);
}

.stats strong {
  display: block;
  color: var(--yellow);
  font-size: 1.45rem;
}

.stats span {
  color: rgba(255, 242, 209, 0.68);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: min(680px, 74vh);
  min-height: 440px;
  object-fit: cover;
  border: 1px solid rgba(255, 242, 209, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(270px, calc(100% - 44px));
  padding: 18px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-badge span {
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
}

.challenge,
.specials,
.contact,
.section {
  padding: clamp(72px, 9vw, 120px) clamp(16px, 5vw, 72px);
}

.challenge {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 74px);
  background: var(--yellow);
  color: var(--black);
}

.challenge .kicker,
.menu .kicker,
.contact .kicker {
  color: var(--red);
}

.challenge-copy p:not(.kicker) {
  max-width: 720px;
  color: #5f3e1f;
  font-size: 1.08rem;
  line-height: 1.78;
}

.rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  border: 1px solid rgba(17, 16, 15, 0.18);
  background: rgba(17, 16, 15, 0.18);
}

.rules div {
  min-height: 230px;
  padding: 24px;
  background: #ffe08b;
}

.rules span,
.menu-grid span {
  color: var(--red);
  font-weight: 900;
}

.rules strong {
  display: block;
  margin-top: 58px;
  font-size: 1.2rem;
}

.rules p {
  color: #5f3e1f;
}

.menu {
  background: var(--paper);
  color: var(--black);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1.05fr);
  gap: 42px;
  align-items: end;
}

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

.menu-grid article {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 42px rgba(17, 16, 15, 0.08);
}

.menu-grid h3 {
  margin: 74px 0 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.menu-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.specials {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.72fr) minmax(280px, 0.62fr);
  gap: 24px;
  align-items: stretch;
  background: var(--red);
}

.today-card,
.special-list {
  border: 1px solid rgba(255, 242, 209, 0.2);
  border-radius: 8px;
  background: rgba(17, 16, 15, 0.24);
}

.today-card {
  padding: 28px;
}

.today-card span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.today-card strong {
  display: block;
  margin-top: 58px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.94;
}

.today-card p {
  color: rgba(255, 242, 209, 0.76);
  line-height: 1.65;
}

.special-list {
  padding: 18px 24px;
}

.special-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 242, 209, 0.16);
}

.special-list p:last-child {
  border-bottom: 0;
}

.reviews {
  background: var(--coal);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

blockquote {
  margin: 0;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 242, 209, 0.16);
  border-radius: 8px;
  background: rgba(255, 242, 209, 0.06);
  color: rgba(255, 242, 209, 0.9);
  font-size: clamp(1.28rem, 2vw, 1.95rem);
  font-weight: 900;
  line-height: 1.12;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 28px;
  background: var(--paper);
  color: var(--black);
}

.contact-copy,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-copy {
  padding: clamp(28px, 5vw, 56px);
}

.contact-copy p:not(.kicker) {
  color: var(--muted);
  line-height: 1.72;
}

.contact .secondary {
  color: var(--black);
  border-color: var(--line);
  background: #fff;
}

.map-card {
  overflow: hidden;
}

.map-card img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
}

.map-card div {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.map-card strong,
.map-card span {
  display: block;
}

.map-card span {
  margin-top: 4px;
  color: var(--muted);
}

.map-card a {
  display: inline-flex;
  padding: 20px 22px;
  color: var(--red);
  font-weight: 900;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(16px, 5vw, 72px);
  background: var(--black);
  color: rgba(255, 242, 209, 0.68);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  nav {
    display: none;
  }

  .hero,
  .challenge,
  .section-head,
  .specials,
  .contact {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .rules,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 13px;
  }

  .brand {
    font-size: 1.45rem;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5.7rem);
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .stats,
  .menu-grid,
  .rules,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    min-height: 360px;
    height: 430px;
  }

  .rules div,
  .menu-grid article,
  blockquote {
    min-height: auto;
  }

  .rules strong,
  .menu-grid h3,
  .today-card strong {
    margin-top: 34px;
  }

  .special-list p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
