/* ===================================
   Madu Kelulut Natai — Redesigned CSS
   Mobile-first, storytelling, warm artisanal feel
   =================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ── Design Tokens ── */
:root {
  --honey:        #c8860a;
  --honey-light:  #e8a827;
  --honey-dark:   #9a6608;
  --honey-pale:   #fef3d0;
  --forest:       #1c3a14;
  --forest-mid:   #2d5a1e;
  --cream:        #fefcf6;
  --cream-warm:   #fdf6e3;
  --surface:      #ffffff;
  --text:         #1a1208;
  --text-mid:     #4a3a28;
  --text-muted: #746050;
  --border:       #e8dcc8;
  --shadow-sm:    0 1px 3px rgba(28,18,8,0.08);
  --shadow-md:    0 4px 16px rgba(28,18,8,0.10);
  --shadow-lg:    0 12px 40px rgba(28,18,8,0.14);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono:    'Space Mono', monospace;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container:    1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--honey); border-radius: 99px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; color: var(--forest); }
p { color: var(--text-mid); }

/* ── Text Alignment Utilities ── */
.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-justify { text-align: justify; }
.text-start  { text-align: start; }
.text-end    { text-align: end; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 2px;
}
.btn-honey {
  background: var(--honey);
  color: #fff;
  box-shadow: 0 4px 12px rgba(200,134,10,0.35);
}
.btn-honey:hover {
  background: var(--honey-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,134,10,0.45);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--honey);
  border: 2px solid var(--honey);
}
.btn-outline:hover {
  background: var(--honey);
  color: #fff;
  transform: translateY(-2px);
}
.btn-forest {
  background: var(--forest);
  color: #fff;
}
.btn-forest:hover {
  background: var(--forest-mid);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  gap: 0.6rem;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-forest {
  background: var(--forest);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
}
.btn-forest:hover {
  background: var(--forest-mid);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(28,58,20,0.3);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fefcf6;
  border-bottom: 1px solid #e8e2d6;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--honey);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1208;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: #c8860a; background: #fef3d0; }
.nav-link:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.hamburger:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 2px;
}
.nav-cta {
  background: var(--honey);
  color: #fff !important;
  border-radius: var(--radius-md);
  font-weight: 600;
}
.nav-cta:hover { background: var(--honey-dark) !important; color: #fff !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span {
  background: var(--forest);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(61,122,42,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(200,134,10,0.25) 0%, transparent 60%),
    linear-gradient(160deg, #0f2210 0%, #1c3a14 40%, #1e3a16 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle 2px at 20% 30%, #fff 0%, transparent 100%),
    radial-gradient(circle 1.5px at 80% 60%, #fff 0%, transparent 100%),
    radial-gradient(circle 2px at 50% 80%, #fff 0%, transparent 100%),
    radial-gradient(circle 1px at 70% 20%, #fff 0%, transparent 100%);
  background-size: 300px 300px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 4rem;
}
.hero-text { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,134,10,0.2);
  border: 1px solid rgba(200,134,10,0.4);
  color: var(--honey-light);
  padding: 0.375rem 0.875rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--honey-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--honey-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  position: relative;
  background: rgba(254,252,246,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}
.hero-card-honey {
  width: 200px;
  height: 280px;
  background: linear-gradient(160deg, var(--honey-light) 0%, var(--honey) 40%, #8a5a08 100%);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-xl) var(--radius-xl);
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(200,134,10,0.4);
}
.hero-card-honey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  border-radius: inherit;
}
.hero-card-honey::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(0deg, rgba(200,134,10,0.8) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.hero-card-label {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.25rem;
}
.hero-card-sublabel {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
}
.hero-float-badge {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.hero-float-badge.top-right {
  top: -12px;
  right: -12px;
  animation: float 4s ease-in-out infinite;
}
.hero-float-badge.bottom-left {
  bottom: 40px;
  left: -20px;
  animation: float 4s ease-in-out 1.5s infinite;
}
.hero-float-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--honey-pale);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-float-badge-icon svg { width: 18px; height: 18px; color: var(--honey); }
.hero-float-badge-text strong { display: block; font-size: 0.85rem; color: var(--text); }
.hero-float-badge-text span { font-size: 0.75rem; color: var(--text-muted); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ── SECTION SHARED ── */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--honey);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
  max-width: 600px;
}
.section-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── STORY / CERITA ── */
.story { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-image-frame svg { width: 80px; height: 80px; opacity: 0.3; }
.story-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(200,134,10,0.3) 0%, transparent 70%);
}
.story-year-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(254,252,246,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.story-year-badge strong { display: block; font-family: var(--font-serif); font-size: 1.5rem; color: var(--forest); }
.story-year-badge span { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.story-quote {
  background: var(--honey-pale);
  border-left: 4px solid var(--honey);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 2rem;
  margin: 1.75rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
}
.story-body p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.story-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.story-pillar:hover {
  border-color: var(--honey);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.story-pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--honey-pale);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
}
.story-pillar-icon svg { width: 22px; height: 22px; color: var(--honey); }
.story-pillar h4 { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700; color: var(--forest); margin-bottom: 0.25rem; }
.story-pillar p { font-size: 0.8rem; color: var(--text-muted); }

/* ── BEE / LEBAH ── */
.bee { background: var(--forest); color: #fff; position: relative; overflow: hidden; }
.bee-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200,134,10,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(61,122,42,0.4) 0%, transparent 70%);
}
.bee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bee .section-title { color: #fff; }
.bee .section-intro { color: rgba(255,255,255,0.7); }
.bee-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.bee-fact {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
}
.bee-fact:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.bee-fact-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,134,10,0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}
.bee-fact-icon svg { width: 20px; height: 20px; color: var(--honey-light); }
.bee-fact h4 { font-family: var(--font-sans); font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; }
.bee-fact p { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.bee-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.bee-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}
.bee-card:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.bee-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--honey-light), var(--honey));
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bee-card-icon svg { width: 26px; height: 26px; color: #fff; }
.bee-card h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; }
.bee-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── PROSES ── */
.proses { background: var(--cream-warm); }
.proses-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.proses-header .section-label { justify-content: center; }
.proses-header .section-label::before { display: none; }
.proses-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.proses-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--honey) 0%, var(--honey-light) 100%);
  z-index: 0;
}
.proses-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.proses-step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--honey);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(200,134,10,0.35);
  transition: var(--transition);
}
.proses-step:hover .proses-step-number {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(200,134,10,0.5);
}
.proses-step h4 { font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 700; color: var(--forest); margin-bottom: 0.5rem; }
.proses-step p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* ── PRODUK ── */
.produk { background: var(--cream); }
.produk-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.produk-header .section-label { justify-content: center; }
.produk-header .section-label::before { display: none; }
.produk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.produk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}
.produk-card:hover {
  border-color: var(--honey);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.produk-card-visual {
  height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produk-card-visual.murni {
  background: linear-gradient(160deg, #c8860a 0%, #8a5a08 100%);
}
.produk-card-visual.kombucha {
  background: linear-gradient(160deg, #3d7a2a 0%, #1c3a14 100%);
}
.produk-card-visual svg { width: 64px; height: 64px; opacity: 0.25; }
.produk-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28,18,8,0.3) 100%);
}
.produk-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(254,252,246,0.92);
  backdrop-filter: blur(8px);
  border-radius: 99px;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}
