/* ===========================================================
   SIBABAH — cateringsibabah.com · Stylesheet utama
   Mobile-first, ringan, sistem warna hangat lokal premium.
   Font: Poppins (display + body).
   =========================================================== */

:root {
  /* Warna brand */
  --bg:        #FBF3E2;   /* krem hangat — background utama */
  --bg-soft:   #FFFCF3;   /* krem lebih terang */
  --surface:   #FFFFFF;
  --ink:       #2E1D11;   /* coklat tua — teks utama */
  --ink-2:     #5C3B24;   /* coklat sedang — teks sekunder */
  --ink-3:     #8A6A4F;   /* coklat muda — caption */
  --gold:      #E8B33B;   /* gold/mustard — aksen brand */
  --gold-deep: #C99224;
  --green:     #4C6B30;   /* hijau daun pisang — secukupnya */
  --red:       #B5432A;   /* sambal — sangat sparing */
  --wa:        #25D366;   /* WhatsApp green */
  --wa-dark:   #1ebe57;
  --line:      rgba(46, 29, 17, 0.12);
  --line-strong: rgba(46, 29, 17, 0.22);
  --shadow-sm: 0 1px 2px rgba(46,29,17,.06), 0 2px 8px rgba(46,29,17,.04);
  --shadow-md: 0 8px 24px rgba(46,29,17,.10), 0 2px 6px rgba(46,29,17,.06);
  --shadow-lg: 0 24px 60px rgba(46,29,17,.18), 0 4px 12px rgba(46,29,17,.08);

  /* Type — Poppins di semua */
  --font-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radius & spacing */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --max: 1200px;
  --gap: 20px;

  /* Sticky CTA height — dipakai untuk padding bawah body */
  --sticky-cta-h: 76px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.003em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-cta-h);
}

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

/* ---------- Utilitas ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-tight { padding: 40px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--gold-deep);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0; letter-spacing: -0.02em; line-height: 1.1; }
h1 { font-size: clamp(40px, 9vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 5.5vw, 44px); line-height: 1.12; }
h3 { font-size: clamp(20px, 3vw, 26px); font-weight: 600; }
h2 em, h1 em { font-style: italic; color: var(--gold-deep); }

p { margin: 0 0 12px; color: var(--ink-2); text-wrap: pretty; }
p.lead { font-size: 17px; line-height: 1.6; color: var(--ink-2); }
@media (min-width: 768px) { p.lead { font-size: 19px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: var(--bg-soft); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #1d120a; }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(46,29,17,0.04); }
.btn-wa { background: var(--wa); color: white; }
.btn-wa:hover { background: var(--wa-dark); }
.btn-lg { padding: 16px 26px; font-size: 16px; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 243, 226, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.scrolled { border-color: var(--line); background: rgba(251, 243, 226, 0.94); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 40px; height: 40px; border-radius: 10px; background: var(--surface); display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-sm); }
.brand-mark img { width: 36px; height: 36px; object-fit: contain; }
.brand-text { line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 19px; font-weight: 700; display: block; }
.brand-text span { font-size: 11px; letter-spacing: 0.06em; color: var(--ink-3); text-transform: uppercase; }

.nav { display: none; align-items: center; gap: 26px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink-2); }
.nav a:hover, .nav a.active { color: var(--ink); }
@media (min-width: 960px) { .nav { display: flex; } }

.header-cta { display: none; }
@media (min-width: 960px) { .header-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; width: 42px; height: 42px; border-radius: 12px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-strong); color: var(--ink);
}
@media (min-width: 960px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  padding: 80px 24px 32px;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 12px; background: transparent; border: 1px solid var(--line-strong); display: grid; place-items: center; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu nav a:last-child { border-bottom: none; }
.mobile-menu .menu-cta { margin-top: 24px; display: grid; gap: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 28px 0 16px; overflow: hidden; }
@media (min-width: 900px) { .hero { padding: 56px 0 40px; } }

.hero-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
  }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2); font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-weight: 800; font-size: 11px; letter-spacing: 0.04em; }

.hero h1 {
  margin-top: 18px;
  font-size: clamp(42px, 10vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero .sub { margin-top: 18px; max-width: 52ch; font-size: 17px; }
@media (min-width: 768px) { .hero .sub { font-size: 19px; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.trust-bar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 600px) { .trust-bar { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.trust-item { padding: 14px 12px; border-right: 1px solid var(--line); }
.trust-item:nth-child(2n) { border-right: none; }
@media (min-width: 600px) { .trust-item:nth-child(2n) { border-right: 1px solid var(--line); } .trust-item:last-child { border-right: none; } }
.trust-item .k { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--ink); line-height: 1; }
.trust-item .k em { font-style: italic; color: var(--gold-deep); }
.trust-item .v { font-size: 12px; color: var(--ink-3); margin-top: 4px; line-height: 1.3; }

.hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(46,29,17,.5));
  pointer-events: none;
}
.hero-pin {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  display: flex; gap: 10px; align-items: center;
  color: #fff; font-size: 13px;
  z-index: 1;
}
.hero-pin .ribbon { display: inline-flex; gap: 8px; align-items: center; padding: 8px 12px; background: rgba(0,0,0,.32); backdrop-filter: blur(8px); border-radius: 999px; border: 1px solid rgba(255,255,255,.18); }

/* ---------- Section heading layout ---------- */
.s-head { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin-bottom: 32px; }
.s-head h2 { font-weight: 700; }
.s-head h2 em { font-style: italic; color: var(--gold-deep); }
.s-head .sub { font-size: 17px; color: var(--ink-2); }

