/* ======================================================
   SATE JAVVA — Shared Styles
   Dipakai di semua halaman: /, /menu, /promo, /menu/<item>
   ====================================================== */

/* 1. RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-1:        #16100c;
  --bg-2:        #1f1611;
  --bg-3:        #2a1f17;
  --ember:       #e8732c;
  --ember-soft:  #c95f1e;
  --amber:       #f5a623;
  --cream:       #f4ead7;
  --cream-dim:   #cdbfa8;
  --line:        rgba(244, 234, 215, 0.08);
  --line-strong: rgba(244, 234, 215, 0.18);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 4px 14px rgba(0,0,0,0.35);
  --shadow-md: 0 14px 40px rgba(0,0,0,0.45);
  --shadow-lg: 0 24px 60px rgba(232, 115, 44, 0.18);

  --container: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cream);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section { padding: 96px 0; position: relative; z-index: 2; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ember);
  padding: 6px 14px;
  border: 1px solid rgba(232, 115, 44, 0.35);
  border-radius: 999px;
  background: rgba(232, 115, 44, 0.08);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  max-width: 720px;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--amber);
}
.section-lead {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 640px;
  margin-bottom: 56px;
}

/* 2. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ember) 0%, var(--amber) 100%);
  color: #1a0e07;
  box-shadow: 0 8px 24px rgba(232, 115, 44, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232, 115, 44, 0.5);
}
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--cream);
  background: rgba(244, 234, 215, 0.03);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(244, 234, 215, 0.08);
  border-color: var(--ember);
  color: var(--ember);
}
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* 3. HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(22, 16, 12, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  color: var(--cream);
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #4a1a18;
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(232, 115, 44, 0.25), 0 6px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--cream-dim);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--ember);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: inline-flex; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  align-items: center; justify-content: center;
}
.hamburger span {
  position: relative; display: block;
  width: 18px; height: 2px;
  background: var(--cream);
}
.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute; left: 0;
  width: 18px; height: 2px;
  background: var(--cream);
  transition: transform 0.25s ease;
}
.hamburger span::before { top: -6px; }
.hamburger span::after  { top: 6px; }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-2);
    padding: 18px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
}

/* 4. HERO (homepage) */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 75%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(232, 115, 44, 0.22) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.15) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  margin-bottom: 24px;
}
.hero-title .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--ember), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22,16,12,0.7) 100%);
  pointer-events: none;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
}

/* 5. PAGE HERO (untuk /menu, /promo, /menu/item — multi-page) */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,16,12,0.4) 0%, rgba(22,16,12,0.95) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 16px;
  max-width: 800px;
}
.page-hero h1 em { color: var(--amber); font-style: italic; font-weight: 500; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 600px;
  margin-bottom: 8px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--ember); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--cream); }

/* 6. MARQUEE */
.marquee {
  padding: 22px 0;
  background: linear-gradient(90deg, var(--ember), var(--amber), var(--ember));
  color: #1a0e07;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 7. CERITA */
.cerita-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cerita-text p {
  color: var(--cream-dim);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}
.cerita-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  position: relative;
  box-shadow: var(--shadow-md);
}
.cerita-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 880px) {
  .cerita-grid { grid-template-columns: 1fr; gap: 40px; }
  .cerita-photo { max-width: 480px; margin: 0 auto; }
}

