/* ════════════════════════════════════════
   ROOT & RESET
════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f7f3ee;
  --cream-dark: #ede7dc;
  --cream-mid: #e4ddd2;
  --brown-deep: #2c1a0e;
  --brown-mid: #5c3d1e;
  --brown-light: #a0714f;
  --brown-pale: #c8a882;
  --accent: #8b4513;
  --green-check: #3b6d11;
  --text-main: #1e1108;
  --text-muted: #7a5c3e;
  --text-light: #b08b6a;
  --border: rgba(92, 61, 30, 0.12);
  --border-mid: rgba(92, 61, 30, 0.22);
  --border-strong: rgba(92, 61, 30, 0.35);
  --wa-green: #25d366;
  --wa-dark: #128c7e;
  --shopee-orange: #ee4d2d;
  --shopee-dark: #c13515;
  --card-bg: #ffffff;
  --section-gap: 7rem;
  --container: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--cream);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

/* ════════════════════════════════════════
   DARK MODE — remap existing palette
════════════════════════════════════════ */
[data-theme="dark"] {
  --cream: #1a0e06;
  --cream-dark: #2c1a0e;
  --cream-mid: #3d2410;
  --brown-deep: #f0eae0;
  --brown-mid: #c8a882;
  --brown-light: #a0714f;
  --brown-pale: #6b4a2c;
  --text-main: #f0eae0;
  --text-muted: #c4a882;
  --text-light: #8b6347;
  --border: rgba(240, 234, 224, 0.07);
  --border-mid: rgba(240, 234, 224, 0.13);
  --border-strong: rgba(240, 234, 224, 0.22);
  --card-bg: #2c1a0e;
}

[data-theme="dark"] .navbar {
  background: rgba(26, 14, 6, 0.703);
}
[data-theme="dark"] .product-card,
[data-theme="dark"] .popup,
[data-theme="dark"] .brew-card,
[data-theme="dark"] .testi-card {
  background: var(--card-bg);
}
[data-theme="dark"] .step-num {
  background: var(--cream-dark);
}
[data-theme="dark"] .note-pill,
[data-theme="dark"] .brew-chip,
[data-theme="dark"] .taste-tag {
  background: var(--cream-mid);
}
[data-theme="dark"] .wa-discount-badge {
  background: rgba(59, 109, 17, 0.2);
  color: #7ec84a;
}
[data-theme="dark"] .wa-discount-badge small {
  color: #7ec84a;
  opacity: 0.75;
}
[data-theme="dark"] #wa-price {
  color: #7ec84a;
}
[data-theme="dark"] .step-note {
  background: rgba(59, 109, 17, 0.2);
}
[data-theme="dark"] .channel-icon.ig {
  background: rgba(225, 48, 172, 0.12);
}
[data-theme="dark"] .channel-icon.shopee {
  background: rgba(238, 77, 45, 0.12);
}
[data-theme="dark"] .channel-icon.email {
  background: rgba(189, 187, 60, 0.12);
}
[data-theme="dark"] .icon-placeholder {
  border-color: var(--border-strong);
}
[data-theme="dark"] .popup-close {
  background: rgba(240, 234, 224, 0.1);
  color: var(--text-muted);
}
[data-theme="dark"] .popup-close:hover {
  background: rgba(240, 234, 224, 0.18);
}
[data-theme="dark"] .card-cta-btn {
  background: var(--brown-deep);
  color: var(--cream);
}

/* ════════════════════════════════════════
   DARK MODE TOGGLE
════════════════════════════════════════ */
.dark-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0.5px solid var(--border-mid);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition:
    background 0.15s,
    border-color 0.15s;
  flex-shrink: 0;
}
.dark-toggle:hover {
  background: var(--cream-dark);
}
.dark-toggle svg {
  width: 15px;
  height: 15px;
  pointer-events: none;
}
.icon-moon {
  display: none;
}
[data-theme="dark"] .icon-sun {
  display: none;
}
[data-theme="dark"] .icon-moon {
  display: block;
}

/* ════════════════════════════════════════
   SHARED UTILITIES
════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--brown-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
}

hr.divider {
  border: none;
  border-top: 0.5px solid var(--border-mid);
  margin: 1.5rem 0;
}

/* ════════════════════════════════════════
   01 — NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(247, 243, 238, 0.703);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  transition:
    box-shadow 0.3s ease,
    background 0.25s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(44, 26, 14, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 1rem;
}

/* Wrapper: nav-links + toggle + hamburger */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