/* ---------- Catering nasibox ---------- */
.catering {
  background: var(--ink);
  color: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 36px 24px;
  margin: 0 0 16px;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .catering { padding: 56px 48px; } }
.catering::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%); opacity: .35;
}
.catering-grid { display: grid; gap: 28px; grid-template-columns: 1fr; position: relative; z-index: 1; }
@media (min-width: 900px) { .catering-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; } }

.catering h2 { color: var(--bg-soft); font-weight: 700; }
.catering h2 em { color: var(--gold); }
.catering p { color: rgba(255, 252, 243, 0.78); }
.catering .eyebrow { color: var(--gold); }
.catering .eyebrow::before { background: var(--gold); }

.catering-points { display: grid; gap: 14px; margin: 22px 0; }
.catering-point { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(255, 252, 243, 0.9); }
.catering-point .icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(232, 179, 59, 0.15); border: 1px solid rgba(232, 179, 59, 0.35); display: grid; place-items: center; color: var(--gold); }
.catering-point .icon svg { width: 14px; height: 14px; }

.catering-occasions {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0 22px;
}
.chip { padding: 6px 12px; border-radius: var(--r-pill); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); font-size: 13px; color: rgba(255, 252, 243, 0.88); }

.catering .price-tag { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.catering .price-tag .small { font-size: 14px; color: rgba(255, 252, 243, 0.7); }
.catering .price-tag .big { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--gold); }

.catering-visual {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.catering-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Paket Unggulan ---------- */
.paket-grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .paket-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.paket-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.paket-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.paket-card.featured { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(232,179,59,.25), var(--shadow-md); }
.paket-card.featured::before {
  content: "Paling Laku"; position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 11px; background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border-radius: var(--r-pill);
}
.paket-img { aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.paket-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.paket-card:hover .paket-img img { transform: scale(1.04); }
.paket-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.paket-tag { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.paket-name { font-family: var(--font-display); font-size: 25px; font-weight: 700; color: var(--ink); line-height: 1.05; }
.paket-name em { color: var(--gold-deep); font-style: italic; }
.paket-price { display: flex; align-items: baseline; gap: 6px; }
.paket-price .from { font-size: 13px; color: var(--ink-3); }
.paket-price .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--ink); }
.paket-menu { list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 6px; font-size: 14px; color: var(--ink-2); }
.paket-menu li { display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.paket-menu li::before { content: "·"; color: var(--gold-deep); font-weight: 700; }
.paket-card .btn { margin-top: auto; }

/* ---------- Trust section ---------- */
.trust-section { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.trust-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 20px; }
.trust-card .k { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--ink); line-height: 1; }
.trust-card .k em { color: var(--gold-deep); font-style: italic; }
.trust-card .v { margin-top: 8px; font-size: 13px; color: var(--ink-2); line-height: 1.45; }

.clients { margin-top: 28px; padding-top: 28px; border-top: 1px dashed var(--line-strong); }
.clients .lbl { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 14px; }
.clients-list { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; }
.client-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink-2); }
@media (min-width: 768px) { .client-name { font-size: 22px; } }

