:root {
  color-scheme: dark;
  --bg: #111311;
  --panel: #1b211d;
  --panel-2: #202820;
  --text: #f4eee2;
  --muted: #b8ad9c;
  --line: rgba(244, 238, 226, 0.14);
  --gold: #d2a54b;
  --green: #315b46;
  --red: #8b3e35;
  --shadow: rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(17, 19, 17, 0.92), rgba(17, 19, 17, 1) 760px),
    var(--bg);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(112px, 1fr) auto minmax(112px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 18px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 19, 17, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.booking-link,
.nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(210, 165, 75, 0.34));
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-link {
  justify-content: center;
  min-width: 84px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

.nav-link.active {
  color: var(--text);
  background: var(--green);
}

.booking-link {
  justify-self: end;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #19140d;
  background: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 48px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 17, 0.78) 0%, rgba(17, 19, 17, 0.26) 54%, rgba(17, 19, 17, 0.58) 100%),
    linear-gradient(180deg, rgba(17, 19, 17, 0) 54%, #111311 100%);
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 32px));
  padding: 0 0 clamp(52px, 12vh, 108px) clamp(16px, 7vw, 88px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(58px, 12vw, 148px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy p:last-child,
.menu-intro p:last-child {
  max-width: 580px;
  color: #ddd3c5;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.club-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: start;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 56px;
}

.panel,
.menu-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 56px var(--shadow);
}

.panel {
  padding: clamp(18px, 3vw, 28px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h2,
.menu-section h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: 0;
}

.hall-plan {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #121713;
}

.hall-plan img {
  width: 100%;
  height: auto;
  display: block;
}

.address {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--muted);
}

.address p {
  margin-bottom: 0;
}

.map {
  width: 100%;
  aspect-ratio: 1284 / 812;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: saturate(0.86) contrast(0.95);
}

.menu-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 64px;
}

.menu-intro {
  padding: clamp(48px, 8vw, 92px) 0 28px;
}

.menu-intro h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

.catalog-page {
  width: min(1240px, calc(100% - 32px));
}

.category-nav {
  position: sticky;
  top: 97px;
  z-index: 6;
  display: flex;
  gap: 8px;
  margin: 0 0 30px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: thin;
  background: rgba(17, 19, 17, 0.9);
  backdrop-filter: blur(14px);
}

.category-chip,
.variant-button,
.choice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  white-space: nowrap;
}

.category-chip {
  min-height: 38px;
  padding: 0 15px;
  font-size: 14px;
}

.category-chip:hover,
.variant-button:hover,
.variant-button.active,
.choice-button:hover,
.choice-button.active {
  color: var(--text);
  border-color: rgba(210, 165, 75, 0.55);
  background: rgba(210, 165, 75, 0.14);
}

.menu-catalog {
  display: grid;
  gap: 54px;
}

.catalog-loading {
  color: var(--muted);
}

.catalog-section {
  scroll-margin-top: 166px;
}

.catalog-heading {
  margin-bottom: 18px;
}

.catalog-heading h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 18px 56px var(--shadow);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #f5f5f3;
}

.product-body {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
}

.product-body h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.product-description {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-description.muted {
  opacity: 0.72;
}

.product-meta {
  display: grid;
  gap: 14px;
}

.variant-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-button,
.choice-button {
  min-height: 34px;
  padding: 0 13px;
  cursor: pointer;
}

.choice-group {
  display: grid;
  gap: 8px;
}

.choice-group > span {
  color: var(--muted);
  font-size: 13px;
}

.product-price {
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
}

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

.menu-section {
  padding: clamp(18px, 3vw, 28px);
}

.menu-section h2 {
  margin-bottom: 18px;
  color: var(--gold);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.menu-item h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.menu-item span {
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
    min-height: 0;
    padding: 16px;
  }

  .brand,
  .booking-link {
    justify-self: center;
  }

  .nav {
    justify-content: center;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    padding-right: 16px;
  }

  .club-grid,
  .menu-board {
    grid-template-columns: 1fr;
  }

  .category-nav {
    top: 213px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .catalog-section {
    scroll-margin-top: 284px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 520px) {
  body {
    min-width: 0;
  }

  .site-header {
    gap: 8px;
    padding: 12px 14px;
  }

  .brand {
    justify-content: center;
    font-size: 17px;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
  }

  .nav,
  .booking-link {
    width: 100%;
  }

  .nav-link {
    min-width: 0;
    flex: 1;
    padding: 0 14px;
  }

  .booking-link {
    min-height: 42px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    width: 100%;
    padding: 0 16px 48px;
  }

  h1 {
    font-size: 54px;
  }

  .club-grid,
  .menu-page,
  .catalog-page {
    width: min(100% - 28px, 1240px);
  }

  .menu-intro {
    padding: 36px 0 22px;
  }

  .menu-intro h1 {
    font-size: 44px;
  }

  .category-nav {
    top: 190px;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .catalog-section {
    scroll-margin-top: 260px;
  }

  .section-heading {
    display: block;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-body {
    min-height: 0;
  }
}
