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

:root {
  --gold:     #C9A84C;
  --gold-lt:  #E8C96A;
  --gold-dk:  #A8873A;
  --gold-bg:  #FBF5E6;
  --navy:     #1A1A2E;
  --navy-mid: #252540;
  --text:     #1E1E2E;
  --text-mid: #5A5A78;
  --text-lt:  #8A8AAA;
  --bg:       #FDFAF4;
  --bg-alt:   #F6F1E7;
  --white:    #FFFFFF;
  --green:    #4A7C59;
  --border:   rgba(201,168,76,.18);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(253,250,244,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 66px;
  box-shadow: 0 1px 24px rgba(201,168,76,.07);
}
.nav-brand { font-family: 'Playfair Display', serif; color: var(--gold-dk); font-size: 1.1rem; letter-spacing: .05em; text-decoration: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold-dk); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 66px; left: 0; right: 0;
    background: rgba(253,250,244,.98); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(201,168,76,.08);
    padding: .5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block; padding: .85rem 5vw;
    font-size: .85rem; letter-spacing: .08em;
    border-bottom: 1px solid rgba(201,168,76,.08);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a.active { border-bottom: 1px solid rgba(201,168,76,.08); color: var(--gold); }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #FDFAF4 0%, #FBF5E4 55%, #F3E9CC 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 5vw 80px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-dk); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold-dk); opacity: .5; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 6.5rem); font-weight: 900; line-height: 1.0;
  color: var(--navy); margin-bottom: 1.2rem;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem); color: var(--text-mid);
  max-width: 520px; line-height: 1.85; margin-bottom: 2.8rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(201,168,76,.4); padding: .5rem 1.6rem; border-radius: 99px;
  color: var(--gold-dk); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(201,168,76,.06); font-weight: 500;
}
.hero-stats {
  display: flex; gap: 0; margin-top: 4rem;
  flex-wrap: wrap; justify-content: center;
  border: 1px solid var(--border); border-radius: 16px;
  background: var(--white); overflow: hidden;
  box-shadow: 0 4px 24px rgba(201,168,76,.08);
}
.stat {
  text-align: center; padding: 1.6rem 2.4rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-lt); margin-top: .4rem; }

/* ── SHARED ── */
section { padding: 96px 5vw; }
.section-eyebrow { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: .6rem; font-weight: 600; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700;
  color: var(--text); line-height: 1.2; margin-bottom: .8rem;
}
.section-title.on-dark { color: var(--white); }
.gold-line { width: 40px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); border-radius: 2px; margin-bottom: 2rem; }

/* ── TENTANG ── */
#tentang { background: var(--white); }
.tentang-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.tentang-text p { color: var(--text-mid); line-height: 1.9; margin-bottom: 1rem; font-size: .96rem; }
.komitmen-box {
  background: var(--navy); border-radius: 12px; padding: 2.4rem;
  border: 1px solid rgba(201,168,76,.12); position: relative; overflow: hidden;
}
.komitmen-box::after { content:'🍽'; position:absolute; right:-8px; bottom:-16px; font-size:5rem; opacity:.04; }
.komitmen-box h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold-lt); margin-bottom: 1.2rem; }
.komitmen-box ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.komitmen-box li { font-size: .9rem; padding-left: 1.6rem; position: relative; color: rgba(255,255,255,.88); line-height: 1.65; }
.komitmen-box li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ── LAYANAN ── */
#layanan { background: var(--bg-alt); }
.layanan-wrap { max-width: 1100px; margin: 0 auto; }
.layanan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 0; }
.layanan-card {
  background: var(--white); border-radius: 12px; padding: 2.2rem;
  border: 1px solid var(--border); border-top: 3px solid var(--gold);
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 2px 12px rgba(201,168,76,.06);
}
.layanan-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(201,168,76,.13); }
.layanan-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.layanan-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: .6rem; color: var(--text); }
.layanan-card p { color: var(--text-mid); font-size: .88rem; line-height: 1.8; }

