/* ============================================================
   MaduKebon — style.css  (v2 — multi-page, revised)
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --amber: #c8891d;
  --amber-light: #f2b84b;
  --amber-dark: #a96a09;
  --amber-pale: #fff7e8;

  --leaf: #5c3210;
  --leaf-light: #7a461b;

  --cream: #faf7f1;
  --cream-dark: #f2eadf;

  --white: #ffffff;

  --ink: #1a140a;
  --ink-soft: #3d2e1a;
  --ink-muted: #7a6a50;

  --border: #e6dbc7;

  --gold: #d8a63c;

  --shadow-sm: 0 8px 20px rgba(92, 50, 16, 0.08);
  --shadow-md: 0 15px 40px rgba(92, 50, 16, 0.12);
  --shadow-lg: 0 25px 60px rgba(92, 50, 16, 0.18);

  --font-display: "Poppins", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --nav-h: 68px;
  --max-w: 1160px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  /* clip lebih kuat dari hidden — memotong elemen fixed (mis. menu mobile off-screen) */
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  overflow-x: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(242, 184, 75, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(200, 137, 29, 0.08),
      transparent 40%
    ),
    var(--cream);

  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: radial-gradient(
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );

  background-size: 24px 24px;

  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}
.section {
  padding-block: 6rem;
}
.bg-cream {
  background: var(--cream);
}
.bg-leaf {
  background: var(--leaf);
}
.mt-lg {
  margin-top: 2rem;
}

/* ── Typography helpers ────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: block;
}
.eyebrow-light {
  color: var(--amber-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  position: relative;
}
.section-title::after {
  content: "";

  display: block;

  width: 80px;
  height: 4px;

  margin: 16px auto 0;

  border-radius: 999px;

  background: linear-gradient(90deg, var(--amber-light), var(--amber));
}

.section-header .section-title::after {
  margin-inline: auto;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-inline: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-title {
  margin-bottom: 0.75rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative; /* WAJIB untuk curtain */
  overflow: hidden; /* WAJIB — sembunyikan curtain di luar button */
  z-index: 0; /* agar ::before di belakang teks */
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    color 0.25s ease;
}

/* Lapisan "curtain" yang mengisi dari kiri ke kanan */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center; /* mulai dari kiri */
  transition: transform 0.4s var(--ease);
}
.btn:hover::before {
  transform: scaleX(1);
} /* isi penuh saat hover */

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

/* --- Primary (hijau → isi hijau lebih terang) --- */
.btn {
  overflow: hidden;
  isolation: isolate;
}
.btn-primary {
  background: linear-gradient(135deg, #7a461b, #5c3210);

  color: var(--white);

  box-shadow: 0 12px 30px rgba(92, 50, 16, 0.22);
}
.btn-primary::before {
  background: linear-gradient(135deg, #f2b84b, #c8891d);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);

  box-shadow: 0 20px 50px rgba(92, 50, 16, 0.28);
}

/* --- Outline putih (transparan → isi putih, teks jadi gelap) --- */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  color: var(--leaf);
  border-color: var(--white);
}
/* --- Outline gelap (transparan → isi hijau, teks jadi putih) --- */
.btn-outline-dark {
  background: transparent;
  color: var(--leaf);
  border: 1.5px solid var(--leaf);
}
.btn-outline-white::before {
  background: white;
}
.btn-outline-dark {
  color: var(--leaf);
}

.btn-outline-dark::before {
  background: var(--leaf);
}

.btn-outline-dark:hover {
  color: white;
}

/* --- Amber solid (amber → isi amber lebih gelap) --- */
.btn-amber-solid {
  background: var(--amber-light);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212, 130, 10, 0.3);
}
.btn-amber-solid::before {
  background: var(--amber);
}
.btn-amber-solid:hover {
  box-shadow: 0 8px 28px rgba(212, 130, 10, 0.4);
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   Struktur:
   <header #navbar>
     <nav .nav-inner>             ← full width, punya background
       <div .nav-content>         ← max-width wrapper, logo + menu
══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 600; /* selalu di atas panel menu (500) */
}

/* Ini layer yang punya background, padding vertikal, border bawah */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 1rem 2rem; /* JARAK navbar dari tepi layar */
}

