:root {
  --teal-tua: #1e3f3f;
  --teal-sedang: #4f7a72;
  --sage-pastel: #dce8e2;
  --kertas: #f7f2e9;
  --krem-tua: #efe6d3;
  --terracotta: #d98b72;
  --mustard: #e3b873;
  --sage-daun: #93ad9c;
  --tinta: #26332f;
  --teks-muted: #5f6f69;
  --merah: #e3a6a0;
  --merah-tint: #f9e4e2;
  --merah-teks: #7a2e24;
  --hijau: #a9c4a4;
  --hijau-tint: #e6efe4;
  --hijau-teks: #2e4a2a;
  --radius: 14px;
  --maxw: 1180px;
  --shadow: 0 10px 30px -12px rgba(30, 63, 63, 0.18);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--kertas);
  color: var(--tinta);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  margin: 0 0 0.4em;
  line-height: 1.15;
  color: var(--teal-tua);
  font-weight: 600;
}
p {
  margin: 0 0 1em;
  color: var(--teks-muted);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--terracotta);
  display: inline-block;
}

.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  width: 100%;
  height: 34px;
  display: block;
}

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal-tua);
  color: #fff;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  /* background: linear-gradient(135deg, var(--mustard), var(--terracotta)); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: var(--teal-tua);
  font-size: 0.95rem;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand small {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--sage-pastel);
  letter-spacing: 0.04em;
}

nav.main-nav ul {
  display: flex;
  gap: 26px;
  align-items: center;
}
nav.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #efe6d3;
  opacity: 0.85;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover {
  opacity: 1;
  border-color: var(--mustard);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.15s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
nav.main-nav .nav-dropdown-menu a {
  display: block;
  color: var(--teal-tua);
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: none;
}
nav.main-nav .nav-dropdown-menu a:hover {
  background: var(--sage-pastel);
}
.nav-cta {
  background: var(--mustard);
  color: var(--teal-tua);
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  border: none;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 34px;
  height: 34px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.hamburger span:nth-child(1) {
  top: 11px;
}
.hamburger span:nth-child(2) {
  top: 17px;
}
.hamburger span:nth-child(3) {
  top: 23px;
}

/* ===== Scroll reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.in-view > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.in-view > *:nth-child(3) {
  transition-delay: 0.19s;
}
.reveal-stagger.in-view > *:nth-child(4) {
  transition-delay: 0.26s;
}
.reveal-stagger.in-view > *:nth-child(5) {
  transition-delay: 0.33s;
}
.reveal-stagger.in-view > *:nth-child(6) {
  transition-delay: 0.4s;
}

/* ===== Hero: fade-up bertahap saat halaman dimuat ===== */
.slide.active .slide-tag,
.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .hero-ctas {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards;
}
.slide.active .slide-tag {
  animation-delay: 0.15s;
}
.slide.active .slide-content h1 {
  animation-delay: 0.3s;
}
.slide.active .slide-content p {
  animation-delay: 0.45s;
}
.slide.active .hero-ctas {
  animation-delay: 0.6s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--teal-tua);
  overflow: hidden;
}
section.hero {
  padding: 0;
  margin: 0;
}
.slideshow {
  position: relative;
  height: 680px;
  min-height: 80vh;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: flex-end;
}
.slide.active {
  opacity: 1;
}
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 63, 63, 0.15) 0%,
    rgba(20, 42, 42, 0.92) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 1;
  padding: 56px 24px 150px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}
.slide-tag {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  background: var(--terracotta);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.slide-content h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 640px;
}
.slide-content p {
  color: #e6e0d2;
  max-width: 520px;
  font-size: 1.02rem;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--mustard);
  color: var(--teal-tua);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-dark {
  background: var(--teal-tua);
  color: #fff;
}
.btn-outline {
  border-color: var(--teal-tua);
  color: var(--teal-tua);
}

