/* ============================================================
   Bumi Karsa Selera — Design System
   Palette: "Navy & Gold"
   - Deep navy primary (from logo: #1d3a62)
   - Golden amber accent
   - Chili red highlight
   - Warm cream background
   ============================================================ */

:root {
  /* Cream backgrounds */
  --cream-50: #FDFAF3;
  --cream-100: #FBF6EC;
  --cream-200: #F3EBD9;
  --cream-300: #E5DCC2;

  /* Text */
  --ink-900: #1A1A1A;
  --ink-700: #2E2E2E;
  --ink-500: #3D3D3D;
  --ink-300: #6B6B6B;
  --ink-100: #A0A0A0;

  /* Navy — from logo #1d3a62 */
  --navy-900: #0B1E33;
  --navy-800: #122740;
  --navy-700: #1A3559;
  --navy-600: #1E406E;
  --navy-100: #D6E0EC;

  /* Gold accent */
  --gold-700: #8B5E2C;
  --gold-500: #C8973A;
  --gold-300: #E0B860;
  --gold-100: #F5E5C0;

  /* Chili red */
  --red-700: #A0341E;
  --red-500: #C8553D;
  --red-300: #E07A5F;

  /* Semantic */
  --primary: var(--navy-700);
  --primary-dark: var(--navy-800);
  --primary-deep: var(--navy-900);
  --accent: var(--gold-500);
  --accent-dark: var(--gold-700);
  --highlight: var(--red-500);
  --bg: var(--cream-100);
  --bg-alt: var(--cream-200);
  --surface: #ffffff;
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --border: rgba(26, 53, 89, 0.10);
  --border-strong: rgba(26, 53, 89, 0.20);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(11, 30, 51, 0.06), 0 1px 3px rgba(11, 30, 51, 0.05);
  --shadow-md: 0 4px 12px rgba(11, 30, 51, 0.08), 0 2px 4px rgba(11, 30, 51, 0.05);
  --shadow-lg: 0 12px 32px rgba(11, 30, 51, 0.12), 0 4px 8px rgba(11, 30, 51, 0.06);
  --shadow-xl: 0 24px 60px rgba(11, 30, 51, 0.18);

  /* Layout */
  --container: 1200px;
  --container-wide: 1360px;
  --header-h: 76px;
  --current-h: var(--header-h);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast: 150ms;
  --t-med: 280ms;
  --t-slow: 480ms;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--primary); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { line-height: 1.7; }

::selection { background: var(--gold-300); color: var(--ink-900); }

