:root {
  --primary: #2f6f4e;
  --primary-light: #3f8f66;
  --primary-soft: #e9f5ee;
  --secondary: #7a5a2b;
  --cream: #f7f8f5;
  --accent: #d8a332;
  --white: #ffffff;
  --text: #122418;
  --text-muted: #718074;
  --border: #dfe8e1;
  --shadow: 0 16px 34px rgba(18, 36, 24, .10);
  --radius: 14px;
  --container: 1200px;
}

body {
  background: #fff;
  color: var(--text);
  font-size: 15px;
  font-family: 'Figtree', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.site-header.is-visible {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: rgba(223, 232, 225, .9);
  box-shadow: 0 14px 36px rgba(18, 36, 24, .08);
}

.navbar {
  height: 78px;
  align-items: center;
}

.nav-menu {
  margin-left: auto;
  flex-wrap: nowrap;
  gap: 10px;
  min-width: 0;
  align-items: center;
}

.nav-menu a,
.nav-menu .btn,
.nav-menu .badge {
  flex: 0 0 auto;
  white-space: nowrap;
  line-height: 1;
}

.nav-profile {
  position: relative;
  flex: 0 0 auto;
}

.nav-profile > summary {
  list-style: none;
}

.nav-profile > summary::-webkit-details-marker {
  display: none;
}

.nav-profile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1500;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 36, 24, .14);
  display: grid;
  gap: 4px;
}

.nav-profile:not([open]) .nav-profile-menu {
  display: none;
}

.nav-profile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  white-space: nowrap;
}

.nav-profile-menu a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-menu a {
  color: #5f6f64;
  border-radius: 12px;
  padding: 9px 12px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-menu a:hover {
  color: var(--primary);
  background: rgba(233, 245, 238, .62);
}

.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a:active {
  color: var(--primary);
  background: rgba(233, 245, 238, .72);
  transform: translateY(0);
}

.hero {
  min-height: 620px;
  padding: 78px 0 0;
  background: #f3f8f1;
  position: relative;
}

.hero-section {
  overflow: visible;
  background:
    url('../images/hero-visual.svg') right max(16px, calc((100vw - var(--container)) / 2)) bottom -92px / auto min(110%, 940px) no-repeat,
    #f3f8f1;
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(96deg, rgba(243, 248, 241, .98) 0%, rgba(243, 248, 241, .94) 42%, rgba(243, 248, 241, .62) 68%, rgba(243, 248, 241, .24) 100%);
}

.hero-banner-people-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

@keyframes heroPeopleFloat {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.hero-banner-people {
  position: absolute;
  right: max(16px, calc((100vw - var(--container)) / 2));
  bottom: -62px;
  width: clamp(480px, 44vw, 700px);
  height: min(640px, 98%);
  background: url('../images/hero-people.svg') right bottom / contain no-repeat;
  opacity: 1;
  animation: heroPeopleFloat 3.8s ease-in-out infinite;
}

.hero-banner-inner {
  position: relative;
  z-index: 3;
  min-height: 540px;
  padding: 54px 0 64px;
}

.hero-layout {
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(58vw, 720px);
}

.hero h1 {
  max-width: 760px;
  color: #102415;
  font-weight: 800;
  letter-spacing: 0;
}

.lead {
  color: #657567;
}

.eyebrow {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47, 111, 78, .10);
  color: var(--primary);
}

.btn {
  border-radius: 14px;
  box-shadow: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 111, 78, .18);
}

.btn-primary:hover {
  background: #245f41;
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 111, 78, .22);
}

