﻿/* ==============================================
   DESIGN TOKENS - identik dengan halaman produk
   ============================================== */
:root {
  --g950: #0b1512;
  --g900: #111e19;
  --g800: #182820;
  --g700: #233d2f;
  --g500: #c8d8c8;
  --g400: #e0ede0;
  --g300: #f3faf3;
  --g200: #f7fcf7;
  --g100: #eef4f0;
  --ivory:     #f9f7f2;
  --ivory-2:   #f0ece3;
  --ivory-3:   #e4ddd0;
  --brass:     #9a7c3a;
  --brass-lt:  #b8963f;
  --brass-dim: rgba(154,124,58,.12);
  --brass-bdr: rgba(154,124,58,.2);
  --white:     #ffffff;
  --body-txt:  #3d5449;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background: var(--g950);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 35px rgba(0,0,0,.24);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0,0,0,.28);
}
.scroll-top-float {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--g900);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.scroll-top-float:hover {
  transform: translateY(-2px);
  background: var(--g800);
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
}
.scroll-top-float svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .scroll-top-float {
    right: 16px;
    bottom: 80px;
    width: 46px;
    height: 46px;
  }
  .scroll-top-float svg {
    width: 21px;
    height: 21px;
  }
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--g950); }
::-webkit-scrollbar-thumb { background: var(--g700); border-radius: 99px; }

/* ==============================================
   NAVBAR
   ============================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: rgba(11,21,18,.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  transition: background .35s var(--ease), border-color .35s, box-shadow .35s;
}
#navbar.scrolled {
  background: rgba(11,21,18,.94);
  backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 8px 32px rgba(0,0,0,.35);
}

/* Nav wrapper */
#nav-menu {
  display: flex; align-items: center; gap: 8px;
}
#nav-menu .mobile-nav-cta { display: none; }

#nav-menu li { position: relative; }
#nav-menu li.has-dropdown > a::after {
  content: '\25BE';
  margin-left: 8px;
  font-size: .8em;
  display: inline-block;
  transform: translateY(1px);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100%);
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  background: rgba(11,21,18,.96);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  z-index: 300;
}
.nav-dropdown li + li { margin-top: 0; }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--g400);
}
.nav-dropdown a:hover { color: var(--white); background: rgba(255,255,255,.06); }
#nav-menu li.has-dropdown:hover > .nav-dropdown { display: block; }
#nav-menu li.has-dropdown:hover > a { color: var(--white); }
@media (max-width: 768px) {
  #nav-menu.mobile-open .nav-dropdown {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 8px;
  }
  #nav-menu.mobile-open .nav-dropdown a {
    padding-left: 30px;
  }
}
@media (min-width: 769px) {
  .nav-dropdown {
    display: none !important;
  }

  #nav-menu li.has-dropdown:hover > .nav-dropdown {
    display: block !important;
  }
}
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--brass-bdr);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
  color: var(--brass-lt);
  background: rgba(154,124,58,.06);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-text strong {
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--g100); line-height: 1;
}
.nav-logo-text span {
  font-size: 11px; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--g500); line-height: 1;
}

#nav-menu ul { display: flex; gap: 2px; list-style: none; }
#nav-menu ul li a {
  display: block; padding: 7px 13px;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--g400); border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
#nav-menu ul li a:hover { color: var(--g100); background: rgba(255,255,255,.05); }
#nav-menu ul li a.active { color: var(--white); }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--brass-bdr);
  border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--brass-lt);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--brass-dim); border-color: var(--brass-lt); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 4.5px;
  width: 38px; height: 38px; padding: 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  cursor: pointer; z-index: 300; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1px;
  background: var(--g300); border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ==============================================
   HERO
   ============================================== */
#beranda {
  min-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
  background-image:
      linear-gradient(rgba(11,21,18,.10), rgba(11,21,18,.10)),
          url("../img/assets/home-header.jpeg");
            background-size: cover;
              background-position: center 72%;
                background-repeat: no-repeat;
}

/* Grid pattern */
#beranda::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(168,196,180,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,196,180,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}
/* Center glow */
#beranda::after {
  content: ''; position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(35,61,47,.5) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.hero-inner { position: relative; z-index: 2; max-width: 1120px; }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.0;
  letter-spacing: -.025em;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 24px;
  white-space: normal;
}

.hero-title-brand,
.hero-title-sub {
  display: block;
}

.hero-title-sub {
  margin-top: 8px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

.hero-h1 em {
  display: block;
  margin-top: 8px;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.12;
  font-style: italic;
  color: var(--g300);
}

.hero-desc {
  font-size: 18px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.88);
  max-width: 860px; margin: 0 auto 40px;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 72px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px;
  background: var(--brass-lt); color: var(--g950);
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  transition: opacity .2s, transform .2s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--g300);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.28); color: var(--white); }
.btn-ghost svg { width: 14px; height: 14px; }

