:root {
  --black: #0b0706;
  --ink: #160d0a;
  --red: #9d1d18;
  --dark-red: #54100e;
  --gold: #d7a64f;
  --paper: #fff0d2;
  --cream: #fff8e9;
  --muted: #8a7255;
  --line: rgba(255, 240, 210, 0.18);
  --dark-line: rgba(11, 7, 6, 0.13);
  --shadow: 0 26px 80px rgba(11, 7, 6, 0.36);
}

* { 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: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 13px clamp(16px, 4vw, 56px);
  background: rgba(11, 7, 6, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
  font-size: 1.65rem;
  color: var(--gold);
}
nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 38px);
  color: rgba(255, 248, 233, 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, 248, 233, 0.72);
  font-weight: 900;
  cursor: pointer;
}
.lang.active { background: var(--gold); color: var(--black); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  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(157, 29, 24, 0.34), transparent 30%),
    linear-gradient(135deg, #0b0706 0%, #1b0d0a 56%, #54100e 100%);
}
.hero-copy, .hero-media, .story > *, .section-head > *, .contact > * { min-width: 0; }
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  overflow-wrap: anywhere;
}
h1 { max-width: 840px; font-size: clamp(3.25rem, 8vw, 8.5rem); }
h2 { font-size: clamp(2.35rem, 5.4vw, 5.5rem); }
.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 248, 233, 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(--gold);
  color: var(--black);
  box-shadow: 0 16px 40px rgba(215, 166, 79, 0.22);
}
.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 248, 233, 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 { padding: 18px; background: rgba(255, 248, 233, 0.06); min-width: 0; }
.proof strong { display: block; color: var(--gold); font-size: 1.38rem; }
.proof span { color: rgba(255, 248, 233, 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);
}
.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(270px, calc(100% - 44px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(11, 7, 6, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-badge span { color: var(--gold); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.hero-badge strong { display: block; margin-top: 6px; font-size: 1.25rem; }

.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(--black);
}
.story .kicker, .menu .kicker, .contact .kicker { color: var(--red); }
.story p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}
.specials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.specials article {
  min-height: 680px;
  background: var(--ink);
}
.specials img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.specials div { padding: 30px; }
.specials span, .menu-grid span { color: var(--gold); font-weight: 900; }
.specials h2 { margin-top: 54px; font-size: clamp(2rem, 3.8vw, 4rem); }
.specials p { color: rgba(255, 248, 233, 0.72); line-height: 1.72; }
.menu { background: var(--paper); color: var(--black); }
.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(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}
.menu-grid article {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fff8ea;
}
.menu-grid h3 { margin: 58px 0 12px; font-size: 1.24rem; }
.menu-grid p { color: var(--muted); line-height: 1.64; margin: 0; }
.gallery {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
}
.gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.reviews { background: #120907; }
.reviews .section-head { color: var(--cream); }
.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, 248, 233, 0.06);
  color: rgba(255, 248, 233, 0.9);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.22rem, 2vw, 1.92rem);
  font-weight: 900;
  line-height: 1.2;
}
.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(--black);
}
.contact-copy, .hours {
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fff8ea;
}
.contact-copy { padding: clamp(30px, 5vw, 58px); }
.contact-copy p:not(.kicker) { color: var(--muted); line-height: 1.75; }
.contact .secondary { color: var(--black); 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(--black); }
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(16px, 5vw, 72px);
  background: var(--black);
  color: rgba(255, 248, 233, 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; }
  .specials, .menu-grid, .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .site-header { padding: 10px 13px; }
  h1 { font-size: clamp(2.95rem, 14vw, 4.8rem); }
  .hero { min-height: auto; padding-top: 36px; }
  .proof, .specials, .menu-grid, .review-grid, .gallery { 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; }
  .specials article, .menu-grid article, blockquote { min-height: auto; }
  .specials img, .gallery img { height: 340px; }
  .specials h2, .menu-grid h3 { margin-top: 36px; }
  .hours p { flex-direction: column; gap: 4px; }
}
