

/* ==========================================
   DESIGN TOKENS & CUSTOM PROPERTIES
   ========================================== */
:root {
  /* Colors */
  --color-green-900: #2A331F;
  --color-green-800: #3D4A2F;
  --color-green-400: #8A9560;
  --color-green-200: #C4CBA8;
  --color-cream-500: #F5F2E8;
  --color-cream-300: #FAF8F2;
  --color-neutral-900: #2B2B26;
  --color-neutral-600: #5C5C54;
  --color-neutral-400: #8C8C82;
  --color-neutral-100: #FFFFFF;
  --color-terracotta-600: #A66B3F;
  --color-terracotta-400: #B5895A;

  /* Typography */
  --font-boska: 'Boska', ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-satoshi: 'Satoshi', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Font Weight */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;

  /* Type Scale */
  --text-logo: 32px;
  --text-nav: 16px;
  --text-headline: 48px;
  --text-body: 20px;
  --text-button: 16px;

  /* Line Heights */
  --leading-headline: 1.14;
  --leading-body: 1.42;

  /* Spacing */
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-24: 24px;
  --spacing-34: 34px;
  --spacing-64: 64px;

  /* Layout */
  --page-max-width: 1512px;

  /* Border Radius */
  --radius-full: 9999px;
}

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100vh;
  font-family: var(--font-satoshi);
  background-color: var(--color-green-900);
  color: var(--color-cream-500);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* ==========================================
   HERO WRAPPER & BACKGROUND
   ========================================== */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  /* No z-index set — keeps wrapper in normal flow, never above fixed navbar */
}

.hero-bg-wrap {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes wipe-out-left {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

@keyframes wipe-out-right {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

.hero-overlay-left, .hero-overlay-right {
  position: absolute;
  top: 0; width: 50%; height: 100%;
  background-color: var(--color-green-900);
  z-index: 1;
}

.hero-overlay-left {
  left: 0;
  transform-origin: left;
  animation: wipe-out-left 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
}

.hero-overlay-right {
  right: 0;
  transform-origin: right;
  animation: wipe-out-right 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
}

/* ==========================================
   HEADER & NAVIGATION BAR
   ========================================== */

/* Default: full-width transparent wrapper */
.main-header {
  width: 100%;
  padding: var(--spacing-34) var(--spacing-34);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  display: flex;
  justify-content: center;
  transition: padding 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Default nav-bar: horizontal row, logo left, links right, transparent */
.nav-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  pointer-events: auto;
  isolation: isolate;
  transition:
    background-color 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-radius 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    padding 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    gap 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Scrolled state: floating centered pill */
.main-header.scrolled {
  padding: 16px var(--spacing-34);
}

.main-header.scrolled .nav-bar {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: auto;
  background-color: var(--color-green-800);
  border-radius: 9999px;
  padding: 10px 20px 10px 24px;
}

/* Logo — default state */
.logo {
  font-family: var(--font-boska);
  font-size: var(--text-logo);
  font-weight: 500;
  color: var(--color-cream-500);
  text-decoration: none;
  transition: opacity 0.25s ease, font-size 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: auto;
}

/* Logo — scrolled: shrinks to nav-link size */
.main-header.scrolled .logo {
  font-size: var(--text-nav); /* 16px */
}

.logo:hover,
.logo:focus-visible {
  opacity: 0.85;
  outline: none;
}

.nav-links {
  display: flex;
  gap: var(--spacing-16);
  align-items: center;
}

.nav-link {
  font-family: var(--font-satoshi);
  font-size: var(--text-nav); /* 16px */
  font-weight: 400;
  color: var(--color-cream-500);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: background-color 0.25s ease, color 0.25s ease;
  position: relative;
  pointer-events: auto;
}

.nav-link:hover,
.nav-link:focus-visible {
  background-color: rgba(245, 242, 232, 0.15);
  outline: none;
}

/* ==========================================
   HERO CONTENT
   ========================================== */
.hero-section {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--spacing-24) 60px var(--spacing-24); /* Added top padding to prevent nav overlap on small screens */
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 927px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Delay hero content until wipe completes (1.4s) */
.hero-container[data-reveal] {
  transition-delay: 1.4s;
}

.hero-actions[data-reveal] {
  transition-delay: 1.6s;
}

.hero-headline {
  font-family: var(--font-boska);
  font-size: var(--text-headline); /* 48px */
  font-weight: 400; /* Boska Regular */
  line-height: var(--leading-headline); /* 1.14 */
  color: var(--color-cream-500);
  margin-bottom: var(--spacing-16); /* 16px gap below */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subhead {
  font-family: var(--font-satoshi);
  font-size: var(--text-body); /* 20px */
  font-weight: var(--weight-regular); /* Satoshi Medium */
  line-height: var(--leading-body); /* 1.42 */
  color: var(--color-cream-500); /* Keep Cream 500, no absolute white */
  margin-bottom: var(--spacing-24); /* 24px gap below */
  max-width: 780px; /* Optimal reading line length */
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-24); /* 24px gap between buttons */
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  font-family: var(--font-satoshi);
  font-size: var(--text-button); /* 16px */
  font-weight: 400; /* Satoshi Regular */
  padding: var(--spacing-12) var(--spacing-24); /* 12px vertical, 24px horizontal */
  border-radius: var(--radius-full); /* 9999px */
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background-color: var(--color-cream-500);
  color: var(--color-green-800);
  border: 1.5px solid var(--color-cream-500);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-cream-300);
  border-color: var(--color-cream-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 51, 31, 0.3);
  outline: none;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(42, 51, 31, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-cream-500);
  border: 1.5px solid var(--color-cream-500);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--color-cream-500);
  color: var(--color-green-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 51, 31, 0.2);
  outline: none;
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(42, 51, 31, 0.2);
}

/* ==========================================
   MANIFESTO SECTION
   ========================================== */
.manifesto {
  background-color: var(--color-cream-500);
  padding: 48px 34px;
}

.manifesto-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.manifesto-eyebrow {
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-neutral-900);
  display: block;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--color-green-800);
}

