:root {
  --bg: #0f0f12;
  --surface: #1a1b20;
  --surface-2: #22242b;
  --text: #f2f4f8;
  --muted: #b7bdc8;
  --accent: #f97316;
  --accent-2: #fb923c;
  --border: #2f3340;
  --max-width: 1160px;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #1a1b24 0%, var(--bg) 45%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-tag {
  color: var(--accent-2);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(12, 12, 16, 0.75);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--surface);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  color: #d7dbe4;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 14, 0.88), rgba(11, 11, 14, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 3.5rem 0;
  text-align: center;
  animation: fade-up 0.9s ease both;
}

.eyebrow {
  color: #ffd7b8;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--accent-2);
}

.hero p {
  max-width: 60ch;
  color: #d9dce3;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.btn-secondary {
  border: 1px solid #ffffff3a;
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
}

.about-card,
.hours-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover,
.hours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.about-card ul,
.hours-card ul,
.contact-list {
  list-style: none;
  margin-top: 0.8rem;
}

.about-card li,
.hours-card li,
.contact-list li {
  padding: 0.38rem 0;
  color: #d7dde8;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.highlight-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), #1b1e25);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: #4b5160;
}

.highlight-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.highlight-card div {
  padding: 1rem;
}

.menu-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-btn {
  border: 1px solid var(--border);
  background: #1a1d26;
  color: #d3d7e0;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.filter-btn.active {
  border-color: #ffb57f;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.menu-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 1rem;
}

.menu-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #1a1d25, #171920);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: #4b5160;
}

.menu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.menu-content {
  padding: 1rem;
}

.menu-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
}

.category {
  color: #d0d4de;
  border: 1px solid #3d4351;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.price {
  color: #fff;
  font-weight: 700;
}

.table-wrap {
  margin-top: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
  background: linear-gradient(180deg, #1a1d25, #171920);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #2d3240;
}

.price-table th {
  color: #fff;
  background: rgba(249, 115, 22, 0.14);
  font-weight: 700;
}

.price-table td {
  color: #d7dde8;
}

.price-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 0.9rem;
}

.gallery-grid img {
  border-radius: 12px;
  height: 220px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  filter: saturate(1.1);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.note {
  margin-top: 0.8rem;
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #0b0c10;
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.footer-wrap a {
  color: #f2bf9a;
}

.back-top-link {
  border: 1px solid #ffffff3a;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.back-top-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.section,
.highlight-card,
.menu-card,
.table-wrap,
.gallery-grid img,
.about-card,
.hours-card {
  animation: fade-up 0.7s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .highlights-grid,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 760px) {
  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
  }

  .hero {
    min-height: 64vh;
  }

  .section {
    padding: 4.4rem 0;
  }

  .highlights-grid,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
