:root {
  --ink: #070605;
  --panel: #11100e;
  --paper: #fbfaf6;
  --muted: #b9afa1;
  --gold: #c7a45a;
  --gold-soft: #e5cf97;
  --red: #a31f2b;
  --blue: #165c72;
  --line: rgba(199, 164, 90, 0.26);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 16, 14, 0.16);
  background: rgba(251, 250, 246, 0.94);
  padding: 12px clamp(18px, 4vw, 48px);
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  width: clamp(172px, 21vw, 260px);
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #29231d;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: var(--red);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-action,
.primary-button {
  background: var(--gold);
  color: var(--ink);
}

.secondary-button {
  background: rgba(7, 6, 5, 0.5);
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.95) 0%, rgba(7, 6, 5, 0.82) 44%, rgba(7, 6, 5, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.1), rgba(7, 6, 5, 0.96));
}

.hero-content {
  position: relative;
  display: flex;
  min-height: calc(100vh - 73px);
  max-width: 1180px;
  flex-direction: column;
  justify-content: end;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 64px) clamp(38px, 7vw, 80px);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 600;
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

h3 {
  margin-bottom: 18px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
}

h4 {
  margin: 16px 0 10px;
  color: var(--blue);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
}

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

.hero-facts {
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 46px 0 0;
}

.hero-facts div {
  border-left: 1px solid var(--gold);
  padding-left: 16px;
}

.hero-facts dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--paper);
}

.menu-section,
.preview-section,
.visit-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-head p:last-child,
.preview-section p,
.visit-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.menu-tabs {
  display: flex;
  max-width: 1180px;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 24px;
}

.menu-tabs button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: #0e0c0a;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0 14px;
  text-transform: uppercase;
}

.menu-tabs button.active {
  border-color: var(--gold);
  background: rgba(199, 164, 90, 0.14);
  color: var(--gold-soft);
}

.menu-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.menu-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(251, 250, 246, 0.96), rgba(241, 235, 224, 0.96));
  color: #171411;
  padding: clamp(22px, 3vw, 32px);
}

.menu-card.wide {
  grid-column: 1 / -1;
}

.menu-card.is-hidden {
  display: none;
}

.card-note {
  color: #686057;
  font-size: 0.92rem;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.menu-items {
  display: grid;
  gap: 14px;
}

.menu-items > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  border-bottom: 1px solid rgba(185, 160, 112, 0.24);
  padding-bottom: 10px;
}

.menu-items > div.dish-with-photo {
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: start;
}

.dish-photo {
  aspect-ratio: 4 / 3;
  width: 104px;
  border: 1px solid rgba(185, 160, 112, 0.34);
  border-radius: 8px;
  background: #e8dfd0;
  object-fit: cover;
}

.menu-items strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 760;
}

.menu-items small {
  display: block;
  margin-top: 3px;
  color: #686057;
  font-size: 0.86rem;
  line-height: 1.35;
}

.menu-items b {
  color: #11100e;
  font-weight: 760;
}

.preview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(300px, 0.55fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.preview-frame {
  border: 1px solid var(--line);
  background: #ede7db;
  padding: 10px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
  gap: 0;
  max-width: 1240px;
  margin: 0 auto 40px;
}

.visit-section > img {
  height: 100%;
  min-height: 520px;
  width: 100%;
  object-fit: cover;
}

.visit-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.96), rgba(7, 6, 5, 0.98)),
    radial-gradient(circle at top right, rgba(199, 164, 90, 0.14), transparent 20rem);
  padding: clamp(28px, 5vw, 58px);
}

.visit-grid {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.visit-grid div {
  border-left: 1px solid var(--gold);
  padding-left: 14px;
}

.visit-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-grid strong {
  display: block;
  margin-top: 6px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  padding: 22px clamp(18px, 5vw, 64px);
}

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

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero-facts,
  .section-head,
  .menu-grid,
  .menu-columns,
  .preview-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .visit-section > img {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    width: 160px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 13px;
  }

  .site-header nav {
    gap: 15px;
    font-size: 0.74rem;
  }

  .hero-content {
    min-height: calc(100vh - 112px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 240px;
  }

  .menu-items > div.dish-with-photo {
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .dish-photo {
    width: 86px;
  }

  .menu-section,
  .preview-section,
  .visit-section {
    padding-left: 14px;
    padding-right: 14px;
  }
}
