:root {
  --bg: #1a1715;
  --bg-elev: #221d1a;
  --surface: #2a2421;
  --text: #f3ece2;
  --muted: #a89a8a;
  --accent: #d9a566;
  --accent-strong: #e8b878;
  --border: rgba(217, 165, 102, 0.18);
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main { width: 100%; }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(217, 165, 102, 0.12), transparent 60%),
    linear-gradient(180deg, #15110f 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero__inner { max-width: 480px; width: 100%; }

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 12vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--accent);
  font-style: italic;
}

.hero__tagline {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  min-width: 200px;
  -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--accent);
  color: #1a1110;
  box-shadow: var(--shadow);
}

.btn--primary:hover { background: var(--accent-strong); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
}

/* ===== SECTIONS ===== */
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  position: relative;
}

.section__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 16px auto 0;
}

/* ===== MENU ===== */
.menu {
  padding: 64px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.menu__category { margin-top: 48px; }

.menu__category-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.menu__list { list-style: none; }

.menu__item {
  padding: 18px 0;
  border-bottom: 1px dashed var(--border);
}

.menu__item:last-child { border-bottom: none; }

.menu__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 4px;
}

.menu__name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

.menu__price {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu__desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact {
  padding: 64px 24px 80px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--border);
}

.contact__intro {
  color: var(--muted);
  margin: 24px 0 12px;
}

.contact__info {
  font-style: normal;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.contact__actions .btn { width: 100%; max-width: 320px; }

/* ===== FOOTER ===== */
.footer {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
}

/* ===== Tablet / larger ===== */
@media (min-width: 640px) {
  .contact__actions { flex-direction: row; justify-content: center; }
  .contact__actions .btn { width: auto; }
  .section__title { font-size: 2.4rem; }
}
