/* =============================================
   BUMI NUSANTARA SEHAT — Shared Design System
   ============================================= */

/* === VARIABLES === */
:root {
  --green-dark:  #1B4332;
  --green-mid:   #2D6A4F;
  --green-light: #40916C;
  --green-pale:  #D8F3DC;
  --gold:        #C8941A;
  --gold-light:  #E9AB22;
  --cream:       #F8F5EF;
  --cream-dark:  #EDE9E0;
  --white:       #FFFFFF;
  --ink:         #1C1C1C;
  --ink-mid:     #3D3D3D;
  --ink-light:   #6B6B6B;
  --border:      #D6D0C4;
  --shadow:      0 2px 12px rgba(27,67,50,0.10);
  --shadow-lg:   0 8px 32px rgba(27,67,50,0.15);
  --radius:      8px;
  --radius-lg:   16px;
  --font-head:   'Plus Jakarta Sans', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-w:       1160px;
  --sec-pad:     68px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  padding-top: 96px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* === BILINGUAL TOGGLE === */
[data-lang="en"] { display: none; }
html.lang-en [data-lang="en"] { display: revert; }
html.lang-en [data-lang="id"] { display: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 800; }
h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.2vw, 25px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 600; }
p  { color: var(--ink-mid); }

.label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section     { padding: var(--sec-pad) 0; }
.section-alt  { background: var(--white); }
.section-dark { background: var(--green-dark); }
.section-cream { background: var(--cream-dark); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary  { background: var(--gold); color: var(--white); }
.btn-primary:hover  { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(200,148,26,0.35); }
.btn-outline  { border: 2px solid rgba(255,255,255,0.45); color: var(--white); }
.btn-outline:hover  { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-green    { background: var(--green-mid); color: var(--white); }
.btn-green:hover    { background: var(--green-dark); transform: translateY(-2px); }
.btn-ghost    { border: 2px solid var(--green-mid); color: var(--green-mid); }
.btn-ghost:hover    { background: var(--green-mid); color: var(--white); }

/* === SECTION HEADER === */
.sec-hd { margin-bottom: 36px; }
.sec-hd .label { display: block; margin-bottom: 10px; }
.sec-hd h2 { max-width: 560px; }
.sec-hd p  { margin-top: 12px; font-size: 16px; max-width: 560px; }
.sec-hd.center { text-align: center; }
.sec-hd.center h2,
.sec-hd.center p { max-width: 640px; margin-left: auto; margin-right: auto; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 12px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  border: 1px solid rgba(214,208,196,0.55);
  box-shadow: 0 4px 28px rgba(0,0,0,0.09), 0 1px 5px rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo svg { width: 30px; height: 30px; flex-shrink: 0; }
.nav-logo-img { height: 38px; width: auto; display: block; }
.footer-brand .nav-logo-img { height: 42px; filter: brightness(0) invert(1); opacity: 0.88; }

#nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
#nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
#nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-mid);
  transition: width 0.2s;
}
#nav-links a:hover,
#nav-links a.active { color: var(--green-dark); }
#nav-links a:hover::after,
#nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 5px 11px;
  transition: all 0.2s;
  line-height: 1;
}
.lang-toggle:hover { border-color: var(--green-mid); color: var(--green-mid); }
.flag-svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18);
  overflow: hidden;
  position: relative;
  top: -1px;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background-color: var(--green-dark);
  padding: 132px 0 76px;
  margin-top: -96px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}
.hero-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.055;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero .label  { color: var(--gold-light); display: block; margin-bottom: 14px; }
.hero h1      { color: var(--white); margin-bottom: 20px; font-size: clamp(32px, 4.1vw, 50px); }
.hero h1 em   { font-style: normal; color: var(--gold-light); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid var(--border);
}
.trust-stat:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-lbl {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}

/* =============================================
   ABOUT SUMMARY (homepage)
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .label { display: block; margin-bottom: 12px; }
.about-text h2     { margin-bottom: 20px; }
.about-text p      { font-size: 16px; line-height: 1.8; margin-bottom: 14px; }
.about-text .btn   { margin-top: 24px; }

.about-missions    { display: flex; flex-direction: column; gap: 18px; }
.about-mission {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-mid);
}
.mission-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.mission-icon svg { width: 18px; height: 18px; }
.mission-text h4  { font-size: 14px; margin-bottom: 4px; }
.mission-text p   { font-size: 13px; line-height: 1.55; }

/* =============================================
   PRODUCTS PREVIEW (homepage grid)
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green-dark);
}
.product-icon svg { width: 26px; height: 26px; }
.product-card h4  { margin-bottom: 6px; font-size: 15px; }
.product-card p   { font-size: 13px; line-height: 1.6; }
.products-cta     { text-align: center; }

/* =============================================
   WHY US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.hero-serves {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 2;
}
.photo-banner-cta {
  margin-top: 20px;
}
.about-serves {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-serves-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.about-serves-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.serve-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mid);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
}
.why-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(233,171,34,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.why-icon svg  { width: 26px; height: 26px; }
.why-card h3   { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.why-card p    { color: rgba(255,255,255,0.66); font-size: 14px; line-height: 1.75; }

/* =============================================
   DISTRIBUTION NETWORK
   ============================================= */