/* Hero stats strip */
.hero-stats {
  display: flex; justify-content: center; gap: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 40px;
  width: 100%;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 500;
  color: var(--white); line-height: 1;
  letter-spacing: -.025em;
}
.stat-label {
  font-size: 12px; font-weight: 400;
  color: var(--g500); margin-top: 5px;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ==============================================
   SECTION COMMON
   ============================================== */
section { scroll-margin-top: 68px; }
@media (max-width: 768px) { section { scroll-margin-top: 60px; } }
.section-wrap { max-width: 1160px; margin: 0 auto; padding: 96px 48px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.section-label-line { width: 20px; height: 1px; background: var(--brass-lt); }
.section-label span {
  font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass-lt);
}
/* light-section overrides */
.label-dark .section-label-line { background: var(--brass); }
.label-dark .section-label span { color: var(--brass); }

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 18px;
}
.section-h2 em { font-style: italic; color: var(--g300); }
.section-h2.on-light { color: var(--g950); }
.section-h2.on-light em { color: var(--g700); }

/* ==============================================
   POHON KEHIDUPAN (dark, center)
   ============================================== */
#pohon-kehidupan,
#pohon-kelapa {
  background: var(--g900);
  position: relative; overflow: hidden;
}
#pohon-kehidupan::before,
#pohon-kelapa::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
}

.pohon-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.pohon-inner .section-label { justify-content: center; }
.pohon-inner .section-h2 { margin-bottom: 20px; }
.pohon-body {
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.88);
}

/* Coconut tree SVG decoration */
.pohon-visual {
  margin: 52px auto 0;
  width: 100%; max-width: 900px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pohon-stat-cell {
  background: var(--g900);
  padding: 28px 24px;
  text-align: center;
  transition: background .2s;
}
.pohon-stat-cell:hover { background: var(--g800); }
.pohon-stat-icon {
  width: 40px; height: 40px;
  background: rgba(154,124,58,.08);
  border: 1px solid var(--brass-bdr);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.pohon-stat-icon svg { width: 18px; height: 18px; stroke: var(--brass-lt); fill: none; stroke-width: 1.6; }
.pohon-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 500;
  color: var(--white); line-height: 1;
  letter-spacing: -.02em; margin-bottom: 6px;
}
.pohon-stat-label {
  font-size: 12px; font-weight: 400;
  color: var(--g500); letter-spacing: .08em; text-transform: uppercase;
}

#pohon-kelapa .pohon-visual {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
}
#pohon-kelapa .pohon-stat-cell {
  display: block;
  background: var(--g900);
  padding: 24px 18px;
  text-align: center;
}
#pohon-kelapa .pohon-stat-cell:hover { background: var(--g800); }
#pohon-kelapa .pohon-stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  background: rgba(154,124,58,.08);
  border: 1px solid var(--brass-bdr);
  border-radius: 10px;
}
#pohon-kelapa .pohon-stat-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--brass-lt);
  stroke-width: 1.6;
}
#pohon-kelapa .pohon-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 7px;
}
#pohon-kelapa .pohon-stat-label {
  display: block;
  max-width: 190px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.72);
}

/* ==============================================
   PRODUK GRID - 6 product cards
   ============================================== */
#produk {
  background: var(--ivory);
  color: var(--g950);
}

.produk-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 40px;
}
.produk-header-left { flex: 1; }
.produk-header-right {
  font-size: 15.5px; font-weight: 300; color: var(--body-txt);
  line-height: 1.75; max-width: 300px; flex-shrink: 0;
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ivory-3);
  border: 1px solid var(--ivory-3);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.produk-card {
  background: var(--ivory);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .25s;
  cursor: pointer;
  text-decoration: none; color: inherit;
}
.produk-card:hover { background: var(--ivory-2); }
.produk-card:hover .pc-arrow { opacity: 1; transform: translateX(0); }

/* Top accent line on hover */
.produk-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brass), transparent);
  opacity: 0; transition: opacity .25s;
}
.produk-card:hover::before { opacity: 1; }

.pc-icon-wrap {
  width: 240px; height: 240px;
  background: rgba(154,124,58,.08);
  border: 1px solid rgba(154,124,58,.16);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
  overflow: hidden;
}
.pc-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-tag {
  display: inline-block; margin-bottom: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brass);
  background: rgba(154,124,58,.08);
  padding: 3px 8px; border-radius: 99px;
}

.pc-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500;
  color: var(--g950); line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: 10px;
}

.pc-desc {
  font-size: 14.5px; font-weight: 300;
  color: var(--body-txt); line-height: 1.7;
  flex: 1;
}

.pc-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--ivory-3);
}
.pc-link-text {
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brass);
}
.pc-arrow {
  width: 28px; height: 28px;
  background: rgba(154,124,58,.1);
  border: 1px solid rgba(154,124,58,.2);
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-4px);
  transition: opacity .25s, transform .25s;
}
.pc-arrow svg { width: 12px; height: 12px; stroke: var(--brass); fill: none; stroke-width: 2.5; }