.slide-nav {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.slide-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.slide-dots {
  display: flex;
  gap: 7px;
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 24px;
}
.slide-dots button {
  width: 26px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
}
.slide-dots button.active {
  background: var(--mustard);
}
.hero-empty {
  padding: 90px 24px 150px;
  text-align: center;
  color: #fff;
}

.slide-tag {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  background: var(--terracotta);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.slide-content h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 640px;
}
.slide-content p {
  color: #e6e0d2;
  max-width: 520px;
  font-size: 1.02rem;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--mustard);
  color: var(--teal-tua);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-dark {
  background: var(--teal-tua);
  color: #fff;
}
.btn-outline {
  border-color: var(--teal-tua);
  color: var(--teal-tua);
}

.slide-nav {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.slide-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.slide-dots {
  display: flex;
  gap: 7px;
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 24px;
}
.slide-dots button {
  width: 26px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
}
.slide-dots button.active {
  background: var(--mustard);
}
.hero-empty {
  padding: 90px 24px;
  text-align: center;
  color: #fff;
}

/* ===== Stats ===== */
.stats-section {
  margin-top: -64px;
  position: relative;
  z-index: 3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
}
.stat-card {
  padding: 24px 20px;
  text-align: left;
  border-right: 1px solid var(--krem-tua);
}
.stat-card:last-child {
  border-right: none;
}
.stat-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: var(--terracotta);
}
.stat-num {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 2rem;
  color: var(--teal-tua);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--teks-muted);
  font-weight: 600;
}

section {
  padding: 88px 0;
}

section.hero {
  padding: 0;
  margin: 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== Tentang ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-art {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  /* background: var(--teal-tua); */
  position: relative;
  overflow: hidden;
}
.about-art svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-art-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10%;
}
.about-art-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-art-logo span {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--teal-tua);
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.2;
}
.about-text {
  font-size: 1rem;
}

/* ===== Subsektor ===== */
/* ===== Subsektor (foto background + overlay hover) ===== */
.subsektor-section {
  background: var(--krem-tua);
}
.subsektor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.subsektor-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px 10px 16px;
  text-align: center;
  border: 1px solid var(--krem-tua);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.subsektor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.subsektor-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
.subsektor-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.subsektor-card:hover .subsektor-photo {
  transform: scale(1.1);
}

.subsektor-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: normal;
}
.subsektor-card:hover .subsektor-overlay {
  opacity: 0.72;
}

.subsektor-icon-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #24484895;
  box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  z-index: 2;
}
.subsektor-icon-badge img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.subsektor-nama {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-tua);
  line-height: 1.3;
}
.subsektor-jumlah {
  font-size: 0.72rem;
  color: var(--teks-muted);
  font-family: "JetBrains Mono", monospace;
}

@media (max-width: 980px) {
  .subsektor-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 720px) {
  .subsektor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .subsektor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subsektor-icon-badge {
    width: 32px;
    height: 32px;
  }
}

/* ===== Tim grid (proporsional, center kalau baris terakhir tidak penuh) ===== */
.tim-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.container-tim {
  max-width: 1360px;
} /* lebih lebar dari default 1180px, khusus section Tim */