.dist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.dist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-mid);
}
.dist-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 10px;
}
.dist-card h4      { font-size: 17px; margin-bottom: 8px; }
.dist-card address {
  font-style: normal;
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.75;
}

/* =============================================
   QUALITY STANDARDS (visual QA flow)
   ============================================= */
.qs-flow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 48px;
}
.qs-step {
  flex: 1;
  min-width: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease calc(var(--qi, 0) * 0.14s),
              transform 0.5s ease calc(var(--qi, 0) * 0.14s);
}
.qs-flow.qs-visible .qs-step {
  opacity: 1;
  transform: none;
}
.qs-arrow {
  flex-shrink: 0;
  color: var(--border);
  padding-top: 88px;
  display: flex;
  align-items: center;
}
.qs-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07), 0 0 0 1px rgba(214,208,196,0.6);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.qs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(27,67,50,0.14), 0 0 0 1px rgba(27,67,50,0.1);
}
.qs-photo-wrap { overflow: hidden; aspect-ratio: 4/3; }
.qs-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.qs-card:hover .qs-photo { transform: scale(1.07); }
.qs-body { padding: 16px 18px; }
.qs-check-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.qs-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.qs-card:hover .qs-check {
  background: var(--green-mid);
  color: white;
  box-shadow: 0 0 0 4px rgba(45,106,79,0.15);
}
.qs-num {
  font-size: 10px; font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-mid);
}
.qs-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; color: var(--ink); }
.qs-body p  { font-size: 12px; color: var(--ink-light); line-height: 1.65; }

.qs-ready {
  display: flex; align-items: center; gap: 12px;
  margin-top: 40px;
  padding: 13px 28px;
  background: rgba(45,106,79,0.07);
  border-radius: 50px;
  border: 1.5px solid rgba(45,106,79,0.18);
  width: fit-content;
  margin-left: auto; margin-right: auto;
  font-size: 14px; font-weight: 600;
  font-family: var(--font-head);
  color: var(--green-dark);
}
.qs-ready-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.25);
  animation: qsPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes qsPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(64,145,108,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(64,145,108,0.08); }
}

/* =============================================
   TEAM
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.team-photo {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info h4   { margin-bottom: 2px; font-size: 16px; }
.team-role {
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-bio { font-size: 13px; line-height: 1.65; }

/* =============================================
   CONTACT CTA BAND
   ============================================= */
.cta-band {
  background: var(--green-dark);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band > .container > p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 36px; }
.cta-details {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cta-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
}
.cta-detail svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0F2C1E;
  color: rgba(255,255,255,0.82);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 260px; color: rgba(255,255,255,0.8); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-addresses { display: flex; flex-direction: column; gap: 14px; }