.site-header .nav-menu a.btn.btn-primary,
.site-header .nav-menu a.btn.btn-primary:hover,
.site-header .nav-menu a.btn.btn-primary:active,
.site-header .nav-menu a.btn.btn-primary:focus {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.site-header .nav-menu a.btn.btn-primary:active {
  background: #245f41 !important;
  border-color: #245f41 !important;
}

.btn.btn-primary.btn-small {
  color: #fff;
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: #fff;
}

.btn-outline:hover {
  border-color: rgba(47, 111, 78, .28);
  background: var(--primary-soft);
  color: var(--primary);
  box-shadow: 0 10px 22px rgba(47, 111, 78, .14);
  transform: translateY(-2px);
}

.nav-menu a.btn-outline:active {
  border-color: rgba(47, 111, 78, .28);
  background: var(--primary-soft);
  color: var(--primary);
}

.hero-visual,
.card,
.stat-box,
.meta-item,
.form-card,
.filter-card,
.table-wrap,
.map-home,
.map-full,
.map-sidebar,
.map-list button,
.form-control,
.empty-state {
  border-radius: 14px;
  border-color: var(--border);
}

.hero-visual {
  min-height: 410px;
  position: relative;
  background: rgba(220, 239, 228, .78);
  box-shadow: 0 24px 60px rgba(18, 36, 24, .14);
  overflow: hidden;
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  display: none;
}

.card,
.stat-box,
.meta-item,
.map-sidebar,
.table-wrap {
  box-shadow: 0 10px 24px rgba(18, 36, 24, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover,
.map-list button:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 111, 78, .22);
  box-shadow: 0 18px 38px rgba(18, 36, 24, .11);
}

.card img.card-img {
  height: 210px;
}

.badge {
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.section-muted {
  background: var(--cream);
}

.section-head h2,
.detail-layout h1,
.page-hero h1 {
  color: #102415;
  letter-spacing: 0;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 111, 78, .13);
}

.form-control:hover,
.map-controls select:hover,
.search-row select:hover {
  border-color: rgba(47, 111, 78, .28);
  background-color: rgba(233, 245, 238, .42);
}

.page-link {
  border-color: var(--border);
  color: var(--text);
  background: #fff;
  border-radius: 12px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.page-link:hover {
  color: var(--primary);
  background: rgba(233, 245, 238, .62);
  border-color: rgba(47, 111, 78, .28);
}

.page-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.map-home,
.map-full {
  box-shadow: 0 18px 44px rgba(18, 36, 24, .10);
}

.cta {
  border-radius: 18px;
  background: #245f41;
  box-shadow: 0 22px 50px rgba(18, 36, 24, .16);
}

.site-footer {
  background: #0f1f15;
  color: #dfeae3;
  padding-top: 42px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(170px, .7fr) minmax(230px, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-grid-guest {
  grid-template-columns: minmax(0, 1.5fr) minmax(230px, 1fr);
}

.footer-about,
.footer-links,
.footer-contact {
  min-width: 0;
}

.footer-brand {
  width: max-content;
  margin-bottom: 18px;
}

.site-footer .footer-brand .brand-logo {
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-footer p {
  margin: 0;
  max-width: 470px;
  color: rgba(223,234,227,.86);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

.site-footer a {
  color: rgba(223,234,227,.9);
  font-size: 15px;
  line-height: 1.45;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links h3 {
  margin-bottom: 5px;
}

.footer-links a,
.footer-contact a {
  width: max-content;
  max-width: 100%;
  transition: color .18s ease, transform .18s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact h3 {
  margin-bottom: 4px;
}

.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 4px !important;
  color: #fff !important;
  font-weight: 800;
}

.footer-whatsapp i {
  color: #25d366;
  font-size: 17px;
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 20px 18px;
  color: rgba(223,234,227,.74);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-top: 30px;
    padding-bottom: 18px;
  }

  .footer-grid {
    gap: 18px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 13px;
    line-height: 1.55;
  }

  .site-footer h3 {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .footer-brand {
    margin-bottom: 16px;
  }

  .site-footer .footer-brand .brand-logo {
    height: 44px;
    max-width: 180px;
  }

  .footer-contact {
    gap: 8px;
  }

  .footer-whatsapp {
    margin-top: 2px !important;
    font-size: 13px !important;
  }

  .footer-bottom {
    margin-top: 18px;
    padding: 12px 64px 4px 18px;
    font-size: 12px;
    text-align: left;
  }

  .float-whatsapp,
  .back-to-top {
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .float-whatsapp {
    bottom: 70px;
  }

  .back-to-top {
    bottom: 18px;
  }
}

.site-header + .section {
  padding-top: 75px;
}

.site-header + main .page-hero:first-child {
  padding-top: 75px;
  padding-bottom: 20px;
}

.breadcrumb {
  margin-bottom: 10px;
}

.breadcrumb + .section-head,
.breadcrumb + h1,
.breadcrumb + .detail-layout {
  margin-top: 0;
}

.breadcrumb + .section-head h1,
.breadcrumb + h1,
.breadcrumb + .detail-layout h1 {
  margin: 0;
}

.breadcrumb + .section-head p,
.breadcrumb + h1 + .lead,
.breadcrumb + .detail-layout h1 + .lead {
  margin-top: 6px;
}

.breadcrumb + h1 + .lead,
.breadcrumb + .detail-layout h1 + .lead {
  margin-bottom: 0;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h1,
.section-head h2,
.page-hero h1,
.detail-layout > section > h1 {
  margin: 0;
  line-height: 1.18;
}

.section-head p,
.page-hero .lead,
.detail-layout > section > h1 + .lead {
  margin: 6px 0 0;
}

.detail-layout > article > h2:first-child,
.detail-layout > section > h2:first-of-type {
  margin-top: 0;
}

.detail-layout > article > h2,
.detail-layout > section > h2 {
  margin-bottom: 10px;
}

.detail-layout > article > p,
.detail-layout > section > p {
  margin-top: 0;
}

.page-hero + .section {
  padding-top: 20px;
}

.photo-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--primary-soft);
  border: 1px solid var(--border);
}

.photo-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.photo-slide.active {
  opacity: 1;
  visibility: visible;
}

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-slide figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(18, 36, 24, .72);
  color: #fff;
  font-weight: 700;
}

.photo-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--primary);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 36, 24, .16);
}

.photo-slider-btn.prev {
  left: 14px;
}

.photo-slider-btn.next {
  right: 14px;
}

.photo-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.photo-slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
}

.photo-slider-dots button.active {
  background: var(--primary);
}

.detail-wisata-page .detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
  margin-bottom: 20px;
}

.detail-wisata-page .detail-hero-copy {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.detail-wisata-page .detail-hero-copy h1 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.04;
  color: #102415;
}

.detail-wisata-page .detail-hero-copy .lead {
  margin: 0;
  max-width: 760px;
}

.detail-wisata-page .detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.detail-wisata-page .detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
  align-items: stretch;
}