/* ---------- Dine-in / Rumah Makan ---------- */
.dinein-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .dinein-grid { grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; } }

.dinein-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.dinein-visual .ph { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.dinein-visual .ph.tall { aspect-ratio: 3/4; margin-top: 28px; }
.dinein-visual .ph img { width: 100%; height: 100%; object-fit: cover; }

.dinein-points { display: grid; gap: 12px; margin: 22px 0; }
.dinein-point { display: flex; gap: 12px; align-items: flex-start; }
.dinein-point .icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; background: rgba(232, 179, 59, 0.18); color: var(--gold-deep); display: grid; place-items: center; }
.dinein-point .icon svg { width: 18px; height: 18px; }
.dinein-point .txt strong { display: block; font-weight: 600; color: var(--ink); font-size: 15px; }
.dinein-point .txt span { font-size: 14px; color: var(--ink-2); }

/* ---------- Lokasi cabang ---------- */
.lokasi-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .lokasi-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }

.lokasi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.lokasi-map { aspect-ratio: 16/9; background: linear-gradient(135deg, #E8DDB5, #D4C795); position: relative; overflow: hidden; }
.lokasi-map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,29,17,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,29,17,.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.lokasi-map .roads { position: absolute; inset: 0; }
.lokasi-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.lokasi-pin .pin-mark {
  width: 36px; height: 36px; border-radius: 50% 50% 50% 0;
  background: var(--red); transform: rotate(-45deg);
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}
.lokasi-pin .pin-mark::after {
  content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--bg-soft);
  transform: rotate(45deg);
}
.lokasi-pin .pin-shadow { width: 16px; height: 4px; background: rgba(0,0,0,.2); border-radius: 50%; filter: blur(2px); }

.lokasi-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.lokasi-name { font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1.05; }
.lokasi-name em { font-style: italic; color: var(--gold-deep); }
.lokasi-row { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.lokasi-row .icon { flex-shrink: 0; width: 18px; height: 18px; color: var(--ink-3); margin-top: 2px; }
.lokasi-row strong { color: var(--ink); font-weight: 600; }
.lokasi-row .hours-grid { display: grid; gap: 2px; }
.lokasi-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 6px; }
.lokasi-actions .btn { padding: 12px 14px; font-size: 14px; }

/* ---------- Liwetan ---------- */
.liwetan {
  background: linear-gradient(135deg, #4C6B30 0%, #38501f 100%);
  color: #FCF6E2;
  border-radius: var(--r-xl);
  padding: 40px 24px;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .liwetan { padding: 56px 48px; } }
.liwetan::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(232,179,59,.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.06), transparent 50%);
}
.liwetan-inner { position: relative; z-index: 1; }
.liwetan h2 { color: #FCF6E2; font-weight: 700; }
.liwetan h2 em { color: var(--gold); }
.liwetan p { color: rgba(252, 246, 226, 0.8); max-width: 50ch; }
.liwetan .eyebrow { color: var(--gold); }
.liwetan .eyebrow::before { background: var(--gold); }

.liwetan-list { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
@media (min-width: 600px) { .liwetan-list { grid-template-columns: repeat(3, 1fr); } }
.liwet-card {
  padding: 22px 20px; background: rgba(0,0,0,0.16);
  border: 1px solid rgba(252, 246, 226, 0.14); border-radius: var(--r-md);
  backdrop-filter: blur(6px);
}
.liwet-card .name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #FCF6E2; }
.liwet-card .name em { color: var(--gold); font-style: italic; }
.liwet-card .desc { font-size: 14px; color: rgba(252, 246, 226, 0.7); margin-top: 6px; }

/* ---------- FAQ (homepage pattern) ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-list .faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 22px 4px 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 3.5vw, 22px); color: var(--ink);
  cursor: pointer;
}
.faq-q .ic { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform .25s ease, background .2s ease; }
.faq-q .ic svg { width: 14px; height: 14px; transition: transform .25s ease; }
.faq-list .faq-item.open .faq-q .ic { background: var(--ink); color: var(--bg-soft); border-color: var(--ink); }
.faq-list .faq-item.open .faq-q .ic svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s ease; }
.faq-list .faq-item.open .faq-a { max-height: 400px; padding: 0 4px 22px 0; }
.faq-a p { font-size: 15px; color: var(--ink-2); margin: 0; max-width: 64ch; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 252, 243, 0.78); padding: 56px 0 40px; margin-top: 24px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; } }
.footer h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--bg-soft); margin: 0 0 14px; letter-spacing: .02em; }
.footer a { color: rgba(255, 252, 243, 0.78); }
.footer a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; background: var(--bg-soft); border-radius: 12px; padding: 4px; }
.footer-brand strong { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--bg-soft); display: block; line-height: 1.05; }
.footer-brand span { font-size: 12px; color: rgba(255, 252, 243, 0.55); letter-spacing: .04em; }
.footer p { color: rgba(255, 252, 243, 0.68); font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer ul li svg { width: 14px; height: 14px; margin-right: 8px; vertical-align: -2px; opacity: .7; }

.halal-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(232, 179, 59, 0.14); border: 1px solid rgba(232, 179, 59, 0.4);
  color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: .04em;
}
.halal-badge .h { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-weight: 800; font-size: 12px; }

.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,252,243,0.1);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255, 252, 243, 0.5);
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 243, 226, 0.94);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { padding: 13px 16px; font-size: 14px; box-shadow: var(--shadow-sm); }
@media (min-width: 960px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* Smaller helpers */
.muted { color: var(--ink-3); }
.tiny { font-size: 12px; }
.divider { height: 1px; background: var(--line); margin: 24px 0; }

/* Reveal-in (small, performant) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   HALAMAN ARTIKEL / INTERIOR (pillar, paket, faq, lokasi, dll)
   Konten existing dibungkus shell + palet baru.
   =========================================================== */

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

/* Page hero (dark) */
.page-hero {
  background: linear-gradient(155deg, #3a2415 0%, var(--ink) 55%, #1d120a 100%);
  padding: 72px 0 64px; text-align: center;
}
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,179,59,.14); border: 1px solid rgba(232,179,59,.30);
  border-radius: var(--r-pill); padding: 6px 16px; margin-bottom: 16px;
  font-size: 12px; font-weight: 600; color: var(--ink-2); letter-spacing: .06em;
}
.page-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-deep); display: inline-block; }
.page-hero .page-eyebrow { margin-bottom: 20px; border-color: rgba(232,179,59,.28); color: rgba(255,248,239,.85); }
.page-hero .page-eyebrow .dot { background: var(--gold); }
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 800; color: #FFF8EF; line-height: 1.18; margin: 0 auto 18px; max-width: 800px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { color: rgba(255,248,239,.78); font-size: 17px; max-width: 640px; margin: 0 auto; line-height: 1.7; }
.hero-meta { display: flex; justify-content: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; font-size: 13px; color: rgba(255,248,239,.62); }
.hero-meta span { display: flex; align-items: center; gap: 6px; }

