/* ============================================================
   WARUNG AHOG — CSS
   Dark BBQ Theme with Fire Accents
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --fire:      #FF6B35;
  --fire-dark: #E04E1A;
  --fire-glow: rgba(255, 107, 53, 0.25);
  --amber:     #F7C948;
  --smoke:     #1A1208;
  --coal:      #120F09;
  --char:      #1E1810;
  --ash:       #2C2416;
  --warm-gray: #8C7B6B;
  --cream:     #F5EFE6;
  --text:      #EDE5D8;
  --text-muted:#A09080;
  --white:     #FFFFFF;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-fire: 0 0 40px rgba(255,107,53,0.3);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--coal);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--coal); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 3px; }

/* ─── Container ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Section Labels & Titles ────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fire);
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 3rem;
}

.highlight {
  color: var(--fire);
  position: relative;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fire), var(--fire-dark));
  color: var(--white);
  box-shadow: 0 4px 20px var(--fire-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,53,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,239,230,0.4);
}
.btn-outline:hover {
  border-color: var(--fire);
  color: var(--fire);
  background: rgba(255,107,53,0.08);
}

.btn-outline-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ─── Scroll Animation ───────────────────────────────────── */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
[data-animate="fade-up"].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(18, 15, 9, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,107,53,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  color: var(--cream);
}

.logo-icon { font-size: 1.6rem; }

.logo-text strong { color: var(--fire); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: linear-gradient(135deg, var(--fire), var(--fire-dark)) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 12px var(--fire-glow);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,107,53,0.5) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(255,107,53,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(255,160,30,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--coal) 0%, #0D0A06 100%);
}

/* Ember particles */
.hero-bg, .cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ember {
  position: absolute;
  bottom: -10px;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber), var(--fire));
  box-shadow: 0 0 8px var(--fire);
  animation: floatEmber 4s ease-in infinite;
  animation-delay: var(--delay);
}

@keyframes floatEmber {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.9; }
  50%  { transform: translateY(-40vh) translateX(20px) scale(0.7); opacity: 0.6; }
  100% { transform: translateY(-90vh) translateX(-10px) scale(0.2); opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 8rem 1.5rem 6rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(247,201,72,0.12);
  border: 1px solid rgba(247,201,72,0.3);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--fire), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-sub em { color: var(--fire); font-style: normal; font-weight: 600; }

/* Social Proof Strip */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.proof-stars { color: var(--amber); font-size: 1rem; }

.proof-score {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
}

.proof-label { color: var(--text-muted); }

.proof-icon { font-size: 1.1rem; }

.proof-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.1);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fire), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.3; }
}

/* ════════════════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: linear-gradient(135deg, var(--fire), var(--fire-dark));
  overflow: hidden;
  padding: 0.75rem 0;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   KEUNGGULAN
════════════════════════════════════════════════════════════ */
.keunggulan {
  padding: 6rem 0;
  background: var(--char);
}

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.keunggulan-card {
  background: var(--ash);
  border: 1px solid rgba(255,107,53,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.keunggulan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--amber));
  opacity: 0;
  transition: opacity 0.3s;
}

.keunggulan-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-fire);
}

.keunggulan-card:hover::before { opacity: 1; }

.k-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.keunggulan-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.keunggulan-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   MENU SECTION
════════════════════════════════════════════════════════════ */
.menu-section {
  padding: 6rem 0;
  background: var(--coal);
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  background: var(--ash);
  padding: 0.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,107,53,0.1);
}

.tab-btn {
  flex: 1;
  min-width: fit-content;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: calc(var(--radius-lg) - 4px);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

.tab-btn:hover { color: var(--cream); background: rgba(255,255,255,0.05); }

.tab-btn.active {
  background: linear-gradient(135deg, var(--fire), var(--fire-dark));
  color: var(--white);
  box-shadow: 0 2px 12px var(--fire-glow);
}

/* Tab Content */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-grid--center {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 400px;
}

/* Menu Card */
.menu-card {
  background: var(--ash);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menu-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-card:hover {
  border-color: rgba(255,107,53,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(255,107,53,0.1);
}

.menu-card:hover::after { opacity: 1; }

.menu-card.featured {
  border-color: rgba(255,107,53,0.3);
  background: linear-gradient(145deg, rgba(255,107,53,0.08), var(--ash));
}

.menu-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--fire), var(--fire-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  text-transform: uppercase;
}

.menu-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.menu-info { flex: 1; display: flex; flex-direction: column; }

.menu-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.menu-portion {
  font-size: 0.78rem;
  color: var(--fire);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.menu-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.menu-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber);
}

.menu-order {
  background: linear-gradient(135deg, var(--fire), var(--fire-dark));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.menu-order:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px var(--fire-glow);
}

/* ════════════════════════════════════════════════════════════
   LAYANAN
════════════════════════════════════════════════════════════ */
.layanan {
  padding: 6rem 0;
  background: var(--char);
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.layanan-card {
  background: var(--ash);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.layanan-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-fire);
}

.layanan-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
}