/* Brand: logo slot + text */
.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-slot {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: background 0.2s;
}
.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-logo-placeholder-text {
  font-size: 8px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-brand-name {
  font-family: "Libre Baskerville", serif;
  font-size: 17px;
  color: var(--brown-deep);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-brand-tagline {
  font-size: 9.5px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--brown-deep);
}

.nav-cta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: var(--brown-mid);
  color: var(--cream) !important;
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s !important;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--brown-deep) !important;
  color: var(--cream) !important;
}

/* Right cluster: dark toggle + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-right-group {
    gap: 0;
  }
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 0.5px solid var(--border-mid);
  padding: 1rem 2rem 1.25rem;
  gap: 0.125rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 0.5px solid var(--border);
  display: block;
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile .nav-cta-mobile {
  margin-top: 0.5rem;
  background: var(--brown-mid);
  color: var(--cream);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  border: none;
}

/* ════════════════════════════════════════
   02 — HERO
════════════════════════════════════════ */
.hero {
  padding-top: 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
[data-theme="light"] .hero::before {
  background: rgba(255, 255, 255, 0.6);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.703);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brown-mid);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: fadeUp 0.7s ease both;
}
.hero-headline {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(44px, 7.5vw, 88px);
  color: var(--brown-deep);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-headline em {
  font-style: italic;
  color: var(--brown-mid);
}
.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--brown-deep);
  line-height: 1.7;
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--brown-mid);
  color: var(--cream);
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--brown-deep);
  transform: translateY(-1px);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
}
.btn-ghost:hover {
  color: var(--brown-deep);
}
.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--brown-mid);
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown-mid);
  flex-shrink: 0;
}
.trust-sep {
  width: 0.5px;
  height: 16px;
  background: var(--border-mid);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════
   SECTION WRAPPER
════════════════════════════════════════ */
.section {
  padding: var(--section-gap) 0;
  border-top: 0.5px solid var(--border);
}
.section-produk {
  padding: var(--section-gap) 0;
  border-top: 0.5px solid var(--border);
}
.produk-header {
  margin-bottom: 3rem;
}
.produk-header .section-subtitle {
  margin-top: 0.75rem;
}

/* ════════════════════════════════════════
   03 — PRODUCT CARDS
════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.product-card {
  background: var(--card-bg);
  border: 0.5px solid var(--border-mid);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(44, 26, 14, 0.1);
}
.product-card:active {
  transform: translateY(-1px);
}
.card-img {
  width: 100%;
  height: 190px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.card-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bean-icon {
  width: 52px;
  height: 52px;
  opacity: 0.3;
}
.card-img-label {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card-origin-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(44, 26, 14, 0.75);
  color: #f7f3ee;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}
.card-body {
  padding: 1.125rem 1.25rem 1.25rem;
}
.card-type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 4px;
}
.card-name {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  color: var(--brown-deep);
  line-height: 1.2;
  margin-bottom: 10px;
}
.card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 300;
}
.card-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.note-pill {
  font-size: 11px;
  background: var(--cream);
  color: var(--brown-mid);
  border: 0.5px solid var(--border-mid);
  border-radius: 99px;
  padding: 3px 9px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid var(--border);
  padding-top: 12px;
}
.card-price-from {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 2px;
}
.card-price {
  font-family: "Libre Baskerville", serif;
  font-size: 19px;
  color: var(--brown-deep);
  font-weight: 700;
}
.card-cta-btn {
  font-size: 12px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--brown-deep);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-cta-btn:hover {
  background: var(--brown-mid);
}
.card-cta-btn svg {
  width: 13px;
  height: 13px;
}

/* ════════════════════════════════════════
   03 — PRODUCT OVERLAY & POPUP
════════════════════════════════════════ */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 2, 0.6);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup {
  background: var(--card-bg);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  animation: slideUp 0.25s ease;
  position: relative;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-top {
  background: var(--cream-dark);
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 0.5px solid var(--border-mid);
  position: relative;
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(44, 26, 14, 0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: background 0.15s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.popup-close:hover {
  background: rgba(44, 26, 14, 0.15);
}
.popup-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-light);
  font-weight: 500;
  margin-bottom: 4px;
}
.popup-name {
  font-family: "Libre Baskerville", serif;
  font-size: 26px;
  color: var(--brown-deep);
  margin-bottom: 10px;
  line-height: 1.1;
}
.popup-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.spec-chip {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.5);
  border: 0.5px solid var(--border-mid);
  border-radius: 99px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
[data-theme="dark"] .spec-chip {
  background: rgba(240, 234, 224, 0.06);
}
.spec-chip span {
  color: var(--text-light);
}

.popup-body {
  padding: 1.25rem 1.5rem;
}

/* Variant selector */
.variant-section {
  margin-bottom: 1.25rem;
}
.variant-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 8px;
}
.variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.variant-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border-mid);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.3;
}
.variant-btn:hover {
  border-color: var(--brown-light);
  color: var(--brown-mid);
  background: var(--cream);
}
.variant-btn.active {
  border-color: var(--brown-deep);
  background: var(--brown-deep);
  color: var(--cream);
}