/* Bar yang mengambang — punya radius, border, padding dalam */
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto; /* navbar di tengah */
  padding: 0 1.75rem; /* padding dalam kiri-kanan */
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-radius: 14px; /* LENGKUNG — ganti ke 16px kalau mau kotak membulat */

  /* Solid cream default (hero kini terang) */
  background: rgba(250, 246, 236, 0.97);

  border: 1px solid var(--border);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Saat scroll → solid */
#navbar.scrolled .nav-inner {
  background: rgba(250, 246, 236, 0.97);
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Inner pages — selalu solid */
.page-inner .nav-inner {
  background: rgba(250, 246, 236, 0.97);
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
}

/* nav-content tidak perlu max-width lagi (sudah di nav-inner) */
.nav-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover {
  opacity: 0.82;
}

/* Gambar logo — nanti ganti src ke img/logo.png */
.nav-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--leaf);
  transition: color 0.35s ease;
}

/* Logo text jadi gelap saat navbar solid */
#navbar.scrolled .nav-logo-text {
  color: var(--leaf);
}
.page-inner .nav-logo-text {
  color: var(--leaf);
}

/* ── Menu ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  color: var(--coffee);
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: #fff;
  background: rgba(123, 74, 30, 0.9);
  transform: translateY(-1px);
}
.nav-link.active {
  color: var(--leaf);
  font-weight: 600;
}

.nav-link.active:hover {
  color: #fff;
}

#navbar.scrolled .nav-link.active,
.page-inner .nav-link.active {
  color: var(--leaf);
  font-weight: 600;
}

#navbar.scrolled .nav-link.active:hover,
.page-inner .nav-link.active:hover {
  color: #fff;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  border-radius: 2px;
  background: var(--leaf);
}

/* Scrolled & inner page links */
#navbar.scrolled .nav-link,
.page-inner .nav-link {
  color: var(--ink-soft);
}
#navbar.scrolled .nav-link.active,
.page-inner .nav-link.active {
  color: var(--leaf);
}
#navbar.scrolled .nav-link:hover,
.page-inner .nav-link:hover {
  color: #fff;
  background: rgba(123, 74, 30, 0.9);
}
#navbar.scrolled .nav-link.active:hover,
.page-inner .nav-link.active:hover {
  color: #fff !important;
}
#navbar.scrolled .nav-link.active::after,
.page-inner .nav-link.active::after {
  background: var(--leaf);
}

/* ── Hamburger ── */
/* Tombol X: hanya muncul di mobile (media query 768px) */
.nav-close {
  display: none;
}

/* Backdrop lama tidak dipakai — dihapus, close-on-outside ditangani JS document listener */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
  flex-shrink: 0;
}
.bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--leaf);
  border-radius: 2px;
  transition:
    background 0.3s,
    transform 0.3s,
    opacity 0.3s;
}
#navbar.scrolled .bar {
  background: var(--leaf);
}
.page-inner .bar {
  background: var(--leaf);
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS — reveal on scroll
══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 0;
    transition:
      opacity 0.75s var(--ease),
      transform 0.75s var(--ease);
    transition-delay: var(--delay, 0s);
  }
  .reveal-up {
    transform: translateY(48px);
  }
  .reveal-left {
    transform: translateX(-56px);
  }
  .reveal-right {
    transform: translateX(56px);
  }

  .reveal-up.in-view,
  .reveal-left.in-view,
  .reveal-right.in-view {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO (index only)
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -14% 0;
  z-index: 0;
  will-change: transform;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255, 251, 243, 0.88) 0%,
    rgba(255, 251, 243, 0.45) 38%,
    rgba(255, 251, 243, 0) 62%
  );
}
.hero::after {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  right: -250px;
  top: -250px;

  background: radial-gradient(
    circle,
    rgba(242, 184, 75, 0.18),
    transparent 70%
  );

  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  padding: calc(var(--nav-h) + 4rem) 2rem 0;
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 1.25rem;
  display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--leaf);
  margin-bottom: 1.25rem;
  max-width: 14ch;
  text-shadow: none;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.72;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

/* Stat row */
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-block: 1.75rem;
  margin-top: auto;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-inline: 2.5rem;
}
.hero-stat:first-child {
  padding-left: 0;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--leaf);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
}
.scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 2.2s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