.produk-card-body { padding: 1.75rem; }
.produk-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.produk-card-kth {
  font-size: 0.8rem;
  color: var(--honey);
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.produk-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.produk-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.produk-card-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-mid);
}
.produk-card-spec svg { width: 14px; height: 14px; color: var(--honey); flex-shrink: 0; }
.produk-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.produk-card-price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--forest); }
.produk-card-price span { font-size: 0.8rem; font-weight: 400; font-family: var(--font-sans); color: var(--text-muted); }
.produk-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.produk-tag {
  background: var(--honey-pale);
  color: var(--honey-dark);
  padding: 0.25rem 0.625rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── CTA / PESAN ── */
.pesan { background: var(--forest); color: #fff; position: relative; overflow: hidden; }
.pesan-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(200,134,10,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(61,122,42,0.5) 0%, transparent 70%);
}
.pesan-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pesan .section-label { color: var(--honey-light); }
.pesan .section-label::before { background: var(--honey-light); }
.pesan .section-title { color: #fff; }
.pesan .section-intro { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.pesan-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.pesan-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: var(--transition);
}
.pesan-step:hover { background: rgba(255,255,255,0.12); }
.pesan-step-num {
  width: 28px;
  height: 28px;
  background: var(--honey);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pesan-step p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.pesan-contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
}
.pesan-contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.pesan-contact-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.75rem; }
.pesan-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--honey-light);
  margin-bottom: 0.25rem;
}
.pesan-role { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.pesan-nomor {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
}
.pesan-buttons { display: flex; flex-direction: column; gap: 0.75rem; }

/* ── FOOTER ── */
.footer {
  background: #0f1f0c;
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; }
.footer-title { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--honey-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--honey-light); }

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wa-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.wa-float:hover {
  background: #20bd5a;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}
.wa-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.wa-float-label {
  display: none;
}
@media (min-width: 480px) {
  .wa-float-label {
    display: inline;
  }
  .wa-float {
    padding: 0.875rem 1.5rem;
  }
}

/* ── KTH SINGLE PAGE ── */
.kth-hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: #fff;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.kth-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle 2px at 30% 40%, #fff 0%, transparent 100%);
  background-size: 200px 200px;
}
.kth-hero-inner { position: relative; z-index: 1; }
.kth-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; margin-bottom: 0.75rem; }
.kth-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; }
.kth-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.75rem; }
.kth-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.kth-meta-item svg { width: 16px; height: 16px; color: var(--honey-light); }
.kth-body { padding: 4rem 0; }
.kth-content h2 { font-family: var(--font-serif); font-size: 1.75rem; color: var(--forest); margin: 2.5rem 0 1rem; }
.kth-content h2:first-child { margin-top: 0; }
.kth-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.kth-content ul { margin-bottom: 1rem; padding-left: 1.25rem; }
.kth-content ul li { color: var(--text-mid); margin-bottom: 0.5rem; list-style: disc; }