.footer-addr { font-size: 12px; line-height: 1.75; color: rgba(255,255,255,0.78); }
.footer-addr strong {
  display: block;
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.78); }
.footer-credit { color: rgba(255,255,255,0.7); }
.footer-credit a { color: rgba(255,255,255,0.92); text-decoration: underline; }
.footer-social   { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.footer-social svg { width: 15px; height: 15px; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--green-dark);
  padding: 46px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .label { display: block; margin-bottom: 8px; color: var(--gold-light); }
.page-hero h1  { color: var(--white); font-size: clamp(26px, 3.4vw, 40px); }
.page-hero p   { color: rgba(255,255,255,0.72); font-size: 15px; margin-top: 10px; max-width: 600px; line-height: 1.6; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-year {
  font-family: var(--font-head);
  font-size: 100px;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 8px;
}
.story-text .label { display: block; margin-bottom: 12px; }
.story-text h2     { margin-bottom: 20px; }
.story-text p      { font-size: 15px; line-height: 1.8; margin-bottom: 14px; }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.vm-card .label { display: block; margin-bottom: 10px; }
.vm-card h3     { margin-bottom: 16px; }
.vm-card p      { font-size: 15px; line-height: 1.75; }
.mission-list   { display: flex; flex-direction: column; gap: 14px; }
.mission-item   { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.6; color: var(--ink-mid); }
.mission-dot    { flex-shrink: 0; width: 8px; height: 8px; background: var(--green-mid); border-radius: 50%; margin-top: 6px; }

/* Vision (left) + 4 Mission cards (right) — template layout */
.vm-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.vm-vision .label { display: block; margin-bottom: 12px; }
.vm-vision h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25; margin-bottom: 18px; }
.vm-vision p { font-size: 15px; line-height: 1.8; color: var(--ink-mid); }
.vm-vision p strong { color: var(--green-dark); font-weight: 700; }
.vm-missions { border-left: 1px solid var(--border); padding-left: 56px; }
.vm-missions-label { display: block; margin-bottom: 22px; }
.mz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 36px; }
.mz-card-hd {
  display: flex; align-items: baseline; gap: 10px;
  border-bottom: 1px solid var(--border); padding-bottom: 9px; margin-bottom: 11px;
}
.mz-num {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em; flex-shrink: 0;
}
.mz-card h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.25; }
.mz-card p { font-size: 13px; line-height: 1.65; color: var(--ink-light); }
@media (max-width: 860px) {
  .vm-layout { grid-template-columns: 1fr; gap: 30px; }
  .vm-missions { border-left: none; padding-left: 0; }
  .mz-grid { grid-template-columns: 1fr; gap: 22px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.value-icon {
  width: 52px; height: 52px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h4  { margin-bottom: 8px; }
.value-card p   { font-size: 13px; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.prods-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prod-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.prod-full:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.prod-full .product-icon { margin-bottom: 16px; }
.prod-full h3   { font-size: 19px; margin-bottom: 6px; }
.prod-full .prod-name-id { font-size: 11px; color: var(--green-mid); margin-bottom: 12px; font-style: normal; font-weight: 600; font-family: var(--font-head); letter-spacing: 0.01em; line-height: 1.6; }
.prod-full p    { font-size: 13px; line-height: 1.75; flex: 1; margin-bottom: 20px; }
.prod-full .btn { align-self: flex-start; font-size: 13px; padding: 10px 20px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.contact-form-sec h2 { margin-bottom: 8px; }
.contact-form-sec > p { margin-bottom: 32px; font-size: 15px; }

.form-group   { margin-bottom: 20px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
textarea { resize: vertical; min-height: 130px; }

.contact-side    { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-info-card h4 { font-size: 14px; margin-bottom: 6px; }
.contact-info-card a,
.contact-info-card p  { font-size: 14px; color: var(--ink-mid); word-break: break-word; }
.contact-info-card a:hover { color: var(--green-dark); }

.loc-cards    { display: flex; flex-direction: column; gap: 12px; }
.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.loc-card .dist-badge { margin-bottom: 6px; }
.loc-card h4    { font-size: 13px; margin-bottom: 4px; }
.loc-card address {
  font-style: normal;
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --sec-pad: 54px; }
  .dist-grid      { grid-template-columns: repeat(2, 1fr); }
  .qs-flow { flex-wrap: wrap; }
  .qs-step { flex: 1 1 calc(50% - 16px); }
  .qs-arrow { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .vm-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --sec-pad: 44px; }

  /* mobile nav */
  #nav-links { display: none; }
  .menu-btn  { display: flex; }
  .nav {
    position: relative;
    top: auto; left: auto; right: auto;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  body { padding-top: 0; }
  .hero { margin-top: 0; }
  #nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .story-grid     { grid-template-columns: 1fr; gap: 40px; }
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .prods-all-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .hero-deco      { display: none; }
  .values-grid    { grid-template-columns: 1fr 1fr; }
  .cta-details    { flex-direction: column; align-items: center; gap: 16px; }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-stat:nth-child(2) { border-right: none; }
  .trust-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .trust-stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 520px) {
  .products-grid  { grid-template-columns: 1fr; }
  .prods-all-grid { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .team-card      { flex-direction: column; }
  .dist-grid      { grid-template-columns: 1fr; }
  .qs-step        { flex: 1 1 100%; }
  .peta-card      { display: none; }
}

/* =============================================
   HERO — SPLIT LAYOUT WITH PHOTOGRAPHY
   ============================================= */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-inner .hero-content { max-width: none; position: static; }
.hero-photo-block {
  position: relative;
  height: 390px;
  flex-shrink: 0;
}
.hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 365px; height: 274px;
  object-fit: cover; display: block;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.hero-img-secondary {
  position: absolute;
  bottom: 0; left: 0;
  width: 215px; height: 162px;
  object-fit: cover; display: block;
  border-radius: 14px;
  border: 3px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-img-badge {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  font-family: var(--font-head);
  box-shadow: 0 4px 24px rgba(200,148,26,0.55);
  z-index: 2;
  min-width: 110px;
}
.hero-img-badge .num { font-size: 28px; font-weight: 800; display: block; line-height: 1; margin-bottom: 3px; }
.hero-img-badge .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; opacity: 0.92; display: block; }

/* =============================================
   ABOUT SECTION — PHOTO IN RIGHT COLUMN
   ============================================= */
.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.about-photo {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
}

/* =============================================
   PRODUCT CARDS — FULL-BLEED PHOTO TOP
   ============================================= */
.product-card { overflow: hidden; }
.product-card-photo {
  display: block;
  width: calc(100% + 48px);
  height: 160px;
  object-fit: cover;
  margin: -24px -24px 20px -24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* =============================================
   WHY US — PHOTO STRIP AT TOP OF DARK CARDS
   ============================================= */
.why-card { overflow: hidden; }
.why-card-photo {
  display: block;
  width: calc(100% + 56px);
  height: 180px;
  object-fit: cover;
  margin: -32px -28px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.82;
}

/* =============================================
   PHOTO BANNER — FULL-WIDTH STRIP BETWEEN SECTIONS
   ============================================= */
.photo-banner {
  position: relative;
  overflow: hidden;
}
.photo-banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.photo-banner-overlay {
  position: relative;
  background: radial-gradient(120% 135% at 50% 50%, rgba(0,0,0,0.34) 30%, rgba(0,0,0,0.62) 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
  padding: 40px 0;
}
.photo-banner-text {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin: 0 auto;
}
.photo-banner-text p {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 600;
  line-height: 1.55;
  max-width: 660px;
  margin: 0;
}

/* =============================================
   PRODUCTS PAGE — PHOTO CARD HEADER
   ============================================= */
.prod-full { overflow: hidden; }
.prod-photo-wrap {
  width: calc(100% + 56px);
  height: 195px;
  margin: -28px -28px 20px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--cream-dark);
}
.prod-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.prod-icon-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream-dark) 100%);
  color: var(--green-dark);
}
.prod-icon-fallback svg { width: 52px; height: 52px; opacity: 0.6; }

/* =============================================
   RESPONSIVE — PHOTO ADDITIONS
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-block { display: none; }
}
@media (max-width: 768px) {
  .why-card-photo { height: 140px; }
  .photo-banner { height: 200px; }
  .prod-photo-wrap { height: 160px; }
}
@media (max-width: 520px) {
  .product-card-photo { height: 140px; }
  .why-card-photo { height: 120px; }
  .photo-banner { height: 160px; }
}

/* =============================================
   HERO SLIDESHOW
   ============================================= */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slides-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.08) 100%);
}

/* =============================================
   DISTRIBUTION MAP
   ============================================= */
.dist-map-container {
  position: relative;
  width: 100%;
  padding-bottom: 42.2%;
}
.indonesia-map {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}
.map-info-card {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 13px 16px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.16);
  min-width: 168px;
  max-width: 200px;
  border: 1px solid var(--border);
  z-index: 2;
}
.mic-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 7px;
}
.mic-badge.red { background: #CE1126; }
.map-info-card h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.map-info-card address {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-light);
  line-height: 1.55;
  margin-bottom: 9px;
}
.mic-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 4px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--green-mid);
  border: none;
  border-radius: 6px;
  padding: 9px 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.mic-btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.22); }