.tim-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--krem-tua);
  padding: 40px 24px;
  flex: 0 1 calc((100% - 56px) / 3); /* 3 kolom, 56px = 2 gap x 28px */
}
.tim-avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background: var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tim-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tim-avatar span {
  font-family: "Fraunces", serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--teal-tua);
}
.tim-nama {
  font-weight: 700;
  color: var(--teal-tua);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.tim-jabatan {
  font-size: 0.92rem;
  color: var(--terracotta);
  font-weight: 600;
}

.tim-card-desain {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 2/3;
  display: flex; /* dari 3/4 jadi 2/3, foto jadi lebih tinggi/besar */
  background: transparent;
  border: none;
  border-radius: var(--radius);
  flex: 0 1 calc((100% - 44px) / 3); /* gap dikecilin dari 28px jadi 22px, ngasih sedikit lebih ruang ke lebar */
}
.tim-card-desain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

/* ===== Agenda ===== */
.agenda-section {
  background: var(--teal-tua);
  color: #fff;
}
.agenda-section .section-head h2 {
  color: #fff;
}
.agenda-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.agenda-nav {
  display: flex;
  gap: 10px;
}
.agenda-nav .slide-arrow-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.agenda-nav .slide-arrow-light:hover {
  background: var(--mustard);
  color: var(--teal-tua);
  border-color: var(--mustard);
}

.agenda-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.agenda-track::-webkit-scrollbar {
  display: none;
}
.agenda-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.agenda-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #1a3535;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  user-select: none;
  transition: transform 0.15s ease;
}
.agenda-card:hover {
  transform: translateY(-4px);
}
.agenda-poster {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: var(--teal-sedang);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.8rem;
}
.agenda-date {
  background: var(--mustard);
  color: var(--teal-tua);
  font-family: "JetBrains Mono", monospace;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
}
.agenda-body {
  padding: 16px;
}
.agenda-body h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}
.agenda-body p {
  color: #b9c7c2;
  font-size: 0.82rem;
  margin-bottom: 0;
}
.agenda-tag {
  font-size: 0.7rem;
  font-family: "JetBrains Mono", monospace;
  color: var(--mustard);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

/* ===== Countdown strip agenda ===== */
.agenda-countdown-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 32px;
}
.agenda-countdown-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.agenda-countdown-info i {
  font-size: 1.6rem;
  color: var(--mustard);
  flex-shrink: 0;
}
.agenda-countdown-info div {
  display: flex;
  flex-direction: column;
}
.agenda-countdown-label {
  font-size: 0.72rem;
  color: #b9c7c2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.agenda-countdown-nama {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.countdown-timer {
  display: flex;
  gap: 10px;
}
.countdown-timer div {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  min-width: 56px;
}
.countdown-timer strong {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.25rem;
  color: var(--mustard);
  line-height: 1.1;
}
.countdown-timer small {
  font-size: 0.64rem;
  color: #c8cdd1;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .agenda-countdown-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .countdown-timer {
    width: 100%;
    justify-content: space-between;
  }
  .countdown-timer div {
    min-width: 0;
    flex: 1;
    margin: 0 3px;
  }
}
@media (max-width: 480px) {
  .agenda-countdown-nama {
    font-size: 0.9rem;
  }
  .countdown-timer strong {
    font-size: 1.05rem;
  }
}

/* ===== Halaman Semua Agenda ===== */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.agenda-card-light {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--krem-tua);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.agenda-card-light:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.agenda-card-light.agenda-lewat {
  opacity: 0.75;
}
.agenda-poster-light {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-sedang);
  font-size: 1.8rem;
}
.agenda-body-light {
  padding: 18px;
}
.agenda-tag-light {
  font-size: 0.7rem;
  font-family: "JetBrains Mono", monospace;
  color: var(--terracotta);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}
.agenda-body-light h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.agenda-body-light p {
  font-size: 0.82rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== Detail Agenda ===== */
.agenda-detail-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--teks-muted);
  margin-bottom: 24px;
  font-weight: 600;
}
.agenda-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.agenda-detail-desc {
  font-size: 1rem;
  color: var(--tinta);
  line-height: 1.7;
}

.peserta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.peserta-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--krem-tua);
  border-radius: 100px;
  padding: 8px 16px 8px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-tua);
  transition: border-color 0.15s ease;
}
.peserta-chip:hover {
  border-color: var(--mustard);
}
.peserta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-tua);
  flex-shrink: 0;
}
.peserta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== Peta Sebaran ===== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--krem-tua);
}

