:root {
  --ink: #f9f0df;
  --muted: rgba(249, 240, 223, 0.72);
  --dark: #08090b;
  --panel: #121214;
  --panel-soft: #1c1a18;
  --red: #c4162a;
  --amber: #d7a24a;
  --cream: #fff6e8;
  --olive: #6f7d4f;
  --line: rgba(249, 240, 223, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body,
button,
input {
  letter-spacing: 0;
}

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

svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--dark);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 18px;
  transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.topbar.is-scrolled {
  background: rgba(8, 9, 11, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  padding-block: 10px;
}

.nav {
  width: min(1180px, calc(100% - 36px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  width: 164px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.58);
  border: 1px solid rgba(249, 240, 223, 0.12);
}

.brand img {
  width: 100%;
}

.nav-links,
.nav-actions,
.hero-actions,
.proof-actions,
.form-actions,
.location-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  background: rgba(249, 240, 223, 0.1);
}

.language {
  min-width: 88px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border-radius: 999px;
  background: rgba(249, 240, 223, 0.12);
  border: 1px solid rgba(249, 240, 223, 0.18);
}

.language button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.language button.is-active {
  background: var(--cream);
  color: var(--dark);
}

.icon-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.92), rgba(8, 9, 11, 0.62) 48%, rgba(8, 9, 11, 0.12)),
    linear-gradient(0deg, rgba(8, 9, 11, 0.86), rgba(8, 9, 11, 0.08) 48%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 146px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 32px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.16;
}

.hero-copy > p:not(.eyebrow),
.story > p,
.proof p,
.visit-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.proof-actions,
.form-actions,
.location-actions {
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 14px 34px rgba(196, 22, 42, 0.32);
}

.btn-secondary {
  background: var(--cream);
  color: var(--dark);
  border-color: rgba(249, 240, 223, 0.32);
}

.hero-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(249, 240, 223, 0.18);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.56);
  backdrop-filter: blur(16px);
}

.hero-card div,
.signal div,
.hours div {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.hero-card div {
  min-height: 56px;
  border-bottom: 1px solid rgba(249, 240, 223, 0.12);
}

.hero-card div:last-child {
  border-bottom: 0;
}

.hero-card span,
.signal span,
.hours span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card strong,
.signal strong,
.hours strong {
  text-align: right;
}

.signal {
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.signal div {
  min-height: 96px;
  padding: 20px;
  border-right: 1px solid rgba(8, 9, 11, 0.12);
}

.signal div:last-child {
  border-right: 0;
}

.signal span {
  color: rgba(8, 9, 11, 0.58);
}

.signal strong {
  color: var(--red);
}

.section,
.proof,
.gallery,
.location,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding-top: 94px;
}

.story,
.section-head,
.proof,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 30px;
  align-items: end;
}

.menu-layout {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.54fr);
  gap: 22px;
  align-items: start;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.tab {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.tab.is-active {
  background: var(--red);
  border-color: var(--red);
}

.dish-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dish-grid.is-hidden {
  display: none;
}

.dish-grid article,
.proof-grid article,
.planner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.dish-grid article {
  min-height: 176px;
  padding: 18px;
}

.dish-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--amber);
  font-weight: 900;
}

.dish-grid p {
  margin: 0;
  color: var(--muted);
}

figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
}

figure img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.78);
  color: var(--cream);
  font-size: 13px;
}

.proof {
  padding-top: 94px;
}

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

.proof-grid article {
  min-height: 130px;
  padding: 18px;
  display: grid;
  align-content: space-between;
}

.proof-grid strong {
  font-size: 38px;
  line-height: 1;
  color: var(--cream);
}

.proof-grid span {
  color: var(--amber);
  font-weight: 900;
}

.gallery {
  margin-top: 94px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:nth-child(2) {
  margin-top: 34px;
}

.visit {
  align-items: start;
}

.planner {
  padding: 22px;
}

.planner fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  display: grid;
  gap: 8px;
}

.planner legend,
.planner label > span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.planner fieldset label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
}

.planner input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.planner input[type="text"] {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream);
  background: var(--panel-soft);
}

.output {
  min-height: 96px;
  margin: 16px 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(215, 162, 74, 0.12);
  color: var(--amber);
  font-weight: 800;
}

.location {
  margin-top: 94px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.hours {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}

.hours div {
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(249, 240, 223, 0.08);
}

.hours strong {
  color: var(--cream);
}

.map {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #302b25;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.footer {
  margin-top: 42px;
  margin-bottom: 88px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}

.footer p {
  max-width: 760px;
  margin: 0;
}

.footer a {
  color: var(--amber);
  font-weight: 900;
}

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(249, 240, 223, 0.94);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.42);
  transform: translateY(140%);
  transition: transform 0.22s ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--dark);
  color: var(--cream);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .signal,
  .story,
  .section-head,
  .menu-layout,
  .proof,
  .visit,
  .location {
    grid-template-columns: 1fr;
  }

  .signal div {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 9, 11, 0.12);
  }

  .signal div:last-child {
    border-bottom: 0;
  }

  .dish-grid,
  .proof-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery img:nth-child(2) {
    height: 330px;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 10px 12px;
  }

  .brand {
    width: 132px;
  }

  .icon-link {
    display: none;
  }

  .language {
    min-width: 76px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-grid,
  .signal,
  .section,
  .proof,
  .gallery,
  .location,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-grid {
    padding-top: 116px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero-copy > p:not(.eyebrow),
  .story > p,
  .proof p,
  .visit-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .proof-actions,
  .form-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .section,
  .proof {
    padding-top: 72px;
  }

  figure img {
    height: 330px;
  }

  .location {
    margin-top: 72px;
    padding: 22px;
  }

  .map,
  .map iframe {
    min-height: 330px;
  }

  .footer {
    flex-direction: column;
    margin-bottom: 104px;
  }

  .mobile-cta {
    display: grid;
  }
}