.mic-btn svg { width: 12px; height: 12px; flex-shrink: 0; fill: var(--white); }

.dist-map-footer {
  margin-top: 20px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.dist-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
}
.dist-legend-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  flex-shrink: 0;
}
.dist-legend-dot.red { background: #CE1126; box-shadow: 0 0 0 2px #CE1126; }

@media (max-width: 900px) {
  .dist-map-container { padding-bottom: 54%; }
  .map-info-card { display: none; }
}
@media (max-width: 600px) {
  .dist-map-container { padding-bottom: 75%; }
}

/* =============================================
   CLIENT LOGOS
   ============================================= */
.client-logos-sec { background: var(--white); }
.logos-track {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.logo-item {
  width: 148px; height: 72px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.logo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(27,67,50,0.14);
  background: var(--white);
}
.logo-item > svg {
  width: 26px; height: 26px;
  color: var(--ink-light);
  flex-shrink: 0;
  transition: color 0.22s, transform 0.22s;
}
.logo-item:hover > svg { color: var(--green-mid); transform: translateY(-2px); }
.logo-item-name {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-light);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  text-align: center;
  padding: 0 6px;
  line-height: 1.2;
}
.logo-item:hover .logo-item-name { opacity: 1; transform: translateY(0); }

/* =============================================
   PERJALANAN KAMI — ZIG-ZAG TIMELINE
   ============================================= */
.journey-sec { background: var(--cream-dark); }
.journey-timeline {
  position: relative;
  padding: 8px 0 8px;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-pale) 0%, var(--green-mid) 50%, var(--green-dark) 100%);
  transform: translateX(-50%);
  z-index: 0;
}
.journey-milestone {
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  gap: 0 16px;
  margin-bottom: 44px;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.journey-milestone.js-visible {
  opacity: 1;
  transform: translateY(0);
}
.milestone-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.milestone-dot {
  width: 20px; height: 20px;
  background: var(--green-mid);
  border-radius: 50%;
  border: 4px solid var(--cream-dark);
  box-shadow: 0 0 0 2px var(--green-mid);
  flex-shrink: 0;
}
.milestone-year {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 7px;
  white-space: nowrap;
}
.milestone-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 2px 12px rgba(27,67,50,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.milestone-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.milestone-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.milestone-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink);
}
.milestone-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0;
}
.milestone-spacer { /* intentionally empty */ }