/* Tasting notes */
.tasting-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.taste-tag {
  font-size: 11px;
  background: #fff8f0;
  color: var(--brown-mid);
  border: 0.5px solid rgba(160, 113, 79, 0.3);
  border-radius: 99px;
  padding: 4px 10px;
}

/* Brew inside popup */
.popup-brew-section {
  background: var(--cream);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
}
.popup-brew-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 6px;
}
.brew-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.brew-chip {
  font-size: 11px;
  background: var(--card-bg);
  color: var(--brown-mid);
  border: 0.5px solid var(--border-mid);
  border-radius: 6px;
  padding: 3px 8px;
}

.popup-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0 0 1.25rem;
}

/* Price display */
.price-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.price-label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 3px;
}
.price-main {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.price-main.updating {
  opacity: 0.35;
  transform: translateY(-2px);
}
.price-per {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 3px;
}
.wa-discount-badge {
  font-size: 11px;
  font-weight: 600;
  background: #e8f8ec;
  color: var(--green-check);
  border-radius: 8px;
  padding: 6px 10px;
  text-align: right;
  line-height: 1.4;
}
.wa-discount-badge small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--green-check);
  opacity: 0.75;
}

/* CTA buttons inside popup */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  background: var(--wa-green);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.cta-wa:hover {
  background: var(--wa-dark);
}
.cta-wa svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.cta-shopee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: transparent;
  color: var(--shopee-orange);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--shopee-orange);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.cta-shopee:hover {
  background: var(--shopee-orange);
  color: #fff;
}
.cta-note {
  font-size: 10.5px;
  color: var(--text-light);
  text-align: center;
  margin-top: 2px;
}
.cta-note strong {
  color: var(--green-check);
}
.popup-footer-note {
  font-size: 10.5px;
  color: var(--text-light);
  text-align: center;
  padding: 0.75rem 1.5rem 1rem;
  border-top: 0.5px solid var(--border);
}

/* ════════════════════════════════════════
   04 — TENTANG
════════════════════════════════════════ */
.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tentang-text .section-title {
  margin-bottom: 2rem;
}
.tentang-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.125rem;
}
.tentang-body p:last-child {
  margin-bottom: 0;
}
.tentang-body p strong {
  color: var(--brown-mid);
  font-weight: 500;
}
.tentang-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--border-mid);
  border-radius: 12px;
  overflow: hidden;
}
.value-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 0.5px solid var(--border);
  transition: background 0.15s;
}
.value-row:last-child {
  border-bottom: none;
}
.value-row:hover {
  background: var(--cream-dark);
}
.value-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.value-icon svg {
  width: 16px;
  height: 16px;
  color: var(--brown-mid);
}
.value-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 2px;
}
.value-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}
.tentang-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border-radius: 20px;
  border: 0.5px solid var(--border-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.tentang-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(160, 113, 79, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(44, 26, 14, 0.06) 0%,
      transparent 50%
    );
}
.photo-placeholder-icon {
  opacity: 0.2;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1;
}
.photo-placeholder-text {
  font-size: 12px;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════
   05 — CARA ORDER
════════════════════════════════════════ */
.section-order {
  background: var(--cream);
}
.order-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 3.5rem;
}
.order-header .section-title {
  margin-bottom: 0.75rem;
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 0.5px;
  background: var(--border-strong);
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 0.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  color: var(--brown-deep);
  margin-bottom: 1.25rem;
  transition:
    background 0.15s,
    color 0.15s;
}
.step-card:hover .step-num {
  background: var(--brown-deep);
  color: var(--cream);
  border-color: var(--brown-deep);
}
.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 0.625rem;
  font-family: "Libre Baskerville", serif;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}
.step-note {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 11px;
  color: var(--green-check);
  background: #ebf5e1;
  border-radius: 99px;
  padding: 3px 10px;
  font-weight: 500;
}
.order-footer-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}
.order-footer-note a {
  color: var(--brown-light);
  text-decoration: none;
  font-weight: 500;
}
.order-footer-note a:hover {
  color: var(--brown-mid);
}

