*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-family: "Space Grotesk", "Fraunces", system-ui, -apple-system, sans-serif;
  color: #f5f1ec;
  background-color: #0a0c10;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(242, 108, 79, 0.25), transparent 40%),
    #07090f;
  color: inherit;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.menu-header {
  padding: 1.5rem clamp(1.2rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(16px);
  position: relative;
}


.language-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.35rem;
}
.menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  flex-wrap: wrap;
}

.menu-brand .logo {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  letter-spacing: 0.2rem;
}

.menu-brand .tagline {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 241, 236, 0.7);
}

.menu-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: nowrap;
  font-size: 0.82rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.menu-actions a {
  white-space: nowrap;
}

.menu-actions a {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.menu-actions a:hover {
  border-color: rgba(242, 108, 79, 0.8);
  background: rgba(242, 108, 79, 0.1);
}

.menu-hero {
  margin: 0.5rem 0 1rem;
}

.menu-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.8rem;
  color: rgba(245, 241, 236, 0.6);
  margin-bottom: 0.4rem;
}

.menu-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0;
}

.menu-hero .hero-copy {
  max-width: 32rem;
  margin-top: 0.6rem;
  color: rgba(245, 241, 236, 0.7);
  line-height: 1.6;
}

.tabs-wrapper {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(7, 9, 15, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem clamp(1.2rem, 4vw, 3rem);
}

.category-tabs {
  display: flex;
  gap: 0.65rem;
  margin: 0;
  overflow-x: auto;
  padding: 0.85rem 0 0.25rem;
}

.category-tabs .tab {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 999px;
  padding: 0.35rem 1.1rem;
  color: inherit;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.category-tabs .tab.active {
  background: rgba(242, 108, 79, 0.12);
  border-color: rgba(242, 108, 79, 0.7);
}

.menu-main {
  padding: 2rem clamp(1.2rem, 4vw, 3rem) 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-section {
  background: rgba(9, 9, 14, 0.8);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  scroll-margin-top: 110px;
  box-shadow: 0 20px 60px rgba(5, 5, 8, 0.65);
}

.menu-section .section-heading h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.menu-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.5rem;
  font-size: 0.95rem;
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item span:first-child {
  font-weight: 500;
  letter-spacing: 0.05rem;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.menu-item span:last-child {
  color: rgba(245, 241, 236, 0.7);
}

.menu-footer {
  margin: 0;
  padding: 2rem clamp(1.2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 16, 0.95);
}

.menu-footer p {
  margin: 0.2rem 0;
  color: rgba(245, 241, 236, 0.7);
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: inherit;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.lang-btn:hover {
  border-color: rgba(242, 108, 79, 0.7);
  background: rgba(242, 108, 79, 0.08);
}

.lang-btn.active {
  border-color: rgba(242, 108, 79, 0.75);
  background: rgba(242, 108, 79, 0.14);
}

@media (max-width: 768px) {
  .language-switcher {
    width: 100%;
    justify-content: flex-end;
    margin-top: 0.35rem;
  }
}


















.menu-item span:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.menu-item small {
  font-size: 0.78rem;
  color: rgba(245, 241, 236, 0.62);
  line-height: 1.35;
  letter-spacing: 0.03rem;
}