@media (max-width: 768px) {
  .journey-timeline::before { left: 15px; top: 0; bottom: 0; transform: none; }
  .journey-milestone {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .milestone-spacer { display: none; }
  .milestone-center { flex-shrink: 0; width: 32px; order: 0; margin-top: 4px; }
  .milestone-card { flex: 1; order: 1; padding: 16px 18px; }
}

/* =============================================
   TRUST BAR — CLICKABLE STAT LINKS
   ============================================= */
a.trust-stat {
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
a.trust-stat:hover { background: rgba(0,0,0,0.04); }
.trust-stat-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  color: var(--green-mid);
  border: 1.5px solid var(--green-mid);
  border-radius: 20px;
  padding: 4px 12px;
  transition: background 0.2s, color 0.2s;
}
a.trust-stat:hover .trust-stat-cta {
  background: var(--green-mid);
  color: var(--white);
}
.trust-stat-cta svg { width: 10px; height: 10px; flex-shrink: 0; }

/* =============================================
   LOGOS CAROUSEL (homepage)
   ============================================= */
.logos-bar-section {
  background: var(--green-dark);
  padding: 28px 0 36px;
}
.logos-bar-header {
  text-align: center;
  margin-bottom: 18px;
}
.logos-bar-header .label { color: rgba(255,255,255,0.65); }
.logos-bar-outer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(160deg, #ffffff 0%, #f4f0e8 100%);
  border-radius: 12px;
  padding: 16px 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
}
.logos-bar-viewport {
  flex: 1;
  overflow: hidden;
  cursor: grab;
}
.logos-bar-viewport:active { cursor: grabbing; }
.logos-bar-track {
  display: flex;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.logo-card {
  flex: 0 0 148px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--white);
  border-radius: 9px;
  padding: 12px 8px;
  box-shadow: 0 2px 8px rgba(27,67,50,0.09), 0 0 0 1px rgba(214,208,196,0.7);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.logo-card-name {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--ink-light);
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
}
.logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(27,67,50,0.14), 0 0 0 1px rgba(27,67,50,0.12);
}
.logo-card img {
  max-width: 180px;
  max-height: 65px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo-card:hover img {
  transform: scale(1.2);
}
.logos-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  padding: 0;
}
.logos-nav:hover { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); }
.logos-nav:disabled { opacity: 0.35; cursor: not-allowed; }

/* =============================================
   STATIC PETA MAP
   ============================================= */
.peta-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}
.peta-img { width: 100%; display: block; border-radius: 16px; }