/* ══════════════════════════════════════════════════════════════
   VALUE STRIP
══════════════════════════════════════════════════════════════ */
.value-strip {
  background: var(--leaf);
  padding-block: 1.25rem;
}
.strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
}
.strip-icon {
  display: flex;
  color: var(--amber-light);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT GRID (shared)
══════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-frame img,
.why-img img,
.auth-card img,
.shop-banner-bg img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-frame:hover img,
.why-img:hover img,
.auth-card:hover img,
.shop-banner:hover img {
  transform: scale(1.08);
}
.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1.5rem;
  background: var(--amber-light);
  color: var(--white);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(212, 130, 10, 0.35);
}
.badge-big {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-small {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-body p {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}
.about-body p strong {
  color: var(--ink);
  font-weight: 600;
}

/* Check list */
.check-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--leaf);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ══════════════════════════════════════════════════════════════
   SHOP CTA BANNER
══════════════════════════════════════════════════════════════ */
.shop-cta {
  background: var(--white);
  padding-block: 4rem;
}
.shop-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.shop-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--amber);
}
.shop-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      transparent 45%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    linear-gradient(
      to right,
      rgba(45, 25, 8, 0.78),
      rgba(45, 25, 8, 0.42) 40%,
      rgba(45, 25, 8, 0.12) 70%,
      rgba(255, 180, 70, 0.05)
    );
}
.shop-banner-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem;
  max-width: 520px;
}
.shop-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.shop-banner-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

/* ══════════════════════════════════════════════════════════════
   TRUST SECTION
══════════════════════════════════════════════════════════════ */
.trust-section {
  background: var(--cream);
}
.trust-header {
  text-align: center;
  margin-bottom: 3rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  border-color: var(--amber-light);
}
.trust-icon {
  color: var(--leaf);
  margin-bottom: 1rem;
}
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.trust-cta {
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  z-index: 0;
  background-color: var(--ink);
  /* Overlay gelap di atas foto supaya teks tetap terbaca.
     Foto diatur per-halaman via style="--page-hero-img: url('...')"
     Jika tidak diset → banner tampil polos (warna gelap saja). */
  background-image:
    linear-gradient(to bottom, rgba(26, 20, 10, 0.72), rgba(26, 20, 10, 0.88)),
    var(--page-hero-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
}
.page-hero-content {
  max-width: 640px;
}
.page-hero-content .eyebrow {
  color: var(--amber-light);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 48ch;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════════════ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}
.process-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 2.5rem;
  color: var(--border);
  flex-shrink: 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
  -webkit-text-stroke: 1px var(--amber-light);
  color: transparent;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   VALUES GRID
══════════════════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--amber-light);
}
.value-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   WHY US PAGE
══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-body p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.why-body .section-title {
  margin-bottom: 0.75rem;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.why-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--amber-light);
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
  width: 2.25rem;
  text-align: right;
}
.why-point strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.why-point p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
}
.why-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}
.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.why-img:hover img {
  transform: scale(1.04);
}

/* Auth Grid */
.auth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.auth-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.auth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}
.auth-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.auth-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.auth-note {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  color: var(--ink-muted);
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.7;
}

/* Stores */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.store-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.store-active {
  border-color: var(--amber-light);
  box-shadow: 0 4px 20px rgba(212, 130, 10, 0.12);
}
.store-logo {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.store-logo img {
  max-height: 56px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
.store-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--leaf);
}
.store-tba {
  color: var(--ink-muted);
  font-size: 1.1rem;
  font-style: italic;
}
.store-card p {
  font-size: 0.8rem;
  color: var(--ink-muted);
}
.store-pill {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--amber-light);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
}
.store-pill-soon {
  background: var(--border);
  color: var(--ink-muted);
}
.stores-note {
  text-align: center;
  max-width: 50ch;
  margin-inline: auto;
  color: var(--ink-muted);
  font-size: 0.875rem;
}

