* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 3rem 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.nav-overlay.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
}

.nav-logo {
  height: 38px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-brand {
  color: white;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
  opacity: 0.7;
}

.contact-button {
  border: 1px solid white;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: white;
  color: #1a1a1a;
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

:root {
  --color-bg: #fafaf8;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #6b6b6b;
  --color-border: #e0e0e0;
  --color-border-dotted: #d0d0d0;
}

.footer {
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 5rem 5% 2rem;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-section h4 {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: #a0a0a0;
}

.footer-section p {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 300;
  color: #f5f5f5;
}

.footer-section a {
  color: #f5f5f5;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 0.7;
}

.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 4rem 0;
  border-top: 1px solid #333;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #808080;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.menu-section {
  padding: 6rem 5%;
  background: #fafaf8;
  min-height: 100vh;
}

.menu-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4rem;
}

.menu-container h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 5rem;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.menu-category {
  margin-bottom: 4rem;
}

.menu-category h3 {
  font-size: 0.875rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.menu-item {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
  gap: 1rem;
  position: relative;
}

.item-header::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  right: 0;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #d0d0d0 0px, #d0d0d0 4px, transparent 4px, transparent 8px);
  z-index: -1;
}

.item-name {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  background: #fafaf8;
  padding-right: 0.5rem;
}

.item-price {
  font-size: 0.95rem;
  font-weight: 400;
  color: #1a1a1a;
  white-space: nowrap;
  background: #fafaf8;
  padding-left: 0.5rem;
}

.item-description {
  font-size: 0.875rem;
  color: #6b6b6b;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
  .nav-overlay {
    padding: 0.5rem 2rem 0.25rem;
  }

  .nav-logo {
    height: 35px;
  }

  .menu-section {
    padding: 5rem 4%;
  }

  .menu-container {
    padding: 0 3rem;
  }

  .menu-container h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }

  .menu-items {
    gap: 2.5rem 3rem;
  }

  .footer-container {
    padding: 0 3rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  .nav-overlay {
    padding: 0.4rem 0.5rem 0.2rem;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    justify-content: space-between;
  }

  .nav-logo {
    height: 20px;
    max-width: 60px;
    flex-shrink: 0;
  }

  .nav-brand {
    font-size: 1rem;
  }

  .logo-image {
    height: 60px;
  }

  .nav-links {
    gap: 0.25rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }

  .nav-links a {
    font-size: 0.55rem;
    white-space: nowrap;
    padding: 0.2rem 0.25rem;
  }

  .contact-button {
    padding: 0.2rem 0.4rem;
    font-size: 0.55rem;
  }
}

@media (max-width: 390px) {
  .nav-logo {
    height: 18px;
    max-width: 50px;
  }

  .nav-links {
    gap: 0.2rem;
  }

  .nav-links a {
    font-size: 0.5rem;
    padding: 0.15rem 0.2rem;
  }

  .contact-button {
    padding: 0.15rem 0.3rem;
    font-size: 0.5rem;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .menu-section {
    padding: 2.5rem 1.25rem;
  }

  .menu-container {
    padding: 0;
  }

  .menu-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .menu-category {
    margin-bottom: 2.5rem;
  }

  .menu-category h3 {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .menu-items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .item-header {
    gap: 0.5rem;
  }

  .item-name {
    font-size: 0.875rem;
    padding-right: 0.25rem;
  }

  .item-price {
    font-size: 0.875rem;
    padding-left: 0.25rem;
  }

  .item-description {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .footer {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .footer-container {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-section h4 {
    font-size: 0.7rem;
  }

  .footer-section p {
    font-size: 0.8125rem;
  }

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

  .footer-bottom p {
    font-size: 0.7rem;
  }
}
}
