:root {
  --ink: #13211b;
  --muted: #617168;
  --line: #dfe8e2;
  --paper: #f7faf6;
  --white: #ffffff;
  --green-950: #0b2b22;
  --green-800: #164936;
  --green-650: #22724f;
  --green-100: #e8f5ed;
  --gold: #dca83a;
  --gold-soft: #fff3d3;
  --danger: #a63a32;
  --shadow: 0 18px 44px rgba(11, 43, 34, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 5rem); margin-bottom: 18px; }
h2 { font-size: clamp(1.5rem, 3vw, 3rem); margin-bottom: 14px; }
h3 { font-size: 1.14rem; margin-bottom: 8px; }
small { color: var(--muted); }
.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 246, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--gold);
  background: var(--green-950);
  font-size: .78rem;
  letter-spacing: .1em;
}
.menu { display: flex; align-items: center; gap: 20px; font-weight: 800; color: #35473f; }
.menu a:hover { color: var(--green-650); }
.menu-button { display: none; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); width: 44px; height: 44px; font-size: 1.2rem; }
.flash, .alert {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--green-100);
  color: var(--green-950);
  border: 1px solid #b9ddc8;
  font-weight: 800;
}
.alert { background: #fff0ec; border-color: #ffc8bd; color: var(--danger); }

.hero-platform {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 20, 16, .96), rgba(13, 55, 42, .78), rgba(13, 55, 42, .32)),
    url("../img/produk-kolase-bangunharja.webp") center / cover no-repeat;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 42px; align-items: center; }
