/* Homepage sections — Fase 2 lightweight
   PENTING: jangan overflow-x:clip di .hp — mematikan position:sticky hero (Next butuh sticky) */
.hp {
  position: relative;
  /* no overflow clip — sticky hero needs visible overflow on ancestors */
  background: transparent;
}

/* Section title divider — gradient underline under h2 */
.hp-section-divider {
  position: relative;
  width: 100%;
  padding-bottom: 18px;
  margin-bottom: 2rem;
}
.hp-section-divider h2 {
  margin: 0;
  color: var(--stone-900);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
}
.hp-section-divider::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(100%, 500px);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #cba328 0%, rgba(250,250,250,0.1) 100%);
}
/* Next: -mt-16 pt-16 pulls under fixed header; sticky top-0 */
.hp-hero {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  color: var(--stone-900);
  text-align: center;
  overflow: hidden;
  /* cancel site-main padding-top so sticky works like Next -mt-16 pt-16 */
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
@media (min-width: 1024px) {
  .hp-hero {
    position: sticky;
    top: 0;
    z-index: 0;
    min-height: 100svh;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #2e1f18;
    color: #fff;
  }
}
/* Brown fallback only — no image poster, reduces CLS + LCP image request */
.hp-hero__media {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #2e1f18;
  user-select: none;
  contain: layout size;
}
@media (min-width: 1024px) {
  .hp-hero__media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    height: auto;
    z-index: 0;
  }
}
.hp-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/*
 * Overlay ALWAYS on (first paint + after scroll).
 * Sibling of media (not inside) so it never sits under the video layer.
 * Mobile: light dim on video strip only (content panel is white).
 * Desktop: full-hero dim so white text stays readable.
 */
.hp-hero__shade {
  pointer-events: none;
  z-index: 1;
  /* mobile: sit on top of video strip */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* match video strip height = 16/9 of width until lg */
  aspect-ratio: 16/9;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.28) 100%);
}
@media (min-width: 1024px) {
  .hp-hero__shade {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    width: auto;
    height: auto;
    /* always-on, independent of scroll */
    background:
      linear-gradient(
        180deg,
        rgba(20, 12, 8, 0.5) 0%,
        rgba(20, 12, 8, 0.28) 30%,
        rgba(20, 12, 8, 0.32) 55%,
        rgba(20, 12, 8, 0.58) 100%
      ),
      radial-gradient(ellipse 80% 70% at 50% 40%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
}
.hp-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}
@media (min-width: 640px) {
  .hp-hero__content {
    padding: 2.5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .hp-hero__content {
    background: transparent;
    padding: 0 2rem;
    transform: translateY(-5rem);
  }
}
.hp-hero__content h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: inherit;
}
@media (min-width: 1024px) {
  .hp-hero__content h1 {
    font-weight: 400;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  }
  .hp-hero__content p {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  }
}
.hp-hero__content p {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 400;
  color: var(--stone-600);
  max-width: none;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
@media (min-width: 640px) {
  .hp-hero__content p {
    max-width: 48ch;
  }
}
@media (min-width: 1024px) {
  .hp-hero__content p {
    color: rgb(255 255 255 / 0.95);
    max-width: 78ch;
  }
}
.hp-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 0.25rem;
}
@media (min-width: 1024px) {
  .hp-hero__actions {
    flex-direction: row;
    width: auto;
    padding-top: 0.5rem;
  }
}
.hp-btn--hero-primary {
  width: 100%;
  max-width: 24rem;
  background: var(--jgreen-soft);
  color: #fff;
  height: 3.5rem;
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.12);
}
.hp-btn--hero-primary:hover {
  background: #4d3327;
}
@media (min-width: 1024px) {
  .hp-btn--hero-primary {
    width: auto;
    max-width: none;
    background: #fff;
    color: var(--stone-900);
    height: 3rem;
    padding: 0 2rem;
    border: 1px solid transparent;
    box-sizing: border-box;
  }
  .hp-btn--hero-primary:hover {
    background: var(--stone-100);
  }
}
.hp-btn--hero-secondary {
  background: transparent;
  color: var(--stone-900);
  text-decoration: underline;
  height: 3.5rem;
  padding: 0 2rem;
  border: 1px solid transparent;
  box-shadow: none;
}
@media (min-width: 1024px) {
  .hp-btn--hero-secondary {
    background: var(--stone-900);
    color: #fff;
    text-decoration: none;
    height: 3rem;
    padding: 0 2rem;
    border: 1px solid var(--stone-900);
    box-sizing: border-box;
    box-shadow: 0 4px 14px rgb(0 0 0 / 0.15);
  }
  .hp-btn--hero-secondary:hover {
    background: #292524;
  }
}
.hp-hero__scroll {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.5);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  animation: hp-bounce 1.5s infinite;
}
@media (min-width: 1024px) {
  .hp-hero__scroll {
    display: flex;
  }
}
@keyframes hp-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Buttons */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 2rem;
  height: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}