/* ── PAGE HEADER ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-mid);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-transform: capitalize;
}
.filter-tab:hover {
  border-color: var(--honey);
  color: var(--honey-dark);
}
.filter-tab.active {
  background: var(--honey);
  border-color: var(--honey);
  color: #fff;
}

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── GENERIC CARD (used by _default/list.html for category pages) ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--honey);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card a { text-decoration: none; color: inherit; display: block; }
.card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-content { padding: 1.25rem 1.5rem 1.5rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--honey);
  transition: var(--transition);
}
.card-link:hover { color: var(--honey-dark); gap: 0.5rem; }
.card-link svg { width: 16px; height: 16px; }
.content-wrapper {
  max-width: 720px;
  margin: 2rem auto;
}
.content-wrapper h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--forest);
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.content-wrapper h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-wrapper p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.content-wrapper ul, .content-wrapper ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.content-wrapper li { color: var(--text-mid); margin-bottom: 0.5rem; list-style: disc; }
.content-wrapper ol li { list-style: decimal; }

/* ── KTH CARD ── */
.card-kth {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card-kth:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--honey-pale);
}
.card-kth a { text-decoration: none; color: inherit; display: block; }
.card-logo {
  height: 160px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-logo img { width: 100%; height: 100%; object-fit: cover; }
.card-logo-placeholder {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
}
.card-content { padding: 1.5rem; }
.card-kategori-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--honey-dark);
  background: var(--honey-pale);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 0.75rem;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 3px;
}
.card-excerpt {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-commodities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.commodity-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--forest-mid);
  background: rgba(28,58,20,0.08);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}