.layanan-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.layanan-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.layanan-detail {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  width: 100%;
}

.layanan-detail span {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.layanan-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--fire), var(--fire-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  margin-top: auto;
}

.layanan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--fire-glow);
}

/* Price Banner */
.price-banner {
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(247,201,72,0.06));
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.price-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--amber);
}

.price-sub { font-size: 0.78rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════════════════ */
.review-section {
  padding: 6rem 0;
  background: var(--coal);
  text-align: center;
}

.review-section .section-label,
.review-section .section-title { margin-left: auto; margin-right: auto; display: block; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.review-card {
  background: var(--ash);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem; left: 1.5rem;
  font-size: 5rem;
  color: var(--fire);
  opacity: 0.2;
  font-family: var(--font-display);
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(255,107,53,0.2);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--fire), var(--fire-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.review-author strong { display: block; color: var(--cream); font-size: 0.875rem; }
.review-author span   { font-size: 0.78rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   LOKASI
════════════════════════════════════════════════════════════ */
.lokasi-section {
  padding: 6rem 0;
  background: var(--char);
}

.lokasi-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.lokasi-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--ash);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s;
}

.info-card:hover { border-color: rgba(255,107,53,0.25); }

.info-icon { font-size: 1.5rem; flex-shrink: 0; }

.info-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fire);
  margin-bottom: 0.35rem;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-card a {
  color: var(--cream);
  transition: color 0.2s;
}

.info-card a:hover { color: var(--fire); }

.lokasi-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,107,53,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.lokasi-map iframe { display: block; }

/* ════════════════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(180deg, #0D0A06 0%, var(--smoke) 100%);
  overflow: hidden;
  text-align: center;
}

.cta-final .container { position: relative; z-index: 2; }

.cta-content { max-width: 640px; margin: 0 auto; }

.cta-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  animation: flameDance 3s ease-in-out infinite;
}

@keyframes flameDance {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50%       { transform: rotate(3deg) scale(1.05); }
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta-final p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--coal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--amber);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fire);
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--fire); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   FLOATING WA BUTTON
════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: waPop 0.5s cubic-bezier(0.68,-0.55,0.265,1.55) 1s both;
}

@keyframes waPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

.wa-float svg { color: white; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lokasi-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: rgba(18, 15, 9, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 1px solid rgba(255,107,53,0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; }
  .nav-cta { width: 100%; text-align: center; justify-content: center; }
  .hamburger { display: flex; z-index: 1010; }

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero */
  .hero-content { padding: 7rem 1.5rem 5rem; }
  .hero-proof { gap: 1rem; }
  .proof-divider { display: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }

  /* Menu tabs */
  .menu-tabs { gap: 0.35rem; }
  .tab-btn { font-size: 0.78rem; padding: 0.55rem 0.75rem; }

  /* Menu grid */
  .menu-grid { grid-template-columns: 1fr; }

  /* Layanan */
  .layanan-grid { grid-template-columns: 1fr; }
  .price-banner { flex-direction: column; text-align: center; }
  .price-banner .btn { width: 100%; justify-content: center; }

  /* Reviews */
  .review-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.85rem; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .keunggulan-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

/* ════════════════════════════════════════════════════════════
   HERO — Background Image
════════════════════════════════════════════════════════════ */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.22;
  filter: saturate(1.4) brightness(0.7);
}

/* Pastikan ember dan overlay tetap di atas foto */
.hero-bg   { z-index: 1; }
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(18,15,9,0.55) 0%, rgba(18,15,9,0.3) 40%, rgba(18,15,9,0.85) 100%),
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(255,107,53,0.15) 0%, transparent 60%);
}
.hero-content      { z-index: 2; }
.hero-scroll-hint  { z-index: 2; }

/* ════════════════════════════════════════════════════════════
   FOOD SHOWCASE
════════════════════════════════════════════════════════════ */
.showcase {
  padding: 5rem 0;
  background: var(--coal);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.showcase-main,
.showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.showcase-main img,
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-main { height: 480px; }

.showcase-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.showcase-item { height: 228px; }

.showcase-main:hover img,
.showcase-item:hover img {
  transform: scale(1.04);
}

/* Gradient overlay on showcase cards */
.showcase-main::after,
.showcase-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,15,9,0.85) 0%, rgba(18,15,9,0.1) 50%, transparent 100%);
  pointer-events: none;
}

.showcase-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
}

.showcase-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--fire), var(--fire-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  margin-bottom: 0.4rem;
}

.showcase-label p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  line-height: 1.3;
}

.showcase-item .showcase-label p { font-size: 0.95rem; }

/* ════════════════════════════════════════════════════════════
   MENU CARD — Image variant (unused, kept for reference)
════════════════════════════════════════════════════════════ */

/* Responsive showcase */
@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-main { height: 280px; }
  .showcase-side { flex-direction: row; }
  .showcase-item { height: 180px; flex: 1; }
}

@media (max-width: 480px) {
  .showcase-side { flex-direction: column; }
  .showcase-item { height: 200px; }
}