/* Article body */
.article { padding: 60px 0 24px; }
.article h2 { font-size: clamp(24px, 3.6vw, 32px); font-weight: 700; color: var(--ink); margin: 46px 0 18px; line-height: 1.2; }
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 19px; font-weight: 700; color: var(--ink-2); margin: 24px 0 10px; }
.article p { font-size: 16px; color: var(--ink); margin-bottom: 16px; line-height: 1.8; }
.article p strong { color: var(--ink); font-weight: 700; }
.article ul { margin: 0 0 20px 22px; padding-left: 0; }
.article ul li { font-size: 15.5px; color: var(--ink); margin-bottom: 10px; line-height: 1.7; }
.article a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(232,179,59,.5); text-underline-offset: 3px; }
.article a:hover { color: var(--ink); }

/* Price table */
.table-wrap { overflow-x: auto; margin: 24px 0 32px; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--surface); }
.price-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
.price-table thead { background: var(--ink); color: var(--bg-soft); }
.price-table th { padding: 14px 18px; text-align: left; font-weight: 600; font-size: 12.5px; letter-spacing: .03em; text-transform: uppercase; }
.price-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); color: var(--ink); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr.featured { background: rgba(232,179,59,.10); }
.price-table tr.featured td:first-child { font-weight: 700; color: var(--ink); }
.price-table .price { font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.price-table .badge-best { display: inline-block; background: var(--gold); color: var(--ink); font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: var(--r-pill); margin-left: 6px; letter-spacing: .05em; }

/* Callout */
.callout { background: #FFF3CD; border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 24px 0; font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.callout strong { font-weight: 700; color: var(--ink); }

/* Client list */
.client-list { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; margin: 24px 0 32px; list-style: none; }
.client-list li { font-size: 15px; line-height: 1.7; margin-bottom: 14px; padding-left: 0; list-style: none; }
.client-list li:last-child { margin-bottom: 0; }
.client-list li strong { color: var(--ink); font-weight: 700; }
.client-list .stat { display: inline-block; background: var(--bg); color: var(--ink-2); font-weight: 700; padding: 3px 10px; border-radius: var(--r-pill); font-size: 13px; margin-top: 8px; }

/* Why-us grid */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 24px 0 32px; }
.why-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; transition: transform .2s, box-shadow .2s; }
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.why-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--ink); font-weight: 800; font-size: 15px; margin-bottom: 12px; }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.why-card p { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin-bottom: 0; }