/* ── KEUNGGULAN ── */
#keunggulan { background: var(--navy); }
.keunggulan-wrap { max-width: 1100px; margin: 0 auto; }
.keunggulan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.keunggulan-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.14);
  border-radius: 12px; padding: 2rem; text-align: center;
  transition: background .2s, border-color .2s;
}
.keunggulan-card:hover { background: rgba(201,168,76,.07); border-color: rgba(201,168,76,.3); }
.keunggulan-icon {
  width: 60px; height: 60px; margin: 0 auto 1rem;
  border: 1.5px solid rgba(201,168,76,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; background: rgba(201,168,76,.06);
}
.keunggulan-card h4 { font-family: 'Playfair Display', serif; color: var(--gold-lt); font-size: 1rem; margin-bottom: .5rem; }
.keunggulan-card p { color: rgba(255,255,255,.5); font-size: .83rem; line-height: 1.75; }

/* ── KAPASITAS ── */
#kapasitas { background: var(--white); }
.kapasitas-wrap { max-width: 860px; margin: 0 auto; }
.bar-group { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 2rem; }
.bar-item-label { display: flex; justify-content: space-between; font-size: .85rem; color: var(--text-mid); margin-bottom: .5rem; font-weight: 500; }
.bar-item-label span:last-child { color: var(--gold-dk); font-weight: 600; }
.bar-track { height: 10px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt)); }
.kapasitas-note {
  margin-top: 2rem; padding: 1.4rem 1.8rem;
  background: var(--bg-alt); border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0; font-size: .88rem; color: var(--text-mid); line-height: 1.75;
}

/* ── KLIEN ── */
#klien { background: var(--bg-alt); }
.klien-wrap { max-width: 860px; margin: 0 auto; }
.klien-intro { color: var(--text-mid); font-size: .93rem; line-height: 1.75; max-width: 580px; margin-bottom: 2.4rem; }
.timeline { position: relative; padding-left: 0; }
.timeline::before { content: ''; position: absolute; left: 108px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.tl-item { display: grid; grid-template-columns: 100px 32px 1fr; align-items: flex-start; margin-bottom: 1.8rem; }
.tl-year { font-size: .74rem; font-weight: 600; color: var(--text-lt); text-align: right; padding-right: 16px; padding-top: 4px; line-height: 1.5; }
.tl-dot-col { display: flex; justify-content: center; padding-top: 3px; position: relative; z-index: 1; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--bg-alt); flex-shrink: 0; }
.tl-dot.aktif { background: var(--green); box-shadow: 0 0 0 4px rgba(74,124,89,.18); }
.tl-body { padding-left: 16px; }
.tl-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--text); font-weight: 700; margin-bottom: 5px; }
.tl-tags { display: flex; gap: .6rem; flex-wrap: wrap; }
.tl-tag { font-size: .7rem; padding: .22rem .7rem; border-radius: 99px; font-weight: 600; }
.tl-tag.p { background: rgba(201,168,76,.1); color: var(--gold-dk); border: 1px solid rgba(201,168,76,.2); }
.tl-tag.a { background: rgba(74,124,89,.1); color: var(--green); border: 1px solid rgba(74,124,89,.2); }

/* ── KONTAK ── */
#kontak { background: var(--white); }
.kontak-wrap { max-width: 860px; margin: 0 auto; }
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.kontak-card {
  background: var(--bg); border-radius: 12px; padding: 1.6rem 1.8rem;
  display: flex; align-items: flex-start; gap: 1rem;
  border: 1px solid var(--border);
}
.kontak-card:last-child { grid-column: 1/-1; }
.k-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
.k-label { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dk); font-weight: 600; margin-bottom: .3rem; }
.k-name { font-weight: 600; font-size: .97rem; color: var(--text); margin-bottom: .2rem; }
.k-detail { color: var(--text-mid); font-size: .9rem; line-height: 1.7; }
.k-detail a { color: var(--gold-dk); text-decoration: none; font-weight: 600; }
.k-detail a:hover { text-decoration: underline; }

