:root {
  --bg: #f6f8f3;
  --bg-2: #edf4ea;
  --ink: #18342d;
  --muted: #66786f;
  --line: rgba(24, 52, 45, .12);
  --line-strong: rgba(24, 52, 45, .2);
  --primary: #0f6b4f;
  --primary-2: #2f9b75;
  --accent: #e3b34d;
  --danger: #be5a42;
  --card: rgba(255, 255, 255, .84);
  --glass: rgba(255,255,255,.66);
  --shadow: 0 20px 62px rgba(25, 65, 51, .12);
  --shadow-soft: 0 12px 34px rgba(25, 65, 51, .08);
  --radius: 22px;
  --radius-sm: 15px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; font-weight: 400; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 155, 117, .16), transparent 28%),
    radial-gradient(circle at 90% 5%, rgba(227, 179, 77, .16), transparent 24%),
    linear-gradient(135deg, var(--bg), #fbfcf7 48%, var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 14px;
  letter-spacing: -.005em;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
strong, b { font-weight: 400; }

.ambient {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(46px);
  opacity: .28;
  z-index: -1;
}
.ambient-one { width: 360px; height: 360px; background: #25a978; left: -130px; top: 170px; }
.ambient-two { width: 390px; height: 390px; background: #dfb755; right: -145px; top: 410px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1180px, calc(100% - 28px));
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(25, 65, 51, .09);
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 220px; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  color: white;
  letter-spacing: -.04em;
  box-shadow: 0 10px 26px rgba(15, 107, 79, .22);
}
.brand-title { display: block; font-size: 13px; line-height: 1.1; color: var(--ink); }
.brand small { display: block; color: var(--muted); font-size: 10.5px; margin-top: 2px; }
.nav { display: flex; gap: 3px; align-items: center; }
.nav a {
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  transition: .2s ease;
}
.nav a:hover, .nav a.active { color: var(--ink); background: rgba(15, 107, 79, .08); }
.nav-toggle {
  display: none;
  width: 39px; height: 39px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: var(--primary);
}

.section { width: min(1180px, calc(100% - 28px)); margin: 0 auto; padding: 74px 0; }
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  padding-top: 38px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(15, 107, 79, .14);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255,255,255,.72);
  font-size: 11.5px;
  margin-bottom: 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.052em;
  margin-bottom: 18px;
  max-width: 760px;
}
h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.07;
  letter-spacing: -.043em;
  margin-bottom: 14px;
}
h3 { font-size: 18px; letter-spacing: -.026em; margin-bottom: 9px; }
p { color: var(--muted); line-height: 1.65; }
.hero-copy p { max-width: 640px; font-size: 15.5px; line-height: 1.78; }
.hero-actions { display: flex; gap: 10px; margin: 25px 0 18px; flex-wrap: wrap; }
.btn {
  border: 1px solid transparent;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .18s ease;
  font-size: 13px;
}
.btn.primary { background: linear-gradient(145deg, var(--primary), var(--primary-2)); color: white; box-shadow: 0 14px 30px rgba(15, 107, 79, .2); }
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(15, 107, 79, .25); }
.btn.ghost { background: rgba(255,255,255,.74); color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: white; transform: translateY(-1px); }
.trust-row { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-row span, .chip, .status-pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.64);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 11.5px;
}
.hero-panel { perspective: 1200px; }
.river-card {
  position: relative;
  padding: 11px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.52);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.river-visual {
  position: relative;
  height: 378px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 56, 73, .95), rgba(14, 105, 82, .88)),
    radial-gradient(circle at 70% 20%, #fff, transparent 16%);
}
.river-visual:before, .river-visual:after {
  content: "";
  position: absolute;
  left: -8%; right: -8%;
  height: 112px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  bottom: 64px;
  transform: rotate(-5deg);
}
.river-visual:after { bottom: 16px; background: rgba(255,255,255,.24); transform: rotate(4deg); }
.moon {
  position: absolute; width: 82px; height: 82px; border-radius: 50%;
  top: 42px; right: 50px;
  background: radial-gradient(circle, #fff9d9, #f0c55b 64%, transparent 66%);
  box-shadow: 0 0 66px rgba(255,245,190,.56);
}
.wave { position: absolute; left: 0; width: 130%; height: 3px; background: rgba(255,255,255,.46); border-radius: 999px; }
.wave-one { bottom: 100px; transform: rotate(-3deg); }
.wave-two { bottom: 51px; transform: rotate(2deg); }
.leaf { position: absolute; width: 116px; height: 48px; border-radius: 100% 0 100% 0; background: rgba(59, 178, 113, .68); }
.leaf-one { bottom: 156px; left: 38px; transform: rotate(-25deg); }
.leaf-two { bottom: 130px; right: 58px; transform: rotate(35deg); background: rgba(241, 185, 76, .56); }
.river-card-body { padding: 19px 16px 10px; }
.status-pill { display: inline-flex; margin-bottom: 11px; color: var(--ink); }
.status-pill.warn { background: rgba(227, 179, 77, .17); border-color: rgba(227, 179, 77, .34); }
.status-pill.good { background: rgba(47, 155, 117, .14); border-color: rgba(47, 155, 117, .3); }

.stats-section { padding-top: 6px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-card, .card, .transparency-card, .timeline article, .event-card {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.stat-card { padding: 18px; }
.stat-card small { color: var(--muted); display: block; margin-bottom: 8px; font-size: 11.5px; }
.stat-value { font-size: 25px; letter-spacing: -.035em; display: block; line-height: 1.15; }
.stat-card span:not(.stat-value) { color: var(--muted); font-size: 12px; }

.split { display: grid; grid-template-columns: .86fr 1.14fr; gap: 32px; align-items: start; }
.section-copy { position: sticky; top: 104px; }
.soft-list { list-style: none; padding: 0; margin: 24px 0; }
.soft-list li { margin: 9px 0; padding-left: 24px; color: var(--muted); position: relative; line-height: 1.55; }
.soft-list li:before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--primary-2); position: absolute; left: 0; top: 7px; box-shadow: 0 0 0 5px rgba(47,155,117,.1); }
.form-card { padding: 21px; }
label { display: grid; gap: 7px; color: var(--ink); font-size: 12.5px; margin-bottom: 13px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 14px;
  background: rgba(255,255,255,.84); padding: 12px 13px; color: var(--ink);
  outline: none;
  font-size: 13px;
}
input:focus, select:focus, textarea:focus { border-color: rgba(15,107,79,.45); box-shadow: 0 0 0 4px rgba(15,107,79,.08); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.check-row { display: flex; align-items: center; gap: 9px; }
.check-row input { width: 17px; height: 17px; }
.form-actions { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.microcopy { font-size: 11.5px; margin: 11px 0 0; color: var(--muted); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 21px; }
.section-heading p { max-width: 780px; margin-bottom: 0; }
.filter-row { display: flex; gap: 7px; flex-wrap: wrap; }
.chip { border: 1px solid var(--line); }
.chip.active { color: white; background: var(--primary); border-color: var(--primary); }
.map-layout { display: grid; grid-template-columns: 1.34fr .66fr; gap: 15px; }
.map-shell { position: relative; border-radius: var(--radius); box-shadow: var(--shadow); }
#map {
  min-height: 600px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background: #dfead9;
}
.map-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 405;
  max-width: min(560px, calc(100% - 28px));
  padding: 8px 11px;
  border-radius: 999px;
  color: #17352d;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(24,52,45,.14);
  backdrop-filter: blur(12px);
  font-size: 11.5px;
  box-shadow: 0 8px 22px rgba(24,52,45,.12);
}
.report-list-panel { border: 1px solid var(--line); background: var(--card); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-soft); max-height: 600px; overflow: auto; }
.report-item { padding: 13px; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 9px; background: rgba(255,255,255,.68); }
.item-title, .popup-title { display: block; margin-bottom: 4px; color: var(--ink); }
.report-item p { margin: 7px 0; font-size: 12.5px; line-height: 1.45; }
.report-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.report-meta span { padding: 5px 8px; border-radius: 999px; background: rgba(15,107,79,.08); color: var(--muted); font-size: 10.8px; }