/* Highlight card - featured (Kopra, first) */
.produk-card.featured { background: var(--g950); color: var(--white); }
.produk-card.featured .pc-title { color: var(--white); }
.produk-card.featured .pc-desc { color: var(--g400); }
.produk-card.featured .pc-tag {
  color: var(--brass-lt);
  background: rgba(154,124,58,.12);
}
.produk-card.featured .pc-icon-wrap {
  background: rgba(154,124,58,.1);
  border-color: rgba(154,124,58,.22);
}
.produk-card.featured .pc-footer { border-color: rgba(255,255,255,.08); }
.produk-card.featured .pc-link-text { color: var(--brass-lt); }
.produk-card.featured .pc-arrow {
  background: rgba(154,124,58,.15);
  border-color: rgba(154,124,58,.3);
  opacity: 1; transform: translateX(0);
}
.produk-card.featured .pc-arrow svg { stroke: var(--brass-lt); }
.produk-card.featured::before { opacity: 1; }
.produk-card.featured:hover { background: var(--g900); }

/* ==============================================
   TENTANG KAMI (dark)
   ============================================== */
#tentang {
  background: var(--g950);
  position: relative; overflow: hidden;
}
#tentang::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
}

.tentang-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.tentang-left .section-h2 { margin-bottom: 20px; }
.tentang-body {
  font-size: 16.5px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.88); margin-bottom: 16px;
}

.tentang-values {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.value-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: padding-left .2s;
}
.value-item:hover { padding-left: 4px; }
.value-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass-lt); flex-shrink: 0;
}
.value-item span {
  font-size: 14.5px; font-weight: 400; color: var(--g300);
  letter-spacing: -.01em;
}

/* Right side - illustration panel */
.tentang-right {
  display: flex; flex-direction: column; gap: 12px;
}

.tentang-card-big {
  background: var(--g900);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tentang-card-big::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brass-lt), transparent);
}
.tentang-card-big-icon {
  width: 48px; height: 48px;
  background: var(--brass-dim);
  border: 1px solid var(--brass-bdr);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.tentang-card-big-icon svg { width: 22px; height: 22px; stroke: var(--brass-lt); fill: none; stroke-width: 1.8; }
.tentang-card-big h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500;
  color: var(--white); margin-bottom: 8px; letter-spacing: -.01em;
}
.tentang-card-big p { font-size: 14px; color: rgba(255,255,255,.84); font-weight: 300; line-height: 1.7; }

.tentang-mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tentang-mini {
  background: var(--g900);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-md);
  padding: 20px 18px;
  transition: border-color .2s;
}
.tentang-mini:hover { border-color: rgba(255,255,255,.1); }
.tentang-mini-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.tentang-mini-icon svg { width: 15px; height: 15px; stroke: var(--g400); fill: none; stroke-width: 2; }
.tentang-mini h4 { font-size: 14.5px; font-weight: 500; color: var(--g200, #c9ddd3); margin-bottom: 3px; }
.tentang-mini p { font-size: 13px; color: rgba(255,255,255,.78); font-weight: 300; line-height: 1.5; }

/* ==============================================
   KONTAK (dark)
   ============================================== */
#kontak {
  background: var(--g900);
  position: relative;
}
#kontak::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
}

.kontak-wrap { max-width: 860px; margin: 0 auto; }
.kontak-header { text-align: center; margin-bottom: 52px; }
.kontak-header .section-label { justify-content: center; }
.kontak-header .section-h2 { font-size: clamp(30px, 4vw, 50px); }
.kontak-header p {
  font-size: 16.5px; font-weight: 300; color: rgba(255,255,255,.88);
  line-height: 1.75; max-width: 460px; margin: 0 auto;
}

.kontak-panel {
  background: var(--g800);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.kontak-top {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
}
.kontak-divider-v { background: rgba(255,255,255,.06); }
.kontak-item {
  padding: 32px 36px;
  display: flex; align-items: center; gap: 18px;
}
.kontak-item > div:last-child {
  width: 240px;
  max-width: 100%;
}
.kontak-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kontak-icon.wa { background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.2); }
.kontak-icon.wa svg { width: 22px; height: 22px; fill: #25d366; }
.kontak-icon.em { background: var(--brass-dim); border: 1px solid var(--brass-bdr); }
.kontak-icon.em svg { width: 20px; height: 20px; stroke: var(--brass-lt); fill: none; stroke-width: 1.8; }
.kontak-label {
  font-size: 11.5px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--g500); margin-bottom: 4px;
}
.kontak-val {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 500;
  color: var(--white); letter-spacing: -.01em;
}
.kontak-val-sm { font-size: 14.5px; font-weight: 400; color: rgba(255,255,255,.74); }
.kontak-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  width: 100%;
  min-height: 40px;
  padding: 11px 18px;
  border: 1px solid var(--brass-bdr);
  border-radius: var(--r-sm);
  background: var(--brass-lt);
  color: var(--g950);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.kontak-action-btn:hover { opacity: .88; transform: translateY(-1px); }

.kontak-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.kontak-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; width: 100%; margin: 0 auto; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.78);
}
.trust-pill svg { width: 13px; height: 13px; stroke: var(--brass-lt); fill: none; stroke-width: 2; flex-shrink: 0; }

