:root {
  color-scheme: dark;
  --bg: #090b09;
  --panel: rgba(16, 20, 17, 0.76);
  --panel-strong: rgba(12, 15, 13, 0.94);
  --text: #f4eee4;
  --muted: #c2b8a9;
  --line: rgba(244, 238, 228, 0.18);
  --gold: #d69d45;
  --green: #2bc39a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 7, 6, 0.76), rgba(5, 7, 6, 0));
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(244, 238, 228, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--gold);
  outline: none;
}

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

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

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.88) 0%, rgba(3, 5, 4, 0.58) 42%, rgba(3, 5, 4, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 11, 9, 0.92) 0%, rgba(9, 11, 9, 0) 46%),
    linear-gradient(180deg, rgba(9, 11, 9, 0.34) 0%, rgba(9, 11, 9, 0) 28%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  padding: 0 0 clamp(52px, 11vh, 116px) clamp(20px, 7vw, 96px);
}

.location,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.86;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.98;
}

.intro,
.section__text p {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.65;
}

.intro {
  max-width: 560px;
  margin: 24px 0 0;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button--primary {
  background: var(--text);
  color: #11110e;
}

.button--secondary {
  background: rgba(244, 238, 228, 0.08);
  color: var(--text);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  padding: clamp(64px, 10vw, 128px) clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.menu-section {
  background: linear-gradient(180deg, #090b09, #10120f);
}

.visit-section {
  background: #0e100e;
}

.section__text {
  max-width: 720px;
}

.menu-card,
.details {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.menu-card {
  padding: clamp(22px, 4vw, 42px);
}

.menu-card span {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-card strong {
  display: block;
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.9;
}

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

.details {
  overflow: hidden;
}

.details div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 24px;
}

.details div + div {
  border-top: 1px solid var(--line);
}

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

dd {
  margin: 0;
  color: var(--text);
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 20px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero__image {
    object-position: 59% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(3, 5, 4, 0.36) 0%, rgba(3, 5, 4, 0.2) 30%, rgba(3, 5, 4, 0.9) 100%),
      linear-gradient(90deg, rgba(3, 5, 4, 0.74), rgba(3, 5, 4, 0.18));
  }

  .hero__content {
    width: calc(100% - 32px);
    padding: 0 16px 42px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .section {
    grid-template-columns: 1fr;
    padding: 62px 20px;
  }

  .details div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
