:root {
  --brand: #ff6a00;
  --ink: #111111;
  --muted: #5f6368;
  --card: #ffffff;
  --bg: #fafafa;
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

/* Layout helper */
.wrap {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.header-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0 6px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 72px;
  height: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-title {
  font-weight: 800;
  font-size: 1.4rem;
}

.brand-tagline {
  font-size: 0.86rem;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-small {
  padding-inline: 16px;
  padding-block: 9px;
  font-size: 0.9rem;
}

/* nav toggle + panel */
.nav-toggle {
  position: absolute;
  right: 6px;
  top: 10px;
  display: inline-flex;
  width: 38px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #333333;
}

.nav-panel {
  display: none;
  padding: 8px 0 10px;
  background: #ffffff;
}

.nav-panel-open {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.nav-panel a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-panel a:hover {
  border-color: #eeeeee;
  background: #fff7f0;
}

.divider {
  height: 1px;
  background: #eeeeee;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-dark {
  background: #111827;
}

.btn-outline {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #dddddd;
  box-shadow: none;
}

.btn-text {
  background: transparent;
  border: 1px solid #dddddd;
  color: var(--ink);
  box-shadow: none;
}

.btn-ghost {
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid #dddddd;
  background: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.btn-ghost span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

/* HERO */
.hero {
  padding: 18px 0 10px;
}

.hero-main {
  display: grid;
  gap: 18px;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-main {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.hero-copy h1 {
  font-size: 2.5rem;
  line-height: 1.05;
  margin: 0 0 10px;
}

.hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pill {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid #eeeeee;
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--muted);
}

.hero-hint {
  text-align: center;
  margin: 8px 0 0;
}

/* Slideshow */
.slideshow-small {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.slideshow-small .slide {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.slideshow-small .slide.active {
  display: block;
  opacity: 1;
}

.slideshow-small img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sections & cards */
.section {
  padding: 24px 0;
}

.section-title {
  font-size: 2.1rem;
  line-height: 1.15;
  margin: 4px auto 14px;
}

.cards {
  display: grid;
  gap: 16px;
  margin: 6px 0 40px;
}

.cards.two {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .cards.two {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid #eeeeee;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.card-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-tagline {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Craving selector */
.craving-section {
  margin-top: 10px;
}

.craving-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 14px;
}

.craving-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.craving-btn {
  border-radius: 999px;
  border: 1px solid #eeeeee;
  padding: 9px 16px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background 0.18s ease, transform 0.06s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.craving-btn:hover {
  background: #fff7f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.craving-btn:active {
  transform: translateY(1px);
}

.craving-btn.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.craving-results-empty {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid #eeeeee;
  background: #ffffff;
}

.site-footer .wrap {
  padding: 16px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}


/* ===== MENU PAGE ===== */
.menu-hero {
  padding: 26px 0 14px;
  text-align: center;
}

.menu-hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 6px auto 14px;
}

.menu-location-buttons {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}

.menu-location-btn {
  min-width: 150px;
  text-align: center;
}

.menu-live-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.menu-live-cta {
  margin-bottom: 26px;
}

.menu-live-cta .btn {
  min-width: 230px;
}

/* simple menu sections for text-only menu */
.menu-sections {
  padding: 0 0 30px;
}

.menu-section {
  margin-bottom: 22px;
}

.menu-section h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.menu-section p {
  margin: 0 0 8px;
  color: var(--muted);
}

.menu-items {
  display: grid;
  gap: 6px;
}

.menu-item-name {
  font-weight: 600;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--muted);
}
.signature-section {
  text-align: center;
}

.signature-intro {
  max-width: 600px;
  margin: 0 auto 24px;
  color: #666;
}

.signature-grid {
  gap: 24px;
}

.signature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.signature-card h3 {
  margin-top: 12px;
  font-size: 1.1rem;
}

.signature-card p {
  font-size: 0.9rem;
}
.signature-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.signature-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.signature-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff6a00;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.18);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