.card-meta {
  display: flex;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.meta-item {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── ABOUT CONTENT ── */
.about-content {
  max-width: 720px;
  margin: 0 auto;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--forest);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.about-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-content ul, .about-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.about-content li {
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  list-style: disc;
}
.about-content ol li { list-style: decimal; }
.about-content strong { color: var(--text); font-weight: 600; }
.about-content em { font-style: italic; color: var(--honey-dark); }
.about-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.about-content blockquote {
  border-left: 4px solid var(--honey);
  padding: 1rem 1.5rem;
  background: var(--honey-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--forest);
}

/* ── PAGE HERO (list & single pages) ── */
.page-hero,
.list-hero {
  padding: 8rem 0 3.5rem;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.page-hero::before,
.list-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% at 70% 40%, rgba(200,134,10,0.2), transparent 70%);
}
.page-hero > .container,
.list-hero > .container {
  position: relative;
  z-index: 1;
}
.page-hero h1,
.list-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.page-hero p,
.list-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 520px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 6rem 0 3rem; }
  .hero-visual { display: none !important; }
  .hero-card-honey { display: none; }
  .hero-title { font-size: 2.75rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bee-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bee-visual { order: -1; }
  .proses-steps { grid-template-columns: repeat(2, 1fr); }
  .proses-steps::before { display: none; }
  .produk-grid { grid-template-columns: 1fr; }
  .pesan-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero, .list-hero { padding: 7rem 0 3rem; }
  .page-hero h1, .list-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
}