.map-wrap {
  position: relative;
}
.map-skeleton {
  position: absolute;
  inset: 0;
  background: var(--krem-tua);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.skeleton-shimmer {
  width: 60%;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e1d6bc 25%, #f3ecdb 50%, #e1d6bc 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
#peta-sebaran {
  height: 480px;
  width: 100%;
  background: var(--krem-tua);
}
.map-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teks-muted);
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== Pengumuman: List ===== */
.pengumuman-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pengumuman-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--krem-tua);
  border-radius: var(--radius);
  padding: 18px;
  align-items: flex-start;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.pengumuman-card:hover {
  border-color: var(--mustard);
  box-shadow: var(--shadow);
}
.pengumuman-date-badge {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--sage-pastel);
  border-radius: 10px;
  padding: 10px 4px;
}
.pengumuman-date-badge span {
  display: block;
}
.pengumuman-date-badge span:first-child {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--teal-tua);
  line-height: 1;
}
.pengumuman-date-badge span:last-child {
  font-size: 0.68rem;
  color: var(--teks-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.pengumuman-card-body h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.pengumuman-card-body p {
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.pengumuman-meta {
  font-size: 0.76rem;
  color: var(--teks-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.pagination-wrap ul {
  display: flex;
  gap: 6px;
  list-style: none;
}
.pagination-wrap a,
.pagination-wrap span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--krem-tua);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-tua);
  padding: 0 10px;
}
.pagination-wrap .active span {
  background: var(--teal-tua);
  color: #fff;
  border-color: var(--teal-tua);
}
.pagination-wrap a:hover {
  border-color: var(--mustard);
}

/* ===== Pengumuman: Detail ===== */
.pengumuman-detail-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--teks-muted);
  margin-bottom: 28px;
  font-weight: 600;
}
.pengumuman-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pengumuman-detail-content {
  font-size: 1rem;
  color: var(--tinta);
  line-height: 1.8;
}
.pengumuman-detail-content p {
  color: var(--tinta);
  margin-bottom: 1.2em;
}
.pengumuman-detail-content img {
  border-radius: 10px;
  margin: 16px 0;
}
.pengumuman-detail-content ul {
  margin: 0 0 1.2em 1.4em;
  list-style: disc;
  color: var(--tinta);
}
.pengumuman-detail-content ol {
  margin: 0 0 1.2em 1.4em;
  list-style: decimal;
  color: var(--tinta);
}
.pengumuman-detail-content li {
  margin-bottom: 0.4em;
}

.lampiran-download {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--sage-pastel);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 24px;
  font-size: 1.4rem;
  color: var(--teal-tua);
}
.lampiran-download div {
  display: flex;
  flex-direction: column;
}
.lampiran-download span {
  font-size: 0.88rem;
  font-weight: 700;
}
.lampiran-download small {
  font-size: 0.74rem;
  color: var(--teks-muted);
}

.baca-juga {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--krem-tua);
}
.baca-juga h3 {
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.baca-juga-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.baca-juga-item {
  background: #fff;
  border: 1px solid var(--krem-tua);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.15s ease;
}
.baca-juga-item:hover {
  border-color: var(--mustard);
}
.baca-juga-tanggal {
  font-size: 0.72rem;
  color: var(--terracotta);
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
}
.baca-juga-item h5 {
  font-size: 0.9rem;
  margin: 6px 0 0;
  color: var(--teal-tua);
  font-weight: 700;
  line-height: 1.4;
}

/* ===== Perizinan: List ===== */
.perizinan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.perizinan-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--krem-tua);
  border-radius: var(--radius);
  padding: 20px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.perizinan-card:hover {
  border-color: var(--mustard);
  box-shadow: var(--shadow);
}
.perizinan-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--sage-pastel);
  color: var(--teal-tua);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.perizinan-card-body {
  flex: 1;
}
.perizinan-card-body h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.perizinan-card-body p {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.perizinan-arrow {
  color: var(--teks-muted);
  font-size: 1.2rem;
}

/* ===== Perizinan: Detail ===== */
.perizinan-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.perizinan-desc-singkat {
  font-size: 1.05rem;
  color: var(--tinta);
  line-height: 1.6;
}
.perizinan-dasar-hukum {
  display: flex;
  gap: 12px;
  background: var(--krem-tua);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}
.perizinan-dasar-hukum i {
  font-size: 1.3rem;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}
.perizinan-dasar-hukum strong {
  font-size: 0.85rem;
  color: var(--teal-tua);
  display: block;
  margin-bottom: 4px;
}
.perizinan-dasar-hukum p {
  font-size: 0.85rem;
  margin: 0;
}
.perizinan-detail-content {
  font-size: 0.98rem;
  color: var(--tinta);
  line-height: 1.75;
}

.perizinan-detail-content ul {
  margin: 0 0 1.2em 1.4em;
  list-style: disc;
}
.perizinan-detail-content ol {
  margin: 0 0 1.2em 1.4em;
  list-style: decimal;
}
.perizinan-detail-content li {
  margin-bottom: 0.4em;
}
.perizinan-detail-content p {
  margin-bottom: 1.1em;
}

.perizinan-kontak-box {
  background: var(--teal-tua);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.perizinan-kontak-box h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kontak-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.kontak-item:last-child {
  margin-bottom: 0;
}
.kontak-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontak-nama {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.kontak-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--mustard);
  font-size: 0.82rem;
  font-weight: 600;
}
.kontak-wa:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .pengumuman-card {
    flex-direction: column;
  }
  .pengumuman-date-badge {
    width: auto;
    display: inline-flex;
    gap: 6px;
    padding: 6px 12px;
  }
  .baca-juga-grid {
    grid-template-columns: 1fr;
  }
  .produk-grid {
    grid-template-columns: 1fr;
  }
  .profil-usaha-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tim-grid {
    gap: 16px;
  }
  .tim-card,
  .tim-card-desain {
    flex: 0 1 100%;
  } /* 1 kolom penuh */
  .tim-card {
    padding: 32px 20px;
  }
  .tim-avatar {
    width: 130px;
    height: 130px;
  }
  .usaha-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Kegiatan Ekraf (Berita) ===== */
.berita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.berita-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--krem-tua);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.berita-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.berita-thumb {
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-sedang);
  font-size: 1.8rem;
}
.berita-card-body {
  padding: 18px;
}
.berita-tanggal {
  font-size: 0.72rem;
  font-family: "JetBrains Mono", monospace;
  color: var(--terracotta);
  font-weight: 700;
}
.berita-card-body h4 {
  font-size: 1rem;
  margin: 8px 0;
}
.berita-card-body p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .berita-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .berita-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Form Pendaftaran Event ===== */
.pendaftaran-box {
  background: var(--kertas);
  border: 1px solid var(--krem-tua);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 36px;
}
.pendaftaran-box h3 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.pendaftaran-deadline {
  font-size: 0.85rem;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.pendaftaran-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pendaftaran-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-tua);
  margin-bottom: 6px;
}
.pendaftaran-field label small {
  font-weight: 500;
  color: var(--teks-muted);
}
.pendaftaran-field input,
.pendaftaran-field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--krem-tua);
  font-family: inherit;
  font-size: 0.9rem;
}
.pendaftaran-field {
  margin-bottom: 16px;
}
.invalid-feedback-fe {
  color: var(--merah-teks);
  font-size: 0.78rem;
  margin-top: 4px;
}