.btn-wa {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  background: var(--brass-lt); border: 0; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--g950);
  transition: opacity .2s, transform .2s;
  white-space: nowrap; flex-shrink: 0;
  cursor: pointer;
}
.btn-wa:hover { opacity: .88; transform: translateY(-1px); }
.btn-wa svg { width: 16px; height: 16px; fill: var(--g950); }

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.contact-modal.is-open { display: flex; }
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,21,18,.68);
  backdrop-filter: blur(8px);
}
.contact-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(78vh, 680px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--ivory-3);
  border-radius: var(--r-xl);
  box-shadow: 0 28px 80px rgba(11,21,18,.24);
  color: var(--g950);
}
.contact-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--ivory-3);
}
.contact-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.1;
  color: var(--g950);
}
.contact-modal-sub {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--body-txt);
}
.contact-modal-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ivory-3);
  border-radius: 50%;
  background: var(--white);
  color: var(--g950);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.contact-modal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 20px 26px 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.contact-link {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--ivory-3);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--g950);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.contact-link > span:last-child {
  min-width: 0;
}
.contact-link:hover {
  border-color: var(--brass);
  transform: translateY(-1px);
}
.contact-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,211,102,.12);
  color: #128c3a;
}
.contact-link-icon.email {
  background: var(--brass-dim);
  color: var(--brass);
}
.contact-link-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}
.contact-modal-list.email-modal-list {
  grid-template-columns: 1fr;
}
.email-modal-list .contact-link {
  grid-template-columns: 36px minmax(0, 1fr);
}
.email-modal-list .contact-link-value {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-link-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.contact-link-value {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--body-txt);
  overflow-wrap: anywhere;
}

/* ==============================================
   FOOTER
   ============================================== */
footer {
  background: var(--g950);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 52px 48px 24px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.35fr .75fr .8fr 1.75fr;
  gap: 26px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  margin-bottom: 24px;
}
.footer-brand-desc {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.78);
  line-height: 1.75; margin-top: 12px; max-width: 260px;
}
.footer-col-title {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--g300); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.78);
  transition: color .2s;
}
.footer-links li a:hover { color: rgba(255,255,255,.94); }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 11px; margin-bottom: 10px;
}
.footer-contact-row svg {
  width: 15px; height: 15px; stroke: var(--g400); fill: none;
  stroke-width: 1.8; flex-shrink: 0; margin-top: 3px;
}
.footer-contact-row .footer-whatsapp-icon {
  fill: var(--g400);
  stroke: none;
}
.footer-contact-row span { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.78); line-height: 1.5; }
.footer-contact-trigger {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.footer-contact-trigger:hover { color: var(--brass-lt); }
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 10px;
}
.footer-social-list a {
  display: inline-flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  transition: color .2s;
}
.footer-social-list a:hover { color: var(--brass-lt); }
.footer-social-list svg {
  width: 15px;
  height: 15px;
  stroke: var(--g400);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,.44);
}

/* ==============================================
   REVEAL ANIMATIONS
   ============================================== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

/* ==============================================
   RESPONSIVE - TABLET <= 1024px
   ============================================== */
@media (max-width: 1180px) {
  .footer-email-list a {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 1024px) {
  #navbar { padding: 0 28px; }
  .section-wrap { padding: 72px 28px; }
  #beranda { padding: 100px 28px 64px; }

  .produk-grid { grid-template-columns: 1fr 1fr; }
  .produk-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .produk-header-right { max-width: 100%; }

  .tentang-grid { grid-template-columns: 1fr; gap: 48px; }
  .tentang-mini-row { grid-template-columns: 1fr 1fr; }

  .pohon-visual { grid-template-columns: repeat(3, 1fr); }
  #pohon-kelapa .pohon-visual { grid-template-columns: repeat(2, 1fr); }
  #pohon-kelapa .pohon-stat-cell { padding: 24px 20px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats .stat-item { padding: 0 24px; }
  .kontak-item {
    justify-content: center;
    text-align: center;
  }
  .kontak-item > div:last-child {
    width: 240px;
  }
  .kontak-action-btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==============================================
   RESPONSIVE - MOBILE <= 768px
   ============================================== */
@media (max-width: 768px) {
  #navbar { padding: 0 20px; height: 60px; }
  #nav-menu { display: none; }
  .desktop-nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #nav-menu.mobile-open {
    display: flex; flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(11,21,18,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 16px 20px 20px;
    z-index: 250;
    animation: slideDown .25s var(--ease);
    align-items: stretch;
    gap: 12px;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  #nav-menu.mobile-open ul {
    flex-direction: column; gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding-bottom: 12px;
  }
  #nav-menu.mobile-open ul li a { padding: 11px 14px; border-radius: var(--r-sm); }
  #nav-menu.mobile-open .mobile-nav-cta {
    display: flex !important; width: 100%; justify-content: center;
  }

  #beranda { padding: 88px 20px 52px; min-height: auto; }
  .hero-h1 { font-size: clamp(38px, 10vw, 56px); white-space: normal; }
  .hero-title-sub { font-size: clamp(24px, 7vw, 36px); }
  .hero-desc { font-size: 16px; max-width: 640px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 0; padding-top: 28px; margin-top: 0; }
  .hero-stats .stat-item {
    padding: 16px 0; border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .hero-stats .stat-item:last-child { border-bottom: none; }

  .section-wrap { padding: 56px 20px; }
  .pohon-visual { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #pohon-kelapa .pohon-visual { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #pohon-kelapa .pohon-stat-cell {
    display: block;
    padding: 20px 14px;
    text-align: center;
  }
  #pohon-kelapa .pohon-stat-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
  }
  #pohon-kelapa .pohon-stat-num {
    font-size: 12px;
    margin-bottom: 4px;
  }
  #pohon-kelapa .pohon-stat-label {
    max-width: 160px;
    margin: 0 auto;
    font-size: 11.5px;
    line-height: 1.38;
  }

  .produk-grid { grid-template-columns: 1fr; }

  .tentang-mini-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .tentang-mini-row .tentang-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px;
  }
  .tentang-mini-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
  }
  .tentang-mini h4 { font-size: 13px; }
  .tentang-mini p { font-size: 12px; line-height: 1.35; }

  .kontak-top { grid-template-columns: 1fr; }
  .kontak-divider-v { display: none; }
  .kontak-item {
    flex-direction: column;
    padding: 24px;
    text-align: center;
  }
  .kontak-item > div:last-child {
    width: min(240px, 100%);
  }
  .kontak-action-btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .kontak-item:first-child { border-bottom: 1px solid rgba(255,255,255,.06); }
  .kontak-bottom { flex-direction: column; padding: 24px; gap: 16px; }
  .btn-wa { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 20px 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; font-size: 12px; }
  .footer-brand-desc { max-width: 100%; }
}