/* ============================================================
   Layout helpers
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5); }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--space-5); }
.section { padding: var(--space-9) 0; }
.section-sm { padding: var(--space-7) 0; }
.section-tight { padding: var(--space-7) 0 var(--space-9); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--space-3);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.section-head { text-align: center; margin-bottom: var(--space-7); }
.section-head .section-subtitle { margin: 0 auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-full);
  transition: all var(--t-med) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--cream-100);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--cream-100);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: var(--ink-900);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--cream-100);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(251, 246, 236, 0.5);
}
.btn-outline:hover {
  background: var(--cream-100);
  color: var(--primary);
  border-color: var(--cream-100);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: var(--cream-100);
}
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), backdrop-filter var(--t-med) var(--ease), height var(--t-med) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-md);
  height: calc(var(--header-h) - 10px);
  --current-h: calc(var(--header-h) - 10px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  transition: width var(--t-med) var(--ease), height var(--t-med) var(--ease);
}
.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--t-med) var(--ease);
}
.brand .brand-light { opacity: 1; }
.brand .brand-dark { opacity: 0; }
.site-header.is-scrolled .brand { width: 56px; height: 56px; }
.site-header.is-scrolled .brand .brand-light { opacity: 0; }
.site-header.is-scrolled .brand .brand-dark { opacity: 1; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.primary-nav > li > a {
  position: relative;
  display: inline-block;
  padding: 8px 4px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream-100);
  letter-spacing: 0.01em;
  transition: color var(--t-fast) var(--ease);
}
.site-header.is-scrolled .primary-nav > li > a { color: var(--ink-900); }
.primary-nav > li > a::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-med) var(--ease);
}
.primary-nav > li > a:hover::after,
.primary-nav > li > a.is-active::after { transform: scaleX(1); }
.primary-nav > li > a:hover { color: var(--cream-100); }
.site-header.is-scrolled .primary-nav > li > a:hover { color: var(--primary); }

.nav-cta {
  margin-left: var(--space-3);
  padding: 9px 20px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--cream-100);
}
.site-header.is-scrolled .nav-toggle { color: var(--ink-900); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle svg line {
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
  transform-origin: 12px 12px;
}
.nav-toggle[aria-expanded="true"] svg line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] svg line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] svg line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 30, 51, 0.55);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.mobile-backdrop.is-open { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { visibility: hidden; }
body.menu-open .wa-float { display: none; }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--navy-900);
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-logo {
  display: block;
  margin-bottom: var(--space-6);
}
.mobile-menu-logo img { height: 56px; width: auto; border-radius: 50%; }

.mobile-menu-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-100);
  border-radius: var(--r-sm);
  opacity: 0.75;
  cursor: pointer;
  z-index: 1;
}
.mobile-menu-close:hover { opacity: 1; }
.mobile-menu-close svg { width: 22px; height: 22px; }

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 18px 4px;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(251, 246, 236, 0.85);
  border-bottom: 1px solid rgba(251, 246, 236, 0.08);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.mobile-menu a:not(.btn):hover {
  background: rgba(251, 246, 236, 0.06);
  padding-left: 14px;
  color: var(--cream-100);
}
.mobile-menu a:hover,
.mobile-menu a.is-active { color: var(--cream-50); }
.mobile-menu a.is-active { font-weight: 700; }
.mobile-menu a.btn { margin-top: auto; border-bottom: 0; padding: 16px 20px; justify-content: center; font-size: 1rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--cream-100);
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 42, 32, 0.7) 0%, rgba(15, 42, 32, 0.4) 50%, rgba(15, 42, 32, 0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + var(--space-7)) 0 var(--space-8);
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(212, 162, 76, 0.18);
  color: var(--gold-300);
  border: 1px solid rgba(212, 162, 76, 0.4);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}
.hero h1 {
  color: var(--cream-100);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: var(--space-5);
  animation: fadeUp 0.9s var(--ease) 0.2s both;
}
.hero h1 .accent { color: var(--gold-300); font-style: italic; }
.hero h1 .hl { color: var(--red-300); }
.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(251, 246, 236, 0.85);
  margin-bottom: var(--space-6);
  max-width: 560px;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}
.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}

.hero-dots {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-2);
}
.hero-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(251, 246, 236, 0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background var(--t-med) var(--ease), width var(--t-med) var(--ease);
}
.hero-dot.is-active {
  background: var(--gold-300);
  width: 56px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: rgba(15, 42, 32, 0.4);
  border: 1px solid rgba(251, 246, 236, 0.25);
  color: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-med) var(--ease);
  backdrop-filter: blur(8px);
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); }
.hero-arrow.prev { left: var(--space-5); }
.hero-arrow.next { right: var(--space-5); }
.hero-arrow svg { width: 22px; height: 22px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Page Header (for sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  padding: calc(var(--header-h) + var(--space-8)) 0 var(--space-8);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--cream-100);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(200, 151, 58, 0.2), transparent 50%),
              radial-gradient(circle at 10% 90%, rgba(200, 85, 61, 0.15), transparent 50%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--cream-100); margin-bottom: var(--space-3); }
.page-header .lead { color: var(--cream-100); max-width: 600px; }
.breadcrumb {
  display: flex;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: rgba(251, 246, 236, 0.7);
  margin-bottom: var(--space-4);
}
.breadcrumb a { color: rgba(251, 246, 236, 0.7); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span { color: var(--gold-300); }

/* ============================================================
   Intro / About snippet
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.intro-text h2 { margin-bottom: var(--space-4); }
.intro-text p { color: var(--text-muted); margin-bottom: var(--space-4); }
.intro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.intro-feature {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.intro-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.intro-feature-icon svg { width: 22px; height: 22px; }
.intro-feature h4 { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.intro-feature p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.intro-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-xl);
}
.intro-visual img { width: 100%; height: 100%; object-fit: cover; }
.intro-visual-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: rgba(251, 246, 236, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.intro-visual-badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.intro-visual-badge-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   Values strip (4 pillars)
   ============================================================ */