@media (max-width: 768px) {
  /* ── BASE MOBILE ── */
  html { font-size: 15px; }
  body { overflow-x: hidden; }

  /* ── NAVBAR ── */
  .nav-menu {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    width: 100%;
    background: #fefcf6;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid #e8e2d6;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 0.875rem 1rem; font-size: 1rem; }
  .hamburger { display: flex; }

  /* ── BEE SECTION ICONS MOBILE ── */
  .bee-card-icon { width: 40px; height: 40px; }
  .bee-card-icon svg { width: 20px; height: 20px; }
  .bee-fact-icon { width: 32px; height: 32px; }
  .bee-fact-icon svg { width: 16px; height: 16px; }

  /* ── PAGE HERO MOBILE ── */
  .page-hero, .list-hero { padding: 6rem 0 2.5rem; }
  .page-hero h1, .list-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-hero p, .list-hero p { font-size: 0.9rem; }

  /* ── HOMEPAGE HERO MOBILE ── */
  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero-content { padding: 7rem 0 2.5rem; background: transparent; }
  .hero-title { font-size: clamp(1.75rem, 7vw, 3rem); }
  .hero-subtitle { font-size: 0.9rem; -webkit-line-clamp: 3; }

  /* ── HERO HOMEPAGE ── */
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* ── SECTIONS ── */
  .section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  h2 { font-size: clamp(1.25rem, 4vw, 1.75rem); }

  /* ── STORY / PILLARS ── */
  .story-pillars { grid-template-columns: 1fr; gap: 0.75rem; }
  .bee-facts { grid-template-columns: 1fr; }
  .proses-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ── HOMEPAGE PRODUCTS (unggulan) ── */
  .produk-grid { grid-template-columns: 1fr; }
  .produk-card-visual { height: 180px; }
  .buy-links { flex-direction: column; gap: 0.5rem; }
  .buy-links .btn { width: 100%; justify-content: center; font-size: 0.8rem; }

  /* ── JEJARING KTH (homepage) ── */
  .card-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .card-kth { flex-direction: column; padding: 1.25rem; }
  .card-kth .card-logo { width: 100%; height: 140px; margin-bottom: 1rem; }
  .card-kth .card-logo img { width: 100%; height: 100%; object-fit: cover; }
  .card-kategori-badge { font-size: 0.7rem; padding: 0.2rem 0.5rem; }
  .card-kth h3 { font-size: 1rem; }
  .card-meta { font-size: 0.75rem; flex-wrap: wrap; gap: 0.25rem; }
  .card-excerpt { font-size: 0.8rem; -webkit-line-clamp: 2; }

  /* ── PRODUK LIST (semua halaman produk) ── */
  .produk-grid { grid-template-columns: 1fr; }
  .produk-card { margin-bottom: 0; }
  .produk-card-body { padding: 1.25rem; }
  .produk-card-title { font-size: 1.125rem; }
  .produk-card-tags { gap: 0.375rem; flex-wrap: wrap; }
  .produk-card-tags .produk-tag { font-size: 0.7rem; padding: 0.25rem 0.5rem; }
  .produk-card-footer { flex-direction: column; gap: 0.5rem; }
  .produk-card-footer .btn { width: 100%; justify-content: center; font-size: 0.8rem; }
  .produk-card-price { font-size: 1.25rem; }

  /* ── KTH LIST ── */
  .kth-filter-bar { flex-wrap: wrap; gap: 0.5rem; }
  .kth-filter-btn { font-size: 0.8rem; padding: 0.5rem 0.875rem; }
  .kth-grid-home { grid-template-columns: 1fr !important; gap: 1rem; }
  .kth-card-home {
    flex-direction: column;
    padding: 1.25rem;
  }
  .kth-card-home-visual { display: none; }
  .kth-badge { font-size: 0.7rem; padding: 0.2rem 0.5rem; }
  .kth-card-home h3 { font-size: 1rem; }
  .kth-meta { font-size: 0.75rem; flex-wrap: wrap; gap: 0.25rem; }

  /* ── KTH SINGLE ── */
  .kth-layout { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem 0; }
  .kth-sidebar { order: -1; }
  .kth-hero { padding: 6rem 0 2.5rem; }
  .kth-hero h1 { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  .kth-stat-row { flex-wrap: wrap; }
  .kth-commodities { flex-wrap: wrap; }
  .commodity-tag { font-size: 0.75rem; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .product-hero-price-card { position: static; max-width: 100%; }
  .product-buy-links { flex-direction: column; gap: 0.5rem; }
  .product-buy-links .btn { width: 100%; justify-content: center; font-size: 0.875rem; }
  .product-sidebar { order: -1; }

  /* ── ABOUT ── */
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { position: static; flex-direction: column; }
  .about-stat-card { flex: 1; min-width: 140px; }
  .about-hero { padding: 6rem 0 3rem; }
  .about-hero-title { font-size: clamp(1.5rem, 5vw, 2.5rem); }

  /* ── CONTACT ── */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-hero { padding: 6rem 0 3rem; }
  .contact-hero-title { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  .contact-whatsapp-card { padding: 1.5rem; }
  .contact-whatsapp-card .contact-whatsapp-icon { width: 48px; height: 48px; }
  .contact-whatsapp-card h2 { font-size: 1.25rem; }
  .contact-whatsapp-card .btn-whatsapp { font-size: 0.875rem; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-card { padding: 1rem 1.25rem; }
  .contact-faq-grid { grid-template-columns: 1fr; }
  .faq-question { padding: 1.125rem 1.25rem; }
  .faq-question h4 { font-size: 0.9rem; }
  .faq-answer-inner { padding: 0 1.25rem 1.25rem; }

  /* ── COMMODITIES GRID ── */
  .commodities-grid { flex-direction: column; gap: 0.625rem; }
  .commodity-card { min-width: auto; flex: auto; }
  .commodity-card .commodity-icon { width: 36px; height: 36px; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* ── SCROLL ANIMATIONS ── */
  .animate-on-scroll { transition-duration: 0.4s; }

  /* ── TABLE ── */
  table { font-size: 0.85rem; }
  table th, table td { padding: 0.625rem 0.75rem; }
}

@media (max-width: 480px) {
  /* ── COMPACT MOBILE ── */
  html { font-size: 14px; }
  .container { padding-left: 1rem; padding-right: 1rem; }

  /* ── HERO ── */
  .page-hero, .list-hero { padding: 5.5rem 0 2rem; }
  .hero-actions .btn { font-size: 0.875rem; padding: 0.75rem 1rem; }

  /* ── SECTIONS ── */
  .section { padding: 2rem 0; }

  /* ── PRODUK CARD ── */
  .produk-card-body { padding: 1rem; }
  .produk-card-title { font-size: 1rem; }
  .produk-card-desc { font-size: 0.8rem; -webkit-line-clamp: 2; }
  .produk-card-tags .produk-tag { font-size: 0.65rem; }
  .produk-card-price { font-size: 1.125rem; }
  .produk-card-specs { grid-template-columns: 1fr; }

  /* ── PROSES STEPS ── */
  .proses-steps { grid-template-columns: 1fr; }

  /* ── KTH CARD ── */
  .kth-card-home { padding: 1rem; }
  .kth-card-home h3 { font-size: 0.9375rem; }

  /* ── PRODUCT HERO ── */
  .product-hero { padding: 5.5rem 0 2rem; }
  .product-hero-title { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  .product-hero-inner { grid-template-columns: 1fr; }
  .product-hero-price-card { max-width: 100%; }
  .product-specs-grid { grid-template-columns: 1fr 1fr; }
  .product-buy-links { flex-direction: column; gap: 0.5rem; }
  .product-buy-links .btn { width: 100%; font-size: 0.8rem; padding: 0.75rem 1rem; }
  .product-story-inner { grid-template-columns: 1fr; }

  /* ── CONTACT ── */
  .contact-whatsapp-card { padding: 1.25rem; }
  .contact-whatsapp-card > div:first-child { display: none; }

  /* ── FOOTER ── */
  .footer-brand p { font-size: 0.8rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadeup {
  animation: fadeUp 0.6s ease-out forwards;
}
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ── SCROLL REVEAL ANIMATIONS ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.08s; }
.animate-on-scroll.delay-2 { transition-delay: 0.16s; }
.animate-on-scroll.delay-3 { transition-delay: 0.24s; }
.animate-on-scroll.delay-4 { transition-delay: 0.32s; }
.animate-on-scroll.delay-5 { transition-delay: 0.40s; }

/* Slide from left */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-slide-left.visible { opacity: 1; transform: translateX(0); }

/* Scale up entrance */
.animate-scale-up {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-scale-up.visible { opacity: 1; transform: scale(1); }

/* Float slow (for WhatsApp icon) */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-6px) rotate(2deg); }
  66% { transform: translateY(-3px) rotate(-1deg); }
}
.animate-float-slow { animation: floatSlow 3.5s ease-in-out infinite; }

/* Pulse soft (for CTA buttons) */
@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 134, 10, 0); }
  50% { box-shadow: 0 0 0 8px rgba(200, 134, 10, 0.12); }
}
.animate-pulse-subtle { animation: pulseSoft 2.5s ease-in-out infinite; }

/* Glow pulse for WhatsApp */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}
.animate-glow { animation: glowPulse 2s ease-in-out infinite; }

/* Bounce subtle */
@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.animate-bounce-subtle { animation: bounceSubtle 1.8s ease-in-out infinite; }

/* Spin slow */
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin-slow { animation: spinSlow 8s linear infinite; }

/* ── CARD HOVER EFFECTS ── */
.card-hover {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Stat card hover */
.about-stat-card.card-hover:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(200,134,10,0.15);
  border-color: var(--honey);
}

/* Contact info card hover enhancement */
.contact-info-card.card-hover:hover {
  transform: translateY(-3px);
  border-color: var(--honey-pale);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* FAQ item hover */
.contact-faq-item.card-hover:hover {
  transform: translateY(-2px);
  border-color: var(--honey-pale);
}

/* WhatsApp card hover glow */
.contact-whatsapp-card.card-hover:hover {
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.25);
  transform: translateY(-2px);
}

/* ── BUTTON ANIMATIONS ── */
.btn-animate {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-animate:hover {
  transform: translateY(-2px);
}
.btn-animate:active {
  transform: translateY(0px) scale(0.98);
}

/* ── SKELETON LOADING ── */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--border) 50%, var(--surface) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ── CURSOR POINTER ON CLICKABLE ── */
[a class*="btn"], button { cursor: pointer; }

/* ── SMOOTH ENTRANCE FOR HERO ── */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-animate { animation: heroEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

/* ── LINK UNDERLINE ANIMATION ── */
.link-underline {
  position: relative;
  text-decoration: none;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--honey);
  transition: width 0.3s ease;
}
.link-underline:hover::after { width: 100%; }

/* ── DECORATIVE DOT GRID ANIMATION ── */
@keyframes dotGridPulse {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.1; }
}
.dot-grid-animated { animation: dotGridPulse 4s ease-in-out infinite; }

/* ── NUMBER COUNTER ANIMATION ── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.stat-number-animated { animation: countUp 0.5s ease-out forwards; }

/* ── SIDEBAR STICKY SHADOW ON SCROLL ── */
.about-sidebar {
  transition: box-shadow 0.3s ease;
}
.about-sidebar.sticky-shadow {
  box-shadow: -4px 0 24px rgba(0,0,0,0.06);
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-2 { margin-top: 2rem; }

/* ── PRODUCT SINGLE PAGE ── */

/* Hero */
.product-hero {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    color: #fff;
    padding: 7rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.product-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(200,134,10,0.2) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(61,122,42,0.4) 0%, transparent 70%);
}
.product-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 3rem;
    align-items: start;
}
.product-hero-badge {
    display: inline-block;
    background: rgba(200,134,10,0.25);
    border: 1px solid rgba(200,134,10,0.45);
    color: var(--honey-light);
    padding: 0.3rem 0.875rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.product-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.product-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 1.5rem;
}
.product-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}
.product-hero-meta span {
    display: flex;
    align-items: center;
}