.manifesto-heading {
  font-family: var(--font-boska);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--color-neutral-900);
  margin-bottom: 48px;
  max-width: 1100px;
}

.manifesto-heading em {
  font-style: italic;
}

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-bottom 0.4s ease;
}

.manifesto-body.is-expanded {
  max-height: 1200px;
  opacity: 1;
  margin-bottom: 24px;
}

.manifesto-col {
  max-width: 388px;
}

.manifesto-col p {
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--color-neutral-900);
}

.manifesto-col p + p {
  margin-top: 16px;
}

/* Toggle button — visible by default */
.manifesto-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--color-green-800);
  border-radius: 9999px;
  padding: 10px 20px;
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-green-800);
  cursor: pointer;
  margin-bottom: 32px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.manifesto-toggle:hover {
  background-color: var(--color-green-800);
  color: var(--color-cream-500);
}

.manifesto-toggle-icon {
  transition: transform 0.3s ease;
}

.manifesto-toggle[aria-expanded="true"] .manifesto-toggle-icon {
  transform: rotate(180deg);
}

.manifesto-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-64);
  align-items: end;
}

.manifesto-image-wrap {
  overflow: hidden;
  border-radius: 0px;
}

.manifesto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px;
}

/* ==========================================
   SATU RASA SECTION
   ========================================== */
.satu-rasa {
  position: relative;
  width: 100%;
  max-width: var(--page-max-width);
  height: 1200px;
  margin: 0 auto;
}

.satu-rasa .reveal-wipe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.satu-rasa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0px;
}

.satu-rasa-scroll-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 64px 64px 64px 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.satu-rasa-text {
  position: sticky;
  top: 64px;
  align-self: flex-start;
  pointer-events: auto;
  font-family: var(--font-boska);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--color-cream-500);
  text-align: right;
  max-width: 500px;
}

.fw-medium {
  font-weight: 500;
}

/* ==========================================
   VALUE SECTION
   ========================================== */
.value-section {
  background-color: var(--color-cream-500);
  padding: 48px 34px;
}

.value-inner {
  max-width: var(--page-max-width);
  height: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-eyebrow {
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-neutral-900);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.value-heading {
  font-family: var(--font-boska);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-neutral-900);
  margin-bottom: 48px;
}