.detail-wisata-page .detail-fact {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(18, 36, 24, .05);
  min-height: 76px;
  display: grid;
  align-content: center;
  text-align: center;
}

.detail-wisata-page .detail-fact strong {
  display: block;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.detail-wisata-page .detail-fact span {
  display: block;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.detail-wisata-page .detail-wisata-layout {
  align-items: start;
  margin-top: 12px;
}

.detail-wisata-page .detail-content {
  display: grid;
  gap: 18px;
}

.detail-wisata-page .detail-sidebar {
  position: sticky;
  top: 94px;
}

.detail-wisata-page .detail-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(18, 36, 24, .06);
}

.detail-wisata-page .detail-recommendation-panel {
  margin-top: 28px;
}

.detail-wisata-page .detail-recommendation-panel + .detail-recommendation-panel {
  margin-top: 32px;
}

.detail-wisata-page .detail-empty-state {
  grid-column: 1 / -1;
}

.detail-wisata-page .detail-panel h2 {
  font-size: 22px;
  margin: 0 0 12px;
  color: #102415;
}

.detail-wisata-page .detail-text p {
  color: var(--text);
  line-height: 1.7;
  text-align: justify;
  text-indent: 1.8em;
  margin: 0 0 14px;
  overflow-wrap: anywhere;
}

.detail-wisata-page .detail-text a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.detail-wisata-page .detail-text ul,
.detail-wisata-page .detail-text ol {
  margin: 0 0 14px 28px;
  line-height: 1.7;
  text-align: justify;
}

.detail-wisata-page .detail-text li {
  padding-left: 4px;
}

.detail-wisata-page .detail-text h2 {
  margin-top: 20px;
}

.detail-wisata-page .detail-text h2:first-child {
  margin-top: 0;
}

.detail-wisata-page .detail-panel .gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.detail-wisata-page .detail-panel .card-img {
  border-radius: 10px;
}

.detail-wisata-page .documentation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.detail-wisata-page .documentation-head h2 {
  margin: 0;
}

.detail-wisata-page .documentation-counter {
  flex: 0 0 auto;
  min-width: 52px;
  border: 1px solid #d9e7de;
  border-radius: 6px;
  padding: 5px 9px;
  color: #17633f;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.detail-wisata-page .documentation-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #1f7a4f #eef5f1;
  scrollbar-width: thin;
}

.detail-wisata-page .documentation-card {
  display: grid;
  grid-template-rows: auto 112px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce8df;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  scroll-snap-align: start;
}

.detail-wisata-page .documentation-item {
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
}

.detail-wisata-page .documentation-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eaf4ee;
}