.peta-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 11px 13px;
  min-width: 170px;
  max-width: 195px;
  border-left: 3px solid var(--green-mid);
  box-shadow: 0 3px 16px rgba(0,0,0,0.13);
  color: var(--ink);
  z-index: 2;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s, border-left-color 0.22s;
}
.peta-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  border-left-color: var(--green-dark);
}
.peta-card--hq { border-left-color: var(--gold); }
.peta-card--hq:hover { border-left-color: #b87d00; box-shadow: 0 8px 28px rgba(200,148,26,0.3); }

.peta-card-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.peta-card-icon--hq { background: rgba(200,148,26,0.12); color: var(--gold); }
.peta-card-icon--wh { background: rgba(206,17,38,0.08); color: #CE1126; }
.peta-card-badge {
  font-size: 9px; font-family: var(--font-head); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 2px;
}
.peta-card-city {
  font-size: 13px; font-weight: 700; font-family: var(--font-head);
  color: var(--ink); margin-bottom: 1px; line-height: 1.2;
}
.peta-card-region { font-size: 10px; color: var(--ink-light); margin-bottom: 5px; }
.peta-card-addr   { font-size: 10px; color: var(--ink-mid); line-height: 1.5; margin-bottom: 7px; }
.peta-card-link {
  font-size: 10px; font-weight: 600; color: var(--green-mid);
  text-decoration: none; display: inline-flex; align-items: center; gap: 3px;
}
.peta-card-link:hover { color: var(--green-dark); text-decoration: underline; }

/* ─── legacy leaflet rule kept for safety ─── */
.leaflet-map-container {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
/* Location cards grid (below the map) */
.loc-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 24px;
}
.loc-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(27,67,50,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,67,50,0.14);
}
.loc-card-accent {
  height: 5px;
  background: #CE1126;
}
.loc-card--hq .loc-card-accent { background: var(--gold); }
.loc-card-body { padding: 14px 15px 16px; }
.loc-card-region {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 3px;
}
.loc-card-city {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 6px;
  line-height: 1.1;
}
.loc-card-type {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: #CE1126;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 9px;
}
.loc-card--hq .loc-card-type { background: var(--gold); }
.loc-card-desc {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.55;
  margin-bottom: 12px;
}
.loc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--green-mid);
  transition: color 0.15s;
}
.loc-card-link:hover { color: var(--green-dark); }
@media (max-width: 900px) {
  .loc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .loc-cards-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PERJALANAN KAMI — HORIZONTAL TIMELINE
   ============================================= */
.journey-horiz-outer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}
.jh-nav-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.jh-nav-btn:hover { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); box-shadow: 0 4px 12px rgba(45,106,79,0.30); }
.jh-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.jh-scroll {
  flex: 1;
  overflow: hidden;
  cursor: grab;
}
.jh-scroll:active { cursor: grabbing; }
.jh-track {
  position: relative;
  display: flex;
  gap: 20px;
  height: 540px;
  width: 1940px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* straight horizontal timeline line through the centre */
.jh-line {
  position: absolute;
  top: 269px;
  left: 0;
  width: 1940px;
  height: 2px;
  background: #c4d4c0;
  z-index: 0;
}
.jh-item {
  position: relative;
  flex: 0 0 260px;
  height: 540px;
  z-index: 1;
}
.jh-photos-area {
  display: flex;
  gap: 6px;
  border-radius: 8px;
  overflow: hidden;
}
/* logo slot (e.g. founding year) — clean white card, logo contained */
.jh-photos-area--logo { background: #fff; border: 1px solid var(--border); align-items: center; justify-content: center; }
.jh-logo-img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
/* UP items: content ABOVE the line (photo top, card bottom-anchored, year just above line) */
.jh-item--up .jh-photos-area { position: absolute; top: 8px;  left: 0; right: 0; height: 116px; }
.jh-item--up .jh-card        { position: absolute; bottom: 312px; left: 0; right: 0; }
.jh-item--up .jh-year        { top: 230px; }
/* DOWN items: content BELOW the line (year just below line, card top-anchored, photo bottom) */
.jh-item--down .jh-year        { top: 286px; }
.jh-item--down .jh-card        { position: absolute; top: 316px; left: 0; right: 0; }
.jh-item--down .jh-photos-area { position: absolute; bottom: 8px; left: 0; right: 0; height: 116px; }
/* Shared dot on the line */
.jh-dot {
  position: absolute;
  left: 50%;
  top: 264px;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green-mid);
  border: 2.5px solid var(--cream-dark);
  box-shadow: 0 0 0 2px var(--green-mid);
  z-index: 2;
}
.jh-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center;
  z-index: 2;
}
/* thin vertical connector from year to the line */
.jh-item--up .jh-year::after {
  content: ""; position: absolute; left: 50%; top: 100%;
  transform: translateX(-50%); width: 1.5px; height: 15px; background: #c4d4c0;
}
.jh-item--down .jh-year::before {
  content: ""; position: absolute; left: 50%; bottom: 100%;
  transform: translateX(-50%); width: 1.5px; height: 15px; background: #c4d4c0;
}
/* Card — borderless, floating text (airy, minimal like the reference) */
.jh-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  align-items: center;
}
.jh-card .milestone-tag { display: none; }
.jh-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.jh-card p {
  font-size: 11.5px;
  color: var(--ink-light);
  line-height: 1.6;
  margin: 0;
  max-width: 230px;
}
/* Photos */
.jh-photo {
  flex: 1;
  width: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.jh-photo--main { flex: 1.75; }
.jh-photo--sm   { flex: 1; }
/* real portrait photos: bias crop toward upper area so subjects/faces stay visible */
.jh-photo--real { object-position: center 30%; }

@media (max-width: 767px) {
  .journey-horiz-outer { gap: 6px; }
  .jh-nav-btn { width: 36px; height: 36px; font-size: 20px; }
}

/* =============================================
   PARTNER LOGO — FILL VARIANT
   ============================================= */
.logo-card .logo-img--fill {
  max-height: 70px;
  max-width: 168px;
}

/* =============================================
   WHATSAPP CTA
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 2px 10px rgba(0,0,0,0.18);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; display: block; }

.btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
}
.btn-wa:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.cta-wa-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-or {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* =============================================
   KOMODITAS — COMPACT (featured coffee + grid)
   ============================================= */
.komo-featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(214,208,196,0.6);
  margin-top: 44px;
}
.komo-featured-photo { position: relative; min-height: 300px; }
.komo-featured-photo img { width: 100%; height: 100%; object-fit: cover; }
.komo-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
  box-shadow: 0 3px 12px rgba(200,148,26,0.4);
}
.komo-featured-body { padding: 40px; align-self: center; }
.komo-featured-body h3 { margin-bottom: 10px; }
.komo-spec {
  font-family: var(--font-head); font-weight: 600; font-size: 12px;
  color: var(--green-mid); letter-spacing: 0.01em; line-height: 1.6; margin-bottom: 14px;
}
.komo-featured-body > p { font-size: 14px; line-height: 1.75; color: var(--ink-mid); margin-bottom: 24px; }

.komo-sub-hd { text-align: center; margin: 56px auto 0; max-width: 640px; }
.komo-sub-hd h3 { font-size: 22px; margin-bottom: 8px; }
.komo-sub-hd p { font-size: 14px; color: var(--ink-light); }

.komo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.komo-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(214,208,196,0.6);
  box-shadow: 0 2px 8px rgba(27,67,50,0.07);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
}
.komo-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(27,67,50,0.14); }
.komo-card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-dark); }
.komo-card-img img { width: 100%; height: 100%; object-fit: cover; }
/* hover crossfade: base (polos) -> hover (dalam karung) */
.komo-img-base  { transition: opacity 0.45s ease; }
.komo-img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity 0.45s ease, transform 0.5s ease; }
.komo-card:hover .komo-img-base  { opacity: 0; }
.komo-card:hover .komo-img-hover { opacity: 1; transform: scale(1.04); }
.komo-card-img--icon {
  display: flex; align-items: center; justify-content: center;
  background: var(--green-pale); color: var(--green-mid);
}
.komo-card-img--icon svg { width: 40px; height: 40px; }
.komo-card-name {
  display: block; text-align: center;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink);
  padding: 14px 8px 16px;
  letter-spacing: -0.01em;
}

/* =============================================
   FASILITAS / CAPABILITIES
   ============================================= */
