:root {
  --orange: #e6642c;
  --orange-dark: #c9501e;
  --cream: #fdf6ee;
  --dark: #1e1712;
  --text: #2b211a;
  --muted: #7a6c60;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(30, 23, 18, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: var(--dark);
}

.logo span.flame { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a.active,
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #2b1c12, #1e1712);
  color: #fff;
  padding: 90px 24px 70px;
  text-align: center;
}

.hero .eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #e6dcd0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }

.hero-meta {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  color: #cfc3b6;
  font-size: 0.95rem;
}
.hero-meta strong { color: #fff; }

.coming-soon-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.coming-soon-logo {
  margin-bottom: 24px;
  font-size: 1.6rem;
  color: #fff;
}

/* Sections */
section { padding: 70px 24px; }

.section-title {
  text-align: center;
  margin-bottom: 44px;
}
.section-title .eyebrow {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}
.section-title h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-top: 8px;
}

/* Category cards on homepage */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.category-card:hover { transform: translateY(-4px); }
.category-card .emoji { font-size: 2.4rem; margin-bottom: 12px; }
.category-card h3 { margin-bottom: 6px; }
.category-card p { color: var(--muted); font-size: 0.92rem; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery .ph {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f0dcc4, #e6642c22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 10px;
}

/* About preview / split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.split img, .split .img-ph {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.img-ph {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2b1c12, #4a2f1c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.split h2 { margin-bottom: 16px; font-size: 1.8rem; }
.split p { color: var(--muted); margin-bottom: 14px; }

/* CTA band */
.cta-band {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}
.cta-band h2 { font-size: 1.9rem; margin-bottom: 14px; }
.cta-band p { margin-bottom: 26px; color: #fff2e9; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.7); }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #cfc3b6;
  padding: 50px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 30px;
}
.footer-grid h4 { color: #fff; margin-bottom: 14px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

/* Menu page */
.menu-page-hero {
  background: linear-gradient(135deg, #2b1c12, #1e1712);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}
.menu-page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 10px; }
.menu-page-hero p { color: #cfc3b6; }

.menu-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 34px 0 10px;
}
.menu-tab {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.menu-tab:hover { border-color: var(--orange); color: var(--orange); }

.menu-category {
  max-width: 900px;
  margin: 0 auto 60px;
}
.menu-category h2 {
  color: var(--orange-dark);
  font-size: 1.5rem;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 10px;
}
.menu-category .cat-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 40px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.12);
}
.menu-item .name { font-weight: 600; }
.menu-item .note { display: block; color: var(--muted); font-size: 0.8rem; font-weight: 400; }
.menu-item .price {
  color: var(--orange-dark);
  font-weight: 700;
  white-space: nowrap;
}

.menu-note {
  max-width: 900px;
  margin: 0 auto 20px;
  background: #fff3e6;
  border: 1px solid #f0c99a;
  color: #7a4a1c;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.info-card h3 { margin-bottom: 8px; color: var(--orange-dark); }
.info-card p, .info-card a { color: var(--muted); }
.map-ph {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f0dcc4, #e6642c22);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.social-pill {
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.social-pill:hover { background: var(--orange-dark); }

/* About page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  text-align: center;
  padding: 24px 16px;
}
.value-card .emoji { font-size: 2rem; margin-bottom: 10px; }

/* Add-to-cart controls */
.menu-item {
  position: relative;
  padding-right: 44px;
}
.add-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.add-btn:hover { background: var(--orange-dark); }

/* Cart floating button */
.cart-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(230, 100, 44, 0.5), var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-fab:hover { background: var(--orange-dark); }
.cart-emoji {
  filter: brightness(0) invert(1);
  font-size: 1.6rem;
  line-height: 1;
}
.cart-fab.pulse { animation: cart-pulse 0.35s ease; }
@keyframes cart-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  display: none;
  padding: 0 4px;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 350;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  z-index: 400;
  box-shadow: -8px 0 24px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.25s ease;
}
.cart-drawer.open { right: 0; }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-drawer-head h3 { font-size: 1.1rem; }
.cart-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--muted);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
}
.cart-empty { color: var(--muted); font-size: 0.9rem; padding: 20px 0; }

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.cart-row-info { display: flex; flex-direction: column; gap: 2px; }
.cart-row-name { font-weight: 600; font-size: 0.9rem; }
.cart-row-price { font-size: 0.78rem; color: var(--muted); }
.cart-row-actions { display: flex; align-items: center; gap: 6px; }
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}
.qty-val { min-width: 16px; text-align: center; font-size: 0.85rem; font-weight: 600; }
.qty-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  margin-left: 4px;
}
.qty-remove:hover { color: var(--orange-dark); }

.cart-drawer-foot {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.cart-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

.cart-payment { margin-bottom: 14px; }
.cart-payment-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.cart-payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cart-payment-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 6px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.cart-payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.cart-payment-option:has(input:checked) {
  border-color: var(--orange-dark);
  background: rgba(255, 122, 0, 0.08);
  color: var(--orange-dark);
}

#cartOrderBtn:disabled { opacity: 0.65; cursor: default; }

.order-status {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 8px;
  min-height: 1em;
  color: var(--muted);
}
.order-status.error { color: #b3261e; font-weight: 600; }

.order-confirmation {
  text-align: center;
  padding: 16px 14px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  background: rgba(255, 122, 0, 0.06);
}
.order-confirmation-title { font-weight: 700; margin-bottom: 6px; }
.order-confirmation-number { font-size: 0.95rem; margin-bottom: 4px; }
.order-confirmation-number span { font-weight: 700; color: var(--orange-dark); }
.order-confirmation-note { font-size: 0.8rem; color: var(--muted); }

@media (max-width: 800px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
  .nav-cta.open { display: block; margin: 0 24px 20px; text-align: center; }
}