.campaign-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.campaign-card { padding: 20px; }
.progress { height: 8px; background: rgba(15,107,79,.1); border-radius: 999px; overflow: hidden; margin: 16px 0 11px; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-2)); border-radius: inherit; }
.campaign-numbers { display: flex; justify-content: space-between; color: var(--muted); font-size: 12.3px; margin-bottom: 16px; gap: 10px; }
.transparency-card { margin-top: 19px; padding: 21px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 17px; align-items: start; }
.ledger { display: grid; gap: 9px; }
.ledger-item { display: flex; justify-content: space-between; gap: 12px; padding: 12px; border-radius: 15px; background: rgba(255,255,255,.66); border: 1px solid var(--line); }
.ledger-item span { color: var(--muted); font-size: 11.5px; display: block; margin-top: 3px; }
.amount-value { color: var(--ink) !important; white-space: nowrap; }

.event-stack { display: grid; gap: 12px; }
.event-card { padding: 20px; display: grid; gap: 10px; }
.event-card .date { color: var(--primary); font-size: 12.3px; }
.event-card footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 12.5px; }
.volunteer-count { color: var(--ink); }

.story-section { padding-top: 44px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.timeline article { padding: 20px; min-height: 224px; }
.timeline span { width: 40px; height: 40px; display: grid; place-items: center; background: rgba(15,107,79,.09); color: var(--primary); border-radius: 14px; margin-bottom: 22px; }

pre { white-space: pre-wrap; background: #102d26; color: #d6f8e7; border-radius: 18px; padding: 16px; max-height: 460px; overflow: auto; font-size: 11.5px; line-height: 1.55; }
code { background: rgba(15,107,79,.09); padding: 2px 6px; border-radius: 8px; font-size: 12px; }

.footer { width: min(1180px, calc(100% - 28px)); margin: 18px auto 30px; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; justify-content: space-between; gap: 18px; background: rgba(255,255,255,.72); }
.footer-title { display: block; color: var(--ink); }
.footer p { margin: 7px 0 0; max-width: 620px; }
.footer-links { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; }
.footer-links a { padding: 7px 11px; border-radius: 999px; background: rgba(15,107,79,.08); color: var(--primary); font-size: 12.5px; }

.dialog { border: 0; border-radius: 24px; padding: 0; width: min(460px, calc(100% - 26px)); box-shadow: var(--shadow); background: white; }
.dialog::backdrop { background: rgba(15, 48, 41, .38); backdrop-filter: blur(5px); }
.dialog form { padding: 24px; position: relative; }
.dialog-close { position: absolute; right: 15px; top: 13px; width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--line); background: #fff; }
.toast { position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 140%); background: #102d26; color: white; padding: 11px 15px; border-radius: 999px; box-shadow: var(--shadow); z-index: 90; transition: .22s ease; font-size: 12.5px; }
.toast.show { transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(16px); transition: .55s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .topbar { border-radius: 20px; align-items: flex-start; flex-wrap: wrap; }
  .nav-toggle { display: grid; place-items: center; }
  .nav { width: 100%; display: none; flex-direction: column; align-items: stretch; padding: 7px 0 2px; }
  .nav.open { display: flex; }
  .nav a { padding: 11px 13px; }
  .hero, .split, .map-layout, .transparency-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 52px; }
  .river-visual { height: 300px; }
  .stats-section, .campaign-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .section-copy { position: static; }
  #map { min-height: 480px; }
  .report-list-panel { max-height: none; }
}
@media (max-width: 560px) {
  body { font-size: 13px; }
  .section { padding: 54px 0; width: min(100% - 22px, 1180px); }
  .brand { min-width: 0; }
  .brand small { display: none; }
  h1 { font-size: 34px; letter-spacing: -.038em; }
  h2 { font-size: 25px; }
  .stats-section, .campaign-grid, .timeline, .form-grid { grid-template-columns: 1fr; }
  .hero-actions, .form-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .footer { flex-direction: column; }
  .map-caption { position: static; border-radius: 16px; margin-top: 10px; }
}

/* Kali Kecing v0.4 production polish */
.map-section { padding-top: 52px; padding-bottom: 54px; }
.map-layout { grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr); align-items: start; }
.map-shell { box-shadow: 0 14px 38px rgba(25, 65, 51, .10); }
#map { min-height: 372px; height: 372px; border-radius: 18px; }
.report-list-panel { max-height: 372px; padding: 15px; border-radius: 18px; }
.map-caption { font-size: 10.8px; padding: 7px 10px; max-width: min(520px, calc(100% - 24px)); }
.map-caption a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