/* ══════════════════════════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════════════════════════ */
.faq-wrap {
  max-width: 740px;
}
.faq-list {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition:
    background 0.2s,
    color 0.2s;
}
.faq-q:hover {
  background: var(--cream);
  color: var(--leaf);
}
.faq-item.open .faq-q {
  color: var(--leaf);
  background: var(--cream);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--ink-muted);
  transition:
    transform 0.35s var(--ease),
    color 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--leaf);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s var(--ease),
    padding 0.35s var(--ease);
}
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-a a {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-contact {
  margin-top: 2.5rem;
  text-align: center;
}
.faq-contact p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}
.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 3px;
}
.contact-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
a.contact-val:hover {
  color: var(--amber);
}

.reseller-box {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}
.reseller-box p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.reseller-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTION (dark leaf bg)
══════════════════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  padding-block: 2rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  background: #1a0e06;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-block: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo wrap di footer — gambar + teks berdampingan */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}
.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.footer-tagline {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.55);
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-socials a:hover {
  background: var(--amber);
  color: var(--white);
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
  display: block;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a,
.footer-contact a,
.footer-contact span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  padding-block: 1.25rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .auth-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  .process-arrow {
    display: none;
  }
  .process-step {
    flex: 0 0 calc(50% - 1rem);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }
  .container {
    padding-inline: 2.5rem;
  }
  .section {
    padding-block: 4rem;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  /* nav-inner sekarang full-width — nav-content jadi row logo + toggle */
  #navbar {
    padding: 0.6rem 1rem;
  }
  .nav-inner {
    padding: 0 1.25rem;
    border-radius: 14px;
    /* Opaque di mobile — backdrop-filter dimatikan supaya nav-menu (position:fixed)
       bisa stretch ke seluruh viewport. Tanpa blur, background harus solid. */
    background: rgba(250, 246, 236, 0.97) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav-content {
    position: relative;
  }

  /* ── Panel geser dari kanan (bukan fullscreen) ── */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(270px, 80vw); /* partial — tidak penuh layar */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 4.5rem 1.5rem 2rem; /* ruang atas untuk tombol X */
    gap: 0.2rem;
    background: var(--cream);
    box-shadow: -6px 0 40px rgba(60, 34, 8, 0.18);
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.35s ease,
      visibility 0s linear 0.35s;
    z-index: 500;
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
    transition:
      transform 0.35s ease,
      visibility 0s linear 0s;
  }

  /* ── Tombol X ── */
  .nav-close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(92, 50, 16, 0.07);
    color: var(--leaf);
    cursor: pointer;
    border: none;
    flex-shrink: 0;
    transition:
      background 0.2s,
      transform 0.2s;
  }
  .nav-close:hover {
    background: rgba(92, 50, 16, 0.14);
    transform: scale(1.08);
  }

  /* ── Link di dalam panel ── */
  .nav-link {
    font-size: 1rem !important;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    color: var(--leaf) !important;
    padding: 0.8rem 0.75rem !important;
    background: transparent !important;
    border-radius: 10px !important;
    transform: none !important;
    letter-spacing: 0.01em;
    width: 100%;
    text-align: left;
    display: block;
  }
  .nav-link:hover {
    background: rgba(92, 50, 16, 0.07) !important;
    color: var(--leaf) !important;
    transform: none !important;
  }
  .nav-link.active {
    color: var(--amber-dark) !important;
    font-weight: 600 !important;
    background: rgba(200, 137, 29, 0.1) !important;
  }
  .nav-link::after {
    display: none !important;
  }

  /* hamburger → X saat open — tetap dipertahankan untuk accessibility */
  .nav-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Grids */
  .about-grid,
  .why-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-img {
    aspect-ratio: 4/3;
    order: -1;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stores-grid {
    grid-template-columns: 1fr;
  }
  .auth-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-contact {
    grid-column: 1 / -1;
  }
  .strip-grid {
    justify-content: flex-start;
    gap: 1.25rem;
  }

  /* Hero */
  .hero-stat-row {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-stat {
    padding-inline: 1rem;
  }

  /* Process */
  .process-step {
    flex: 0 0 100%;
  }
  .process-steps {
    flex-direction: column;
  }

  .shop-banner-content {
    padding: 2.5rem 1.5rem;
  }
  .about-badge {
    background: linear-gradient(135deg, var(--amber-light), var(--amber));

    box-shadow: 0 15px 40px rgba(200, 137, 29, 0.35);
  }
}

@media (max-width: 480px) {
  .hero-cta,
  .cta-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .auth-grid {
    grid-template-columns: 1fr;
  }
  .reseller-actions {
    flex-direction: column;
  }
  .section {
    padding-block: 3.25rem;
  }
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
}
.trust-card::before,
.value-card::before,
.auth-card::before,
.store-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(135deg, rgba(242, 184, 75, 0.12), transparent);

  opacity: 0;
  transition: 0.4s;
}