.cap-section { background: var(--cream); }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.cap-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 22px;
  border: 1px solid rgba(214,208,196,0.6);
  box-shadow: 0 2px 10px rgba(27,67,50,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
}
.cap-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(27,67,50,0.13); }
.cap-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-pale); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cap-icon svg { width: 26px; height: 26px; }
.cap-card h4 { font-size: 15px; margin-bottom: 8px; line-height: 1.3; }
.cap-card p { font-size: 13px; color: var(--ink-light); line-height: 1.65; }

/* =============================================
   PETA — SIMPLE PIN (non-clickable locations)
   ============================================= */
.peta-pin {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  z-index: 2;
}
.peta-pin-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green-mid);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.peta-pin-label {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.95);
  padding: 4px 10px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--ink);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  line-height: 1.2;
}
.peta-pin-label small { font-weight: 500; font-size: 9px; color: var(--ink-light); }

/* =============================================
   CONTACT — CLICKABLE LINK CUE
   ============================================= */
.contact-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--green-mid);
  transition: color 0.18s;
}
.contact-link:hover { color: var(--green-dark); text-decoration: underline; }
.contact-link svg { opacity: 0.7; }

/* =============================================
   BERITA / NEWS
   ============================================= */
.news-barchart {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff; border-radius: var(--radius-lg);
  padding: 28px 32px; margin-bottom: 48px;
}
.news-barchart-text h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.news-barchart-text p { color: rgba(255,255,255,0.82); font-size: 14px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(214,208,196,0.6); box-shadow: 0 2px 10px rgba(27,67,50,0.07);
  display: flex; flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(27,67,50,0.13); }
.news-card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-dark); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.news-card-tag {
  font-family: var(--font-head); font-weight: 700; font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: 8px;
}
.news-card-body h3 { font-size: 17px; line-height: 1.3; margin-bottom: 8px; }
.news-card-body > p { font-size: 13px; color: var(--ink-light); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.news-card-meta { font-size: 12px; color: var(--ink-light); display: flex; justify-content: space-between; align-items: center; }
.news-card-link { font-weight: 600; color: var(--green-mid); font-size: 13px; }
.news-card-link:hover { text-decoration: underline; }

/* =============================================
   LOWONGAN KERJA / CAREERS
   ============================================= */
.job-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.job-card {
  background: var(--white); border-radius: 14px;
  border: 1px solid rgba(214,208,196,0.6); box-shadow: 0 2px 10px rgba(27,67,50,0.06);
  transition: box-shadow 0.22s;
  overflow: hidden;
}
.job-card:hover { box-shadow: 0 10px 28px rgba(27,67,50,0.12); }
.job-toggle {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 26px; cursor: pointer;
}
.job-chevron {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-pale); color: var(--green-dark);
  transition: transform 0.3s ease, background 0.2s;
}
.job-chevron svg { width: 15px; height: 15px; }
.job-card.is-open .job-chevron { transform: rotate(180deg); background: var(--green-mid); color: #fff; }
.job-detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s ease; }
.job-card.is-open .job-detail { grid-template-rows: 1fr; }
.job-detail-inner { overflow: hidden; padding: 0 26px; }
.job-card.is-open .job-detail-inner { padding-bottom: 26px; }
.job-detail-inner > h4:first-child { margin-top: 4px; }
.btn-outline-dark {
  background: transparent; border: 1.5px solid var(--border); color: var(--ink);
}
.btn-outline-dark:hover { border-color: var(--green-mid); color: var(--green-dark); }
.job-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.job-title h3 { font-size: 19px; margin-bottom: 8px; }
.job-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-family: var(--font-head); font-weight: 600; font-size: 11px;
  background: var(--green-pale); color: var(--green-dark);
  padding: 4px 12px; border-radius: 50px;
}
.job-card > p { font-size: 14px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 16px; }
.job-card h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-light); margin-bottom: 8px; }
.job-req { margin-bottom: 22px; }
.job-req li { font-size: 13px; color: var(--ink-mid); line-height: 1.7; padding-left: 20px; position: relative; }
.job-req li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); }
.job-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =============================================
   RESPONSIVE — new components
   ============================================= */
@media (max-width: 900px) {
  .komo-featured { grid-template-columns: 1fr; }
  .komo-featured-photo { min-height: 220px; }
  .komo-grid { grid-template-columns: repeat(3, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .peta-pin { display: none; } /* image already shows pins on small screens */
}
@media (max-width: 600px) {
  .komo-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-barchart { flex-direction: column; align-items: flex-start; }
  .komo-featured-body { padding: 28px; }
}

/* =============================================
   SCROLL REVEAL (fade-up, subtle)
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--ri, 0) * 0.08s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* primary advantage card: fade-up + slight scale for extra emphasis */
.adv-card--primary.reveal { transform: translateY(24px) scale(0.96); }
.adv-card--primary.reveal.is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .adv-card--primary.reveal { transform: none; }
}

/* =============================================
   KOMODITAS — left intro + coffee cards (homepage)
   ============================================= */
.komo-top {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 26px;
}
.komo-intro .label { display: block; margin-bottom: 10px; }
.komo-intro h2 { margin-bottom: 12px; }
.komo-intro p { font-size: 15px; color: var(--ink-light); line-height: 1.7; max-width: 360px; }
.komo-coffee { display: block; }
.coffee-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214,208,196,0.6);
  box-shadow: 0 2px 14px rgba(27,67,50,0.08);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}