.hp-btn--brand {
  background: var(--jgreen-soft);
  color: #fff;
}
.hp-btn--brand:hover {
  background: #4d3327;
}
.hp-btn--dark {
  background: var(--stone-900);
  color: #fff;
}
.hp-btn--dark:hover {
  background: #292524;
}
.hp-btn--light {
  background: #fff;
  color: var(--stone-900);
}
.hp-btn--light:hover {
  background: var(--stone-100);
}
.hp-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgb(255 255 255 / 0.35);
}
.hp-btn--ghost:hover {
  background: rgb(255 255 255 / 0.1);
  border-color: #fff;
}
.hp-btn--text {
  background: transparent;
  color: #fff;
  text-decoration: underline;
  height: auto;
  padding: 0.5rem;
  border: none;
}
.hp-btn--block {
  width: 100%;
}

/* Modal */
.hp-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.hp-modal[hidden] {
  display: none !important;
}
.hp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.6);
  backdrop-filter: blur(4px);
}
.hp-modal__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.hp-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--stone-400);
  cursor: pointer;
}
.hp-modal__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #fffbeb;
  color: #92400e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.hp-modal__panel h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--stone-900);
}
.hp-modal__panel > p {
  font-size: 0.75rem;
  color: var(--stone-500);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.hp-search-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.hp-search-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--stone-200);
  border-radius: 1rem;
  background: var(--stone-50);
  font-size: 0.875rem;
  margin-bottom: 0;
  font-family: inherit;
}
.hp-search-form input:focus {
  outline: 1px solid #f59e0b;
  border-color: #f59e0b;
  box-shadow: 0 0 0 1px #f59e0b;
}
.hp-btn--search-submit {
  background: #78350f;
  color: #fff;
  height: 2.75rem;
  border-radius: 1rem;
}
.hp-btn--search-submit:hover {
  background: #451a03;
}

/* ——— Services: EXACT Next .homepage-services-card + scroll style ——— */
.hp-services {
  position: relative;
  z-index: 20;
  width: 100%;
  background: transparent;
  overflow: visible;
}
/*
 * Next inline style on card:
 *   marginLeft, marginRight, borderRadius, --services-y
 * Next CSS:
 *   .homepage-services-card { transform: translateY(0) }
 *   @media lg { transform: translateY(var(--services-y, 0px)) }
 *
 * Initial state (scroll 0, wide screen): inset sides + radius 32 — JS updates on scroll.
 * CSS fallback before JS: approximate inset on wide screens.
 */