.pendaftaran-closed {
  display: flex;
  gap: 14px;
  align-items: center;
}
.pendaftaran-closed i {
  font-size: 1.8rem;
  color: var(--merah-teks);
}
.pendaftaran-closed strong {
  display: block;
  color: var(--merah-teks);
  margin-bottom: 2px;
}
.pendaftaran-closed p {
  margin: 0;
  font-size: 0.85rem;
}

.pendaftaran-sukses-box {
  background: var(--hijau-tint);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.pendaftaran-sukses-box i {
  font-size: 1.8rem;
  color: var(--hijau-teks);
}
.pendaftaran-sukses-box strong {
  display: block;
  color: var(--hijau-teks);
}

@media (max-width: 576px) {
  .pendaftaran-row {
    grid-template-columns: 1fr;
  }
}

/* ===== Liputan Terbaru (magazine layout) ===== */
.liputan-section {
  background: var(--krem-tua);
}
.liputan-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.liputan-utama {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-color: var(--teal-tua);
  display: flex;
  align-items: flex-end;
}
.liputan-utama-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
}
.liputan-utama-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 32px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(20, 42, 42, 0.92) 85%
  );
}
.liputan-tanggal-badge {
  display: inline-block;
  background: var(--mustard);
  color: var(--teal-tua);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  font-family: "JetBrains Mono", monospace;
}
.liputan-utama-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.liputan-baca-link {
  color: var(--mustard);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.liputan-sekunder {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.liputan-sekunder-item {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #e1d6bc;
  border-radius: 12px;
  padding: 10px;
  align-items: center;
  flex: 1;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
}
.liputan-sekunder-item:hover {
  border-color: var(--mustard);
  transform: translateY(-2px);
}

.liputan-sekunder-thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-sedang);
  font-size: 1.2rem;
}
.liputan-sekunder-item h5 {
  font-size: 0.86rem;
  margin: 3px 0 0;
  color: var(--teal-tua);
  line-height: 1.3;
}

.liputan-lihat-semua {
  margin-top: auto;
  text-align: center;
  background: var(--teal-tua);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease;
}
.liputan-lihat-semua:hover {
  background: var(--teal-sedang);
  color: #fff;
}