.coffee-card-img { overflow: hidden; background: var(--cream-dark); min-height: 220px; }
.coffee-card-img img { width: 100%; height: 100%; object-fit: cover; }
.coffee-card-body { padding: 26px 28px; align-self: center; }
.coffee-card-body h4 { font-size: 19px; margin-bottom: 10px; }
.coffee-card-body p { font-size: 14px; color: var(--ink-light); line-height: 1.7; }
@media (max-width: 560px) {
  .coffee-card { grid-template-columns: 1fr; }
  .coffee-card-img { min-height: 170px; }
}

/* =============================================
   KEUNGGULAN (merged with Fasilitas)
   ============================================= */
.adv-section { background: var(--green-dark); }
.adv-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.adv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px 24px 26px;
  color: #fff;
}
.adv-img {
  height: 130px; border-radius: 10px; overflow: hidden; margin-bottom: 18px;
  background: rgba(0,0,0,0.2);
}
.adv-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.adv-card h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.adv-card > p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.7; }
.adv-card--primary {
  background: linear-gradient(160deg, rgba(64,145,108,0.28), rgba(255,255,255,0.04));
  border-color: rgba(233,171,34,0.4);
}
.adv-kicker {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 10px;
}
.adv-list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.adv-list li { position: relative; padding-left: 22px; font-size: 13.5px; color: rgba(255,255,255,0.85); }
.adv-list li::before {
  content: ""; position: absolute; left: 3px; top: 6px;
  width: 8px; height: 8px; background: var(--gold-light); transform: rotate(45deg);
}

/* =============================================
   PETA — compact sizing
   ============================================= */
.peta-wrapper { max-width: 960px; margin: 48px auto 40px; }
.peta-card { min-width: 150px; max-width: 168px; padding: 9px 11px; z-index: 2; }
.peta-card-city { font-size: 12px; }
.peta-card-addr { font-size: 9px; }
.peta-pin { z-index: 3; }
/* red dashed route between real dots + thin card connectors */
.peta-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.peta-route {
  fill: none; stroke: #CE1126; stroke-width: 0.5;
  stroke-dasharray: 2.4 2.2; stroke-linecap: round; opacity: 0.8;
}
.peta-connect {
  fill: none; stroke: #CE1126; stroke-width: 0.35;
  stroke-dasharray: 1.4 1.4; stroke-linecap: round; opacity: 0.55;
}

@media (max-width: 900px) {
  .komo-top { grid-template-columns: 1fr; gap: 22px; }
  .komo-intro p { max-width: none; }
  .adv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .komo-coffee { grid-template-columns: 1fr; }
}

/* =============================================
   NEWS — filter / sort controls
   ============================================= */
.news-controls {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 26px;
}
.news-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.news-chip {
  font-family: var(--font-head); font-size: 12.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 50px;
  border: 1px solid var(--border); background: #fff; color: var(--ink-mid);
  transition: all 0.18s;
}
.news-chip:hover { border-color: var(--green-mid); color: var(--green-dark); }
.news-chip.is-active { background: var(--green-mid); border-color: var(--green-mid); color: #fff; }
.news-sort { display: flex; align-items: center; gap: 8px; }
.news-sort label { font-size: 13px; color: var(--ink-light); font-weight: 500; }
.news-sort select {
  font-family: var(--font-body); font-size: 13px;
  padding: 7px 14px; border-radius: 8px;
  border: 1px solid var(--border); background: #fff; color: var(--ink); cursor: pointer;
}
.news-card { cursor: pointer; }
.news-card .news-card-link { color: var(--green-mid); font-weight: 600; }
.news-empty { text-align: center; padding: 40px 0; color: var(--ink-light); font-size: 14px; }
@media (max-width: 600px) {
  .news-controls { flex-direction: column; align-items: stretch; }
  .news-sort { justify-content: space-between; }
}

/* =============================================
   ARTICLE (blog detail) PAGE
   ============================================= */
.article-body { max-width: 740px; margin: 0 auto; }
.article-cover {
  width: 100%; aspect-ratio: 16 / 7; object-fit: cover;
  border-radius: var(--radius-lg); margin-bottom: 28px;
}
.article-body h2 { font-size: 24px; margin: 32px 0 12px; }
.article-body h3 { font-size: 19px; margin: 24px 0 10px; }
.article-body p { font-size: 16px; line-height: 1.8; color: var(--ink-mid); margin-bottom: 16px; }
.article-body ul { margin: 0 0 16px; padding-left: 4px; }
.article-body ul li {
  position: relative; padding-left: 22px; margin-bottom: 8px;
  font-size: 15px; line-height: 1.7; color: var(--ink-mid);
}
.article-body ul li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-light);
}
.article-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--green-mid); margin-bottom: 28px;
}
.article-back:hover { color: var(--green-dark); }
.article-meta-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 12px;
}
.article-meta-row .news-card-tag { color: var(--gold-light); margin: 0; }