@media (max-width: 480px) {
  .pohon-visual { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


/* Header image + moved hero content */
#beranda {
  min-height: 0;
  width: 100%;
  height: clamp(430px, 62vh, 620px);
  display: block;
  padding: 0;
  background-image: none;
  background-color: var(--g950);
}
#beranda::before,
#beranda::after {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  transform: none;
  mask-image: none;
  z-index: 2;
  display: block;
  pointer-events: none;
}
#beranda::before {
  background:
    linear-gradient(
      to bottom,
      rgba(11,21,18,.18) 0%,
      transparent 24%,
      transparent 70%,
      rgba(11,21,18,.30) 100%
    );
}
#beranda::after {
  background:
    radial-gradient(
      ellipse at center,
      transparent 52%,
      rgba(11,21,18,.10) 76%,
      rgba(11,21,18,.28) 100%
    );
}
.hero-slides {
  position: absolute;
  inset: 0;
  display: flex;
  width: 300%;
  overflow: hidden;
  transform: translateX(0);
  transition: transform .72s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.hero-slide {
  position: relative;
  flex: 0 0 33.333333%;
  width: 33.333333%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-slide:nth-child(1),
.hero-slide:nth-child(3) {
  object-position: 50% 70%;
}
.hero-slide:nth-child(2) {
  object-position: 58% 72%;
}
.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  background: rgba(11,21,18,.64);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.hero-nav:hover {
  background: var(--brass);
  border-color: var(--brass-lt);
  transform: translateY(-50%) scale(1.06);
}
.hero-nav:focus-visible {
  outline: 3px solid rgba(255,255,255,.75);
  outline-offset: 3px;
}
.hero-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
#hero-content {
  background: var(--g950);
  color: var(--white);
  text-align: center;
}
#hero-content .section-wrap {
  padding-top: 72px;
  padding-bottom: 84px;
}
#hero-content .hero-inner {
  margin: 0 auto;
}
#hero-content .hero-actions {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #beranda { height: clamp(360px, 54vh, 500px); }
  .hero-slide:nth-child(1),
  .hero-slide:nth-child(3) { object-position: 55% 70%; }
  .hero-slide:nth-child(2) { object-position: 64% 72%; }
}
@media (max-width: 768px) {
  #beranda { height: clamp(280px, 48vh, 390px); }
  .hero-slide:nth-child(1),
  .hero-slide:nth-child(3) { object-position: 62% 68%; }
  .hero-slide:nth-child(2) { object-position: 72% 70%; }
  .hero-nav {
    width: 40px;
    height: 40px;
  }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  #hero-content .section-wrap { padding: 52px 20px 60px; }
}
@media (max-width: 480px) {
  #beranda { height: clamp(240px, 62vw, 300px); }
  .hero-slide:nth-child(1),
  .hero-slide:nth-child(3) { object-position: 66% 66%; }
  .hero-slide:nth-child(2) { object-position: 76% 68%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slides { transition: none; }
}

/* Operational sections */
#kapasitas-pasokan {
  background: var(--ivory);
  color: var(--g950);
  position: relative;
}

#skema-transaksi {
  background: #0b1512;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#skema-transaksi .section-wrap {
  padding-bottom: 36px;
}

#skema-transaksi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
}