.trust-card:hover::before,
.value-card:hover::before,
.auth-card:hover::before,
.store-card:hover::before {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO — PREMIUM REDESIGN v3  (index only · scoped, everything else untouched)
   Palette reused: cream / brown(leaf) / honey-gold(amber) / warm sunlight
   Headings: Montserrat · Body: Poppins  (hero-scoped)
   ══════════════════════════════════════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

/* Hero-scoped type + tuning tokens */
.hero {
  --font-head: "Montserrat", "Poppins", sans-serif;
  --font-copy: "Poppins", var(--font-body);
  --glass: rgba(255, 252, 244, 0.55);
  --glass-brd: rgba(255, 255, 255, 0.7);
}

/* ── Home navbar → true glassmorphism over the hero ─────────────────────── */
.page-home #navbar .nav-inner {
  background: rgba(255, 251, 242, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 34px rgba(92, 50, 16, 0.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  backdrop-filter: blur(16px) saturate(1.35);
}
.page-home #navbar.scrolled .nav-inner {
  background: rgba(250, 246, 236, 0.86);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(92, 50, 16, 0.14);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
}

/* ── Layout shell ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* was flex-end */
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) 2.5rem 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

/* ── Parallax background layers ─────────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: -8% -6%;
  z-index: 0;
  will-change: transform;
}
.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-layer-img {
  background: url("img/bg.jpeg") center 30% / cover no-repeat;
  filter: blur(9px) saturate(1.12) brightness(1.05);
  transform: scale(1.14);
}
.hero-glow {
  border-radius: 50%;
  filter: blur(30px);
  mix-blend-mode: screen;
  opacity: 0.85;
}
.hero-glow-a {
  top: -12%;
  right: 4%;
  width: 46vw;
  height: 46vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(
    circle,
    rgba(255, 208, 112, 0.55),
    rgba(242, 184, 75, 0) 68%
  );
}
.hero-glow-b {
  bottom: -20%;
  left: -6%;
  width: 40vw;
  height: 40vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(
    circle,
    rgba(255, 235, 190, 0.5),
    rgba(255, 235, 190, 0) 70%
  );
}
/* Cream wash keeps text side readable + adds depth (bg stays visible) */
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(250, 246, 236, 0.72) 0%,
      rgba(250, 246, 236, 0.42) 34%,
      rgba(250, 246, 236, 0.06) 60%,
      rgba(250, 246, 236, 0) 78%
    ),
    linear-gradient(0deg, rgba(250, 246, 236, 0.55), rgba(250, 246, 236, 0) 32%);
}

/* ══ LEFT · frosted glass card ════════════════════════════════════════════ */
.hero-card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  box-shadow:
    0 30px 70px rgba(92, 50, 16, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0 0 1.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(200, 137, 29, 0.22);
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
}
.hero-eyebrow i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.5;
}

.hero-headline {
  font-family: var(--font-head);
  /* reduced ~18% vs original clamp(3rem,7.5vw,5.5rem) */
  font-size: clamp(2.45rem, 5.6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--leaf);
  margin: 0 0 1.15rem;
}
.hero-headline-sub {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.1vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--leaf-light);
}

.hero-sub {
  font-family: var(--font-copy);
  font-size: clamp(0.98rem, 1.25vw, 1.075rem);
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 1.9rem;
}

/* ── Premium CTAs w/ arrow animation ────────────────────────────────────── */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.1rem;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  font-family: var(--font-copy);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;

  position: relative;
  overflow: hidden;
  isolation: isolate;

  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    color 0.3s var(--ease);
}
.hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;

  z-index: -1;
}

.hero-btn:hover::before {
  transform: scaleX(1);
}
.hero-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #7a461b, #5c3210);
}

