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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  --bg: #0a0908;
  --text: #ddd5c8;
  --muted: #5e5850;
  --border: #1e1c1a;
  --max: 640px;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

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

/* ---- NAV ---- */

nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
}

.nav-logo img {
  height: 216px;
  width: auto;
  display: block;
}

.nav-links {
  position: absolute;
  right: 40px;
  display: flex;
  gap: 28px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

/* ---- PHOTO GALLERY ---- */

.gallery {
  padding-top: 270px;
  padding-bottom: 40px;
}

.gallery--continued {
  padding-top: 0;
}

.photo-row {
  display: flex;
  align-items: flex-start;
  padding-bottom: 100px;
}

.photo-row-left {
  width: 46%;
  margin-left: 4%;
  flex-shrink: 0;
}

.photo-row-right {
  width: 38%;
  margin-left: auto;
  margin-right: 0;
  margin-top: 220px;
  flex-shrink: 0;
}

.photo-row--stagger-up .photo-row-right {
  margin-top: 60px;
}

.photo-row--stagger-up .photo-row-left {
  margin-top: 200px;
}

.photo-row img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- BOOKING CTA ---- */

.booking-cta {
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
}

.btn-outline {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--muted);
  padding: 18px 48px;
  transition: border-color 0.25s, color 0.25s;
}

.btn-outline:hover {
  border-color: var(--text);
}

/* ---- ABOUT ---- */

.about-section {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-bottom: 80px;
}

.about-image {
  width: 36%;
  margin-left: 4%;
  flex-shrink: 0;
  padding-top: 80px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content {
  flex: 1;
  padding: 80px 6% 0 6%;
}

.section-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: block;
}

.about-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  max-width: 480px;
}

.about-text p + p {
  margin-top: 20px;
}

/* ---- MAP ---- */

.map-embed {
  margin-top: 40px;
  filter: grayscale(1) invert(1) contrast(0.8) brightness(0.85);
  opacity: 0.75;
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ---- MENU ---- */

.menu-section {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 48px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-text {
  flex: 1;
}

.menu-item-name {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 3px;
}

.menu-item-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.menu-item-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* ---- RESERVATIONS ---- */

.reservations-section {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

.reservation-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reservation-info {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.reservation-info strong {
  color: var(--text);
  font-weight: 400;
}

.btn {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  padding: 14px 28px;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.75;
}

/* ---- FOOTER ---- */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

footer a:hover {
  color: var(--text);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---- ABOUT PAGE ---- */

.about-page-section {
  padding: 160px 40px 80px;
  max-width: var(--max);
  margin: 0 auto;
}

.about-facts {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}

.fact-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.fact-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 640px) {
  nav {
    padding: 16px 20px;
    justify-content: space-between;
  }

  .nav-logo img {
    height: 156px;
  }

  .nav-links {
    position: static;
    right: auto;
    gap: 16px;
    font-size: 11px;
  }

  .gallery {
    padding-top: 190px;
  }

  .gallery--continued {
    padding-top: 0;
  }

  .photo-row {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 48px;
  }

  .photo-row-left,
  .photo-row-right {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0 !important;
  }

  .photo-row--stagger-up .photo-row-left {
    margin-top: 0 !important;
  }

  .booking-cta {
    padding: 64px 20px;
  }

  .about-section {
    flex-direction: column;
  }

  .about-image {
    width: 80%;
    margin: 0 auto;
    padding-top: 48px;
  }

  .about-content {
    padding: 40px 20px 0;
  }

  .menu-section,
  .reservations-section {
    padding: 56px 20px;
  }

  footer {
    padding: 32px 20px;
    flex-direction: column;
    gap: 24px;
  }
}