.value-heading em {
  font-style: italic;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-card {
  background-color: var(--color-green-200);
  color: var(--color-green-800);
  padding: 34px;
  border: 1px solid var(--color-green-200);
  border-radius: 0px; /* or var(--radius-xl) if using rounded */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 240px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.value-card:hover {
  background-color: var(--color-green-800);
  color: var(--color-cream-500);
}

.value-title {
  font-family: var(--font-satoshi);
  font-size: 20px;
  font-weight: 500;
}

.value-footer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-number {
  font-family: var(--font-satoshi);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.value-desc {
  font-family: var(--font-satoshi);
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 240px;
}

.value-card:hover .value-desc,
.value-card.is-active .value-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   SHIPPING SECTION
   ========================================== */
.shipping-section {
  background-color: var(--color-cream-500);
  width: 100%;
}

.shipping-inner {
  width: 100%;
  height: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.shipping-img-wrap {
  width: 100%;
  height: 100%;
}

.shipping-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shipping-content {
  padding: 64px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.shipping-heading {
  font-family: var(--font-boska);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-neutral-900);
}

.shipping-heading em {
  font-style: italic;
}

/* ==========================================
   INGREDIENTS SECTION (SCATTER GALLERY)
   ========================================== */
/* Full-width cream wrapper with vertical rhythm */
.ingredients-section {
  width: 100%;
  background-color: var(--color-cream-500);
  padding: 48px 0;
  position: relative;
}

/* Inner bounded container: 1512 × 1720px */
.ingredients-inner {
  position: relative;
  width: 100%;
  max-width: var(--page-max-width);
  height: 1720px;
  margin: 0 auto;
  overflow: hidden;
}

/* Progressive blur overlays — scoped inside ingredients-inner, no z-index needed */
.ingredients-section::before,
.ingredients-section::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 2;
}

.ingredients-section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-cream-500) 0%, transparent 100%);
}

.ingredients-section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-cream-500) 0%, transparent 100%);
}

.ingredients-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.ingredients-heading {
  font-family: var(--font-boska);
  font-size: 48px;
  font-weight: 400;
  color: var(--color-neutral-900);
}

.parallax-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  /* will-change removed: it creates a GPU stacking context that could interfere with fixed navbar */
}

.scatter-layer {
  position: relative;
  width: 100%;
  height: 1720px; /* Must match .ingredients-inner height */
}

.sc-img {
  position: absolute;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Hardcoded random scatter positions based on the 1238x1318 reference layout */
.img-1 { top: 5%; left: 30%; width: 120px; height: 160px; }
.img-2 { top: 20%; left: 10%; width: 160px; height: 120px; }
.img-3 { top: 10%; right: 15%; width: 200px; height: 260px; }
.img-4 { top: 25%; left: 45%; width: 140px; height: 180px; }
.img-5 { top: 45%; right: 10%; width: 180px; height: 135px; }
.img-6 { top: 40%; left: 5%; width: 180px; height: 240px; }
.img-7 { top: 60%; right: 25%; width: 100px; height: 130px; }
.img-8 { top: 70%; left: 35%; width: 180px; height: 240px; }
.img-9 { bottom: 15%; left: 25%; width: 140px; height: 180px; }
.img-10 { bottom: 20%; right: 15%; width: 240px; height: 180px; }
.img-11 { top: 42%; right: 5%; width: 120px; height: 160px; }


.testimoni-feature {
  background-color: var(--color-cream-500);
  padding: 64px 34px;
}

.testimoni-feature-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.testimoni-feature-heading {
  font-family: var(--font-boska);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-neutral-900);
  margin-bottom: 32px;
}

/* The main card: 2-col grid + footer bar */
.testimoni-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 520px auto;
  border: 1px solid var(--color-green-200);
  border-radius: 0;
  overflow: hidden;
}

/* Left column — photo (crossfade) */
.testimoni-feature-image {
  grid-column: 1;
  grid-row: 1;
  height: 520px;
  overflow: hidden;
  position: relative;
}

.tfi-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.tfi-slide-active {
  opacity: 1;
}