.donation-guide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 16px;
}
.donation-guide article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.donation-guide span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  color: var(--primary);
  background: rgba(15,107,79,.09);
  margin-bottom: 14px;
  font-size: 12px;
}
.donation-guide h3 { font-size: 15px; margin-bottom: 7px; }
.donation-guide p { font-size: 12.2px; line-height: 1.55; margin: 0; }

.donation-pop {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 92;
  width: min(330px, calc(100% - 36px));
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
  transition: .32s ease;
  border: 1px solid rgba(15,107,79,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(25,65,51,.16);
  padding: 12px 13px;
  color: var(--ink);
}
.donation-pop.show { transform: translateY(0); opacity: 1; }
.donation-pop .pop-kicker { display: block; color: var(--primary); font-size: 10.5px; margin-bottom: 4px; }
.donation-pop .pop-main { display: block; font-size: 12.5px; line-height: 1.45; }
.donation-pop .pop-note { display: block; color: var(--muted); font-size: 10.5px; margin-top: 4px; }

.dialog form { padding: 22px; }
.dialog h3 { font-size: 17px; }
.campaign-card .btn { margin-top: 2px; }

@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; }
  #map { min-height: 330px; height: 330px; }
  .report-list-panel { max-height: none; }
  .donation-guide { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  #map { min-height: 292px; height: 292px; }
  .map-caption { position: static; margin-top: 8px; max-width: 100%; }
  .donation-guide { grid-template-columns: 1fr; }
  .donation-pop { left: 12px; bottom: 12px; width: calc(100% - 24px); }
}