#mekanisme-logistik {
  background: var(--g950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#mekanisme-logistik::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
}

#mekanisme-logistik .section-label-line {
  background: var(--brass-lt);
}

#mekanisme-logistik .section-label span {
  color: var(--brass-lt);
}

#mekanisme-logistik .section-h2.on-light {
  color: var(--white);
}

#mekanisme-logistik .section-h2.on-light em {
  color: var(--g300);
}

#mekanisme-logistik .ops-lead {
  color: rgba(255,255,255,.86);
}

#mekanisme-logistik .ops-card,
#mekanisme-logistik .ops-flow {
  background: var(--g900);
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 22px 54px rgba(0,0,0,.18);
}

#mekanisme-logistik .ops-card h3,
#mekanisme-logistik .ops-step h4 {
  color: var(--white);
}

#mekanisme-logistik .ops-card strong {
  color: var(--brass-lt);
}

#mekanisme-logistik .ops-card p,
#mekanisme-logistik .ops-step p {
  color: rgba(255,255,255,.78);
}

#mekanisme-logistik .ops-step {
  background: var(--g800);
}

#mekanisme-logistik .ops-flow-title {
  background: var(--brass-lt);
  color: var(--g950);
}

#skema-transaksi .section-label-line {
  background: var(--brass-lt);
}

#skema-transaksi .section-label span {
  color: var(--brass-lt);
}

#skema-transaksi .section-h2.on-light {
  color: var(--white);
}

#skema-transaksi .section-h2.on-light em {
  color: var(--g300);
}

#skema-transaksi .ops-lead {
  color: rgba(255,255,255,.86);
}

#skema-transaksi .ops-payment-card,
#skema-transaksi .ops-flow {
  background: var(--g900);
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 22px 54px rgba(0,0,0,.18);
}

#skema-transaksi .ops-payment-card h3,
#skema-transaksi .ops-step h4 {
  color: var(--white);
}

#skema-transaksi .ops-payment-card p,
#skema-transaksi .ops-step p {
  color: rgba(255,255,255,.78);
}

#skema-transaksi .ops-payment-card strong {
  color: var(--brass-lt);
}

#skema-transaksi .ops-payment-icon,
#skema-transaksi .ops-step {
  background: var(--g800);
  color: var(--brass-lt);
}

#skema-transaksi .ops-payment-num {
  background: var(--brass-lt);
  color: var(--g950);
}

#skema-transaksi .ops-flow-title {
  background: var(--brass-lt);
  color: var(--g950);
}

.ops-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.ops-header .section-label {
  margin-bottom: 16px;
}

.ops-kicker {
  color: var(--brass);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ops-lead {
  color: var(--body-txt);
  font-size: 17px;
  line-height: 1.8;
  max-width: 660px;
  margin-top: 14px;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ops-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--ivory-3);
  border-radius: var(--r-md);
  padding: 26px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  box-shadow: 0 18px 50px rgba(11,21,18,.06);
}

.ops-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--g800);
  color: var(--brass-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.ops-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.ops-card h3 {
  color: var(--g950);
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.ops-card strong {
  color: var(--g700);
  font-weight: 700;
}

.ops-card p {
  color: var(--body-txt);
  font-size: 15px;
  line-height: 1.75;
}

.ops-flow {
  margin-top: 34px;
  border: 1px solid var(--ivory-3);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.78);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(11,21,18,.05);
}

.ops-flow-title {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--g800);
  color: var(--brass-lt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ops-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ops-flow-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ops-step {
  position: relative;
  padding: 18px 14px;
  border-radius: var(--r-sm);
  background: var(--ivory);
  text-align: center;
  min-height: 148px;
}

.ops-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--g700);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ops-step h4 {
  color: var(--g950);
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 7px;
}

.ops-step p {
  color: var(--body-txt);
  font-size: 12.5px;
  line-height: 1.55;
}

.ops-commit {
  margin-top: 24px;
  background: var(--g800);
  border-radius: var(--r-md);
  padding: 22px 24px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}

.ops-commit-intro h3 {
  font-family: 'Playfair Display', serif;
  color: var(--brass-lt);
  font-size: 24px;
  margin-bottom: 6px;
}

.ops-commit-intro p,
.ops-commit-item span {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.55;
}

.ops-commit-item {
  border-left: 1px solid rgba(255,255,255,.16);
  padding-left: 16px;
}

.ops-commit-item strong {
  display: block;
  color: var(--brass-lt);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.ops-payment-list {
  display: grid;
  gap: 18px;
}

.ops-payment-card {
  display: grid;
  grid-template-columns: 44px 72px 1fr;
  gap: 22px;
  align-items: center;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--ivory-3);
  border-radius: var(--r-lg);
  padding: 24px;
}

.ops-payment-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.ops-payment-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-sm);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g800);
}

.ops-payment-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.ops-payment-card h3 {
  color: var(--g950);
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  margin-bottom: 8px;
}

.ops-payment-card p {
  color: var(--body-txt);
  line-height: 1.7;
}

.kontak-email-list,
.footer-email-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.footer-email-list a {
  white-space: nowrap;
}