/* ════════════════════════════════════════
   06 — KONTAK
════════════════════════════════════════ */
.kontak-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.kontak-left .section-title {
  margin-bottom: 0.75rem;
}
.kontak-left .section-subtitle {
  margin-bottom: 2rem;
}
.kontak-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--wa-green);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 0.625rem;
}
.kontak-cta-wa:hover {
  background: var(--wa-dark);
}
.kontak-cta-wa svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.kontak-response {
  font-size: 11.5px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.5rem;
}
.kontak-channels {
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--border-mid);
  border-radius: 12px;
  overflow: hidden;
}
.channel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.125rem;
  border-bottom: 0.5px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}
.channel-row:last-child {
  border-bottom: none;
}
.channel-row:hover {
  background: var(--cream-dark);
}
.channel-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.channel-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.channel-icon.ig {
  background: #fff0f0;
}
.channel-icon.shopee {
  background: #fff3f0;
}
.channel-icon.email {
  background: #fff3f0;
}

/* ── Channel icon SVG sizing ── */
.channel-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.channel-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--brown-deep);
  display: block;
  margin-bottom: 1px;
}
.channel-handle {
  font-size: 11px;
  color: var(--text-light);
}
.channel-arrow {
  color: var(--text-light);
  font-size: 14px;
}
.kontak-right {
  background: var(--cream-dark);
  border: 0.5px solid var(--border-mid);
  border-radius: 20px;
  padding: 2rem;
}
.kontak-note-title {
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  color: var(--brown-deep);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.kontak-note-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.kontak-note-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.875rem 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}
.kontak-note-list li:last-child {
  border-bottom: none;
}
.kontak-note-list li::before {
  content: "—";
  color: var(--brown-pale);
  font-family: "Libre Baskerville", serif;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  border-top: 0.5px solid var(--border-mid);
  background: var(--cream-dark);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-brand-name {
  font-family: "Libre Baskerville", serif;
  font-size: 15px;
  color: var(--brown-deep);
  letter-spacing: -0.01em;
}
.footer-tagline {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--brown-mid);
}
.footer-copy {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 300;
}

/* ════════════════════════════════════════
   + TESTIMONI (hidden — aktifkan saat ada ulasan)
════════════════════════════════════════ */
.section-testimoni {
  display: none;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.testi-card {
  background: var(--card-bg);
  border: 0.5px solid var(--border-mid);
  border-radius: 14px;
  padding: 1.375rem 1.25rem;
}
.testi-stars {
  color: var(--brown-pale);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 0.875rem;
}
.testi-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
  font-style: italic;
}
.testi-author {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}
.testi-footer-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
}

/* ════════════════════════════════════════
   + BREWING GUIDE (hidden — aktifkan saat siap)
════════════════════════════════════════ */
.section-brew {
  display: block;
}
.brew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.brew-card {
  border: 0.5px solid var(--border-mid);
  border-radius: 14px;
  padding: 1.375rem 1.25rem;
  background: var(--card-bg);
}
.brew-card-title {
  font-family: "Libre Baskerville", serif;
  font-size: 17px;
  color: var(--brown-deep);
  margin-bottom: 0.375rem;
}
.brew-for {
  font-size: 11px;
  color: var(--brown-light);
  margin-bottom: 0.875rem;
}
.brew-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1rem;
}
.brew-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-light);
  background: var(--cream);
  border: 0.5px solid var(--border-mid);
  border-radius: 99px;
  padding: 3px 10px;
}
.brew-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 13px;
  color: var(--text-muted);
}
.brew-cta a {
  color: var(--brown-light);
  text-decoration: none;
  font-weight: 500;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-gap: 4.5rem;
  }

  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .hero-headline {
    letter-spacing: -0.02em;
  }
  .hero-ring {
    display: none;
  }
  .hero-inner {
    padding: 3.5rem 1.5rem 3rem;
  }

  .tentang-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .tentang-visual {
    order: -1;
  }
  .tentang-photo {
    aspect-ratio: 16/9;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 380px;
  }
  .steps-row::before {
    display: none;
  }
  .step-card {
    padding: 0;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    border-bottom: 0.5px solid var(--border);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    gap: 1.25rem;
  }
  .step-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .step-num {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .kontak-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .testi-grid,
  .brew-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 1.25rem;
  }

  .popup {
    border-radius: 20px 20px 0 0;
  }
  .overlay {
    align-items: flex-end;
    padding: 0;
  }
}