@media (max-width: 820px) {
  .liputan-grid {
    grid-template-columns: 1fr;
  }
  .liputan-utama {
    min-height: 320px;
  }
}
@media (max-width: 480px) {
  .liputan-sekunder-item {
    padding: 10px;
  }
  .liputan-sekunder-thumb {
    width: 70px;
    height: 70px;
  }
}

/* ===== Connect Section: Sosmed + WA ===== */
.connect-section {
  padding-top: 56px;
  padding-bottom: 88px;
}
.connect-box {
  background: linear-gradient(135deg, var(--teal-tua), #142b2b);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.connect-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(227, 184, 115, 0.18),
    transparent 70%
  );
}
.connect-text {
  max-width: 440px;
  position: relative;
}
.connect-text h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.connect-text p {
  color: #c8cdd1;
  margin-bottom: 0;
}
.connect-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
}
.connect-sosmed-label {
  display: block;
  font-size: 0.72rem;
  color: #b9c7c2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.connect-sosmed-icons {
  display: flex;
  gap: 10px;
}
.connect-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.15rem;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.connect-icon:hover {
  transform: translateY(-3px);
}
.connect-icon.ig:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.connect-icon.fb:hover {
  background: #1877f2;
}
.connect-icon.tt:hover {
  background: #000;
}
.connect-icon.yt:hover {
  background: #ff0000;
}
.connect-wa-btn {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .connect-section {
    padding-top: 40px;
  }
  .connect-box {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .connect-text h2 {
    font-size: 1.3rem;
  }
  .connect-actions {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .connect-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
/* ===== Etalase Layout ===== */
.etalase-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.etalase-filter {
  background: #fff;
  border: 1px solid var(--krem-tua);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 90px;
}
.filter-toggle-mobile {
  display: none;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--krem-tua);
  background: #fff;
  font-weight: 700;
  color: var(--teal-tua);
  margin-bottom: 14px;
}
.filter-group {
  margin-bottom: 18px;
}
.filter-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-tua);
  margin-bottom: 6px;
}
.filter-group input,
.filter-group select {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--krem-tua);
  font-size: 0.85rem;
  font-family: inherit;
}
.filter-harga-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-harga-row span {
  color: var(--teks-muted);
}
.btn-reset-filter {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--teks-muted);
  margin-top: 10px;
  text-decoration: underline;
}
.w-100 {
  width: 100%;
  justify-content: center;
}

.etalase-count {
  font-size: 0.85rem;
  color: var(--teks-muted);
  margin-bottom: 18px;
  font-weight: 600;
}
.etalase-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--teks-muted);
}
.etalase-empty i {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0.5;
}

/* ===== Produk Grid & Card ===== */
.produk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.produk-card {
  background: #fff;
  border: 1px solid var(--krem-tua);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.produk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.produk-thumb {
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-sedang);
  font-size: 1.8rem;
  position: relative;
}
.badge-unggulan {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--mustard);
  color: #5a3d0a;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.produk-card-body {
  padding: 16px;
}
.produk-subsektor-tag {
  display: inline-block;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.produk-card-body h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.produk-usaha,
.produk-lokasi {
  font-size: 0.78rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--teks-muted);
}
.produk-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--krem-tua);
}
.produk-harga {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: var(--teal-tua);
  font-size: 0.92rem;
}
.produk-harga small {
  font-weight: 500;
  color: var(--teks-muted);
}
.produk-dilihat {
  font-size: 0.74rem;
  color: var(--teks-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
/* Pembungkus gambar */
.produk-thumb,
.agenda-poster,
.agenda-poster-light {
  overflow: hidden;
}

/* Gambar background */
.produk-thumb,
.agenda-poster,
.agenda-poster-light {
  background-size: cover;
  background-position: center;
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s ease;
  will-change: transform;
}

/* Hover */
.produk-card:hover .produk-thumb,
.agenda-card:hover .agenda-poster,
.agenda-card-light:hover .agenda-poster-light {
  transform: scale(1.08);
}

.badge-baru {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--hijau);
  color: var(--hijau-teks);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-live {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--merah-teks);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--merah);
  animation: pulseDot 1.4s infinite;
}
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 166, 160, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(227, 166, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 166, 160, 0);
  }
}
/* ===== Detail Produk ===== */
.produk-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.produk-galeri-utama {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-sedang);
  font-size: 2.4rem;
}
.produk-galeri-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.galeri-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
}
.galeri-thumb.active {
  border-color: var(--mustard);
}
.galeri-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produk-harga-detail {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--teal-tua);
  margin-bottom: 14px;
}
.produk-harga-detail small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--teks-muted);
}
.produk-meta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.produk-meta-row span {
  font-size: 0.82rem;
  color: var(--teks-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.badge-unggulan-inline {
  background: var(--mustard);
  color: #5a3d0a;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.72rem !important;
}
.produk-deskripsi {
  font-size: 0.95rem;
  color: var(--tinta);
  line-height: 1.7;
  margin-bottom: 24px;
}

.penjual-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--kertas);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.penjual-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-tua);
  flex-shrink: 0;
}
.penjual-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.penjual-info {
  display: flex;
  flex-direction: column;
}
.penjual-label {
  font-size: 0.72rem;
  color: var(--teks-muted);
}
.penjual-nama {
  font-weight: 700;
  color: var(--teal-tua);
  font-size: 0.95rem;
}
.penjual-lokasi {
  font-size: 0.78rem;
  color: var(--teks-muted);
  margin-top: 2px;
}

