:root {
  --bg: #0d0d0f;
  --surface: #16161a;
  --surface-soft: #1f1f25;
  --text: #f3f3f5;
  --text-muted: #b5b5bf;
  --accent: #c08a4a;
  --accent-strong: #e0a45e;
  --border: #2b2b33;
  --success: #3aa675;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-logo {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.brand small {
  display: block;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.78rem;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 0.7rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
}

.primary-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: none;
}

.primary-nav.open {
  display: block;
}

.primary-nav ul {
  margin: 0;
  padding: 0.5rem 1rem 0.85rem;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.primary-nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.6rem;
  color: var(--text-muted);
  font-weight: 500;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 4rem 0 3rem;
  background-image: linear-gradient(
      120deg,
      rgba(5, 5, 8, 0.84) 0%,
      rgba(5, 5, 8, 0.58) 46%,
      rgba(5, 5, 8, 0.8) 100%
    ),
    url("../images/VintageHero.jpg");
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content > div {
  max-width: 680px;
}

.hero h1,
.hero p {
  color: #f7f7f9;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.hero-grid,
.grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.pill-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.84rem;
  color: var(--text);
  background: var(--surface-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  min-height: 46px;
  padding: 0.65rem 1rem;
  border-radius: 0.7rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn + .btn {
  margin-left: 0.5rem;
}

.btn-primary {
  background: var(--accent);
  color: #150f09;
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.section {
  padding: 2.4rem 0;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.menu-list {
  display: grid;
  gap: 0.7rem;
}

.menu-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.85rem;
  display: grid;
  gap: 0.3rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: start;
}

.price {
  color: var(--accent);
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.gallery figure {
  margin: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0.86;
}

.gallery figcaption {
  padding: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-list li {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 0.8rem;
  padding: 0.75rem;
}

.map-placeholder {
  border: 1px dashed var(--border);
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #1f1f25, #17171d);
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.footer {
  padding: 2rem 0 6rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}

.footer small {
  color: var(--text-muted);
}

.mobile-cta {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: rgba(13, 13, 15, 0.94);
  border-top: 1px solid var(--border);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
}

.mobile-cta .btn {
  width: 100%;
}

.lang-badge {
  border: 1px solid var(--border);
  padding: 0.25rem 0.5rem;
  border-radius: 0.45rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .topbar-inner {
    min-height: 72px;
  }

  .primary-nav {
    position: static;
    display: block;
    border: 0;
    background: transparent;
  }

  .primary-nav ul {
    display: flex;
    gap: 0.3rem;
    padding: 0;
  }

  .hero {
    min-height: 78vh;
    padding: 5.5rem 0 4rem;
  }

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

  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-cta {
    display: none;
  }

  .footer {
    padding-bottom: 2rem;
  }
}