.values {
  background: var(--cream-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.values-row-center {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  margin-top: 0;
}
.value-card {
  text-align: center;
  padding: var(--space-5) var(--space-3);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-3);
  border-radius: var(--r-full);
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid var(--border);
}
.value-icon svg { width: 30px; height: 30px; }
.value-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
  color: var(--ink-900);
}
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   Product categories
   ============================================================ */
.products { background: var(--bg); }

.cat-tabs {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
}
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 22px;
  min-height: 44px;
  border-radius: var(--r-full);
  background: var(--surface);
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--border-strong);
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
}
.cat-tab:hover { border-color: var(--primary); color: var(--primary); }
.cat-tab.is-active {
  background: var(--primary);
  color: var(--cream-100);
  border-color: var(--primary);
}
.cat-tab svg { width: 18px; height: 18px; }

.cat-pane { display: none; }
.cat-pane.is-active { display: block; animation: fadeIn 0.4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.cat-head {
  display: flex;
  align-items: flex-end;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.cat-head h3 { margin: 0; }
.cat-head p { color: var(--text-muted); margin-top: var(--space-2); flex: 1 1 100%; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.product-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.product-img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Segar — forest green */
.product-img-bg-segar { background: linear-gradient(135deg, #D6E0EC 0%, #B8CCE8 100%); }
/* Bubuk — golden turmeric */
.product-img-bg-bubuk { background: linear-gradient(135deg, #F5E5C0 0%, #E0B860 100%); }
/* Minyak & saus — chili red */
.product-img-bg-minyak { background: linear-gradient(135deg, #FAD8CC 0%, #E07A5F 100%); }
.product-img img { width: 70%; height: 70%; object-fit: contain; }
.product-tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--accent);
  color: var(--ink-900);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-body {
  padding: var(--space-4) var(--space-5) var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
  color: var(--ink-900);
}
.product-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--ink-300);
}
.product-meta strong { color: var(--primary); font-weight: 600; }

/* ============================================================
   Stats strip
   ============================================================ */
 .stats {
   background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
   color: var(--cream-100);
   position: relative;
   overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200, 151, 58, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(200, 85, 61, 0.12), transparent 40%);
}
.stats .container { position: relative; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--cream-50);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-num::after {
  content: attr(data-suffix);
  color: var(--gold-300);
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(251, 246, 236, 0.75);
  font-weight: 500;
}

/* ============================================================
   Distribution
   ============================================================ */
.distribution-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
}
.distribution-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.dist-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t-fast) var(--ease);
}
.dist-item:hover { border-color: var(--primary); transform: translateY(-2px); }
.dist-dot { width: 10px; height: 10px; border-radius: var(--r-full); background: var(--accent); flex-shrink: 0; }
.dist-item strong { font-size: 0.92rem; color: var(--ink-900); font-weight: 600; }
.dist-item span { display: block; font-size: 0.78rem; color: var(--text-muted); }

.dist-map {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.dist-map img { width: 100%; height: auto; }
.dist-map-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-2);
}

/* ============================================================
   Partners / Clients
   ============================================================ */
.partners {
  background: var(--cream-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  align-items: center;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: var(--space-3);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink-300);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--t-fast) var(--ease);
}
.partner-logo:hover { color: var(--primary); border-color: var(--primary); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(200, 151, 58, 0.2), transparent 50%);
}
.cta .container { position: relative; }
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-7);
  flex-wrap: wrap;
}
.cta h2 { color: var(--cream-100); margin-bottom: var(--space-3); max-width: 600px; }
.cta p { color: var(--cream-100); max-width: 500px; }
.cta-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ============================================================
   Contact section
   ============================================================ */
.contact-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.contact-info-list { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-info-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--cream-200);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-item h5 { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-item p { margin: 0; color: var(--ink-900); font-size: 0.95rem; line-height: 1.5; }
.contact-info-item a { color: var(--primary); font-weight: 500; }

/* Form */
.form { display: flex; flex-direction: column; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-700); }
.field label .req { color: var(--red-500); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  min-height: 48px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--cream-50);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--primary);
  background: var(--surface);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .help { font-size: 0.78rem; color: var(--text-muted); }