/* Right column — scrollable quotes */
.testimoni-feature-quotes {
  grid-column: 2;
  grid-row: 1;
  height: 520px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: var(--color-cream-500);
}

/* Custom thin scrollbar */
.testimoni-feature-quotes::-webkit-scrollbar {
  width: 4px;
}
.testimoni-feature-quotes::-webkit-scrollbar-track {
  background: transparent;
}
.testimoni-feature-quotes::-webkit-scrollbar-thumb {
  background-color: var(--color-green-400, #7ea87a);
  border-radius: 4px;
}

/* Individual quote card — 2x size */
.testimoni-quote-item {
  background-color: var(--color-green-200);
  padding: 34px;
  scroll-snap-align: start;
  flex-shrink: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

/* Star rating row */
.tq-stars {
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--color-green-800);
}

.testimoni-quote-item p {
  font-family: var(--font-satoshi);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-neutral-900);
  margin: 0;
  flex: 1;
}

/* Profile footer inside card */
.tq-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.tq-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--color-green-800);
  color: var(--color-cream-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.tq-name {
  font-family: var(--font-satoshi);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-green-800);
}

/* Footer bar — spans full width */
.testimoni-feature-footer {
  grid-column: 1 / -1;
  grid-row: 2;
  background-color: var(--color-green-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 34px;
  gap: 16px;
}

.tff-rating {
  font-family: var(--font-satoshi);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-cream-500);
  letter-spacing: 0.02em;
}

/* ==========================================
   TESTIMONI IMAGE SECTION
   ========================================== */
.testimoni-image-section {
  background-color: var(--color-cream-500);
  padding: 0 0 96px 0;
  width: 100%;
}

.testimoni-image-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 34px;
}

.testimoni-image-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   MICRO-ANIMATIONS & SCROLL REVEAL
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wipe-reveal animation */
.reveal-wipe {
  position: relative;
  overflow: hidden;
}

.reveal-wipe-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-cream-500);
  transform: translateX(0%);
  z-index: 1;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.reveal-wipe.is-visible .reveal-wipe-overlay {
  transform: translateX(100%);
}

.t-image .reveal-wipe {
  width: 100%;
  height: 100%;
}

/* Scroll-triggered fade-in reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for child elements within the same section */
.hero-headline {
  transition-delay: 0.4s;
}

[data-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}

[data-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}

[data-reveal]:nth-child(4) {
  transition-delay: 0.3s;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================
   KATALOG SECTION
   ========================================== */
.katalog-section {
  width: 100%;
  max-width: var(--page-max-width);
  min-height: 787px;
  margin: 0 auto;
  padding: 80px 34px 120px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-cream-500);
}

.katalog-inner {
  width: 100%;
}

.katalog-heading {
  font-family: var(--font-boska);
  font-size: var(--text-headline);
  font-weight: 400;
  color: var(--color-green-800);
  margin-bottom: 48px;
  text-align: center;
}

.katalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.katalog-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.katalog-card {
  background-color: var(--color-green-200);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 480px;
  transition: background-color 0.4s ease;
}

.katalog-card.is-active {
  background-color: var(--color-green-800);
}

/* Hover logic: when grid is hovered, remove default active state styling */
.katalog-grid:hover .katalog-card.is-active {
  background-color: var(--color-green-200);
}
/* Then apply active styling only to the actually hovered card */
.katalog-grid .katalog-card:hover {
  background-color: var(--color-green-800) !important;
}

.katalog-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.katalog-img-wrap.reveal-wipe {
  max-height: 320px;
}

.katalog-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.katalog-btn {
  width: 100%;
  max-width: 200px;
  background-color: var(--color-cream-500);
  color: var(--color-green-800);
  border: none;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-satoshi);
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.katalog-btn:hover {
  transform: scale(1.05);
}

.katalog-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-satoshi);
  color: var(--color-green-800);
}

.k-pack {
  font-size: 16px;
  font-weight: 400;
}

.k-price {
  font-size: 24px;
  font-weight: 500;
}

