:root {
  --coal: #130d09;
  --wood: #2a170f;
  --ember: #b73a1f;
  --fire: #e07b32;
  --cream: #fff1d7;
  --paper: #fbecd4;
  --ink: #21140e;
  --muted: #80684d;
  --line: rgba(255, 241, 215, 0.17);
  --dark-line: rgba(33, 20, 14, 0.14);
  --shadow: 0 26px 80px rgba(19, 13, 9, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--coal);
  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: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 13px clamp(16px, 4vw, 56px);
  background: rgba(19, 13, 9, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fire);
  text-transform: uppercase;
}
nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 38px);
  color: rgba(255, 241, 215, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}
.lang-switch { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.lang {
  width: 38px;
  height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 241, 215, 0.72);
  font-weight: 900;
  cursor: pointer;
}
.lang.active { background: var(--fire); color: var(--coal); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.08fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 67px);
  padding: clamp(48px, 7vw, 96px) clamp(16px, 5vw, 72px) 54px;
  background:
    radial-gradient(circle at 78% 24%, rgba(224, 123, 50, 0.24), transparent 32%),
    linear-gradient(135deg, #130d09 0%, #2a170f 58%, #5a1e12 100%);
}
.hero-copy, .hero-media, .story > *, .section-head > *, .contact > * { min-width: 0; }
.kicker {
  margin: 0 0 14px;
  color: var(--fire);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
h1 { max-width: 780px; font-size: clamp(4rem, 9.5vw, 9.5rem); }
h2 { font-size: clamp(2.7rem, 6.2vw, 6.2rem); }
.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 241, 215, 0.76);
  font-size: clamp(1.03rem, 1.42vw, 1.28rem);
  line-height: 1.72;
}
.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: 49px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 170ms ease, box-shadow 170ms ease;
}
.btn:hover { transform: translateY(-2px); }
.primary { background: var(--fire); color: var(--coal); box-shadow: 0 16px 40px rgba(224, 123, 50, 0.22); }
.secondary { border: 1px solid var(--line); background: rgba(255, 241, 215, 0.07); color: var(--cream); }
.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.proof div { min-width: 0; padding: 18px; background: rgba(255, 241, 215, 0.06); }
.proof strong { display: block; color: var(--fire); font-size: 1.38rem; }
.proof span { color: rgba(255, 241, 215, 0.65); font-size: 0.84rem; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: min(690px, 75vh);
  min-height: 450px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(250px, calc(100% - 44px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(19, 13, 9, 0.84);
  border: 1px solid var(--line);
}
.badge span { color: var(--fire); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.badge strong { display: block; margin-top: 6px; font-size: 1.2rem; }

.section { padding: clamp(72px, 9vw, 122px) clamp(16px, 5vw, 72px); }
.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
  background: var(--paper);
  color: var(--ink);
}
.story .kicker, .menu .kicker, .contact .kicker { color: var(--ember); }
.story p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}
.food-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.food-band article { min-height: 650px; background: var(--wood); }
.food-band img { width: 100%; height: 340px; object-fit: cover; }
.food-band div { padding: 30px; }
.food-band span, .menu-grid span { color: var(--fire); font-weight: 900; }
.food-band h2 { margin-top: 50px; font-size: clamp(2.25rem, 4.6vw, 4.7rem); }
.food-band p { color: rgba(255, 241, 215, 0.72); line-height: 1.72; }
.menu { background: var(--paper); color: var(--ink); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1fr);
  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: 250px;
  padding: 26px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fff7e8;
}
.menu-grid h3 { margin: 58px 0 12px; font-size: 1.18rem; }
.menu-grid p { color: var(--muted); line-height: 1.64; margin: 0; }
.reviews { background: #160d0a; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}
blockquote {
  margin: 0;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 241, 215, 0.06);
  color: rgba(255, 241, 215, 0.9);
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  padding: clamp(72px, 9vw, 122px) clamp(16px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}
.contact-copy, .hours {
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fff7e8;
}
.contact-copy { padding: clamp(30px, 5vw, 58px); }
.contact-copy p:not(.kicker) { color: var(--muted); line-height: 1.75; }
.contact .secondary { color: var(--ink); border-color: var(--dark-line); background: #fff; }
.hours { padding: 30px; }
.hours h3 { margin: 0 0 20px; }
.hours p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--dark-line);
  color: var(--muted);
}
.hours strong { color: var(--ink); }
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(16px, 5vw, 72px);
  background: var(--coal);
  color: rgba(255, 241, 215, 0.66);
}

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto auto; }
  nav { display: none; }
  .hero, .story, .section-head, .contact { grid-template-columns: 1fr; }
  .food-band, .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .site-header { padding: 10px 13px; }
  h1 { font-size: clamp(3.6rem, 18vw, 5.7rem); }
  .hero { min-height: auto; padding-top: 36px; }
  .proof, .food-band, .menu-grid, .review-grid { grid-template-columns: 1fr; }
  .hero-media img { min-height: 360px; height: 430px; }
  .kicker { max-width: 100%; overflow-wrap: anywhere; line-height: 1.35; }
  .btn { max-width: 100%; white-space: normal; text-align: center; }
  .food-band article, .menu-grid article, blockquote { min-height: auto; }
  .food-band img { height: 330px; }
  .food-band h2, .menu-grid h3 { margin-top: 36px; }
  .hours p { flex-direction: column; gap: 4px; }
}