.hp-services__card {
  --services-y: 0px;
  background: #fff;
  border-top: 1px solid rgb(231 229 228 / 0.5);
  border-bottom: 1px solid rgb(231 229 228 / 0.5);
  box-shadow: 0 10px 35px -10px rgba(92, 61, 46, 0.08);
  width: auto;
  display: flex;
  flex-direction: column;
  transform-origin: center center;
  will-change: margin, border-radius, transform;
  transform: translateY(0);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  border-radius: 0;
  position: relative;
  z-index: 21;
}
@media (min-width: 1024px) {
  .hp-services__card {
    /* start inset before/while JS runs (matches scrollY≈0) */
    margin-left: max(0px, calc((100vw - 1200px) / 2));
    margin-right: max(0px, calc((100vw - 1200px) / 2));
    border-radius: 32px;
    transform: translateY(var(--services-y, 0px));
  }
}
/* Mobile intro banner */
.hp-services__intro {
  display: block;
  padding: 2rem 1.25rem 1.25rem;
  text-align: left;
}
.hp-services__intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--stone-900);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}
.hp-services__intro h2 strong {
  font-weight: 500;
}
.hp-services__intro p {
  color: var(--stone-500);
  font-weight: 400;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.hp-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  /* Single grid: intro | card | card | card
                    intro | card | card | card  */
  .hp-services__card {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .hp-services__intro {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 2rem;
    border-bottom: 0;
    border-right: 1px solid rgb(231 229 228 / 0.5);
  }
  .hp-services__intro h2 {
    font-size: 2.5rem;
  }
  .hp-services__intro p {
    font-size: 1rem;
  }
  .hp-services__grid {
    display: contents; /* children become grid items of parent */
  }
}
.hp-svc-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.65rem 0.65rem 0.85rem;
  border-bottom: 1px solid rgb(231 229 228 / 0.5);
  border-right: 1px solid rgb(231 229 228 / 0.5);
  transition: background 0.2s;
  color: inherit;
  min-width: 0;
}
.hp-svc-card:nth-child(2n) {
  border-right: none;
}
.hp-svc-card:hover {
  background: rgb(250 250 249 / 0.7);
}
.hp-svc-card--desktop-only {
  display: none;
}
@media (min-width: 1024px) {
  .hp-svc-card {
    padding: 2.75rem 1.75rem;
    border-right: 1px solid rgb(231 229 228 / 0.5);
  }
  .hp-svc-card:nth-child(2n) {
    border-right: 1px solid rgb(231 229 228 / 0.5);
  }
  /* col 4 of each row: no right border */
  .hp-svc-card:nth-child(3),
  .hp-svc-card:nth-child(6) {
    border-right: none;
  }
  /* bottom row: no bottom border */
  .hp-svc-card:nth-child(n + 4) {
    border-bottom: none;
  }
  .hp-svc-card--desktop-only {
    display: flex;
  }
}
.hp-svc-card__text h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: var(--stone-900);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}
.hp-svc-card:hover .hp-svc-card__text h3 {
  color: #1c1917;
}
.hp-svc-card__text h3 span {
  color: var(--stone-400);
  font-weight: 500;
  transition: transform 0.2s, color 0.2s;
}
.hp-svc-card:hover .hp-svc-card__text h3 span {
  color: var(--stone-700);
  transform: translateX(2px);
}
@media (min-width: 1024px) {
  .hp-svc-card__text h3 {
    font-size: 1.125rem;
  }
}
.hp-svc-card__text p {
  font-size: 0.8125rem;
  color: var(--stone-500);
  font-weight: 400;
  margin: 0;
  line-height: 1.45;
}
@media (min-width: 1024px) {
  .hp-svc-card__text p {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
.hp-svc-card__media {
  margin-top: 0.75rem;
  aspect-ratio: 16/9;
  border-radius: 7px;
  overflow: hidden;
  background: var(--stone-100);
  border: 1px solid rgb(231 229 228 / 0.5);
  position: relative;
}
@media (min-width: 1024px) {
  .hp-svc-card__media {
    margin-top: 1.5rem;
    border-radius: 0.5rem;
  }
  .hp-svc-card--desktop-only .hp-svc-card__media {
    border-radius: 1rem;
  }
}
.hp-svc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.hp-svc-card:hover .hp-svc-card__img {
  transform: scale(1.03);
}

/* Features: flush under services (gap closed via services marginBottom = yOffset in JS) */
.hp-features {
  background: #321b0f;
  position: relative;
  z-index: 20;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  border-bottom: 1px solid var(--stone-200);
  transition: background-color 0.5s ease;
}
.hp-features__layout {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1024px) {
  .hp-features__layout {
    flex-direction: row;
    position: relative;
  }
  .hp-features__slides {
    width: 75%;
  }
  /* JS toggles: absolute-top | absolute-bottom | fixed (match Next sidebarState) */
  .hp-feature-nav {
    display: none;
    width: 25%;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-left: 1px solid var(--stone-200);
    padding: 2rem 2.5rem 2rem;
    z-index: 30;
    height: 100vh;
    box-sizing: border-box;
  }
  .hp-feature-nav.is-visible {
    display: flex;
  }
  .hp-feature-nav.is-top {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
  }
  .hp-feature-nav.is-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100vh;
  }
  .hp-feature-nav.is-fixed {
    position: fixed;
    top: var(--header-h);
    right: 0;
    height: calc(100vh - var(--header-h));
  }
}
.hp-feature {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 4rem 1.25rem;
  color: #fff;
  background: transparent;
  scroll-margin-top: var(--header-h);
}
@media (min-width: 640px) {
  .hp-feature {
    padding: 4rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hp-feature {
    /* Next: full viewport slide, generous padding */
    padding: 0 3rem 0 4rem;
    min-height: 100vh;
  }
}
.hp-feature__grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 1024px) {
  .hp-feature__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3.5rem 4rem;
    max-width: none;
  }
}
/* Feature images — Next: large square mockup ~half viewport, not tiny */
.hp-feature__media {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 1;
  width: 100%;
  max-width: min(420px, 92vw);
  margin: 0 auto;
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.35);
  background: rgb(255 255 255 / 0.05);
}
@media (min-width: 1024px) {
  .hp-feature__media {
    max-width: none;
    width: 100%;
    /* Next sizes ~380–520px visual; fill column aggressively */
    min-height: min(52vh, 520px);
    height: min(52vh, 560px);
    aspect-ratio: auto;
  }
}
.hp-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1024px) {
  .hp-feature__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.5rem;
    align-items: center;
    max-width: none;
    padding-right: 1rem;
  }
}
.hp-feature__body h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.hp-feature__body h2 em {
  font-style: italic;
  font-weight: 400;
  color: #ffeed6;
}
.hp-feature__body p {
  color: rgb(255 255 255 / 0.85);
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}
.hp-feature__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hp-feature__side-label {
  display: none;
}
/* mobile: hide sidebar nav */
.hp-feature-nav {
  display: none !important;
}
@media (min-width: 1024px) {
  .hp-feature-nav.is-visible {
    display: flex !important;
  }
}
.hp-feature-nav__list {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}
.hp-feature-nav__link {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--stone-100);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--stone-400, #a8a29e);
  transition: color 0.3s, font-weight 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.02em;
}
.hp-feature-nav__link:hover {
  color: var(--stone-600);
}
.hp-feature-nav__link.is-active {
  color: var(--stone-900);
  font-weight: 700;
}
.hp-feature-nav__link.is-active::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--hp-nav-dot, #321b0f);
  flex-shrink: 0;
  transition: background 0.5s;
}
.hp-feature-nav__help {
  border-top: 1px solid var(--stone-100);
  padding-top: 1.5rem;
}
.hp-feature-nav__help p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--stone-400);
  margin: 0 0 0.75rem;
}
.hp-feature-nav__help a {
  font-weight: 500;
  color: var(--stone-900);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hp-feature-nav__help a:hover {
  color: var(--jgreen-soft);
}
.hp-wa-icon {
  color: var(--jgreen-soft);
  flex-shrink: 0;
}

/* ——— Details ——— */
.hp-details {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
  position: relative;
  z-index: 20;
  padding: 4.5rem 1.25rem 5rem;
  background: #fff;
  border-bottom: 1px solid var(--stone-200);
}
@media (min-width: 640px) {
  .hp-details {
    padding: 60px 3rem;
  }
}
.hp-details__grid {
  display: grid;
  gap: 3rem;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .hp-details__grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
    grid-template-rows: clamp(640px, calc(100svh - 4rem), 780px);
    gap: clamp(2.5rem, 3.4vw, 4rem);
    align-items: stretch;
  }
}
.hp-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: rgb(120 53 15 / 0.85);
  margin: 0 0 0.75rem;
}
.hp-details__left {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}
.hp-details__left h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.18;
  margin: 0 0 1.75rem;
  flex-shrink: 0;
}
.hp-kicker {
  flex-shrink: 0;
}
.hp-details__list {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.hp-detail {
  border-bottom: 1px solid var(--stone-200);
  padding: 0.85rem 0;
  margin-bottom: 0.5rem;
}
.hp-detail.is-open {
  border-bottom-color: rgb(120 53 15 / 0.3);
  padding-bottom: 1.5rem;
}
.hp-detail__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  font-weight: 400;
  color: var(--stone-400);
  padding: 0.85rem 0;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  cursor: pointer;
}
.hp-detail__trigger:hover {
  color: var(--stone-600);
}
.hp-detail.is-open .hp-detail__trigger {
  color: var(--stone-900);
  font-weight: 600;
}
.hp-detail__panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.3s ease;
  pointer-events: none;
}
.hp-detail.is-open .hp-detail__panel {
  max-height: 1000px;
  opacity: 1;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  pointer-events: auto;
}
.hp-detail__panel p {
  font-size: 1.0625rem;
  color: var(--stone-500);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
/* Mobile detail mockup — besar dengan whitespace melimpah */
.hp-detail__mobile-media {
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2rem 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hp-detail__mobile-media img {
  width: min(100%, 100%);
  max-width: 100%;
  max-height: 480px;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  margin: 0 auto;
  display: block;
}
@media (min-width: 640px) {
  .hp-detail__mobile-media {
    min-height: 420px;
    padding: 2rem 1.5rem;
  }
  .hp-detail__mobile-media img {
    max-height: 560px;
  }
}
@media (min-width: 1024px) {
  .hp-detail__mobile-media {
    display: none;
  }
}
/* Premium Details right panel — Next: huge rounded panel, image large inside */
.hp-details__right {
  display: none;
  border-radius: 20px;
  min-height: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: clamp(3.75rem, 3.8vw, 4.5rem) clamp(2rem, 2.15vw, 2.5rem);
  overflow: hidden;
  box-shadow: 0 18px 48px rgb(68 41 25 / 0.15);
  transition: background 0.5s ease;
  position: relative;
  background: #774e35;
  width: 100%;
}
.hp-details__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
/* Desktop preview — full-height inside colored panel */
.hp-details__right img,
.hp-details__preview-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: hp-fadeIn 0.35s ease-out;
  border-radius: 1rem;
  display: block;
  margin: 0 auto;
}
@keyframes hp-fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (min-width: 1024px) {
  .hp-details {
    padding: 60px clamp(2.5rem, 3.4vw, 4rem);
  }
  .hp-details__grid {
    /* Kiri sempit, kanan DOMINAN biar mockup gede */
    align-items: stretch;
  }
  .hp-details__left {
    padding-left: 2rem;
  }
  .hp-details__left h2 {
    margin-bottom: clamp(2.75rem, 6vh, 3.5rem);
  }
  .hp-details__right {
    display: flex;
    /* padding kecil → gambar lebih “isi” panel */
  }
  .hp-details__right img,
  .hp-details__preview-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
  }
}