.hero-btn-primary::before {
  background: linear-gradient(135deg, #f2b84b, #c8891d);
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(92, 50, 16, 0.34);
}
.hero-btn-arrow {
  transition: transform 0.32s var(--ease);
}
.hero-btn-primary:hover .hero-btn-arrow {
  transform: translateX(5px);
}
.hero-btn-primary:active {
  transform: translateY(-1px);
}

.hero-btn-ghost {
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(92, 50, 16, 0.18);
}
.hero-btn-ghost::before {
  background: linear-gradient(135deg, #c8891d, #7a461b);
}

.hero-btn-ghost:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(92, 50, 16, 0.14);
}
.hero-btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(92, 50, 16, 0.14);
}

/* ── Three feature badges ───────────────────────────────────────────────── */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(92, 50, 16, 0.12);
}
.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem 0.5rem 0.55rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(200, 137, 29, 0.2);
  font-family: var(--font-copy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s;
}
.hero-features li:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 10px 22px rgba(92, 50, 16, 0.1);
}
.feat-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  color: #fff;
  flex-shrink: 0;
}

/* ══ RIGHT · the bottle (focal point) ═════════════════════════════════════ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
  min-height: 60vh;
}
.bottle-stage {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.18s ease-out;
  will-change: transform;
}
.bottle-float {
  position: relative;
  z-index: 2;
  animation: bottleFloat 6.5s ease-in-out infinite;
  will-change: transform;
}
.bottle-img {
  width: clamp(240px, 34vw, 440px); /* enlarged focal product */
  height: auto;
  display: block;
  filter: drop-shadow(0 34px 40px rgba(60, 34, 8, 0.34));
}
.bottle-halo {
  position: absolute;
  z-index: 1;
  top: 46%;
  left: 50%;
  translate: -50% -50%;
  width: 118%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(255, 214, 130, 0.5),
    rgba(255, 214, 130, 0) 62%
  );
  filter: blur(14px);
  pointer-events: none;
}
.bottle-shadow {
  position: absolute;
  z-index: 0;
  bottom: -2%;
  left: 50%;
  translate: -50% 0;
  width: 62%;
  height: 42px;
  background: radial-gradient(
    ellipse,
    rgba(60, 34, 8, 0.34),
    rgba(60, 34, 8, 0) 70%
  );
  filter: blur(9px);
  animation: shadowPulse 6.5s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes shadowPulse {
  0%,
  100% {
    opacity: 0.85;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.9);
  }
}

/* ══ Ambient golden pollen ════════════════════════════════════════════════ */
.hero-pollen {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.pollen {
  position: absolute;
  bottom: -6%;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe9b3, #e7a52e);
  box-shadow: 0 0 8px rgba(242, 184, 75, 0.8);
  opacity: 0;
  animation: pollenRise var(--dur) linear infinite;
  animation-delay: var(--delay);
}
@keyframes pollenRise {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.6);
  }
  12% {
    opacity: var(--op, 0.7);
  }
  50% {
    transform: translate(var(--drift), -52vh) scale(1);
  }
  88% {
    opacity: var(--op, 0.7);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--drift) * -1), -104vh) scale(0.7);
  }
}

/* ══ Scroll indicator ═════════════════════════════════════════════════════ */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  translate: -50% 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-muted);
}
.hero-scroll-label {
  font-family: var(--font-copy);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-scroll-track {
  width: 22px;
  height: 34px;
  border-radius: 12px;
  border: 1.5px solid rgba(92, 50, 16, 0.35);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero-scroll-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  animation: scrollDot 1.9s var(--ease) infinite;
}
@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
    transform: translateY(11px);
  }
}