/* FAQ accordion (interior — toggleFaq) */
.faq-block { padding: 24px 0 8px; }
.faq-block .faq-item { border-bottom: 1px solid var(--line); }
.faq-block .faq-question { width: 100%; background: none; border: none; text-align: left; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-family: var(--font-display); }
.faq-block .faq-question h3 { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.4; margin: 0; }
.faq-block .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s, background .25s; font-size: 18px; line-height: 1; color: var(--ink); }
.faq-block .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); }
.faq-block .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-block .faq-answer-inner { padding: 0 0 20px; font-size: 14.5px; color: var(--ink-2); line-height: 1.75; }
.faq-block .faq-item.open .faq-answer { max-height: 600px; }

/* CTA block */
.cta-block { background: linear-gradient(135deg, #3a2415, var(--ink)); border-radius: var(--r-xl); padding: 48px 36px; text-align: center; margin: 48px 0 0; color: #FFF8EF; }
.cta-block h2 { font-size: clamp(24px, 3.6vw, 30px); font-weight: 800; color: #FFF8EF; margin-bottom: 14px; }
.cta-block p { color: rgba(255,248,239,.78); font-size: 16px; max-width: 520px; margin: 0 auto 24px; line-height: 1.7; }
.cta-btn { display: inline-flex; align-items: center; gap: 9px; background: var(--wa); color: #fff; font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: var(--r-pill); text-decoration: none; box-shadow: 0 6px 20px rgba(37,211,102,.35); transition: transform .2s, box-shadow .2s; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.45); }

/* Internal pillar links */
.next-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 36px 0 0; }
.pillar-link { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; text-decoration: none; transition: transform .2s, border-color .2s; }
.pillar-link:hover { transform: translateY(-2px); border-color: var(--gold); }
.pillar-link .eyebrow-sm { font-size: 11px; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.pillar-link h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0; }

@media (max-width: 768px) {
  .article h2 { font-size: 22px; }
  .page-hero { padding: 56px 0 52px; }
  .hero-meta { gap: 14px; }
}