/* ── WA CTA ── */
.wa-cta {
  margin-top: 2.4rem; display: flex; justify-content: center;
}
.wa-btn {
  display: inline-flex; align-items: center; gap: .7rem;
  background: #25D366; color: var(--white); text-decoration: none;
  padding: .85rem 2rem; border-radius: 99px; font-weight: 600; font-size: .95rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.25); transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.35); }

/* ── LEGALITAS ── */
#legalitas { background: var(--bg-alt); padding: 48px 5vw; }
.legalitas-wrap { max-width: 1100px; margin: 0 auto; }
.legalitas-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.4rem; }
.legalitas-heading { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-lt); font-weight: 600; }
.legalitas-note-text { font-size: .8rem; color: var(--text-lt); max-width: 340px; line-height: 1.65; }
.legal-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.legal-badge {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: .75rem 1.2rem;
  box-shadow: 0 1px 8px rgba(201,168,76,.05);
}
.legal-badge.nib { border-left: 3px solid var(--gold); }
.legal-badge.npwp { border-left: 3px solid var(--navy); }
.legal-badge.green { border-left: 3px solid var(--green); }
.lb-icon { font-size: 1.2rem; }
.lb-label { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-lt); margin-bottom: 1px; }
.lb-value { font-size: .88rem; font-weight: 700; color: var(--text); letter-spacing: .03em; }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,.3);
  text-align: center; padding: 2.2rem 5vw;
  font-size: .78rem; letter-spacing: .06em;
  border-top: 1px solid rgba(201,168,76,.1);
}
footer strong { color: var(--gold-lt); }

/* ── HARGA ── */
#harga { background: var(--navy); }
.harga-wrap { max-width: 1100px; margin: 0 auto; }
.harga-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.harga-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.14);
  border-radius: 14px; padding: 2rem 1.8rem; text-align: center;
  transition: background .2s, transform .2s;
}
.harga-card:hover { background: rgba(201,168,76,.07); transform: translateY(-4px); }
.harga-card.featured {
  background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.4);
  position: relative;
}
.harga-badge-featured {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-size: .65rem;
  font-weight: 700; padding: .25rem .9rem; border-radius: 99px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.harga-icon { font-size: 2rem; margin-bottom: .8rem; }
.harga-nama { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold-lt); margin-bottom: .4rem; }
.harga-mulai { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.harga-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); margin: .3rem 0 .2rem; }
.harga-satuan { font-size: .75rem; color: rgba(255,255,255,.45); margin-bottom: 1.2rem; }
.harga-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.5rem; }
.harga-list li { font-size: .84rem; color: rgba(255,255,255,.65); padding-left: 1.4rem; position: relative; line-height: 1.5; }
.harga-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.harga-cta {
  display: block; text-align: center; padding: .7rem 1.4rem;
  border: 1px solid rgba(201,168,76,.4); border-radius: 99px;
  color: var(--gold-lt); font-size: .82rem; font-weight: 600; text-decoration: none;
  transition: background .2s, color .2s;
}
.harga-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.harga-note { text-align: center; margin-top: 1.6rem; font-size: .82rem; color: rgba(255,255,255,.35); }

/* ── GALERI ── */
#galeri { background: var(--bg); }
.galeri-wrap { max-width: 1100px; margin: 0 auto; }
.galeri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.galeri-item {
  border-radius: 10px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg-alt); border: 1px solid var(--border);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  position: relative;
}
.galeri-item:hover { transform: scale(1.02); box-shadow: 0 8px 28px rgba(201,168,76,.12); }
.galeri-item.large { grid-column: span 2; }
.galeri-placeholder { font-size: 2.5rem; opacity: .4; }
.galeri-label {
  font-size: .72rem; color: var(--text-lt); letter-spacing: .08em;
  text-transform: uppercase; font-weight: 500;
}
.galeri-note {
  text-align: center; margin-top: 1.4rem; font-size: .82rem;
  color: var(--text-lt); font-style: italic;
}