/* ══ Entrance fade-up on load ═════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .hero-anim {
    opacity: 0;
    transform: translateY(26px);
    animation: heroFadeUp 0.9s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 0.12s + 0.15s);
  }
  .hero-visual.hero-anim {
    transform: translateY(26px) scale(0.97);
  }
}
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ══ Responsive ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 2rem;
  }
  .bottle-img {
    width: clamp(220px, 40vw, 360px);
  }
  .hero-visual {
    min-height: 52vh;
  }
}

@media (max-width: 860px) {
  .hero {
    justify-content: flex-start;
  }
  .hero-content {
    padding-top: calc(var(--nav-h) + 2.5rem);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }
  .hero-visual {
    order: 1; /* botol tampil SETELAH judul & teks */
    min-height: auto;
    margin-top: 1rem;
  }
  .bottle-img {
    width: clamp(200px, 52vw, 300px);
  }
  .hero-card {
    max-width: 100%;
  }
  .bee-1,
  .bee-2 {
    display: none;
  }
  .hero-scroll {
    display: none;
  }
  /* Hero mobile: hilangkan ruang kosong berlebih */
  .hero {
    min-height: auto !important;
    padding-bottom: 2.5rem;
  }
  .hero-visual {
    width: 100%;
    justify-content: center;
  }
  /* Botol lebih ringkas di HP */
  .bottle-img {
    width: clamp(160px, 46vw, 240px);
  }
  .bottle-cutout .bottle-img {
    height: clamp(220px, 38vh, 320px);
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-inline: 1.25rem;
  }
  .hero-card {
    padding: 1.4rem 1.25rem;
    border-radius: 22px;
  }
  .hero-cta {
    gap: 0.6rem;
  }
  .hero-btn {
    flex: 1 1 auto;
    justify-content: center;
    padding: 0.85rem 1.2rem;
  }
  .hero-headline {
    font-size: clamp(2.15rem, 9vw, 2.9rem);
  }
  .hero-eyebrow {
    font-size: 0.62rem;
    gap: 0.5rem;
  }
}

/* ══ Reduced motion ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .bottle-float,
  .bottle-shadow,
  .pollen,
  .bee,
  .bee-body,
  .bee .wing,
  .drip,
  .drip::after,
  .hero-scroll-dot {
    animation: none !important;
  }
  .hero-anim {
    opacity: 1 !important;
    transform: none !important;
  }
  .pollen,
  .hero-drips,
  .hero-bees {
    display: none;
  }
  .bottle-stage {
    transition: none;
  }
}

/* Hero keyboard focus (a11y) */
.hero-btn:focus-visible,
.hero-scroll:focus-visible,
.hero-features li:focus-visible {
  outline: 2px solid var(--amber-dark);
  outline-offset: 3px;
  border-radius: 100px;
}

/* ── Bottle: photo-frame approach (replaces cutout) ──────────────────────
   Uses about-product.png (portrait 1086×1448) — bottle fills the frame
   naturally. A left-fade + bottom-fade blends it into the hero background.
   ──────────────────────────────────────────────────────────────────────── */

/* Override the old bottle-img rule that was sized for a cutout PNG */
.bottle-frame {
  position: relative;
  width: clamp(260px, 33vw, 440px);
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(60, 34, 8, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}
.bottle-frame .bottle-img {
  /* override old sizing rule */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center 18%; /* frame top of bottle, cap visible */
  display: block;
  filter: none; /* remove old drop-shadow; frame has box-shadow */
  transform: scale(1.04); /* very subtle zoom for premium feel */
  transition: transform 8s ease;
}
/* Gradient fades: left (blends into hero card gap), bottom (grounds the frame) */
.bottle-frame-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(240, 232, 216, 0.72) 0%,
      rgba(240, 232, 216, 0) 28%
    ),
    linear-gradient(
      0deg,
      rgba(240, 232, 216, 0.65) 0%,
      rgba(240, 232, 216, 0) 30%
    ),
    linear-gradient(
      180deg,
      rgba(240, 232, 216, 0.45) 0%,
      rgba(240, 232, 216, 0) 18%
    );
  pointer-events: none;
  border-radius: inherit;
}

/* The floating + shadow animations stay the same — just target .bottle-frame now */
.bottle-float {
  animation: bottleFloat 6.5s ease-in-out infinite;
}

/* Tighter halo for the rectangular frame */
.bottle-halo {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(255, 214, 130, 0.45),
    rgba(255, 214, 130, 0) 60%
  );
}

/* Shadow under the frame */
.bottle-shadow {
  width: 75%;
}