.produk-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-wa {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
}
.btn-wa:hover {
  background: #1ebe57;
  color: #fff;
}

.produk-lain-section {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--krem-tua);
}
.produk-lain-section h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* ===== Profil Pelaku Usaha ===== */
.profil-usaha-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.profil-avatar {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-tua);
  font-size: 2rem;
  flex-shrink: 0;
}
.profil-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profil-pemilik {
  font-size: 0.88rem;
  color: var(--teks-muted);
  margin-bottom: 4px;
}
.profil-lokasi {
  font-size: 0.85rem;
  color: var(--teks-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.profil-deskripsi {
  font-size: 0.95rem;
  color: var(--tinta);
  line-height: 1.7;
  margin-bottom: 24px;
}
.profil-cta-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.btn-sosmed-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--krem-tua);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-tua);
  font-size: 1.1rem;
}
.btn-sosmed-icon:hover {
  background: var(--teal-tua);
  color: #fff;
}
.profil-map-wrap {
  margin-top: 40px;
}
#peta-profil-usaha {
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--krem-tua);
}

/* ===== Filter bar horizontal ===== */
.filter-bar {
  background: #fff;
  border: 1px solid var(--krem-tua);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 32px;
}
.filter-bar-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-bar-field {
  flex: 1 1 170px;
  min-width: 150px;
}
.filter-bar-field select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--krem-tua);
  font-size: 0.85rem;
  font-family: inherit;
  background: #fff;
}
.filter-bar-search {
  flex: 2 1 240px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--kertas);
  border: 1px solid var(--krem-tua);
  border-radius: 10px;
  padding: 0 14px;
}
.filter-bar-search i {
  color: var(--teks-muted);
}
.filter-bar-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 0;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}
.filter-bar-submit {
  flex: 0 0 auto;
  padding: 11px 26px;
}
.filter-bar-reset {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--krem-tua);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teks-muted);
  font-size: 1rem;
}
.filter-bar-reset:hover {
  background: var(--krem-tua);
  color: var(--teal-tua);
}

@media (max-width: 720px) {
  .filter-bar-row {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-bar-field,
  .filter-bar-search {
    flex: 1 1 auto;
    width: 100%;
  }
  .filter-bar-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Card Pelaku Usaha (versi besar/mencolok) ===== */
.usaha-grid-besar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.usaha-card-besar {
  background: #fff;
  border: 1px solid var(--krem-tua);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.usaha-card-besar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.usaha-banner {
  height: 76px;
}
.usaha-card-besar-body {
  padding: 0 26px 26px;
  margin-top: -40px;
  position: relative;
}
.usaha-avatar-besar {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-tua);
  font-size: 2rem;
  margin-bottom: 14px;
}
.usaha-avatar-besar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.usaha-card-besar-body h3 {
  font-size: 1.25rem;
  margin: 10px 0 8px;
}
.usaha-card-besar-pemilik,
.usaha-card-besar-lokasi {
  font-size: 0.86rem;
  color: var(--teks-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}
.usaha-card-besar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--krem-tua);
}
.usaha-produk-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 6px;
}
.usaha-lihat-profil {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-tua);
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 820px) {
  .usaha-grid-besar {
    grid-template-columns: 1fr;
  }
}