/* Katalog Nav Mobile (Hidden by default) */
.katalog-nav-mobile {
  display: none;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  width: 100%;
  max-width: var(--page-max-width);
  min-height: 730px;
  margin: 0 auto;
  padding: 120px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-cream-500);
}

.faq-inner {
  width: 100%;
}

.faq-heading {
  font-family: var(--font-boska);
  font-size: var(--text-headline);
  font-weight: 400;
  color: var(--color-green-800);
  margin-bottom: 80px;
  text-align: center;
  line-height: var(--leading-headline);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-green-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  color: var(--color-green-800);
  font-family: var(--font-satoshi);
  text-align: left;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 500;
  padding-right: 24px;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.4s ease;
  color: var(--color-green-800);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s ease;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-family: var(--font-satoshi);
  font-size: 14px;
  color: var(--color-green-800);
  line-height: 1.6;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  position: relative;
  width: 100%;
  height: 900px;
  max-width: var(--page-max-width);
  margin: 0 auto;
  overflow: hidden;
}

.cta-section .reveal-wipe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 64px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  pointer-events: none;
}

.cta-heading {
  font-family: var(--font-boska);
  font-size: var(--text-headline);
  font-weight: 400;
  line-height: var(--leading-headline);
  color: var(--color-cream-500);
  pointer-events: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  pointer-events: auto;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
  width: 100%;
  background-color: var(--color-green-800);
}

.footer-top {
  padding: 80px 34px 120px 34px;
  display: flex;
  justify-content: space-between;
  gap: 64px;
  color: var(--color-cream-500);
  max-width: var(--page-max-width);
  margin: 0 auto;
  width: 100%;
}

.footer-left {
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-boska);
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 24px;
}

.footer-tagline {
  font-family: var(--font-satoshi);
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 32px;
}

.footer-pirt {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 64px;
}

.footer-disclaimer {
  font-size: 12px;
  opacity: 0.6;
  line-height: 1.5;
}

.footer-right {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.f-col-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.8;
  text-transform: uppercase;
}

.f-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.f-col-links a {
  color: var(--color-cream-500);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.f-col-links a:hover {
  opacity: 1;
}

.footer-parallax-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  clip-path: inset(0 0 0 0); /* CSS Parallax Reveal Magic */
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 34px;
}

.footer-parallax-img {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 500px;
  object-fit: cover;
  z-index: -1;
}

.footer-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.footer-bottom-logo {
  font-family: var(--font-boska);
  font-size: 120px;
  font-weight: 400;
  color: var(--color-cream-500);
  position: relative;
  z-index: 1;
  line-height: 1;
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.floating-wa svg {
  width: 32px;
  height: 32px;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Tablet Viewports (< 1024px) */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 40px;
  }
  .hero-subhead {
    font-size: 18px;
    max-width: 680px;
  }

  .manifesto-heading {
    font-size: 40px;
  }

  .satu-rasa {
    height: 800px;
  }

  .satu-rasa-text {
    font-size: 40px;
  }

  /* Value Section — Tablet */
  .value-heading {
    font-size: 40px;
  }

  .value-card {
    height: 280px;
    padding: 20px;
  }

  /* Shipping Section — Tablet */
  .shipping-heading {
    font-size: 40px;
  }

  /* Ingredients Section — Tablet */
  .ingredients-inner {
    height: 1000px;
  }
  .scatter-layer {
    height: 1000px;
  }
  .ingredients-heading {
    font-size: 40px;
  }

  /* Testimoni Feature - Tablet */
  .testimoni-feature-heading {
    font-size: 40px;
  }
}


