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

/* ── Variables ── */
:root {
  --bg: #1a1008;
  --surface: #f5efe6;
  --border: #d6c4aa;
  --text: #1a1008;
  --muted: #7a6650;
  --accent: #3d2008;
  --accent-dim: rgba(61, 32, 8, 0.1);
  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "DM Mono", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f5efe6;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

/* ── Utility ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #1a1008;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #3d2008;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #f5efe6;
  text-decoration: none;
}

.nav-logo span {
  color: #c97b2e;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #a08060;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #c97b2e;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #f5efe6;
  transition: all 0.3s;
}

.nav-links.open {
  display: flex;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  background-color: #1a1008;
}

/* Warm glow effect */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(201, 123, 46, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c97b2e;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: #f5efe6;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: #c97b2e;
}

.hero-sub {
  color: #a08060;
  font-size: 0.85rem;
  max-width: 420px;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--surface);
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #db8c3a;
}

.btn-outline {
  background-color: var(--accent);
  color: var(--surface);
  border: 1px solid var(--border);
  margin-left: 1rem;
}

.btn-outline:hover {
  background-color: #db8c3a;
  border-color: var(--accent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

/* Divider line */
.divider {
  width: 40px;
  height: 1px;
  background-color: #c97b2e;
  margin: 0 auto 2rem;
}

/* ── Sections ── */
section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1;
}

/* ── Menu ── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.menu-category {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
}

.menu-category h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

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

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

.menu-item-name {
  font-size: 0.85rem;
  color: var(--text);
}

.menu-item-desc {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.menu-item-price {
  font-size: 0.8rem;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 1rem;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

/* ── Contact / Location ── */
.contact-grid {
  max-width: 520px;
}

.contact-info p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h4 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.info-block p {
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ── Footer ── */
footer {
  border-top: 1px solid #3d2008;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: #1a1008;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #a08060;
}

.footer-logo span {
  color: #c97b2e;
}

footer p {
  color: #a08060;
  font-size: 0.72rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1008;
    border-bottom: 1px solid #3d2008;
    padding: 1.5rem 2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