/* Price Card */
.product-hero-price-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    position: sticky;
    top: 88px;
}
.product-price-display {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.product-price-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.375rem;
}
.product-price-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--honey-light);
    line-height: 1;
}
.product-price-unit {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.25rem;
}

/* Buy Links */
.product-buy-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1rem;
}
.product-buy-links .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
    min-width: 120px;
}
.btn-shopee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    background: #ee4d2d;
    color: #fff;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-shopee:hover {
    background: #f45c3e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(238,77,45,0.4);
}
.btn-tokopedia {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    background: #03ac0e;
    color: #fff;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-tokopedia:hover {
    background: #00b309;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(3,172,14,0.4);
}
.product-price-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    line-height: 1.5;
}

/* Specs Strip */
.product-specs-strip {
    background: var(--cream-warm);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}
.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}
.product-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.product-spec-name {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.product-spec-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest);
}

/* Product Story */
.product-story { background: var(--cream); }
.product-story-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}
.product-story-content {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-mid);
}
.product-story-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--forest);
    margin: 2.5rem 0 1rem;
}
.product-story-content h2:first-child { margin-top: 0; }
.product-story-content p { margin-bottom: 1rem; }
.product-story-content blockquote {
    background: var(--honey-pale);
    border-left: 4px solid var(--honey);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--forest);
    margin: 1.5rem 0;
    line-height: 1.6;
}
.product-story-content ul, .product-story-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}
.product-story-content li { margin-bottom: 0.5rem; list-style: disc; }
.product-story-content strong { color: var(--text); font-weight: 700; }