@media (min-width: 1280px) {
  .hp-details {
    padding-top: 60px;
    padding-left: 2rem;
    padding-right: 1.875rem;
    padding-bottom: 60px;
  }
  .hp-details__grid {
    grid-template-rows: clamp(680px, calc(100svh - 3.125rem), 780px);
  }
  .hp-details__right img,
  .hp-details__preview-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    border-radius: 1rem;
  }
}

@media (min-width: 1536px) {
  .hp-details__grid {
    grid-template-rows: clamp(720px, calc(100svh - 3.125rem), 800px);
  }
}

/* ——— Team ——— */
.hp-team {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
  position: relative;
  z-index: 20;
  padding: 4rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--stone-200);
}
@media (min-width: 640px) {
  .hp-team {
    padding: 5rem 3rem;
  }
}
.hp-team__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  /* Image left, text column vertically centered */
  .hp-team__grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.9fr);
    gap: 1.5rem 4rem;
    align-items: center;
  }
  .hp-team__media {
    aspect-ratio: auto;
    min-height: 520px;
    height: 100%;
  }
  .hp-team__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
  }
}
.hp-team__text h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--stone-900);
}
.hp-team__text h2 em {
  font-style: italic;
  color: rgb(120 53 15 / 0.9);
  font-weight: 400;
}
.hp-team__desc {
  color: var(--stone-500);
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 1.75rem;
  font-size: 1rem;
}
.hp-team__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--stone-50);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
  border: 1px solid var(--stone-100);
}
.hp-team__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-team__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(28 25 23 / 0.1);
  pointer-events: none;
}
.hp-team__bubble {
  display: none;
  position: absolute;
  z-index: 10;
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgb(245 245 244 / 0.8);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  box-shadow: 0 20px 40px -12px rgb(0 0 0 / 0.2);
  gap: 0.75rem;
  width: min(280px, 42vw);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .hp-team__bubble {
    display: flex;
  }
}
.hp-team__bubble--left {
  top: 25%;
  left: 20%;
  transform: translateY(-50%);
}
.hp-team__bubble--right {
  bottom: 20%;
  right: 20%;
  transform: translateY(50%);
}
.hp-team__bubble:hover {
  transform: translateY(-50%) scale(1.02);
}
.hp-team__bubble--right:hover {
  transform: translateY(50%) scale(1.02);
}
.hp-team__bubble-avatar {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}
.hp-team__bubble-avatar img {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--stone-100);
}
.hp-team__bubble-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #78350f;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.hp-team__bubble-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone-400);
  margin: 0 0 0.2rem;
}
.hp-team__bubble-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--stone-700);
  line-height: 1.45;
  margin: 0;
}
/* legacy .hp-team__cta removed — text block uses .hp-team__text */