/* ── TESTIMONI ── */
#testimoni { background: var(--bg-alt); }
.testimoni-wrap { max-width: 1100px; margin: 0 auto; }
.testimoni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.testi-card {
  background: var(--white); border-radius: 12px; padding: 1.8rem;
  border: 1px solid var(--border); position: relative;
  box-shadow: 0 2px 12px rgba(201,168,76,.05);
}
.testi-quote { font-size: 3rem; color: var(--gold); opacity: .25; line-height: 1; margin-bottom: -.5rem; font-family: Georgia, serif; }
.testi-text { font-size: .92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.2rem; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--navy); flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .9rem; color: var(--text); }
.testi-role { font-size: .75rem; color: var(--text-lt); }
.testi-stars { color: var(--gold); font-size: .85rem; margin-bottom: .5rem; }
.testi-dummy-note {
  text-align: center; margin-top: 1.4rem; padding: .8rem 1.4rem;
  background: rgba(201,168,76,.07); border-radius: 8px; border: 1px dashed rgba(201,168,76,.3);
  font-size: .8rem; color: var(--gold-dk);
}

/* ── AREA & JAM ── */
#area { background: var(--white); }
.area-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.area-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.area-chip {
  padding: .4rem 1rem; border-radius: 99px; font-size: .8rem; font-weight: 500;
  background: var(--bg-alt); color: var(--text-mid); border: 1px solid var(--border);
}
.area-chip.main { background: rgba(201,168,76,.1); color: var(--gold-dk); border-color: rgba(201,168,76,.25); }
.jam-list { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.2rem; }
.jam-item { display: flex; justify-content: space-between; align-items: center; padding: .7rem 1rem; background: var(--bg-alt); border-radius: 8px; border: 1px solid var(--border); }
.jam-hari { font-size: .88rem; color: var(--text-mid); font-weight: 500; }
.jam-waktu { font-size: .88rem; color: var(--text); font-weight: 600; }
.jam-tutup { font-size: .85rem; color: #e05555; font-weight: 600; }
.min-order { margin-top: 1.2rem; padding: 1rem 1.2rem; background: rgba(201,168,76,.07); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* ── MENU PAKET ── */
.menu-paket-wrap {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .menu-paket-wrap { grid-template-columns: 1fr; }
}
.menu-paket {
  border: 2px solid var(--border); border-radius: 12px; padding: 1.4rem 1.6rem;
  cursor: pointer; transition: border-color .2s, background .2s;
  background: var(--white);
}
.menu-paket:hover { border-color: rgba(201,168,76,.4); }
.menu-paket.active {
  border-color: var(--gold); background: rgba(201,168,76,.06);
}
.menu-paket-price {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  color: var(--gold-dk); line-height: 1;
}
.menu-paket-name {
  font-weight: 600; font-size: .88rem; color: var(--text); margin: .3rem 0 .4rem;
}
.menu-paket-desc { font-size: .78rem; color: var(--text-lt); line-height: 1.6; }
.menu-paket.active .menu-paket-price { color: var(--gold); }

.col-tambahan, .col-buah { transition: opacity .3s, color .3s; }
.col-tambahan.hidden, .col-buah.hidden { opacity: .3; color: var(--text-lt); }
.col-tambahan.hidden *, .col-buah.hidden *,
.col-tambahan.hidden, .col-buah.hidden { text-decoration: line-through; }
.menu-table .col-tambahan.hidden, .menu-table .col-buah.hidden {
  position: relative; color: var(--text-lt);
}
.menu-table .col-tambahan.hidden::after, .menu-table .col-buah.hidden::after {
  content: ''; position: absolute; left: 12px; right: 12px;
  top: 50%; height: 1.5px; background: var(--text-lt); opacity: .6;
}

/* ── MENU ── */
#menu { background: var(--white); }
.menu-wrap { max-width: 1100px; margin: 0 auto; }
.menu-subtitle { color: var(--text-mid); font-size: .93rem; line-height: 1.75; margin-bottom: 2rem; }
.menu-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 2px 16px rgba(201,168,76,.06); }
.menu-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.menu-table thead tr { background: var(--navy); }
.menu-table thead th { padding: 1rem 1.2rem; color: var(--gold-lt); font-weight: 600; text-align: left; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,.06); }
.menu-table thead th:last-child { border-right: none; }
.menu-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.menu-table tbody tr:last-child { border-bottom: none; }
.menu-table tbody tr:hover { background: var(--gold-bg); }
.menu-table tbody td { padding: .9rem 1.2rem; vertical-align: top; border-right: 1px solid var(--border); color: var(--text-mid); line-height: 1.6; }
.menu-table tbody td:last-child { border-right: none; }
.menu-day { display: inline-block; font-weight: 700; font-size: .82rem; padding: .25rem .85rem; border-radius: 99px; background: rgba(201,168,76,.1); color: var(--gold-dk); border: 1px solid rgba(201,168,76,.25); white-space: nowrap; }
.menu-lauk { color: var(--text); font-weight: 600; }
.menu-lauk-alt { color: var(--text-mid); font-size: .83rem; }
.menu-lauk-sep { color: var(--gold-dk); font-weight: 700; font-size: .78rem; margin: 0 4px; }
.menu-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; padding: 1rem 1.4rem; background: var(--bg-alt); border-radius: 10px; border: 1px solid var(--border); }
.menu-price-label { font-size: .88rem; color: var(--text-mid); }
.menu-price-val { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold-dk); }
.menu-note-row { margin-top: .8rem; font-size: .8rem; color: var(--text-lt); font-style: italic; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .galeri-grid { grid-template-columns: repeat(2,1fr); }
  .galeri-item.large { grid-column: span 1; }
  .area-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .tentang-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .kontak-grid { grid-template-columns: 1fr; }
  .kontak-card:last-child { grid-column: auto; }
  .hero-stats { flex-direction: column; gap: 0; border-radius: 12px; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: .7rem; }
  .timeline::before { left: 88px; }
  .tl-item { grid-template-columns: 82px 28px 1fr; }
}