.kontak-email-list a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.kontak-email-list a:hover,
.footer-email-list a:hover {
  color: var(--brass);
}
/* Contact light section */
#kontak {
  background: var(--white) !important;
  color: var(--g950);
}

#kontak::before {
  background: linear-gradient(90deg, transparent, var(--ivory-3), transparent) !important;
}

#kontak .section-h2,
#kontak .section-h2 em {
  color: var(--g950);
}

#kontak .kontak-header p {
  color: var(--body-txt) !important;
}

#kontak .kontak-panel {
  background: var(--ivory) !important;
  border-color: var(--ivory-3) !important;
  box-shadow: 0 18px 45px rgba(11,21,18,.08);
}

#kontak .kontak-divider-v,
#kontak .kontak-bottom {
  border-color: var(--ivory-3) !important;
}

#kontak .kontak-divider-v {
  background: var(--ivory-3) !important;
}

#kontak .kontak-icon {
  background: var(--white);
  border-color: var(--ivory-3);
}

#kontak .kontak-icon.em svg {
  stroke: var(--brass);
}

#kontak .kontak-label {
  color: var(--g950) !important;
}

#kontak .kontak-val {
  color: var(--g950) !important;
}

#kontak .kontak-val-sm {
  color: var(--body-txt) !important;
}

#kontak .trust-pill {
  color: var(--body-txt) !important;
}

#kontak .trust-pill svg {
  stroke: var(--brass) !important;
}

@media (max-width: 900px) {
  .ops-grid,
  .ops-flow-grid,
  .ops-flow-grid.four,
  .ops-commit {
    grid-template-columns: 1fr;
  }

  .ops-commit-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
    padding-left: 0;
    padding-top: 14px;
  }

  .ops-payment-card {
    grid-template-columns: 44px 1fr;
  }

  .ops-payment-icon {
    display: none;
  }

  .contact-modal {
    padding: 24px;
  }

  .contact-modal-card {
    width: min(680px, 100%);
    max-height: min(86dvh, 720px);
  }

  .contact-modal-head {
    flex: 0 0 auto;
    padding: 22px 24px 18px;
  }

  .contact-modal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 24px 24px;
  }

  .contact-link {
    min-height: 66px;
    padding: 14px;
  }

  .contact-modal-list.email-modal-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ops-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .ops-flow {
    padding: 22px;
  }

  .ops-payment-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-modal {
    padding: 12px 12px 0;
    align-items: flex-end;
  }

  .contact-modal-card {
    width: 100%;
    max-height: min(88dvh, 720px);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -16px 50px rgba(11,21,18,.28);
  }

  .contact-modal-head {
    position: relative;
    padding: 20px 60px 16px 18px;
  }

  .contact-modal-title {
    font-size: 23px;
  }

  .contact-modal-sub {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .contact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .contact-modal-list {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 14px 14px calc(18px + env(safe-area-inset-bottom));
  }

  .contact-link {
    min-height: 62px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 13px;
    border-radius: 12px;
  }

  .contact-link-icon {
    width: 40px;
    height: 40px;
  }

  .contact-link-name {
    font-size: 14px;
  }

  .contact-link-value {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .email-modal-list .contact-link {
    grid-template-columns: 40px minmax(0, 1fr);
  }
}

@media (max-width: 380px) {
  .contact-modal {
    padding-left: 8px;
    padding-right: 8px;
  }

  .contact-modal-head {
    padding-left: 16px;
  }

  .contact-modal-list {
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-link {
    padding-left: 11px;
    padding-right: 11px;
  }
}

#galeri {
  position: relative;
  padding: 18px 0 39px;
  background: #0b1512;
  overflow: hidden;
}

#galeri .section-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

#galeri::before {
  content: none;
}

.galeri-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.galeri-header .section-label {
  justify-content: center;
}

#galeri .section-h2.on-light {
  color: #fff;
}

#galeri .section-h2.on-light em {
  color: #fff;
}

.galeri-carousel {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 68px;
}

.galeri-viewport {
  overflow: hidden;
  height: 300px;
}

.galeri-track {
  position: relative;
  height: 100%;
}

.galeri-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(340px, 48%);
  border: 0;
  padding: 0;
  background: #fffaf0;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.74);
  box-shadow: 0 16px 0 rgba(7,31,22,.9), 0 26px 48px rgba(0,0,0,.22);
  transition: transform .42s cubic-bezier(.22,.61,.36,1), opacity .28s ease;
}

.galeri-slide.is-active,
.galeri-slide.is-prev,
.galeri-slide.is-next {
  opacity: 1;
  pointer-events: auto;
}

.galeri-slide.is-active {
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
}

.galeri-slide.is-prev {
  z-index: 2;
  transform: translate(calc(-50% - 300px), -50%) scale(.82);
}

.galeri-slide.is-next {
  z-index: 2;
  transform: translate(calc(-50% + 300px), -50%) scale(.82);
}

.galeri-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: filter .28s ease;
}