/* 8. MENU GRID & CARDS (untuk homepage preview & menu listing) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.menu-grid-2 { grid-template-columns: repeat(2, 1fr); }

.menu-feature {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
.menu-feature img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-feature:hover img { transform: scale(1.03); }
.menu-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22, 16, 12, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.menu-feature-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
@media (max-width: 720px) {
  .menu-feature { aspect-ratio: 16 / 10; }
  .menu-feature-overlay { padding: 20px; }
}

.menu-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 3;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.menu-card:hover::before { transform: scaleX(1); }

.menu-card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
}
.menu-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-photo img { transform: scale(1.06); }

.menu-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.menu-card-body p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-bottom: 14px;
  flex: 1;
}
.menu-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.menu-card-foot .menu-price { font-size: 1.2rem; }
.menu-card-foot .menu-link {
  font-size: 0.85rem;
  color: var(--ember);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.menu-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.menu-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ember);
  white-space: nowrap;
}
.menu-category {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 600;
  color: var(--cream);
  margin: 56px 0 24px;
  display: inline-block;
  position: relative;
}
.menu-category::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), transparent);
  margin-top: 8px;
}
.menu-category:first-of-type { margin-top: 0; }
.menu-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.menu-list {
  list-style: none;
  padding: 0;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 1rem;
  color: var(--cream);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list .menu-price-sm {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ember);
  white-space: nowrap;
}
.menu-note {
  text-align: center;
  margin-top: 48px;
  color: var(--amber);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
@media (max-width: 880px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) {
  .menu-side-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid-2 { grid-template-columns: 1fr; }
}

/* 9. MENU DETAIL PAGE (sate detail) */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.detail-photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
.detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.detail-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.detail-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ember);
  margin-bottom: 24px;
}
.detail-desc {
  color: var(--cream-dim);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.spec-list {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.spec-list li:last-child { border-bottom: none; }
.spec-key { color: var(--cream-dim); }
.spec-val { color: var(--cream); font-weight: 500; text-align: right; }

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.detail-actions .btn { width: 100%; justify-content: center; }

.detail-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.platform-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  transition: border-color 0.2s, transform 0.2s;
}
.platform-pill:hover { transform: translateY(-2px); border-color: var(--ember); }
.platform-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.platform-pill .dot.shopee { background: #EE4D2D; }
.platform-pill .dot.grab   { background: #00B14F; }
.platform-pill .dot.gojek  { background: #00AA13; }

.bumbu-callout {
  background: linear-gradient(135deg, rgba(232, 115, 44, 0.08), rgba(245, 166, 35, 0.04));
  border: 1px solid rgba(232, 115, 44, 0.25);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.bumbu-callout h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
}
.bumbu-callout p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 880px) {
  .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .detail-photo { position: static; max-width: 520px; margin: 0 auto; }
  .detail-platforms { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 480px) {
  .detail-actions { grid-template-columns: 1fr; }
}

/* Related items strip */
.related-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .related-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .related-strip { grid-template-columns: 1fr; } }

/* 10. PROMO & EVENT */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.event-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ember);
}
.event-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(232, 115, 44, 0.15), transparent 70%);
  pointer-events: none;
}
.event-card-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--bg-1);
}
.event-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-photo img { transform: scale(1.05); }
.event-card-body {
  padding: 28px 30px 32px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--ember);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: gap 0.2s ease;
}
.event-card:hover .event-card-cta { gap: 14px; }
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232, 115, 44, 0.15);
  border: 1px solid rgba(232, 115, 44, 0.35);
  color: var(--ember);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.event-badge.kompetisi {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.4);
  color: var(--amber);
}
.event-badge.nobar {
  background: rgba(76, 175, 80, 0.12);
  border-color: rgba(76, 175, 80, 0.35);
  color: #7dd87f;
}

/* Event detail page (long format) */
.event-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.event-detail-grid .sticky-card {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
}
.event-detail-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  color: var(--cream);
}
.event-detail-body h2:first-child { margin-top: 0; }
.event-detail-body p {
  color: var(--cream-dim);
  font-size: 1.02rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 32px;
}
.benefit-box {
  background: rgba(232, 115, 44, 0.08);
  border: 1px solid rgba(232, 115, 44, 0.25);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}