/* ===== Footer ===== */
footer {
  background: var(--teal-tua);
  color: var(--sage-pastel);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand p {
  color: #b9c7c2;
  font-size: 0.88rem;
}
footer h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #cfdad6;
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: var(--mustard);
}
.footer-address p {
  color: #cfdad6;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.footer-sosmed {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-sosmed a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer-sosmed a:hover {
  background: var(--mustard);
  color: var(--teal-tua);
}
#peta-kantor-footer {
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #9fb0ab;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(2) {
    border-right: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-art {
    max-width: 340px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .agenda-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .etalase-layout {
    grid-template-columns: 1fr;
  }
  .filter-toggle-mobile {
    display: block;
  }
  .etalase-filter {
    position: static;
    display: none;
  }
  .etalase-filter.open {
    display: block;
  }
  .produk-detail-grid {
    grid-template-columns: 1fr;
  }
  .produk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tim-grid {
    gap: 22px;
  }
  .tim-card,
  .tim-card-desain {
    flex: 0 1 calc((100% - 44px) / 3);
  } /* 3 kolom, 2 gap x 22px */
  .tim-card {
    padding: 32px 18px;
  }
  .tim-avatar {
    width: 250px;
    height: 250px;
  }
  .tim-avatar span {
    font-size: 2.8rem;
  }
  .usaha-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  nav.main-nav {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .nav-wrap.mobile-open nav.main-nav {
    display: block;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--teal-tua);
    padding: 16px 24px 24px;
    z-index: 50;
  }
  .nav-wrap.mobile-open nav.main-nav ul {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    display: none;
    margin-top: 8px;
  }
  .nav-dropdown.mobile-open .nav-dropdown-menu {
    display: block;
  }
  .slideshow {
    height: 600px;
    min-height: 75vh;
  }
  .slide-content {
    padding-bottom: 110px;
  }
  .slide-content h1 {
    font-size: 1.6rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  section {
    padding: 60px 0;
  }

  .stat-icon {
    width: 30px;
    height: 30px;
  }
  .stat-num {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.78rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tim-grid {
    gap: 20px;
  }
  .tim-card,
  .tim-card-desain {
    flex: 0 1 calc((100% - 20px) / 2);
  } /* 2 kolom, 1 gap x 20px */
  .tim-card {
    padding: 30px 20px;
  }
  .tim-avatar {
    width: 240px;
    height: 240px;
  }
  .tim-avatar span {
    font-size: 2.6rem;
  }
  .tim-nama {
    font-size: 1.05rem;
  }
}

@media (max-width: 820px) {
  .perizinan-detail-grid {
    grid-template-columns: 1fr;
  }
  .perizinan-kontak-box {
    position: static;
  }
}

@media (max-width: 576px) {
  .agenda-grid {
    grid-template-columns: 1fr;
  }
  #peta-sebaran {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    padding: 4px;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--krem-tua);
    padding: 16px 18px;
  }
  .stat-card:last-child {
    border-bottom: none;
  }
  .stat-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .stat-label {
    font-size: 0.76rem;
  }
  .subsektor-card {
    padding: 16px 10px;
  }
  .subsektor-icon {
    width: 44px;
    height: 44px;
  }

  .agenda-card {
    flex: 0 0 240px;
  }
  .agenda-poster {
    height: 130px;
  }
  .tim-grid {
    gap: 16px;
  }
  .tim-card,
  .tim-card-desain {
    flex: 0 1 100%;
  }
  .tim-card {
    padding: 28px 20px;
  }
  .tim-avatar {
    width: 230px;
    height: 230px;
  }
  .tim-avatar span {
    font-size: 2.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .slide {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .slide.active .slide-tag,
  .slide.active .slide-content h1,
  .slide.active .slide-content p,
  .slide.active .hero-ctas {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