.form-success {
  display: none;
  padding: var(--space-4) var(--space-5);
  background: var(--navy-100);
  color: var(--primary-deep);
  border-left: 4px solid var(--primary);
  border-radius: var(--r-md);
  font-size: 0.95rem;
}
.form-success.is-visible { display: block; animation: fadeIn 0.3s var(--ease); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: var(--space-8) 0 var(--space-4);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 151, 58, 0.3), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(251, 246, 236, 0.12);
}
.footer-brand img { height: 48px; border-radius: 50%; margin-bottom: var(--space-3); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; color: var(--cream-100); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col li { color: var(--cream-100); }
.footer-col a { font-size: 0.92rem; color: rgba(251, 246, 236, 0.85); }
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom {
  padding-top: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(251, 246, 236, 0.55);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.social { display: flex; gap: var(--space-2); }
.social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: rgba(251, 246, 236, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 246, 236, 0.7);
  transition: all var(--t-fast) var(--ease);
}
.social a:hover { background: var(--accent); color: var(--ink-900); }
.social svg { width: 18px; height: 18px; }

/* ============================================================
   About page specific
   ============================================================ */
.about-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.vision-card {
  padding: var(--space-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}
.vision-card.green::before { background: var(--primary); }
.vision-card h3 { margin-bottom: var(--space-3); }
.vision-card p { color: var(--text-muted); }
.vision-card ul { margin-top: var(--space-3); display: flex; flex-direction: column; gap: var(--space-2); }
.vision-card li { padding-left: 22px; position: relative; color: var(--text-muted); }
.vision-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: var(--r-full);
  background: var(--accent);
}
.vision-card.green li::before { background: var(--primary); }

.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-strong);
}
.timeline-item { position: relative; padding-left: 70px; padding-bottom: var(--space-6); }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  background: var(--accent);
  border: 4px solid var(--cream-100);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-1);
}
.timeline-item h4 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.timeline-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   Products page filter
   ============================================================ */
.product-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.filter-pill {
  padding: 12px 20px;
  min-height: 44px;
  border-radius: var(--r-full);
  background: var(--surface);
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.is-active { background: var(--primary); color: var(--cream-100); border-color: var(--primary); }

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

/* ============================================================
   Utilities & misc
   ============================================================ */
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.divider {
  width: 56px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto var(--space-5);
}
.bg-cream { background: var(--cream-50); }
.bg-alt { background: var(--cream-200); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid, .distribution-grid, .contact-card, .about-vision { grid-template-columns: 1fr; }
  .values-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .values-row-center { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partners-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-arrow { display: none; }
  .hero { min-height: auto; padding: var(--space-7) 0 var(--space-8); }
  .hero-content { padding-top: calc(var(--header-h) + var(--space-5)); }
  .hero-ctas .btn { width: 100%; }
  .intro-features { grid-template-columns: 1fr; }
  .intro-visual { aspect-ratio: 4 / 3; }
  .distribution-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .partners-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .values-row-center { flex-direction: column; align-items: center; }
  .section { padding: var(--space-7) 0; }
  .page-header { padding: calc(var(--header-h) + var(--space-6)) 0 var(--space-6); }
  .cat-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   WhatsApp floating button
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

@media (max-width: 480px) {
  .section { padding: var(--space-6) 0; }
  .section-sm { padding: var(--space-5) 0; }
  .page-header { padding: calc(var(--header-h) + var(--space-5)) 0 var(--space-5); }
  .hero { padding: var(--space-6) 0 var(--space-7); }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.15; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; }
  .intro-visual { aspect-ratio: 1 / 1; }
  .values-grid { grid-template-columns: 1fr; }
  .partners-strip { grid-template-columns: 1fr; }
  .stats-grid { gap: var(--space-4); }
  .cat-tabs { gap: var(--space-2); margin-bottom: var(--space-5); }
  .cat-tab { font-size: 0.85rem; padding: 10px 18px; }
  .wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}