.hero-copy p { max-width: 740px; font-size: 1.16rem; color: #e5f2ec; }
.eyebrow { display: inline-block; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 950; margin-bottom: 12px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}
.btn.primary { background: var(--gold); color: #1c1606; }
.btn.dark { background: var(--green-950); color: var(--white); }
.btn.ghost { background: var(--white); color: var(--green-950); border-color: var(--line); }
.btn.ghost.glass { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.34); backdrop-filter: blur(10px); }
.btn.small { min-height: 34px; padding: 6px 10px; font-size: .84rem; background: var(--green-950); color: var(--white); }
.hero-panel { display: grid; gap: 12px; }
.metric {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}
.metric strong { display: block; font-size: 2.4rem; color: var(--gold); }
.metric span { color: #e5f2ec; font-weight: 800; }

.section { padding: 78px 0; }
.section.soft { background: #edf6f0; }
.section-head { margin-bottom: 28px; max-width: 780px; }
.section-head p { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-grid article, .product-card, .info-panel, .form-card, .admin-panel, .admin-stat, .admin-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(11, 43, 34, .06);
}
.feature-grid article { padding: 22px; }
.feature-grid span { color: var(--gold); font-weight: 950; }
.feature-grid p { color: var(--muted); margin-bottom: 0; }
.roadmap-grid, .module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.module-grid { grid-template-columns: repeat(2, 1fr); }
.roadmap-card, .module-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 32px rgba(11, 43, 34, .06);
}
.roadmap-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--green-950);
  font-weight: 950;
  margin-bottom: 12px;
}
.roadmap-card p, .module-card p { color: var(--muted); }
.roadmap-card small, .module-card strong { color: var(--green-800); }
.module-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(34, 114, 79, .16);
}
.module-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--green-650));
}
.timeline { display: grid; gap: 18px; }
.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(11, 43, 34, .05);
}
.timeline-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--gold);
  font-weight: 950;
}
.journey-shell {
  display: grid;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(34, 114, 79, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 20%, rgba(220, 168, 58, .22), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(34, 114, 79, .2), transparent 30%),
    linear-gradient(135deg, #ffffff, #f4faf6);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.journey-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  gap: 14px;
  padding: 18px 0 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.journey-line {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(19, 33, 27, .12);
  z-index: 0;
}
.journey-line span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green-650));
  transition: width .55s cubic-bezier(.2, .8, .2, 1);
}
.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-width: 120px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}
.journey-dot {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: var(--gold);
  background: var(--green-950);
  border: 5px solid #f4faf6;
  box-shadow: 0 10px 28px rgba(11, 43, 34, .18);
  font-weight: 950;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.journey-label {
  max-width: 140px;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.25;
  color: #405148;
  transition: color .25s ease;
}
.journey-step:hover .journey-dot,
.journey-step.is-active .journey-dot {
  transform: translateY(-4px) scale(1.08);
  background: var(--gold);
  color: #1d1706;
  box-shadow: 0 18px 38px rgba(220, 168, 58, .34);
}
.journey-step.is-active .journey-label { color: var(--green-950); }
.journey-detail {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(223, 232, 226, .9);
  box-shadow: 0 20px 54px rgba(11, 43, 34, .1);
  backdrop-filter: blur(14px);
  animation: riseIn .6s ease both;
}
.journey-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, var(--gold), var(--green-650));
}
.journey-detail.is-switching { animation: pulseSwap .28s ease both; }
.journey-detail h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 8px; }
.journey-detail p { color: var(--muted); font-size: 1.05rem; max-width: 860px; }
.journey-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr;
  gap: 14px;
}
.journey-detail-grid div {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fbfdfb;
}
.journey-detail-grid span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.journey-detail-grid strong { display: block; line-height: 1.5; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseSwap {
  0% { opacity: .55; transform: scale(.985); }
  100% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: no-preference) {
  .journey-shell { animation: riseIn .7s ease both; }
  .journey-step { animation: riseIn .55s ease both; }
  .journey-step:nth-of-type(2) { animation-delay: .05s; }
  .journey-step:nth-of-type(3) { animation-delay: .1s; }
  .journey-step:nth-of-type(4) { animation-delay: .15s; }
  .journey-step:nth-of-type(5) { animation-delay: .2s; }
  .journey-step:nth-of-type(6) { animation-delay: .25s; }
  .journey-step:nth-of-type(7) { animation-delay: .3s; }
  .journey-step:nth-of-type(8) { animation-delay: .35s; }
}
.program-dl { display: grid; gap: 10px; margin: 18px 0 0; }
.program-dl div { padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: #fbfdfb; }
.program-dl dt { color: var(--muted); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.program-dl dd { margin: 3px 0 0; font-weight: 760; }
.compact-dl { grid-template-columns: repeat(2, 1fr); }
.program-overview { background: linear-gradient(180deg, #f7faf6 0%, #eef6f1 100%); }
.village-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.village-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(220, 168, 58, .26), transparent 28%),
    linear-gradient(145deg, rgba(7, 34, 26, .98), rgba(13, 63, 47, .94) 58%, rgba(5, 24, 19, .98));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(11, 43, 34, .2);
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.village-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  pointer-events: none;
  z-index: -1;
}
.village-card::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -92px;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  pointer-events: none;
  z-index: -1;
}
.village-card:hover { transform: translateY(-6px); box-shadow: 0 30px 74px rgba(11, 43, 34, .28); }
.village-card-logo {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  padding: 13px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.village-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.village-card .program-dl div { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); backdrop-filter: blur(8px); }
.village-card .program-dl dt { color: rgba(255,255,255,.7); }
.village-card .program-dl dd { color: var(--white); }
.village-card .status { color: #16311f; background: var(--gold); border-color: rgba(255,255,255,.28); }
.village-card-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 16px; }
.village-card-head strong { color: #f4d68a; font-size: .9rem; }
.village-card h3 { font-size: clamp(2.2rem, 5vw, 4.4rem); margin-bottom: 10px; }
.village-card p { color: #e8f4ee; max-width: 760px; }
.village-focus { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.village-focus span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  color: #f2f8f5;
  font-size: .82rem;
  font-weight: 850;
}
.program-spotlight { padding: 0 0 28px; background: #eef6f1; }
.spotlight-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 43, 34, .98), rgba(34, 114, 79, .9)),
    linear-gradient(90deg, transparent, rgba(220, 168, 58, .16));
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.spotlight-card h2 { margin-bottom: 8px; }
.spotlight-card p { max-width: 720px; color: #dcebe4; margin-bottom: 0; }
.spotlight-meta {
  min-width: 260px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
}
.spotlight-meta span { display: block; color: var(--gold); font-weight: 950; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; }
.spotlight-meta strong { display: block; margin-top: 6px; font-size: 1.25rem; }
.program-roadmap { padding-top: 60px; }
.program-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: roadmap;
}
.program-roadmap .roadmap-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-color: rgba(34, 114, 79, .18);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.program-roadmap .roadmap-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--gold), #75b58c);
}
.program-roadmap .roadmap-card:hover { transform: translateY(-5px); border-color: rgba(34, 114, 79, .36); box-shadow: var(--shadow); }
.program-showcase .showcase-card:first-child { grid-column: span 2; }
.program-showcase .showcase-card:first-child img { aspect-ratio: 2 / 1; }
.two-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.compact-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.compact-item:last-child { border-bottom: 0; }
.compact-item p { margin: 6px 0 0; color: var(--muted); }
.checklist { padding-left: 20px; color: var(--muted); }
.checklist li { margin-bottom: 8px; }
.potential-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.potential-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(34, 114, 79, .16);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(11, 43, 34, .06);
}
.potential-card h3 { font-size: 1.22rem; }
.potential-card p { color: var(--muted); margin-bottom: 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.pricing-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(11, 43, 34, .06);
}
.price-list, .tour-package-list { display: grid; gap: 12px; margin-top: 16px; }
.price-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
}
.price-line strong, .price-line b { display: block; color: var(--green-950); }
.price-line small { display: block; color: var(--muted); margin-top: 4px; }
.price-line span {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: .76rem;
  font-weight: 900;
}
.tour-package {
  padding: 16px;
  border: 1px solid rgba(34, 114, 79, .18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f6fbf8);
}
.tour-package h4 { margin: 10px 0 6px; font-size: 1.05rem; }
.tour-package p { color: var(--muted); margin-bottom: 8px; }
.tour-package small { display: block; color: var(--green-800); font-weight: 760; }
.source-doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.source-doc-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  min-height: 120px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(11, 43, 34, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.source-doc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.source-doc-card span { color: var(--gold); font-size: .78rem; font-weight: 950; letter-spacing: .08em; }
.source-doc-card strong { color: var(--green-950); line-height: 1.25; }
.admin-roadmap { grid-template-columns: repeat(4, 1fr); }

.product-grid, .showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid.is-catalog { grid-template-columns: repeat(3, 1fr); }
.product-card, .showcase-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 32px rgba(11, 43, 34, .06); }
.product-card:hover, .showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card img, .showcase-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--green-100); }
.product-body, .showcase-body { padding: 18px; }
.product-body h2 { font-size: 1.25rem; }
.product-body p, .showcase-body p { color: var(--muted); }
.showcase-body h2 { font-size: 1.25rem; }
.showcase-body strong { color: var(--green-800); }
.showcase-cta {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-950);
  font-size: .92rem;
}
.center-action { display: flex; justify-content: center; margin-top: 26px; }
.detail-note { margin-top: 20px; }
.detail-note h2 { font-size: 1.15rem; margin-bottom: 6px; }
.tag, .status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-650);
  font-size: .75rem;
  font-weight: 950;
  margin-bottom: 10px;
}
.mini-spec { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0 0; }
.mini-spec dt { color: var(--muted); font-size: .78rem; font-weight: 800; }
.mini-spec dd { margin: 0; font-weight: 900; }
.showcase-directory-hero {
  min-height: 390px;
  display: grid;
  align-items: center;
  padding: 72px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 20, 16, .98) 0%, rgba(8, 42, 32, .88) 42%, rgba(8, 42, 32, .26) 100%),
    url("../img/wisata-fun-tubing.webp") center 42% / cover no-repeat;
}
.showcase-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: end;
}
.showcase-hero-inner h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6vw, 6.1rem);
  line-height: .94;
  letter-spacing: 0;
}
.showcase-hero-inner p {
  max-width: 620px;
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
}
.showcase-hero-card {
  align-self: end;
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.showcase-hero-card strong {
  color: var(--gold);
  font-size: 3.3rem;
  line-height: .9;
}
.showcase-hero-card span { font-weight: 950; }
.showcase-hero-card small { color: rgba(255,255,255,.72); font-weight: 800; }
.showcase-directory-section {
  padding-top: 54px;
  background:
    linear-gradient(180deg, #f7faf6 0%, #fff 42%, #f4f8f5 100%);
}
.showcase-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.showcase-toolbar h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  margin-bottom: 0;
}
.showcase-toolbar .eyebrow { margin-bottom: 10px; }
.compact-head { margin-bottom: 18px; }
.compact-head h2 { font-size: clamp(1.8rem, 4vw, 3.4rem); margin-bottom: 0; }
.village-filter {
  grid-template-columns: minmax(0, 1fr) 112px;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(34, 114, 79, .15);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 45px rgba(11, 43, 34, .08);
}
.village-filter input {
  min-height: 48px;
  border: 0;
  background: transparent;
}
.village-filter .btn {
  min-height: 48px;
  border-radius: 12px;
}
.village-directory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  max-width: 1080px;
}
.directory-village-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(34, 114, 79, .12);
  box-shadow: 0 24px 70px rgba(11, 43, 34, .12);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.directory-village-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 168, 58, .45);
  box-shadow: 0 34px 90px rgba(11, 43, 34, .18);
}
.directory-village-card a {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  min-height: 330px;
}
.directory-village-media {
  position: relative;
  min-height: 330px;
  background: var(--green-950);
}
.directory-village-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .45s ease;
}
.directory-village-card:hover .directory-village-media img { transform: scale(1.06); }
.directory-village-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 20, 16, 0), rgba(4, 20, 16, .54)),
    linear-gradient(90deg, rgba(4,20,16,.08), rgba(4,20,16,0));
}
.directory-village-media span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #1d1706;
  font-size: .76rem;
  font-weight: 950;
  text-transform: lowercase;
}
.directory-village-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}
.directory-village-body::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: url("../img/logo-desa-bangunharja.webp") center / contain no-repeat, #f7faf6;
  border: 1px solid var(--line);
}
.directory-village-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.directory-village-kicker span + span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(11, 43, 34, .28);
}
.directory-village-body h3 {
  max-width: 520px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .9;
  margin-bottom: 18px;
}
.directory-village-body p {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.02rem;
}
.directory-village-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.directory-village-stats div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdfb;
}
.directory-village-stats strong {
  display: block;
  color: var(--green-950);
  font-size: 1.75rem;
  line-height: 1;
}
.directory-village-stats span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
}
.directory-village-body .showcase-cta {
  width: fit-content;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--white);
}
.directory-village-body .showcase-cta::after {
  content: "->";
  margin-left: 6px;
  color: var(--gold);
}