/* ——— Vendors ——— */
.hp-vendors {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
  position: relative;
  z-index: 20;
  padding: 4rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--stone-200);
}
@media (min-width: 640px) {
  .hp-vendors {
    padding: 5rem 3rem;
  }
}
.hp-vendors h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin: 0 0 2.5rem;
  color: var(--stone-900);
}
/* Next: lg:grid-cols-12 → 12 icons ONE row on desktop */
.hp-vendors__cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 0.5rem;
  justify-items: center;
  margin-bottom: 3rem;
  width: 100%;
}
@media (min-width: 640px) {
  .hp-vendors__cats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .hp-vendors__cats {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem 0.35rem;
  }
}
.hp-vendor-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 100px;
  min-width: 0;
}
@media (min-width: 1024px) {
  .hp-vendor-cat {
    max-width: none;
  }
}
.hp-vendor-cat__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: var(--stone-50);
  color: var(--stone-600);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.hp-vendor-cat__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
@media (min-width: 640px) {
  .hp-vendor-cat__icon {
    width: 4.5rem;
    height: 4.5rem;
  }
  .hp-vendor-cat__icon svg {
    width: 2rem;
    height: 2rem;
  }
}
@media (min-width: 1024px) {
  .hp-vendor-cat__icon {
    width: 3.75rem;
    height: 3.75rem;
  }
  .hp-vendor-cat__icon svg {
    width: 1.65rem;
    height: 1.65rem;
  }
  .hp-vendor-cat__label {
    font-size: 11px;
    max-width: 5.25rem;
  }
}
.hp-vendor-cat:hover .hp-vendor-cat__icon {
  background: var(--jgreen-soft);
  color: #fff;
  transform: scale(1.04);
}
.hp-vendor-cat__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--stone-500);
  line-height: 1.25;
}
.hp-vendor-cat:hover .hp-vendor-cat__label {
  color: var(--stone-900);
}
/* Directory — Next: 4 columns, 2 stacked items each, closed, thin borders */
.hp-vendors__dir {
  border-top: 1px solid rgb(245 245 244 / 0.9);
  padding-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .hp-vendors__dir {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .hp-vendors__dir {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 2.5rem;
  }
}
.hp-dir-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 0 0 1.5rem;
}
@media (min-width: 1024px) {
  .hp-dir-col {
    border-right: 1px solid var(--stone-200);
    padding-right: 2rem;
    padding-bottom: 0;
  }
  .hp-dir-col:last-child {
    border-right: none;
    padding-right: 0;
  }
}
.hp-dir {
  /* closed by default */
}
.hp-dir__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: #292524;
  padding: 0.15rem 0;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  cursor: pointer;
}
.hp-dir__trigger:hover {
  color: #5c3d2e;
}
/* Lucide chevron-down — match Next w-4.5 h-4.5 text-stone-400 */
.hp-dir__chev {
  color: #a8a29e;
  transition: transform 0.3s ease, color 0.2s;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}
