:root {
  --black: #151312;
  --charcoal: #201d1b;
  --orange: #f2932c;
  --orange-dark: #d9791a;
  --cream: #faf6f0;
  --gray: #6b645d;
  --line: #e7e0d6;
  --radius: 14px;
  --container: 1120px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.5px;
  margin: 0 0 0.5rem;
  line-height: 1.05;
}

h2 { font-size: 2.4rem; color: var(--black); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; color: var(--gray); }

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

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sub { max-width: 560px; font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: #1a1408;
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}
.btn-outline:hover { background: var(--black); color: var(--cream); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 19, 18, 0.96);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-weight: 700;
}
.brand-mark {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: var(--black);
  flex-shrink: 0;
}
.brand-name { font-size: 0.85rem; line-height: 1.2; letter-spacing: 0.3px; }
.brand-name strong { color: var(--orange); font-size: 1rem; }

.main-nav {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.85;
}
.main-nav a:hover { opacity: 1; color: var(--orange); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 147, 44, 0.18), transparent 45%),
    linear-gradient(180deg, var(--black), var(--charcoal));
  color: var(--cream);
  padding: 6.5rem 0 5rem;
}
.hero-inner { max-width: 760px; }
.eyebrow {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--cream);
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  color: #cfc7bd;
  font-size: 1.15rem;
  max-width: 560px;
  margin-top: 1.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1rem;
}
.hero .btn-outline { border-color: var(--cream); color: var(--cream); }
.hero .btn-outline:hover { background: var(--cream); color: var(--black); }
.hero-note { font-size: 0.9rem; color: #a89f93; margin-top: 0.5rem; }

/* Highlights */
.highlights { background: var(--cream); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  min-width: 0;
}
.card-icon {
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; }

/* Menu */
.menu { background: var(--black); color: var(--cream); }
.menu h2 { color: var(--cream); }
.menu .section-sub { color: #a89f93; }
.menu-table { margin-top: 2rem; max-width: 640px; }
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menu-item { font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.menu-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(255,255,255,0.25);
  transform: translateY(-4px);
}
.menu-price { color: var(--orange); font-weight: 700; white-space: nowrap; }
.menu-price small { color: #a89f93; font-weight: 500; }

/* Hours */
.hours { background: var(--cream); }
.hours-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
.hours-table { border-collapse: collapse; margin-top: 1.5rem; width: 100%; max-width: 480px; }
.hours-table td {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: var(--gray); }

.hours-card {
  background: var(--black);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2.2rem;
  text-align: center;
}
.hours-card-title { font-weight: 600; color: #cfc7bd; margin-bottom: 0.6rem; }
.hours-phone {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.hours-card-note { font-size: 0.9rem; color: #a89f93; margin: 0; }

/* Location */
.location { background: var(--charcoal); color: var(--cream); }
.location h2 { color: var(--cream); }
.location .address { color: #cfc7bd; font-size: 1.1rem; margin: 1.2rem 0 1.6rem; }
.location .btn-outline { border-color: var(--cream); color: var(--cream); }
.location .btn-outline:hover { background: var(--cream); color: var(--black); }
.location-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  aspect-ratio: 4 / 3;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { background: var(--black); color: #a89f93; padding: 2.5rem 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-weight: 700;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 0.8rem; margin: 1.2rem 0 0; text-align: center; }

/* Mobile call FAB */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 60;
}

/* Responsive */
@media (max-width: 880px) {
  .cards { grid-template-columns: minmax(0, 1fr); }
  .hours-inner, .location-inner { grid-template-columns: minmax(0, 1fr); }
  .map-embed { aspect-ratio: 16 / 10; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a {
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-call-fab { display: flex; }
  .hero { padding-top: 4.5rem; }
  .section { padding: 3.5rem 0; }
  h2 { font-size: 2rem; }
}