/* Responsive */
@media (max-width: 1024px) {
  .bottle-frame {
    width: clamp(220px, 40vw, 360px);
  }
}
@media (max-width: 860px) {
  .bottle-frame {
    width: clamp(200px, 62vw, 300px);
    aspect-ratio: 3 / 3.6;
    border-radius: 20px;
    margin-inline: auto;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO v3.2 — FIXES: compact layout · realistic animations · clean-up
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Hide removed elements (belt & suspenders) ──────────────────────────── */
.hero-scroll,
.hero-features,
.value-strip {
  display: none !important;
}

/* ── Compact hero: fits 1440×900 and 1366×768 screens ──────────────────── */
.hero-content {
  padding-top: var(--nav-h) !important;
  padding-top: calc(var(--nav-h) + 0.25rem) !important;
}
.hero-card {
  padding: clamp(1.1rem, 2vw, 1.75rem) !important;
  border-radius: 22px !important;
}
.hero-eyebrow {
  margin-bottom: 0.85rem !important;
}
.hero-headline {
  font-size: clamp(1.9rem, 4.2vw, 3.55rem) !important;
  margin-bottom: 0.7rem !important;
}
.hero-headline-sub {
  font-size: clamp(1.2rem, 2.4vw, 1.95rem) !important;
  margin-top: 0.2rem !important;
}
.hero-sub {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem) !important;
  line-height: 1.62 !important;
  margin-bottom: 1.2rem !important;
}
.hero-cta {
  margin-bottom: 0 !important;
}
.hero-btn {
  padding: 0.82rem 1.45rem !important;
  font-size: 0.88rem !important;
}

/* Shorter bottle frame on desktop */
.bottle-frame {
  aspect-ratio: 3 / 3.4 !important;
  border-radius: 22px !important;
}
.hero-visual {
  min-height: 44vh !important;
}

/* ── Bee paths — improved closed loops, organic curves ──────────────────── */
.bee-1 {
  offset-path: path(
    "M -120 310 C 60 155, 300 430, 580 265 S 970 82, 1240 305 S 1530 148, 1680 330 C 1750 420, 1710 530, 1520 548 C 1290 568, 950 382, 680 450 S 220 542, 42 418 S -150 298, -120 310 Z"
  ) !important;
  animation: beeFly1 40s linear infinite !important;
  offset-rotate: auto !important;
}
.bee-2 {
  offset-path: path(
    "M 1610 418 C 1405 262, 1135 514, 858 348 S 428 152, 165 366 S -118 475, -98 356 C -78 238, 82 158, 302 278 C 524 398, 766 166, 1018 286 S 1386 452, 1610 294 C 1660 240, 1672 345, 1610 418 Z"
  ) !important;
  animation: beeFly2 48s linear infinite !important;
  offset-rotate: auto !important;
  animation-delay: -14s !important;
}

/* Bee body bob while in flight */
.bee-body-wrap {
  display: inline-block;
  animation: beeBodyBob 2.4s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes beeBodyBob {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-5px) rotate(1.5deg);
  }
}

/* Wing flutter — realistic high-frequency flap */
.bw-u {
  transform-box: fill-box;
  transform-origin: 50% 98%;
  animation: wingUp 0.085s ease-in-out infinite alternate;
}
.bw-l {
  transform-box: fill-box;
  transform-origin: 50% 2%;
  animation: wingDn 0.085s ease-in-out infinite alternate;
}
.bw-r {
  animation-delay: 0.042s;
}

@keyframes wingUp {
  0% {
    transform: scaleY(1) skewX(0deg);
  }
  100% {
    transform: scaleY(0.1) skewX(4deg);
  }
}
@keyframes wingDn {
  0% {
    transform: scaleY(1) skewX(0deg);
  }
  100% {
    transform: scaleY(0.1) skewX(-4deg);
  }
}

/* JS-created honey drip container */
.hero-drips {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

/* ── Responsive compact adjustments ─────────────────────────────────────── */
@media (max-width: 860px) {
  .bottle-frame {
    aspect-ratio: 3 / 2.8 !important;
  }
  .hero-content {
    padding-top: calc(var(--nav-h) + 1rem) !important;
  }
}
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(1.8rem, 8.5vw, 2.7rem) !important;
  }
  .hero-btn {
    padding: 0.75rem 1.1rem !important;
  }
}