.hp-dir.is-open .hp-dir__chev {
  transform: rotate(180deg);
  color: #78350f;
}
.hp-dir__links {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0 0.35rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.hp-dir.is-open .hp-dir__links {
  max-height: 160px;
  opacity: 1;
  pointer-events: auto;
}
.hp-dir__links a {
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--stone-400);
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.hp-dir__links a:hover {
  color: var(--stone-700);
}

/* ——— Blog ——— */
.hp-blog {
  position: relative;
  z-index: 10;
  padding: 4rem 1.25rem 5rem;
  background: var(--jivory);
}
@media (min-width: 640px) {
  .hp-blog {
    padding: 5rem 3rem;
  }
}
.hp-blog__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hp-blog__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0;
  color: var(--stone-900);
}
.hp-blog__all {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--jgreen-soft);
  white-space: nowrap;
}
.hp-blog__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hp-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hp-blog-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgb(231 229 228 / 0.6);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.hp-blog-card:hover {
  box-shadow: 0 10px 30px -10px rgba(92, 61, 46, 0.12);
}
.hp-blog-card__media {
  aspect-ratio: 16/10;
  background: var(--stone-100);
  overflow: hidden;
}
.hp-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-blog-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
}
.hp-blog-card__meta {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone-400);
}
.hp-blog-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.4rem 0 0.5rem;
  color: var(--stone-900);
  line-height: 1.3;
}
.hp-blog-card__body p {
  font-size: 0.875rem;
  color: var(--stone-500);
  margin: 0;
  line-height: 1.5;
}
.hp-blog-empty {
  color: var(--stone-500);
  grid-column: 1 / -1;
}
