:root {
  --primary: #bf360c;
  --accent: #ffab40;
  --bg: #1a1a1a;
  --bg2: #242424;
  --bg3: #2e2e2e;
  --text: #f5f0e8;
  --text-muted: #a89880;
  --border: #3a3a3a;
  --font: -apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 88px;
}

/* DEMO BAR */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
}
.demo-bar a { color: var(--accent); text-decoration: none; font-weight: 600; }
.demo-bar a:hover { text-decoration: underline; }

/* HEADER / NAV */
header {
  position: fixed;
  top: 33px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.97);
  border-bottom: 2px solid var(--primary);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.1;
}
.logo span { display: block; font-size: 0.55rem; color: var(--text-muted); font-weight: 400; letter-spacing: 2px; }

/* Checkbox hack nav */
#nav-toggle { display: none; }
.nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-label span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}
nav ul li a {
  display: block;
  padding: 8px 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--accent);
  background: rgba(191,54,12,0.15);
}

/* SECTIONS */
section { padding: 60px 20px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}
.divider {
  width: 60px; height: 4px;
  background: var(--primary);
  margin: 12px 0 32px;
  border-radius: 2px;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(ellipse at 50% 80%, rgba(191,54,12,0.25) 0%, transparent 70%),
              linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(191,54,12,0.03) 40px,
    rgba(191,54,12,0.03) 80px
  );
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 36px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover { background: #d84315; border-color: #d84315; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  margin-left: 12px;
}
.btn-outline:hover { background: var(--accent); color: #1a1a1a; transform: translateY(-2px); }

/* SVG FIRE ILLUSTRATION */
.hero-svg { margin-bottom: 36px; }

/* FEATURED CUTS */
.cuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cut-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.cut-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.cut-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a1a10 0%, #1a0f08 100%);
  position: relative;
  overflow: hidden;
}
.cut-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(191,54,12,0.3) 0%, transparent 70%);
}
.cut-body { padding: 20px; }
.cut-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,171,64,0.1);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.cut-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.cut-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* SMOKE PIT */
.pit-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pit-list { list-style: none; }
.pit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.pit-list li:last-child { border-bottom: none; }
.pit-icon {
  width: 40px; height: 40px;
  background: rgba(191,54,12,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pit-text strong { display: block; font-weight: 700; margin-bottom: 3px; }
.pit-text span { color: var(--text-muted); font-size: 0.88rem; }
.pit-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

/* FESTIVAL BANNER */
.festival {
  background: linear-gradient(135deg, var(--primary) 0%, #8b1a05 100%);
  text-align: center;
  padding: 60px 20px;
}
.festival h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.festival h2 em { font-style: normal; color: var(--accent); }
.festival p { color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* =====================
   MENU PAGE
   ===================== */
.menu-hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
}
.menu-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; text-transform: uppercase; }
.menu-hero h1 em { font-style: normal; color: var(--accent); }
.menu-hero p { color: var(--text-muted); margin-top: 10px; }

.menu-category { margin-bottom: 56px; }
.cat-title {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  border-left: 4px solid var(--primary);
  padding-left: 14px;
  margin-bottom: 20px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.menu-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}
.menu-item:hover { border-color: var(--primary); }
.item-name { font-weight: 700; font-size: 0.95rem; }
.item-detail { color: var(--text-muted); font-size: 0.8rem; }
.item-price {
  margin-top: auto;
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
}
.sauce-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sauce-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
  min-width: 160px;
  text-align: center;
}
.sauce-name { font-weight: 700; font-size: 0.9rem; margin-top: 8px; }
.sauce-desc { color: var(--text-muted); font-size: 0.78rem; margin-top: 4px; }

/* =====================
   TENTANG PAGE
   ===================== */
.about-hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
}
.about-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; }
.about-hero h1 em { font-style: normal; color: var(--accent); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.about-text strong { color: var(--text); }
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: var(--bg2);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.award-list { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.award-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 16px 20px;
  flex: 1 1 220px;
}
.award-card .award-year { color: var(--accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; }
.award-card .award-name { font-weight: 700; margin-top: 4px; }
.award-card .award-body { color: var(--text-muted); font-size: 0.82rem; margin-top: 4px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.value-icon {
  width: 52px; height: 52px;
  background: rgba(191,54,12,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.value-title { font-weight: 700; margin-bottom: 8px; }
.value-desc { color: var(--text-muted); font-size: 0.85rem; }

/* =====================
   GALERI PAGE
   ===================== */
.gallery-hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
}
.gallery-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; }
.gallery-hero h1 em { font-style: normal; color: var(--accent); }
.gallery-hero p { color: var(--text-muted); margin-top: 10px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.gallery-item:hover { transform: scale(1.02); border-color: var(--primary); }
.gallery-item.featured {
  grid-column: span 2;
}
.gallery-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-item.featured .gallery-visual { height: 300px; }
.gallery-caption {
  padding: 14px 18px;
}
.gallery-caption h3 { font-weight: 700; font-size: 0.95rem; }
.gallery-caption p { color: var(--text-muted); font-size: 0.82rem; margin-top: 4px; }

/* Ribs CSS art */
.ribs-art {
  position: relative;
  width: 180px;
  height: 160px;
}
.bone {
  position: absolute;
  width: 14px;
  border-radius: 7px;
  background: linear-gradient(180deg, #c8a882 0%, #8b5e3c 50%, #5a3522 100%);
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.4);
}

/* Smoke SVG art */
.smoke-bg {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}
.brisket-art {
  position: relative;
  width: 200px;
  height: 140px;
}
.brisket-layer {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 18px;
  border-radius: 4px;
}
.flame-bg {
  background: radial-gradient(ellipse at 50% 100%, #2a1000 0%, #0d0d0d 100%);
}
.sate-art {
  position: relative;
  width: 160px;
  height: 160px;
}
.sate-skewer {
  position: absolute;
  width: 3px;
  height: 140px;
  background: linear-gradient(180deg, #c8a882 0%, #8b5e3c 100%);
  border-radius: 2px;
  top: 10px;
}
.sate-chunk {
  position: absolute;
  width: 22px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #8b3a1a 0%, #5a2010 100%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* =====================
   RESERVASI PAGE
   ===================== */
.reservasi-hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
}
.reservasi-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; }
.reservasi-hero h1 em { font-style: normal; color: var(--accent); }
.reservasi-hero p { color: var(--text-muted); margin-top: 10px; }

.reservasi-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.packages { margin-bottom: 40px; }
.package-cards { display: grid; gap: 16px; }
.package-card {
  background: var(--bg2);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.package-card:hover { border-color: var(--primary); }
.package-card.featured { border-color: var(--accent); position: relative; }
.package-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}
.package-name { font-weight: 800; font-size: 1.1rem; color: var(--accent); }
.package-sub { color: var(--text-muted); font-size: 0.82rem; margin: 4px 0 12px; }
.package-features { list-style: none; }
.package-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.package-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.package-price {
  margin-top: 14px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
}
.package-price span { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

.form-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: sticky;
  top: 100px;
}
.form-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; text-transform: uppercase; }
.form-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-full { width: 100%; text-align: center; }
.form-note { color: var(--text-muted); font-size: 0.78rem; margin-top: 12px; text-align: center; }

.info-box {
  background: rgba(191,54,12,0.12);
  border: 1px solid rgba(191,54,12,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 24px;
}
.info-box h4 { color: var(--accent); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.info-box ul { list-style: none; }
.info-box ul li {
  color: var(--text-muted);
  font-size: 0.83rem;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.info-box ul li::before {
  content: '!';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* FOOTER */
footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.footer-brand .logo { font-size: 1.1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 10px; line-height: 1.6; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col address { font-style: normal; color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }

/* =====================
   MOBILE RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  body { padding-top: 82px; }

  .nav-label { display: flex; }
  nav { display: none; }

  #nav-toggle:checked ~ nav {
    display: block;
    position: fixed;
    top: 88px; left: 0; right: 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--primary);
    padding: 12px 0;
  }
  #nav-toggle:checked ~ nav ul { flex-direction: column; gap: 0; }
  #nav-toggle:checked ~ nav ul li a { padding: 14px 24px; border-radius: 0; font-size: 0.9rem; }

  .hero h1 { font-size: 2rem; }
  .cuts-grid { grid-template-columns: 1fr; }
  .pit-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }

  .gallery-item.featured { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr; }

  .reservasi-layout { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .btn-outline { margin-left: 0; margin-top: 10px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reservasi-layout { grid-template-columns: 1fr 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