/* Kali Kecing v0.5 hero image patch */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100vh - 88px));
  display: block;
  padding: 16px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(17, 52, 43, .18);
  border: 1px solid rgba(255,255,255,.52);
}
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background-image: url('/assets/hero-bango.webp');
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.hero-shade {
  background:
    linear-gradient(98deg, rgba(11, 34, 28, .78) 0%, rgba(11, 34, 28, .58) 36%, rgba(11, 34, 28, .22) 64%, rgba(11, 34, 28, .18) 100%),
    linear-gradient(180deg, rgba(8, 18, 15, .14) 0%, rgba(8, 18, 15, .26) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(min(760px, calc(100vh - 88px)) - 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .7fr);
  gap: 28px;
  align-items: end;
}
.hero-copy {
  padding: 22px 18px 18px;
}
.hero-copy .hero-eyebrow {
  color: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.hero h1 {
  max-width: 700px;
  color: #ffffff;
  font-size: clamp(31px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.048em;
  text-wrap: balance;
  margin-bottom: 16px;
  text-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.hero-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.88);
  font-size: 14.1px;
  line-height: 1.72;
  text-shadow: 0 4px 18px rgba(0,0,0,.14);
}
.hero-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.hero-ghost:hover {
  background: rgba(255,255,255,.18);
}
.hero-trust span {
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.hero-panel {
  display: flex;
  align-items: end;
  justify-content: end;
}
.hero-glass-card {
  width: min(100%, 420px);
  padding: 18px 18px 16px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.12));
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 48px rgba(8, 26, 21, .18);
}
.hero-glass-card h2 {
  color: #fff;
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.08;
  letter-spacing: -.036em;
  margin-bottom: 10px;
}
.hero-glass-card p {
  color: rgba(255,255,255,.84);
  font-size: 12.9px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.hero-mini-stats {
  display: grid;
  gap: 10px;
}
.hero-mini-stats div {
  padding: 11px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-mini-stats small {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 10.6px;
  margin-bottom: 4px;
}
.hero-mini-stats span {
  display: block;
  color: #fff;
  font-size: 12.5px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 14px;
    border-radius: 28px;
  }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }
  .hero-copy {
    padding: 12px 8px 0;
  }
  .hero-panel {
    justify-content: stretch;
  }
  .hero-glass-card {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 12px;
    border-radius: 24px;
  }
  .hero h1 {
    font-size: 31px;
    letter-spacing: -.04em;
  }
  .hero-copy p {
    font-size: 13.2px;
  }
  .hero-glass-card {
    padding: 16px;
    border-radius: 22px;
  }
  .hero-mini-stats {
    gap: 8px;
  }
}


/* Kali Kecing v0.6 Google Maps patch */
.google-map-shell {
  overflow: visible;
}
.google-map-frame {
  position: relative;
  overflow: hidden;
  background: #dce8d8;
}
.google-map-embed {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
}
.map-pin-card {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border-radius: 17px;
  border: 1px solid rgba(24,52,45,.13);
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(24,52,45,.14);
}
.map-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #c75038;
  box-shadow: 0 0 0 5px rgba(199,80,56,.14);
  flex: 0 0 auto;
}
.map-pin-card span:not(.map-pin-dot) {
  display: block;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}
.map-pin-card small {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
  margin-top: 2px;
}

@media (max-width: 560px) {
  .map-pin-card {
    left: 10px;
    top: 10px;
    max-width: calc(100% - 20px);
    padding: 8px 10px;
  }
}