/* ── FLOATING WA ── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none; font-size: 1.6rem;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-float-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; font-size: .75rem; font-weight: 500;
  padding: .4rem .8rem; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── FOOTER SOSMED ── */
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.footer-sosmed { display: flex; gap: 1rem; }
.footer-sosmed a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .9rem; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.footer-sosmed a:hover { border-color: var(--gold); color: var(--gold-lt); }

/* ── BERANDA MINI SECTIONS ── */
.cta-band {
  background: var(--navy); padding: 2rem 5vw;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.cta-band-text { color: rgba(255,255,255,.7); font-size: .92rem; }
.cta-band-text strong { color: var(--gold-lt); }
.cta-band-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.cta-band-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.4rem; border-radius: 99px; font-size: .85rem; font-weight: 600;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.cta-band-btn.wa { background: #25D366; color: #fff; box-shadow: 0 3px 12px rgba(37,211,102,.3); }
.cta-band-btn.wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.cta-band-btn.tel { background: rgba(201,168,76,.12); color: var(--gold-lt); border: 1px solid rgba(201,168,76,.3); }
.cta-band-btn.tel:hover { background: rgba(201,168,76,.2); }

.mini-galeri { background: var(--bg-alt); padding: 60px 5vw; }
.mini-galeri-wrap { max-width: 1100px; margin: 0 auto; }
.mini-galeri-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin-top: 1.5rem; }
.mini-galeri-item { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: var(--bg); }
.mini-galeri-item img { width: 100%; height: 100%; object-fit: cover; }
.mini-galeri-more { text-align: center; margin-top: 1.2rem; }
.mini-galeri-more a {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--gold-dk); font-size: .85rem; font-weight: 600; text-decoration: none;
}
.mini-galeri-more a:hover { text-decoration: underline; }

.mini-testi { background: var(--white); padding: 60px 5vw; }
.mini-testi-wrap { max-width: 900px; margin: 0 auto; }
.mini-testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.5rem; }

@media (max-width: 768px) {
  .mini-galeri-grid { grid-template-columns: repeat(2,1fr); }
  .mini-testi-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
}