.benefit-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 6px;
}
.benefit-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ember);
  line-height: 1.2;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 28px;
}
.schedule-table th,
.schedule-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.schedule-table th {
  color: var(--cream-dim);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.schedule-table td.label { color: var(--cream); font-weight: 500; }
.schedule-table td.date  { color: var(--ember); font-weight: 600; white-space: nowrap; }
.schedule-table td.time  { color: var(--cream-dim); font-size: 0.88rem; }

@media (max-width: 880px) {
  .event-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .event-detail-grid .sticky-card { position: static; }
  .benefits-grid { grid-template-columns: 1fr; }
  .schedule-table { font-size: 0.85rem; }
  .schedule-table th, .schedule-table td { padding: 10px 8px; }
}
.event-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  position: relative; z-index: 2;
}
.event-desc {
  color: var(--cream-dim);
  margin-bottom: 20px;
  position: relative; z-index: 2;
}
.event-terms {
  list-style: none;
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.event-terms li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--cream-dim);
}
.event-terms li::before {
  content: '✦';
  color: var(--ember);
  flex-shrink: 0;
  margin-top: 2px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
  position: relative; z-index: 2;
}
.cd-box {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
}
.cd-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.cd-label {
  font-size: 0.7rem;
  color: var(--cream-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
}
.event-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(244, 234, 215, 0.02);
}
.event-empty h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.event-empty p {
  color: var(--cream-dim);
  margin-bottom: 24px;
}
@media (max-width: 880px) { .event-grid { grid-template-columns: 1fr; } }

/* 11. PESAN (order platforms) */
.order-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.order-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.order-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.order-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}
.order-icon.wa     { background: #25D366; }
.order-icon.shopee { background: #EE4D2D; }
.order-icon.grab   { background: #00B14F; }
.order-icon.gojek  { background: #00AA13; }
.order-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.order-card p  { font-size: 0.88rem; color: var(--cream-dim); flex: 1; }
.order-card .order-link {
  font-size: 0.85rem;
  color: var(--ember);
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 880px) { .order-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .order-grid { grid-template-columns: 1fr; } }

/* 12. LOKASI */
.lokasi-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.lokasi-info {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.lokasi-info h3 { font-size: 1.4rem; margin-bottom: 12px; }
.lokasi-info address {
  font-style: normal;
  color: var(--cream-dim);
  margin-bottom: 28px;
  line-height: 1.7;
}
.jam-list { list-style: none; margin-bottom: 24px; }
.jam-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.jam-list li:last-child { border-bottom: none; }
.jam-day  { color: var(--cream-dim); }
.jam-hour { color: var(--cream); font-weight: 500; }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
  position: relative;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; min-height: 380px; }
@media (max-width: 880px) { .lokasi-grid { grid-template-columns: 1fr; } }

/* 13. FOOTER */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin-top: 12px;
  max-width: 320px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer ul li { padding: 5px 0; font-size: 0.92rem; color: var(--cream-dim); }
.footer ul li a:hover { color: var(--ember); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(244, 234, 215, 0.05);
  border: 1px solid var(--line-strong);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--cream-dim);
}
.footer-social a:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #1a0e07;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.85rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* 14. FLOATING WA */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* 15. MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 4, 0.78);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-box {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-md);
  animation: rise 0.3s ease;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(244, 234, 215, 0.06);
  display: grid; place-items: center;
  color: var(--cream-dim);
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--ember); color: #1a0e07; }
.modal h3 { font-size: 1.5rem; margin-bottom: 6px; }
.modal-sub {
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--ember); }
.form-group input.error { border-color: #ef4444; }
.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}
.form-error.show { display: block; }
.modal .btn { width: 100%; justify-content: center; margin-top: 10px; }

/* 16. ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* Inspiration Gallery (untuk lomba-video page) */
.inspo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.inspo-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-3);
  cursor: zoom-in;
}
.inspo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.inspo-item:hover img { transform: scale(1.05); }
.inspo-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(22,16,12,0.92));
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  pointer-events: none;
}
.inspo-item-caption .tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 4px;
}
@media (max-width: 880px) { .inspo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .inspo-grid { grid-template-columns: 1fr; } }

/* FAQ Section */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] {
  border-color: var(--ember);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ember);
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--ember); }
.faq-item p {
  padding: 0 24px 24px;
  color: var(--cream-dim);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}
.faq-item p a { font-weight: 600; }
.faq-item p a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .faq-item summary { padding: 18px 18px; font-size: 1rem; }
  .faq-item p { padding: 0 18px 20px; }
}

/* 17. UTILITY */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