/* Sidebar */
.product-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.sidebar-card-dark {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    border: none;
}
.sidebar-card-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.sidebar-kth {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.sidebar-kth-icon {
    width: 44px;
    height: 44px;
    background: var(--honey-pale);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.sidebar-kth-icon svg { width: 20px; height: 20px; color: var(--honey); }
.sidebar-kth strong { display: block; font-size: 0.9375rem; color: var(--text); margin-bottom: 0.125rem; }
.sidebar-kth span { font-size: 0.8rem; color: var(--text-muted); }
.sidebar-contact-name { font-size: 1rem; font-weight: 700; color: var(--honey-light); margin-bottom: 0.25rem; }
.sidebar-contact-role { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0; }
.sidebar-related { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-related-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
}
.sidebar-related-item:hover { background: var(--honey-pale); }
.sidebar-related-item div { flex: 1; }
.sidebar-related-item strong { display: block; font-size: 0.875rem; color: var(--text); margin-bottom: 0.125rem; }
.sidebar-related-item span { font-size: 0.75rem; color: var(--text-muted); }
.sidebar-related-item svg { color: var(--text-muted); flex-shrink: 0; }

/* ── PRODUCT LIST PAGE ── */
.produk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}
.produk-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.produk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(28, 58, 20, 0.1);
}
.produk-card-visual {
    height: 180px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}
.produk-card-visual svg { width: 72px; height: 72px; }
.produk-card-visual.murni { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 60%, var(--honey-dark) 100%); }
.produk-card-visual.kombucha { background: linear-gradient(135deg, #1c3a14 0%, #2d5a27 50%, #3a7d3c 100%); }
.produk-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(200,134,10,0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.625rem;
    border-radius: 99px;
}
.produk-card-body { padding: 1.5rem; }
.produk-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.produk-card-kth {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--honey);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.produk-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.produk-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}
.produk-tag {
    background: var(--honey-pale);
    color: var(--honey-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
}
.produk-card-spec {
  display: flex;
  align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.produk-card-spec svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--forest); }
.produk-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.produk-card-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest);
}
.produk-card-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