.galeri-slide.is-prev img,
.galeri-slide.is-next img {
  filter: brightness(.62);
}

.galeri-nav {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(191,155,59,.38);
  border-radius: 999px;
  background: var(--green);
  color: var(--ivory);
  display: grid;
  place-items: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(-50%);
  box-shadow: 0 14px 28px rgba(7,31,22,.2);
  transition: transform .2s ease, background .2s ease;
}

.galeri-nav:hover {
  background: var(--brass);
  transform: translateY(-50%) scale(1.04);
}

.galeri-nav svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.galeri-prev { left: 0; }
.galeri-next { right: 0; }

.galeri-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.galeri-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(7,31,22,.32);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.galeri-dot.is-active {
  background: var(--brass);
  border-color: var(--brass);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,10,7,.74);
  backdrop-filter: blur(6px);
}

.gallery-modal-card {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 94vw;
  max-height: 88vh;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.gallery-modal-card img {
  display: block;
  max-width: 94vw;
  max-height: 88vh;
  object-fit: contain;
  background: transparent;
}

.gallery-modal-close {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #c62828;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal-nav {
  position: fixed;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(7,31,22,.88);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease;
}

.gallery-modal-nav:hover {
  background: var(--brass);
  transform: translateY(-50%) scale(1.04);
}

.gallery-modal-nav svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.gallery-modal-prev { left: 28px; }
.gallery-modal-next { right: 28px; }

@media (max-width: 760px) {
  #galeri {
    padding: 14px 0 33px;
  }

  .galeri-header {
    margin-bottom: 20px;
  }

  .galeri-carousel {
    max-width: 720px;
    padding: 0 48px;
  }

  .galeri-viewport {
    height: 250px;
  }

  .galeri-slide {
    width: min(280px, 52%);
  }

  .galeri-slide.is-prev {
    transform: translate(calc(-50% - 225px), -50%) scale(.8);
  }

  .galeri-slide.is-next {
    transform: translate(calc(-50% + 225px), -50%) scale(.8);
  }

  .galeri-nav {
    width: 38px;
    height: 38px;
  }

  .gallery-modal-close {
    top: 18px;
    right: 18px;
  }

  .gallery-modal-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-modal-prev { left: 16px; }
  .gallery-modal-next { right: 16px; }
}

@media (max-width: 520px) {
  .galeri-viewport {
    height: 210px;
  }

  .galeri-carousel {
    padding: 0 12px;
    padding-bottom: 56px;
  }

  .galeri-slide {
    width: 62%;
  }

  .galeri-slide.is-prev {
    transform: translate(calc(-50% - 165px), -50%) scale(.76);
  }

  .galeri-slide.is-next {
    transform: translate(calc(-50% + 165px), -50%) scale(.76);
  }

  .galeri-nav {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .galeri-nav:hover {
    transform: scale(1.04);
  }

  .galeri-prev { left: calc(50% - 52px); }
  .galeri-next { right: calc(50% - 52px); }

  .galeri-dots {
    margin-top: 18px;
  }
}
/* Final responsive contact modal */
.contact-modal { box-sizing: border-box; }
.contact-modal-card {
  width: min(680px, calc(100vw - 32px));
  max-width: 100%;
  max-height: min(86dvh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.contact-modal-head { flex: 0 0 auto; }
.contact-modal-list {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.contact-link { min-width: 0; }
.contact-link > span:last-child { min-width: 0; overflow: hidden; }
.contact-link-value { max-width: 100%; overflow-wrap: anywhere; word-break: break-word; }
@media (max-width: 900px) {
  .contact-modal { padding: 20px; }
  .contact-modal-card { width: min(680px, calc(100vw - 40px)); }
  .contact-modal-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-modal-list.email-modal-list { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .contact-modal { padding: 16px; align-items: center; }
  .contact-modal-card {
    width: min(680px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(11,21,18,.34);
  }
  .contact-modal-head { position: relative; padding: 24px 64px 20px 26px; }
  .contact-modal-close { position: absolute; top: 22px; right: 24px; width: 36px; height: 36px; }
  .contact-modal-title { font-size: 28px; }
  .contact-modal-sub { font-size: 13px; }
  .contact-modal-list,
  .contact-modal-list.email-modal-list {
    gap: 10px;
    padding: 20px 26px calc(24px + env(safe-area-inset-bottom));
  }
  .contact-modal-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-modal-list.email-modal-list { grid-template-columns: minmax(0, 1fr); }
  .contact-link,
  .email-modal-list .contact-link {
    min-height: 64px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 13px;
    border-radius: 11px;
  }
  .contact-link-icon { width: 38px; height: 38px; }
}
@media (max-width: 520px) {
  .contact-modal { padding: 12px; }
  .contact-modal-card {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 20px;
  }
  .contact-modal-head { padding: 20px 58px 16px 20px; }
  .contact-modal-close { top: 17px; right: 17px; }
  .contact-modal-title { font-size: 24px; }
  .contact-modal-list,
  .contact-modal-list.email-modal-list {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px 18px calc(20px + env(safe-area-inset-bottom));
  }
}



