/* =====================
   TOKENS & RESET
   ===================== */
:root {
  --black: #0f0f0f;
  --white: #fafaf8;
  --cream: #fdf6ec;
  --red: #c0392b;
  --red-dark: #922b21;
  --gold: #d4a843;
  --gold-light: #f0c96c;
  --gray-1: #1a1a1a;
  --gray-2: #2d2d2d;
  --gray-3: #4a4a4a;
  --gray-4: #888;
  --gray-5: #ccc;
  --gray-6: #eee;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-4);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(192,57,43,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-gradient-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 60%, transparent 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-left { max-width: 520px; }
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-4);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  color: var(--gray-4);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.hero-micro {
  font-size: 0.8rem;
  color: var(--gray-5);
  letter-spacing: 0.03em;
}

/* Hero visual - stacked dishes */
.hero-right { display: flex; justify-content: flex-end; align-items: center; }
.hero-visual { position: relative; width: 320px; height: 340px; }
.hero-dish-stack { position: relative; width: 100%; height: 100%; }
.dish-card {
  position: absolute;
  background: var(--gray-2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}
.dish-card:hover { transform: translateY(-4px) !important; }
.dish-card-1 { width: 180px; height: 200px; top: 0; left: 0; z-index: 3; transform: rotate(-4deg); }
.dish-card-2 { width: 160px; height: 180px; top: 70px; left: 100px; z-index: 2; transform: rotate(3deg); }
.dish-card-3 { width: 150px; height: 170px; top: 150px; left: 40px; z-index: 1; transform: rotate(-6deg); }
.dish-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish-emoji { font-size: 3rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.dish-card-2 .dish-emoji { font-size: 2.5rem; }
.dish-card-3 .dish-emoji { font-size: 2.2rem; }
.dish-name { padding: 0.6rem 0.75rem 0.2rem; font-size: 0.78rem; font-weight: 600; color: var(--white); }
.dish-price { padding: 0 0.75rem 0.7rem; font-size: 0.75rem; color: var(--gold); font-weight: 500; }

/* =====================
   PROOF / STATS
   ===================== */
.proof {
  background: var(--gray-1);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 2.5rem 0;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.proof-stat { text-align: center; }
.proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.proof-label {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}
.proof-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* =====================
   MENU SECTION
   ===================== */
.menu-section {
  padding: 7rem 0;
  background: var(--black);
}
.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-4);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 4rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  margin-bottom: 3rem;
}
.menu-col-head {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,168,67,0.2);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mi-name {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 400;
}
.mi-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,57,43,0.15);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  margin-left: 0.4rem;
}
.mi-price {
  font-size: 0.9rem;
  color: var(--gray-4);
  font-weight: 500;
  flex-shrink: 0;
  margin-left: 1rem;
}
.menu-note {
  font-size: 0.85rem;
  color: var(--gray-4);
  text-align: center;
  font-style: italic;
}

/* =====================
   HOW IT WORKS / PAY
   ===================== */
.pay-section {
  padding: 7rem 0;
  background: var(--gray-1);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.pay-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pay-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
.pay-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.7;
}
.step-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--gray-4);
  line-height: 1.65;
}

/* Pay methods */
.pay-methods {
  text-align: center;
  padding: 3rem;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.pay-methods-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-5);
  margin-bottom: 1.5rem;
}
.pay-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.pay-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.pay-logo-icon {
  width: 56px;
  height: 56px;
  background: var(--gray-2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}
.pay-logo span {
  font-size: 0.85rem;
  color: var(--gray-4);
  font-weight: 500;
}

/* =====================
   CLOSING
   ===================== */
.closing {
  padding: 8rem 0;
  background: var(--black);
  text-align: center;
  position: relative;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(192,57,43,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { max-width: 700px; margin: 0 auto; padding: 0 2rem; position: relative; }
.closing-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-4);
  margin-bottom: 2rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--gray-4);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.closing-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hours-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
}
.hours-day { color: var(--gray-5); font-weight: 500; }
.hours-time { color: var(--white); font-weight: 500; }
.closing-phone {
  font-size: 1.2rem;
  font-weight: 600;
}
.closing-phone a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.closing-phone a:hover { opacity: 0.8; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--gray-1);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray-4);
}
.footer-info {
  text-align: right;
}
.footer-info p {
  font-size: 0.85rem;
  color: var(--gray-4);
  line-height: 1.8;
}
.footer-info a { color: var(--gray-4); text-decoration: none; transition: color 0.2s; }
.footer-info a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-5);
}

/* =====================
   MOBILE RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; padding-bottom: 3rem; }
  .hero-right { display: none; }
  .hero-title { font-size: 2.8rem; }
  .proof-inner { flex-wrap: wrap; justify-content: center; }
  .proof-divider { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .pay-steps { grid-template-columns: 1fr; }
  .pay-logos { gap: 1.5rem; }
  .pay-logo-icon { width: 48px; height: 48px; }
  .footer-inner { flex-direction: column; }
  .footer-info { text-align: left; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 2.5rem 1.5rem 2rem; }
  .menu-inner, .pay-inner, .closing-inner { padding: 0 1.5rem; }
  .pay-methods { padding: 2rem 1.5rem; }
}