.detail-wisata-page .documentation-media .card-img,
.detail-wisata-page .documentation-media video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
  transition: transform .22s ease, filter .22s ease;
}

.detail-wisata-page .documentation-item:hover .card-img,
.detail-wisata-page .documentation-item:hover video {
  filter: brightness(.92);
  transform: scale(1.03);
}

.detail-wisata-page .documentation-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22));
  font-size: 22px;
}

.detail-wisata-page .documentation-caption {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 4px;
  min-height: 112px;
  border-top: 1px solid #e2ece6;
  padding: 8px 9px 7px;
  background: #fff;
}

.detail-wisata-page .documentation-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b756e;
  font-size: 11px;
  font-weight: 600;
}

.detail-wisata-page .documentation-date i {
  color: #1f6f4a;
}

.detail-wisata-page .documentation-caption strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #17241c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.detail-wisata-page .documentation-caption .documentation-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #53645a;
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.35;
  text-align: justify;
  text-indent: 1.15em;
}

.detail-wisata-page .documentation-caption small {
  align-self: end;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #5f7066;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.documentation-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.documentation-lightbox.is-open {
  display: flex;
}

.documentation-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 15, .78);
  backdrop-filter: blur(4px);
}

.documentation-lightbox-dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: min(86vh, 760px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}

.documentation-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  color: #102415;
  box-shadow: 0 10px 24px rgba(18,36,24,.18);
}

.documentation-lightbox-media {
  min-height: 260px;
  background: #0f1f15;
}

.documentation-lightbox.is-info-only .documentation-lightbox-dialog {
  width: min(420px, 100%);
  grid-template-rows: auto;
}

.documentation-lightbox.is-info-only .documentation-lightbox-media {
  display: none;
}

.documentation-lightbox-media img,
.documentation-lightbox-media video {
  width: 100%;
  max-height: 62vh;
  display: block;
  object-fit: contain;
}

.documentation-lightbox-media video {
  background: #000;
}

.documentation-lightbox-copy {
  display: grid;
  gap: 7px;
  padding: 14px 16px 16px;
  border-top: 1px solid #e2ece6;
}

.documentation-lightbox-date {
  display: inline-flex;
  color: #1f6f4a;
  font-size: 12px;
  font-weight: 800;
}

.documentation-lightbox-copy strong {
  color: #17241c;
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .detail-wisata-page .documentation-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-height: 420px;
    overflow-x: hidden !important;
    overflow-y: auto;
    gap: 8px !important;
    padding: 2px 2px 10px !important;
    scroll-snap-type: y proximity;
  }

  .detail-wisata-page .documentation-card {
    width: 100% !important;
    min-width: 0 !important;
    flex-basis: auto;
  }

  .detail-wisata-page .documentation-media {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .detail-wisata-page .documentation-media .card-img,
  .detail-wisata-page .documentation-media video {
    height: 100% !important;
  }

  .detail-wisata-page .documentation-caption {
    display: grid;
  }

  .documentation-lightbox {
    padding: 14px;
  }

  .documentation-lightbox-dialog {
    border-radius: 12px;
    max-height: 84vh;
  }

  .documentation-lightbox-media {
    min-height: 180px;
  }

  .documentation-lightbox-media img,
  .documentation-lightbox-media video {
    max-height: 56vh;
  }

  .documentation-lightbox-copy {
    padding: 12px 13px 13px;
  }

  .documentation-lightbox-copy strong {
    font-size: 14px;
  }
}

.detail-wisata-page .detail-panel .map-home {
  height: 420px;
}

.detail-wisata-page .meta-list {
  gap: 10px;
}

.detail-wisata-page .meta-item {
  border-radius: 12px;
  padding: 14px 16px;
}

.detail-wisata-page .meta-item strong {
  display: block;
  margin-bottom: 6px;
  color: #102415;
}

.detail-wisata-page .section-head {
  margin-bottom: 16px;
}

.detail-wisata-page > .container > .breadcrumb,
.detail-wisata-page > .container > .detail-hero,
.detail-wisata-page > .container > .detail-facts,
.detail-wisata-page > .container > .detail-wisata-layout,
.detail-wisata-page > .container > .detail-recommendation-panel {
  width: 100%;
  max-width: 100%;
}

.login-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.login-choice-grid .card-body {
  display: grid;
  gap: 12px;
}