.village-profile { background: #f7faf6; }
.village-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 90px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 20, 16, .98), rgba(9, 43, 32, .82), rgba(9, 43, 32, .38)),
    url("../img/wisata-fun-tubing.webp") center / cover no-repeat;
}
.village-hero::before {
  content: "";
  position: absolute;
  right: -3vw;
  bottom: -8vh;
  width: min(760px, 56vw);
  aspect-ratio: 16 / 10;
  background: url("../img/produk-umkm-overlay.png") center / contain no-repeat;
  opacity: .95;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, .34));
  z-index: -1;
}
.village-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(4, 20, 16, .48));
  z-index: -1;
}
.village-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 44px; align-items: center; }
.village-hero-copy { min-width: 0; }
.village-hero-copy h1 { font-size: clamp(4rem, 10vw, 8.5rem); margin-bottom: 12px; }
.village-hero-copy p { max-width: 760px; color: #e6f2ed; font-size: 1.12rem; }
.village-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.village-hero-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #f4faf7;
  font-weight: 850;
}
.village-hero-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.village-hero-card div { padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.12); }
.village-hero-card strong { display: block; color: var(--gold); font-size: 2.7rem; line-height: 1; }
.village-hero-card span { display: block; margin-top: 8px; color: #edf7f2; font-weight: 850; }
.village-sticky-inquiry {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  gap: 1px;
  min-width: 188px;
  padding: 13px 16px;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-950), var(--green-650));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 50px rgba(4, 20, 16, .28);
}
.village-sticky-inquiry span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.village-sticky-inquiry strong { line-height: 1.1; }
.village-quick-inquiry {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding-bottom: 34px;
}
.village-quick-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(34, 114, 79, .14);
  box-shadow: 0 28px 80px rgba(11, 43, 34, .16);
  backdrop-filter: blur(16px);
}
.village-quick-grid h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  margin-bottom: 0;
}
.quick-inquiry-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.quick-inquiry-options a {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 16px;
  border-radius: 16px;
  background: #f7faf6;
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.quick-inquiry-options a:hover {
  transform: translateY(-3px);
  background: var(--green-950);
  border-color: var(--green-950);
}
.quick-inquiry-options span {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.quick-inquiry-options strong {
  color: var(--green-950);
  line-height: 1.2;
}
.quick-inquiry-options a:hover strong { color: var(--white); }
.village-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: center; }
.village-intro-grid p { color: var(--muted); font-size: 1.06rem; }
.village-location-card { padding: 24px; border-radius: 14px; background: var(--green-950); color: var(--white); box-shadow: var(--shadow); }
.village-location-card span { color: var(--gold); font-weight: 950; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; }
.village-location-card strong { display: block; margin: 8px 0; font-size: 1.5rem; }
.village-location-card p { color: #dcebe4; margin-bottom: 0; }
.village-map-section { padding-top: 0; }
.village-map-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.village-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}
.village-map-copy p { color: var(--muted); }
.village-map-frame {
  overflow: hidden;
  min-height: 420px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--green-100);
}
.village-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(.92) contrast(1.03);
}
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card {
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(11, 43, 34, .06);
}
.sector-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sector-card div { padding: 18px; }
.sector-card p { color: var(--muted); }
.village-product-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.village-product-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(11, 43, 34, .06);
}
.village-product-card img { width: 100%; height: 100%; object-fit: cover; }
.village-product-card div { padding: 18px; }
.village-product-card p { color: var(--muted); }
.village-product-card strong { color: var(--green-950); }
.product-inquiry-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--green-950);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(11, 43, 34, .18);
}
.product-inquiry-strip h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}
.product-inquiry-strip .eyebrow { margin-bottom: 8px; }
.experience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.experience-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(11, 43, 34, .06);
}
.experience-card img { width: 100%; height: 100%; object-fit: cover; }
.experience-card div { padding: 20px; }
.experience-card p { color: var(--muted); }
.experience-card a { color: var(--green-650); font-weight: 950; }
.village-collab {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
  padding: 34px;
  color: var(--white);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(11, 43, 34, .98), rgba(34, 114, 79, .9)),
    linear-gradient(90deg, transparent, rgba(220, 168, 58, .16));
  box-shadow: var(--shadow);
}
.village-collab p { color: #dcebe4; }
.collab-actions { margin-top: 20px; }
.collab-list { display: grid; gap: 10px; }
.collab-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
}
.collab-list span { color: var(--gold); font-weight: 950; }
.collab-list strong { color: var(--white); }
.village-final-cta {
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 20, 16, .96), rgba(13, 55, 42, .86)),
    url("../img/wisata-fun-tubing-grup.webp") center / cover no-repeat;
}
.village-final-cta .container { max-width: 880px; }
.village-final-cta p { color: #e6f2ed; }
.village-final-cta .actions { justify-content: center; }

.cta-band { background: var(--gold-soft); }
.cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta p { color: #59635e; max-width: 760px; }
.page-hero {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 20, 16, .96), rgba(13, 55, 42, .86)),
    url("../img/produk-kolase-bangunharja.webp") center / cover no-repeat;
}
.page-hero p { max-width: 760px; color: #e5f2ec; }
.program-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 16, .96) 0%, rgba(12, 50, 38, .88) 48%, rgba(12, 50, 38, .34) 100%),
    url("../img/produk-kolase-bangunharja.webp") center / cover no-repeat;
}
.program-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, transparent, #f7faf6);
}
.program-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
}
.program-hero-copy p { font-size: 1.12rem; }
.program-hero-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.program-stat {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.16);
}
.program-stat strong { display: block; color: var(--gold); font-size: 2.7rem; line-height: 1; }
.program-stat span { display: block; margin-top: 8px; color: #edf7f2; font-weight: 850; }
.filter-bar {
  display: grid;
  grid-template-columns: 1fr 240px auto;
  gap: 12px;
  margin-bottom: 26px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 150px; resize: vertical; }
label { display: grid; gap: 7px; font-weight: 850; }

.product-detail { padding: 70px 0; }
.detail-grid { display: grid; grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr); gap: 38px; align-items: start; }
.detail-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.detail-copy p { color: var(--muted); font-size: 1.08rem; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.spec-grid div { padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.spec-grid span { display: block; color: var(--muted); font-size: .78rem; font-weight: 850; }
.spec-grid strong { display: block; margin-top: 3px; }

.form-layout { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 24px; align-items: start; }
.info-panel, .form-card { padding: 24px; }
.info-panel p, .info-panel li { color: var(--muted); }
.form-card { display: grid; gap: 15px; }
.empty-state { padding: 24px; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--white); color: var(--muted); }

.footer { padding: 46px 0 28px; background: #071b15; color: #dbe9e3; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.footer a { display: block; color: #dbe9e3; margin-top: 8px; }
.footer p { color: #b9cbc2; }

.login-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--green-950); }
.login-card { width: min(420px, 100%); padding: 28px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.login-card form { display: grid; gap: 14px; }
.login-links { margin-top: 18px; text-align: center; }
.login-links a { color: var(--green-650); font-weight: 900; }
.login-links a:hover { color: var(--green-950); }
.admin-body { background: #f2f6f3; }
.admin-topbar { background: var(--white); }
.admin-main { padding: 36px 0 70px; }
.admin-hero { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 24px; }
.admin-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.stat-grid.is-three { grid-template-columns: repeat(3, 1fr); }
.admin-stat { padding: 20px; }
.admin-stat strong { display: block; color: var(--green-950); font-size: 2.2rem; }
.admin-stat span { color: var(--muted); font-weight: 850; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.admin-panel { padding: 20px; }
.panel-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 12px; }
.panel-head a, td a { color: var(--green-650); font-weight: 900; }
.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(11, 43, 34, .06);
}
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; border-bottom: 1px solid var(--line); padding: 14px; vertical-align: top; }
th { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
tbody tr:hover { background: #f8fbf9; }
.admin-form { padding: 20px; margin-bottom: 22px; display: grid; gap: 15px; }
.form-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.check-row { display: flex; flex-wrap: wrap; gap: 18px; }
.check-row label { display: flex; flex-direction: row; align-items: center; }
.check-row input { width: auto; }
.inline-form { display: grid; gap: 8px; min-width: 150px; }

@media (max-width: 980px) {
  .hero-grid, .detail-grid, .form-layout, .admin-grid, .program-hero-grid, .pricing-grid, .village-hero-grid, .village-intro-grid, .village-collab, .village-map-grid, .village-quick-grid { grid-template-columns: 1fr; }
  .feature-grid, .product-grid, .showcase-grid, .product-grid.is-catalog, .stat-grid, .stat-grid.is-three, .roadmap-grid, .module-grid, .admin-roadmap, .two-panel, .village-grid, .program-roadmap-grid, .potential-grid, .source-doc-grid, .sector-grid, .village-product-strip, .village-directory-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-hero-inner, .showcase-toolbar, .village-directory-grid { grid-template-columns: 1fr; }
  .showcase-hero-card { max-width: 320px; }
  .village-hero { min-height: auto; }
  .village-hero-card { grid-template-columns: repeat(3, 1fr); }
  .quick-inquiry-options { grid-template-columns: repeat(3, 1fr); }
  .experience-grid { grid-template-columns: 1fr; }
  .program-hero { min-height: auto; }
  .program-hero-panel { grid-template-columns: repeat(3, 1fr); }
  .spotlight-card { align-items: flex-start; }
  .journey-detail-grid { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .menu-button { display: inline-grid; place-items: center; }
  .menu { display: none; position: absolute; left: 18px; right: 18px; top: 72px; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow); }
  .menu.is-open, .menu.is-admin { display: flex; }
  .hero-platform { min-height: auto; }
  .feature-grid, .product-grid, .showcase-grid, .product-grid.is-catalog, .stat-grid, .stat-grid.is-three, .spec-grid, .form-two, .roadmap-grid, .module-grid, .admin-roadmap, .two-panel, .compact-dl, .village-grid, .program-roadmap-grid, .program-hero-panel, .potential-grid, .source-doc-grid, .sector-grid, .village-product-strip, .experience-grid, .village-directory-grid, .village-hero-card { grid-template-columns: 1fr; }
  .village-filter { grid-template-columns: 1fr; }
  .directory-village-stats { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .directory-village-stats div { padding: 10px; }
  .directory-village-stats strong { font-size: 1.35rem; }
  .directory-village-stats span { font-size: .68rem; }
  .directory-village-card a { grid-template-columns: 1fr; min-height: 0; }
  .directory-village-media { min-height: 240px; }
  .directory-village-media img { aspect-ratio: 4 / 3; height: auto; }
  .directory-village-body { padding: 28px; }
  .directory-village-body::before { width: 46px; height: 46px; top: 22px; right: 22px; }
  .directory-village-body h3 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .showcase-hero-inner { gap: 24px; }
  .showcase-hero-inner h1 { font-size: clamp(2.4rem, 13vw, 3.6rem); }
  .showcase-hero-card {
    max-width: none;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 18px;
  }
  .showcase-hero-card strong { grid-row: span 2; font-size: 2.55rem; }
  .showcase-toolbar { gap: 18px; }
  .showcase-directory-hero { min-height: 320px; padding: 54px 0; }
  .village-hero { padding: 64px 0; min-height: auto; }
  .village-hero::before {
    right: -18vw;
    bottom: -5vh;
    width: 92vw;
    opacity: .42;
  }
  .village-hero-copy h1 { font-size: clamp(2.8rem, 14vw, 4rem); overflow-wrap: anywhere; }
  .village-sticky-inquiry {
    left: 18px;
    right: 18px;
    bottom: 14px;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    min-width: 0;
    border-radius: 16px;
  }
  .village-quick-inquiry { margin-top: -26px; padding-bottom: 22px; }
  .village-quick-grid { padding: 18px; border-radius: 16px; }
  .quick-inquiry-options { grid-template-columns: 1fr; }
  .quick-inquiry-options a { min-height: 0; }
  .village-product-card, .experience-card { grid-template-columns: 1fr; }
  .village-product-card img, .experience-card img { height: auto; aspect-ratio: 4 / 3; }
  .product-inquiry-strip { flex-direction: column; align-items: flex-start; }
  .village-map-grid { padding: 18px; }
  .village-map-copy { padding: 4px; }
  .village-map-frame, .village-map-frame iframe { min-height: 320px; }
  .village-collab { padding: 24px; }
  .collab-list a { flex-direction: column; }
  .price-line { grid-template-columns: 1fr; }
  .program-hero { padding: 64px 0 84px; }
  .program-hero-grid { gap: 26px; }
  .village-card { min-height: 520px; padding: 22px; }
  .spotlight-card { flex-direction: column; }
  .spotlight-meta { min-width: 0; width: 100%; }
  .program-showcase .showcase-card:first-child { grid-column: span 1; }
  .program-showcase .showcase-card:first-child img { aspect-ratio: 4 / 3; }
  .timeline-item { grid-template-columns: 1fr; }
  .journey-shell { padding: 18px; }
  .actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}
