:root {
  color-scheme: dark;
  --bg: #101014;
  --surface: #17171d;
  --surface-strong: #202029;
  --text: #f4f0e8;
  --muted: #b6ad9f;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d6a447;
  --green: #56c38a;
  --danger: #ef6f6c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(16, 16, 20, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214, 164, 71, 0.55);
  border-radius: 8px;
  background: #241b10;
  color: var(--gold);
  font-size: 0.85rem;
}

.site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.site-nav a:hover,
.nav-login {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: end;
  min-height: calc(100vh - 72px);
  padding: 84px 32px 40px;
  background:
    linear-gradient(120deg, rgba(16, 16, 20, 0.92), rgba(16, 16, 20, 0.56)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800' viewBox='0 0 1200 800'%3E%3Crect width='1200' height='800' fill='%2317171d'/%3E%3Cg fill='none' stroke='%23d6a447' stroke-opacity='.22' stroke-width='2'%3E%3Cpath d='M98 588c134-78 250-78 348 0s214 78 348 0 236-78 306 0'/%3E%3Cpath d='M56 230h1088M56 330h1088M56 430h1088'/%3E%3Ccircle cx='870' cy='256' r='92'/%3E%3Ccircle cx='952' cy='354' r='44'/%3E%3Crect x='110' y='180' width='300' height='220' rx='18'/%3E%3C/g%3E%3Cg fill='%23f4f0e8' fill-opacity='.08'%3E%3Ccircle cx='220' cy='520' r='72'/%3E%3Ccircle cx='315' cy='560' r='46'/%3E%3Ccircle cx='1010' cy='560' r='84'/%3E%3C/g%3E%3C/svg%3E") center / cover;
}

.hero-content {
  max-width: 760px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.hero-copy,
.split-section p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-link {
  background: var(--gold);
  color: #171007;
}

.secondary-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel,
.menu-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 23, 29, 0.86);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.hero-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.hero-panel strong {
  color: var(--green);
  font-size: 1.6rem;
}

.hero-panel span {
  color: var(--muted);
}

.section,
.split-section {
  padding: 84px 32px;
}

.section-title {
  max-width: 1040px;
  margin: 0 auto 26px;
}

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

.menu-card {
  padding: 20px;
}

.menu-card span,
.site-footer span:first-child {
  font-weight: 800;
}

.menu-card strong {
  display: block;
  margin: 10px 0;
  color: var(--gold);
}

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

.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.split-section:nth-of-type(4) {
  background: var(--surface-strong);
}

.contact {
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header,
  .split-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .split-section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-nav {
    justify-content: flex-start;
  }

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