/* ── KTH COMMODITIES STRIP ── */
.kth-commodities {
    background: var(--cream-warm);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}
.commodities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.commodity-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex: 1;
    min-width: 200px;
}
.commodity-icon {
    width: 44px;
    height: 44px;
    background: var(--honey-pale);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.commodity-icon svg { width: 20px; height: 20px; color: var(--honey); }
.commodity-info strong { display: block; font-size: 0.9375rem; color: var(--text); margin-bottom: 0.125rem; }
.commodity-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ── KTH LAYOUT ── */
.kth-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    padding: 2.5rem 0;
}
.kth-content {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-mid);
}
.kth-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--forest);
    margin: 2.5rem 0 1rem;
}
.kth-content h2:first-child { margin-top: 0; }
.kth-content p { margin-bottom: 1rem; }
.kth-content ul, .kth-content ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.kth-content li { margin-bottom: 0.5rem; list-style: disc; }
.kth-content strong { color: var(--text); font-weight: 700; }
.kth-content blockquote {
    background: var(--honey-pale);
    border-left: 4px solid var(--honey);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.5rem;
    font-style: italic;
    color: var(--forest);
    margin: 1.5rem 0;
}

/* Info List */
.info-list { display: flex; flex-direction: column; gap: 0.75rem; }
.info-item { display: flex; flex-direction: column; gap: 0.2rem; }
.info-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.info-value { font-size: 0.875rem; font-weight: 600; color: var(--text); }

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 8rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle 2px at 25% 35%, #fff 0%, transparent 100%);
  background-size: 180px 180px;
}
.about-hero-inner { position: relative; z-index: 1; max-width: 600px; }
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--honey-light);
  margin-bottom: 1rem;
}
.about-hero-badge svg { width: 16px; height: 16px; color: var(--honey-light); }
.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.about-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
}

.about-body { padding: 4rem 0 5rem; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-stat-card {
  background: var(--honey-pale);
  border: 1px solid rgba(200,134,10,0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-stat-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(200,134,10,0.18);
  border-color: var(--honey);
}
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.about-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honey-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

.about-contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.about-contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.about-contact-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-content {
  max-width: 680px;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--forest);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.about-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--forest-mid);
  margin: 1.5rem 0 0.75rem;
}
.about-content p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-content ul, .about-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.about-content li {
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  list-style: disc;
  line-height: 1.7;
}
.about-content ol li { list-style: decimal; }
.about-content strong { color: var(--text); font-weight: 700; }
.about-content em { font-style: italic; color: var(--honey-dark); }
.about-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.about-content blockquote {
  border-left: 4px solid var(--honey);
  padding: 1rem 1.5rem;
  background: var(--honey-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--forest);
  line-height: 1.7;
}

/* ── CONTACT PAGE ── */
.contact-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 8rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle 2px at 70% 60%, #fff 0%, transparent 100%);
  background-size: 180px 180px;
}
.contact-hero-inner { position: relative; z-index: 1; max-width: 600px; }
.contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.contact-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.contact-whatsapp-card {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.contact-whatsapp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.contact-whatsapp-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.contact-whatsapp-icon svg { width: 36px; height: 36px; }
.contact-whatsapp-body { flex: 1; }
.contact-whatsapp-body h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.contact-whatsapp-body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.contact-whatsapp-name {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.25rem;
}
.contact-whatsapp-number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--honey-light);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: start;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--honey-pale);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--honey-pale);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--honey-dark); }
.contact-info-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact-info-card p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-info-card a { color: var(--honey-dark); text-decoration: none; font-weight: 600; }
.contact-info-card a:hover { color: var(--honey); text-decoration: underline; }

.contact-faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact-faq-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--forest);
}
.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
/* ── FAQ ACCORDION ── */
.faq-item-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item-wrapper:hover,
.faq-item-wrapper.open {
  border-color: var(--honey-pale);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  user-select: none;
}
.faq-question h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--forest);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--honey);
  transition: transform 0.25s ease;
}
.faq-item-wrapper.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item-wrapper.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
}
.faq-answer-inner p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.faq-answer-inner a {
  color: var(--honey);
  text-decoration: underline;
}
