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

:root {
  --bg: #0a0806;
  --bg-soft: #12100c;
  --bg-card: #1a1612;
  --text: #fffaf5;
  --text-muted: #c4b5a5;
  --gold: #f59e0b;
  --orange: #ea580c;
  --red: #dc2626;
  --cream: #fef3c7;
  --radius: 18px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #ea580c, #dc2626);
  background-size: 250% 100%;
  color: #1c0a00;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.5), 0 0 60px rgba(220, 38, 38, 0.25);
  animation: pulse 3s ease-in-out infinite, gradient 5s linear infinite;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 45px rgba(245, 158, 11, 0.7), 0 0 80px rgba(220, 38, 38, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.4);
}
.btn-sm { padding: 10px 20px; font-size: 14px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(245, 158, 11, 0.5), 0 0 50px rgba(220, 38, 38, 0.25); }
  50% { box-shadow: 0 0 40px rgba(245, 158, 11, 0.8), 0 0 70px rgba(234, 88, 12, 0.35); }
}
@keyframes gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.logo span {
  color: var(--gold);
  text-shadow: 0 0 16px rgba(245, 158, 11, 0.6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a:not(.btn) {
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.25s;
}
.nav-links a:not(.btn):hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -290px;
  width: 290px;
  height: 100%;
  background: #120f0c;
  z-index: 200;
  transition: left 0.35s ease;
  padding: 85px 0 40px;
  border-right: 1px solid rgba(245, 158, 11, 0.25);
}
.mobile-menu.open { left: 0; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 28px;
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 17px;
  color: #e8d9c8;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s;
}
.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  padding: 160px 0 120px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 750px;
  background: radial-gradient(circle, 
    rgba(245, 158, 11, 0.22) 0%, 
    rgba(234, 88, 12, 0.12) 35%, 
    rgba(220, 38, 38, 0.08) 55%, 
    transparent 75%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(30px); }
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 26px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}
.glow-text {
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #ea580c, #fbbf24);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
  filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.6));
}
@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 38px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.section { padding: 100px 0; }
.section-dark { background: var(--bg-soft); }
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 50px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); font-size: 16px; }

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.fav-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  transition: all 0.35s ease;
}
.fav-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.2);
}
.fav-icon {
  font-size: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.5));
}
.fav-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 10px;
}
.fav-card p { color: var(--text-muted); font-size: 14px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.menu-col {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.menu-col h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}
.menu-col li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 14.5px;
}
.menu-col li:last-child { border-bottom: none; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 18px;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
}
.about-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}
.hours-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
}
.hours-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--gold);
}
.hours-time {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.1);
}
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  font-size: 24px;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}
.info-item strong {
  display: block;
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.info-item p { font-size: 15px; }
.info-item a:hover { color: var(--gold); }

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.12);
  min-height: 320px;
}

.footer {
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}
.footer-copy { font-size: 13px; color: #666; }

@media (max-width: 900px) {
  .favorites-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid, .hours-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  .favorites-grid, .menu-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 90px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
}