.login-choice-grid .btn {
  width: fit-content;
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border-radius: 8px;
    line-height: 1;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(18, 36, 24, .12);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a,
  .nav-menu .btn,
  .nav-menu .badge,
  .nav-profile {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-profile-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border-radius: 12px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    max-width: none;
  }

  .hero-banner-people {
    right: -140px;
    bottom: -82px;
    width: 540px;
    opacity: 1;
  }
}

@media (max-width: 560px) {
  .detail-wisata-page > .container {
    width: 100%;
    padding-inline: 14px;
  }

  .detail-wisata-page .breadcrumb,
  .detail-wisata-page .detail-hero,
  .detail-wisata-page .detail-facts,
  .detail-wisata-page .detail-wisata-layout,
  .detail-wisata-page .detail-content,
  .detail-wisata-page .detail-panel,
  .detail-wisata-page .detail-recommendation-panel,
  .detail-wisata-page .meta-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .photo-slider {
    min-height: 240px;
  }

  .detail-wisata-page .detail-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }

  .detail-wisata-page .detail-hero-copy {
    gap: 6px;
  }

  .detail-wisata-page .detail-hero-copy h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .detail-wisata-page .detail-hero-copy .lead {
    font-size: 14px;
    line-height: 1.55;
  }

  .detail-wisata-page .detail-actions {
    gap: 8px;
  }

  .detail-wisata-page .detail-actions .btn {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 10px;
  }

  .detail-wisata-page .detail-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
  }

  .detail-wisata-page .detail-sidebar {
    position: static;
  }

  .detail-wisata-page .detail-panel {
    padding: 14px;
    border-radius: 12px;
  }

  .detail-wisata-page .detail-panel .map-home {
    height: 320px;
  }

  .detail-wisata-page .detail-panel h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .detail-wisata-page .detail-text p {
    font-size: 14px;
    line-height: 1.65;
    text-indent: 1.2em;
    margin-bottom: 12px;
  }

  .detail-wisata-page .detail-text ul,
  .detail-wisata-page .detail-text ol {
    margin: 0 0 12px 20px;
    line-height: 1.6;
    font-size: 14px;
  }

  .detail-wisata-page .detail-fact {
    padding: 10px 8px;
    min-height: 68px;
  }

  .detail-wisata-page .detail-fact strong {
    font-size: 15px;
  }

  .detail-wisata-page .detail-fact span {
    font-size: 10px;
    line-height: 1.15;
  }

  .detail-wisata-page .meta-list {
    gap: 10px;
  }

  .detail-wisata-page .meta-item {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .detail-wisata-page .meta-item strong {
    font-size: 14px;
  }

  .detail-wisata-page .grid,
  .detail-wisata-page .grid-3 {
    grid-template-columns: 1fr;
  }

  .detail-wisata-page .detail-recommendation-panel {
    margin-top: 18px;
  }

  .detail-wisata-page .section-head h2 {
    font-size: 18px;
  }

  .detail-wisata-page .section-head p {
    font-size: 13px;
    line-height: 1.5;
  }

  .detail-wisata-page .card,
  .detail-wisata-page .card-body,
  .detail-wisata-page .card h3,
  .detail-wisata-page .card p {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .login-choice-grid {
    grid-template-columns: 1fr;
  }

  .site-header + .section,
  .site-header + main .page-hero:first-child {
    padding-top: 75px;
  }

  .page-hero + .section {
    padding-top: 18px;
  }

  .navbar {
    height: 70px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 0;
  }

  .hero-section {
    background-size: auto 102%, cover;
    background-position: right 16px bottom -72px, center;
  }

  .hero-banner-inner {
    min-height: 520px;
    padding: 34px 0 46px;
  }

  .hero-banner-people {
    right: -180px;
    bottom: -70px;
    width: 500px;
    opacity: 1;
  }
}

.home-gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

.home-gallery-item {
  margin: 0;
  border: 1px solid rgba(223, 232, 225, .95);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-gallery-item:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 78, .22);
  box-shadow: 0 14px 28px rgba(18, 36, 24, .08);
}

.home-gallery-item .card-img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 0;
}

.home-gallery-item .gallery-caption {
  display: grid;
  gap: 4px;
  padding: 11px 12px 12px;
  border-top: 1px solid rgba(223, 232, 225, .8);
}

.home-gallery-item .gallery-caption strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.home-gallery-item .gallery-caption small {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}