/* Mobile Viewports (< 768px) */
@media (max-width: 767px) {
  .main-header {
    padding: 20px 20px;
  }

  .nav-bar {
    flex-direction: column;
    gap: 16px;
  }

  .logo {
    font-size: 28px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-link {
    font-size: 14px;
    padding: 6px 12px;
  }

  .hero-section {
    padding: 160px 16px 40px 16px;
  }

  .hero-headline {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .hero-subhead {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: auto;
    padding: var(--spacing-12) var(--spacing-24);
  }

  /* Manifesto — Mobile */
  .manifesto {
    padding: 64px 34px;
  }

  .manifesto-eyebrow {
    font-size: 14px;
  }

  .manifesto-heading {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .manifesto-body {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .manifesto-col + .manifesto-col {
    margin-top: 16px;
  }

  .manifesto-images {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Satu Rasa — Mobile */
  .satu-rasa {
    height: 500px;
  }

  .satu-rasa-scroll-content {
    padding: 34px 34px 34px 0;
  }

  .satu-rasa-text {
    font-size: 22px;
    top: 34px;
    max-width: none;
    white-space: nowrap;
  }

  /* Value Section — Mobile */
  .value-section {
    padding: 64px 34px;
  }
  
  .value-inner {
    height: auto;
  }

  .value-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    height: auto;
    min-height: 240px;
  }

  /* Shipping Section — Mobile */
  .shipping-inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .shipping-content {
    padding: 34px;
  }

  .shipping-heading {
    font-size: 28px;
  }

  /* Ingredients Section — Mobile */
  .ingredients-section {
    padding: 64px 0;
  }
  .ingredients-inner {
    height: 600px;
  }
  .scatter-layer {
    height: 600px;
  }
  .ingredients-heading {
    font-size: 24px;
  }
  
  /* Scale down the scatter images — smaller on mobile, centered */
  .scatter-layer {
    display: flex;
    justify-content: center;
  }

  .sc-img {
    transform-origin: center center;
    transform: scale(0.25);
  }

  /* Testimoni Feature — Mobile */
  .testimoni-feature {
    padding: 48px 20px;
  }

  .testimoni-feature-heading {
    font-size: 32px;
  }

  .testimoni-feature-card {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 320px auto;
  }

  .testimoni-feature-image {
    grid-column: 1;
    grid-row: 1;
    height: 320px;
  }

  .testimoni-feature-quotes {
    grid-column: 1;
    grid-row: 2;
    height: 320px;
  }

  .testimoni-feature-footer {
    grid-column: 1;
    grid-row: 3;
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 12px;
  }


  /* Katalog Section — Mobile */
  .katalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA Section — Mobile */
  .cta-section {
    height: 600px;
  }
  .cta-content {
    padding: 34px 24px;
  }
  .cta-heading {
    font-size: 32px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  /* FAQ Section — Tablet */
  .faq-grid {
    gap: 40px;
  }
  
  /* Footer Section — Tablet */
  .footer-top {
    flex-direction: column;
    gap: 64px;
  }
  .footer-right {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .katalog-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    gap: 16px;
    padding-bottom: 24px;
    /* offset section padding for edge-to-edge scroll */
    margin-left: -34px;
    margin-right: -34px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .katalog-grid::-webkit-scrollbar {
    display: none;
  }

  .katalog-item {
    min-width: 100%;
    scroll-snap-align: center;
  }

  /* Disable wipe reveal animation on mobile */
  .katalog-section .reveal-wipe-overlay {
    display: none !important;
  }
  .katalog-section .reveal-wipe {
    overflow: visible;
  }
  .katalog-grid [data-reveal] {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .katalog-nav-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
  }

  .k-nav-btn {
    background: none;
    border: 1px solid var(--color-green-800);
    border-radius: var(--radius-full);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-800);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
  }
  
  .k-nav-btn:active {
    background-color: var(--color-green-800);
    color: var(--color-cream-500);
  }

  .k-nav-indicator {
    font-family: var(--font-satoshi);
    font-size: 16px;
    color: var(--color-green-800);
    font-weight: 500;
  }
  
  /* FAQ Section — Mobile */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq-section {
    padding: 80px 34px;
  }
  .faq-heading {
    margin-bottom: 40px;
  }
  
  /* Footer Section — Mobile */
  .footer-bottom-logo {
    font-size: 64px;
  }
  .footer-parallax-wrapper, .footer-parallax-img {
    height: 300px;
  }

  /* Floating WhatsApp - Mobile */
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .floating-wa svg {
    width: 28px;
    height: 28px;
  }
}

/* Very Small Screen Viewports (< 375px) */
@media (max-width: 374px) {
  .hero-headline {
    font-size: 28px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .manifesto-heading {
    font-size: 24px;
  }
}

