
/*
  CV Kaza Jawara Jamur — Premium Modern Agribusiness Profile
  UI/UX style guide: clean, elegant, natural earthy tones.
*/

:root{
  --bg: #fbf6ea; /* krem hangat */
  --surface: rgba(255,255,255,.74);
  --surface-strong: rgba(255,255,255,.94);
  --text: #2b2018; /* coklat tua */
  --muted: rgba(43,32,24,.70);
  --muted-2: rgba(43,32,24,.55);

  --cream: #f3ead5;
  --beige: #efe0c4;
  --brown: #7a533a;
  --cocoa: #4a2b20;

  /* Accent diubah jadi dominan coklat (bukan olive/hijau) */
  --olive: var(--brown);
  --olive-soft: rgba(122,83,58,.14);
  --olive-2: #6a3f2a;

  --shadow: 0 18px 50px rgba(74, 43, 32, .12);
  --shadow-soft: 0 10px 30px rgba(74, 43, 32, .10);
  --border: rgba(74, 43, 32, .12);

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1180px;

  --ease: cubic-bezier(.2,.8,.2,1);
  --trans: 220ms var(--ease);
  --trans-slow: 420ms var(--ease);
}


*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(111,122,58,.10), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(107,78,61,.10), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  top: 10px; left: 10px;
  transform: translateY(-200%);
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  z-index: 9999;
  transition: transform var(--trans);
}
.skip-link:focus{ transform: translateY(0); }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner{
  width: min(var(--container), calc(100% - 32px));
  margin: 10px auto;
  padding: 12px 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(122,83,58,.18);
  backdrop-filter: blur(10px);
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans);
}

.site-header.scrolled .nav-inner{
  background: rgba(255,255,255,.78);
  border-color: rgba(122,83,58,.16);
  box-shadow: 0 12px 30px rgba(43, 32, 24, .10);
}

.brand{ display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark{
  width: 44px; height: 44px;
  border-radius: 16px;
  background: transparent;
  border: none;
  display: grid; place-items: center;
  color: var(--olive-2);
}
.brand-mark img{ width: 100%; height: 100%; object-fit: contain; background: transparent; }
.brand-mark i{ font-size: 18px; }
.brand-text{ display: grid; line-height: 1.2; }
.brand-name{ font-weight: 800; letter-spacing: -.02em; font-size: 14px; }
.brand-tag{ font-size: 12px; color: var(--muted); font-weight: 600; }

.nav{ display: flex; align-items: center; gap: 22px; }
.nav-link{
  position: relative;
  text-decoration: none;
  color: rgba(31,42,36,.84);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 2px;
  transition: color var(--trans);
}
.nav-link:after{
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--olive-2), rgba(107,78,61,.7));
  border-radius: 99px;
  transition: width var(--trans);
}
.nav-link:hover{ color: var(--text); }
.nav-link:hover:after{ width: 100%; }

.nav-cta{
  border: 1px solid rgba(40,60,45,.12);
  background: rgba(255,255,255,.70);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--trans), background var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.nav-cta i{ color: var(--olive-2); }
.nav-cta:hover{ transform: translateY(-1px); background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); }

.hamburger{
  display: none;
  width: 46px; height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.hamburger span{
  display: block;
  height: 2px;
  width: 20px;
  margin: 6px auto;
  background: rgba(31,42,36,.82);
  border-radius: 10px;
  transition: transform var(--trans), opacity var(--trans);
}

.mobile-drawer{
  position: fixed;
  inset: 0;
  background: rgba(5, 11, 8, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
  z-index: 100;
}
.mobile-drawer[data-open="true"]{
  opacity: 1;
  pointer-events: auto;
}
.drawer-content{
  position: absolute;
  right: 14px;
  top: 14px;
  width: min(360px, calc(100% - 28px));
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(40,60,45,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 16px;
  transform: translateY(-10px) scale(.98);
  transition: transform var(--trans-slow);
}
.mobile-drawer[data-open="true"] .drawer-content{ transform: translateY(0) scale(1); }
.drawer-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 12px; }
.drawer-brand{ display:flex; align-items:center; gap: 10px; font-weight: 900; }
.drawer-brand i{ color: var(--olive-2); }
.drawer-close{
  width: 44px; height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(40,60,45,.12);
  background: rgba(255,255,255,.80);
  cursor: pointer;
}
.drawer-close i{ color: var(--cocoa); }
.drawer-link{
  display:block;
  text-decoration:none;
  padding: 12px 10px;
  border-radius: 14px;
  color: rgba(31,42,36,.90);
  font-weight: 800;
  transition: background var(--trans);
}
.drawer-link:hover{ background: rgba(111,122,58,.10); }
.drawer-cta{
  margin-top: 10px;
  width: 100%;
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(40,60,45,.12);
  background: rgba(255,255,255,.88);
  font-weight: 900;
  cursor: pointer;
  display:flex; align-items:center; justify-content:center; gap: 10px;
}

/* Hero */
.hero{
  position: relative;
  min-height: calc(100svh - 20px);
  display: grid;
  align-items: center;
  padding: 48px 0;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background: url("../images/8.jpg") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(251,250,247,.92) 0%, rgba(251,250,247,.72) 25%, rgba(111,122,58,.22) 60%, rgba(62,43,34,.12) 100%),
              radial-gradient(900px 420px at 20% 15%, rgba(111,122,58,.35), transparent 60%),
              radial-gradient(720px 360px at 85% 10%, rgba(107,78,61,.25), transparent 55%);
}

.hero-grid{ display:grid; grid-template-columns: 1.15fr .85fr; gap: 24px; position: relative; }
.hero-copy{ position: relative; z-index: 3; }
.hero-visual{ position: relative; z-index: 1; }
.hero-title{ font-size: clamp(30px, 4.2vw, 52px); margin: 12px 0 12px; letter-spacing: -.03em; line-height: 1.08; }
.hero-subtitle{ color: var(--muted); font-weight: 600; max-width: 58ch; margin: 0 0 18px; }

/* Hero logo (small brand mark shown above hero title on larger screens) */
.product-hero .hero-logo{
  width: 88px;
  height: auto;
  display: block;
  margin: 0 0 14px;
}
.product-hero .hero-logo[loading="lazy"]{ opacity: 1; }

.product-hero-title{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.product-hero-title .title-logo{
  width: 46px;
  height: auto;
  flex-shrink: 0;
}

/* Small subtitle above product hero heading */
.product-hero-katalog{
  font-size: clamp(13px, 1.6vw, 16px);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: none;
  margin: 0 0 10px 0;
  display: block;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(40,60,45,.12);
  box-shadow: 0 10px 30px rgba(20,30,22,.08);
  font-weight: 900;
  color: rgba(31,42,36,.92);
}
.badge i{ color: var(--olive-2); }

.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.btn{
  text-decoration: none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 900;
  border: 1px solid rgba(40,60,45,.12);
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans);
  color: var(--text);
}
.btn i{ color: inherit; }
.btn-primary{
  background: linear-gradient(135deg, rgba(111,122,58,.18), rgba(107,78,61,.14)), rgba(255,255,255,.85);
  box-shadow: 0 14px 40px rgba(44, 60, 41, .12);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 18px 55px rgba(44, 60, 41, .16); }
.btn-ghost{ background: rgba(255,255,255,.60); }
.btn-ghost:hover{ transform: translateY(-2px); background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); }
.btn-small{ padding: 10px 12px; border-radius: 14px; font-size: 13px; }

.hero-meta{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.meta-card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(20,30,22,.06);
}
.meta-top{ display:flex; align-items:center; gap: 10px; }
.meta-icon{
  width: 36px; height: 36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(111,122,58,.12);
  border: 1px solid rgba(111,122,58,.22);
  color: var(--olive-2);
}
.meta-title{ font-weight: 950; }
.meta-desc{ margin: 10px 0 0; color: var(--muted); font-weight: 650; }

.hero-visual{ display:flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 14px; }
.hero-art{
  width: min(420px, 100%);
  position: relative;
  z-index: 1;
}
.art-image{
  position: relative;
  z-index: 1;
  margin-top: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(40,60,45,.12);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.66);
  min-height: 340px;
}
.art-image img{
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transform: scale(1.01);
}

/* Unified page hero */
.page-hero,
.hero,
.product-hero,
.gallery-hero{
  position: relative;
  display: grid;
  align-items: center;
  padding: 72px 0 60px;
  min-height: calc(100svh - 24px);
  overflow: hidden;
}
.page-hero-bg,
.hero-bg,
.product-hero-bg,
.gallery-hero-bg{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251,250,247,.94) 0%, rgba(255,255,255,.88) 44%, rgba(107,78,61,.10) 100%);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}
.page-hero-bg--home{
  background-image: url("../images/8.jpg");
  background-size: cover;
  background-position: center;
}
.page-hero-bg--about{
  background-image: url("../images/timoperasional.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 480px;
}
.page-hero-bg--gallery{
  background-image: url("../images/7.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 480px;
}
.page-hero-bg--products{
  background-image: url("../images/9.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 480px;
}
.page-hero-bg--contact{
  background-image: url("../images/pengangkatanmedia.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 480px;
}

.page-hero-overlay,
.hero-overlay,
.product-hero-overlay,
.gallery-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,246,234,.95) 0%, rgba(251,246,234,.75) 35%, rgba(111,122,58,.10) 85%, rgba(62,43,34,.06) 100%);
}
.page-hero--home .page-hero-overlay{
  background: rgba(251,246,234,.5);
}
.page-hero:not(.page-hero--home){
  min-height: auto;
  padding: 72px 0 60px;
}

/* Smaller hero on secondary pages */
.page-hero:not(.page-hero--home) .page-hero-title{
  font-size: clamp(28px, 4.2vw, 46px);
  margin-bottom: 14px;
}
.page-hero:not(.page-hero--home) .page-hero-subtitle{
  font-size: .98rem;
  margin-bottom: 12px;
}
.page-hero:not(.page-hero--home) .hero-actions{
  margin-top: 6px;
}

.page-hero:not(.page-hero--home) .page-hero-inner{
  grid-template-columns: 1fr;
}
.page-hero:not(.page-hero--home) .page-hero-copy{
  width: min(720px, 100%);
}
.page-hero:not(.page-hero--home) .page-hero-visual{
  display: none;
}
@media (max-width: 980px){
  .page-hero:not(.page-hero--home) .page-hero-copy{
    width: 100%;
  }
}
.page-hero-inner,
.hero-grid{
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.page-hero-copy,
.hero-copy{
  width: min(760px, 100%);
}
.page-hero-visual,
.hero-visual{
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(40,60,45,.12);
  box-shadow: 0 10px 30px rgba(20,30,22,.08);
  font-weight: 900;
  color: rgba(31,42,36,.92);
  margin-bottom: 16px;
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.page-hero-title,
.hero-title{
  font-size: clamp(40px, 5vw, 62px);
  margin: 0 0 20px;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 900;
}
.page-hero-title .title-logo{
  width: 48px;
  height: auto;
  flex-shrink: 0;
}
.page-hero-subtitle,
.hero-subtitle{
  color: rgba(43,32,24,.78);
  font-size: 1.05rem;
  max-width: 70ch;
  margin: 0 0 18px;
  font-weight: 600;
}

.page-hero .badge,
.product-hero .badge,
.gallery-hero .badge{
  margin-bottom: 14px;
}

@media (max-width: 980px){
  .page-hero-inner,
  .hero-grid{ grid-template-columns: 1fr; gap: 22px; }
  .page-hero-copy,
  .hero-copy{ text-align: center; margin: 0 auto; }
  .page-hero-visual,
  .hero-visual{ align-items: center; }
}

@media (max-width: 680px){
  .page-hero{ padding: 56px 0 44px; }
  .page-hero-title,
  .hero-title{ font-size: clamp(32px, 7vw, 46px); }
  .page-hero-kicker{ width: fit-content; margin-left: auto; margin-right: auto; }
}

.art-card{
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(20,30,22,.10);
  backdrop-filter: blur(10px);
}
.art-card:nth-child(1){ top: -12px; left: -10px; transform: rotate(-2deg); width: 170px; }
.art-card:nth-child(2){ top: 120px; right: -10px; transform: rotate(2deg); width: 190px; }
.art-card:nth-child(3){ bottom: 20px; left: 20px; transform: rotate(-1deg); width: 200px; }
.art-number{ font-size: 26px; font-weight: 1000; letter-spacing: -.03em; }
.art-label{ color: rgba(31,42,36,.84); font-weight: 900; margin-top: 4px; }
.art-foot{ color: var(--muted); font-weight: 650; margin-top: 8px; font-size: 13px; }

.scroll-hint{ display:flex; align-items:center; gap: 10px; color: rgba(31,42,36,.72); font-weight: 900; }
.scroll-hint .dot{ width: 10px; height: 10px; border-radius: 50%; background: rgba(111,122,58,.45); box-shadow: 0 0 0 6px rgba(111,122,58,.12); animation: pulse 1.8s var(--ease) infinite; }
@keyframes pulse{ 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.12);} }

/* Sections */
.section{ padding: 74px 0; }
.section-tight{ padding-top: 34px; }
.section-alt{ background: linear-gradient(180deg, rgba(111,122,58,.06), transparent 55%), rgba(255,255,255,.0); }

.section-head{ display:grid; gap: 10px; margin-bottom: 26px; }
.section-head.section-head--compact{ margin-top: 26px; }
.section-head .overline{ display: inline-flex; text-transform: uppercase; letter-spacing: .18em; color: rgba(31,42,36,.76); font-weight: 900; font-size: 0.8rem; margin-bottom: 6px; }
.section-description{ color: var(--muted); font-size: 1.05rem; line-height: 1.85; margin: 0; max-width: 72ch; }
.h2{ font-size: clamp(24px, 2.6vw, 36px); margin: 0; letter-spacing: -.02em; }
.lead{ margin: 0; color: var(--muted); font-weight: 650; max-width: 72ch; }
.h3{ font-size: 22px; margin: 0 0 12px; letter-spacing: -.02em; }
.body{ color: var(--muted); font-weight: 650; margin: 0; }

.content-block,
.content-card,
.highlight-box,
.info-card,
.card-min,
.form{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(20,30,22,.08);
}
.content-block,
.content-card,
.highlight-box,
.card-min{
  padding: 28px;
}
.content-block{ margin-bottom: 28px; }
.content-grid{ display:grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-bottom: 28px; }
.content-card h3,
.content-block h3,
.highlight-content h3{ margin-top: 0; font-size: 1.45rem; color: var(--text); }
.content-card ul,
.content-block ul{ padding-left: 1.4rem; margin: 16px 0 0; }
.content-card li,
.content-block li{ margin-bottom: 0.9rem; }
.highlight-box{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: center; background: rgba(255,255,255,.86); }
.highlight-box .pill-soft{ margin-bottom: 16px; }
.highlight-image img{ width: 100%; height: auto; border-radius: var(--radius-lg); display: block; }
.intro-jargon{ max-width: 920px; margin: 24px auto 0; background: rgba(255,255,255,.9); border-left: 4px solid rgba(106,63,42,.95); padding: 18px 20px; border-radius: 16px; box-shadow: 0 16px 40px rgba(20,30,22,.06); }
.intro-jargon .jargon{ font-weight: 900; color: #4a2b20; margin: 0; font-size: 1rem; }
.intro-jargon .baku{ margin: 8px 0 0; color: var(--muted); font-size: .98rem; line-height: 1.75; }
.pie-chart-wrapper{ display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 28px; align-items: center; margin-top: 34px; }
.pie-chart{ width: 280px; height: 280px; border-radius: 50%; background: conic-gradient(#4caf50 0 40%, #2196f3 40 80%, #ffb300 80 100%); position: relative; box-shadow: 0 24px 60px rgba(15, 23, 42, .12); }
.pie-chart::after{ content: ""; position: absolute; inset: 26px; border-radius: 50%; background: rgba(251,250,247,.96); }
.pie-legend{ display:grid; gap: 16px; }
.pie-legend-item{ display:flex; gap: 12px; align-items: center; }
.pie-legend-dot{ width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; }
.pie-legend-item .label{ font-weight: 700; color: var(--text); }
.pie-legend-item .desc{ color: var(--muted); font-size: .95rem; }

/* Reveal on scroll */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* Split about */
.split{ display:grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items: start; }

.pill{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(40,60,45,.12);
  font-weight: 950;
  color: rgba(31,42,36,.92);
}
.pill i{ color: var(--olive-2); }
.pill-soft{ background: rgba(111,122,58,.10); border-color: rgba(111,122,58,.20); }

.media-frame{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(40,60,45,.12);
  box-shadow: var(--shadow);
  position: relative;
}
.media-frame img{ width: 100%; height: 390px; object-fit: cover; }
.media-badge{
  position:absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: 16px;
  padding: 10px 12px;
  font-weight: 950;
  display:flex; gap: 10px; align-items:center;
}
.media-badge i{ color: var(--olive-2); }

.media-stats{ margin-top: 14px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: 18px;
  padding: 14px;
}
.stat-num{ font-weight: 1000; letter-spacing: -.02em; }
.stat-label{ color: var(--muted); font-weight: 650; margin-top: 6px; font-size: 13px; }

.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.card-min{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: 18px;
  padding: 16px;
}
.card-title{ margin: 0 0 10px; font-weight: 1000; letter-spacing: -.01em; display:flex; gap: 10px; align-items:center; }
.card-title i{ color: var(--olive-2); }
.list{ margin: 0; padding-left: 18px; color: var(--muted); font-weight: 650; }
.list li{ margin: 8px 0; }

.advantages{ margin-top: 16px; }
.adv-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.adv{
  display:flex; align-items:center; gap: 12px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(40,60,45,.10);
  border-radius: 18px;
  padding: 14px;
}
.adv-icon{
  width: 40px; height: 40px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(111,122,58,.12);
  border: 1px solid rgba(111,122,58,.22);
  color: var(--olive-2);
}
.adv-text{ font-weight: 900; color: rgba(31,42,36,.88); }

.about-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* Cards grid products */
.cards-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.product-card{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(40,60,45,.12);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 50px rgba(20,30,22,.08);
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  position: relative;
}
.product-card:before{
  content:"";
  position:absolute; inset: 0;
  background: radial-gradient(600px 240px at 20% 0%, rgba(111,122,58,.18), transparent 55%);
  opacity: 0;
  transition: opacity var(--trans);
}
.product-card:hover{ transform: translateY(-4px); box-shadow: 0 24px 70px rgba(20,30,22,.14); background: rgba(255,255,255,.88); }
.product-card:hover:before{ opacity: 1; }

.product-media img{ width:100%; height: 190px; object-fit: cover; transform: scale(1.01); transition: transform 520ms var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.06); }

.product-body{ padding: 16px; position: relative; }
.product-title{ margin: 0 0 8px; font-size: 16px; font-weight: 1000; letter-spacing: -.01em; }
.product-desc{ margin: 0 0 14px; color: var(--muted); font-weight: 650; }
.product-actions{ display:flex; }

/* Gallery masonry */
.masonry{ columns: 4; column-gap: 16px; }
.gal-item{
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(40,60,45,.12);
  background: rgba(255,255,255,.7);
  box-shadow: 0 18px 50px rgba(20,30,22,.08);
  transform: translateZ(0);
  transition: transform var(--trans), box-shadow var(--trans);
}
.gal-item img{ width:100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 520ms var(--ease); }
.gal-item:hover{ transform: translateY(-3px); box-shadow: 0 26px 70px rgba(20,30,22,.14); }
.gal-item:hover img{ transform: scale(1.08); }

/* Team Section */
.section-intro{
  display:grid;
  gap: 14px;
  margin-bottom: 42px;
  text-align: center;
}
.section-title{
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
  letter-spacing: -.03em;
  line-height: 1.08;
  font-weight: 1000;
}
.section-subtitle{
  color: var(--muted);
  font-weight: 650;
  max-width: 70ch;
  margin: 0 auto;
  font-size: 16px;
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(20,30,22,.08);
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  display: flex;
  flex-direction: column;
}
.team-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(20,30,22,.16);
  background: rgba(255,255,255,.88);
}

.team-media{
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: rgba(111,122,58,.10);
  position: relative;
}
.team-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}
.team-card:hover .team-media img{
  transform: scale(1.08);
}

.team-body{
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.team-name{
  margin: 0;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -.01em;
  color: var(--text);
}

.team-role{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--olive-2);
  letter-spacing: -.0em;
}

/* Contact */
.contact-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items:start; }

.form{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(20,30,22,.08);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field{ display:grid; gap: 8px; margin-bottom: 12px; }
.field span{ font-weight: 950; color: rgba(31,42,36,.9); font-size: 13px; }
.field input, .field select, .field textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(40,60,45,.12);
  background: rgba(255,255,255,.86);
  padding: 12px 12px;
  font: inherit;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(111,122,58,.45);
  box-shadow: 0 0 0 6px rgba(111,122,58,.14);
  background: rgba(255,255,255,.98);
}

.form-actions{ display:flex; align-items:center; gap: 14px; flex-wrap: wrap; }
.form-note{ margin: 0; font-weight: 800; color: var(--olive-2); }

.section-actions{ display:flex; align-items:center; gap: 12px; flex-wrap: wrap; margin-top: 12px; justify-content: flex-start; }

.contact-info{ display:grid; gap: 16px; }
.info-card{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 18px 50px rgba(20,30,22,.08);
}
.info-row{ display:flex; gap: 12px; padding: 12px 0; border-bottom: 1px dashed rgba(40,60,45,.14); }
.info-row:last-child{ border-bottom: none; }
.info-icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  border: 1px solid rgba(40,60,45,.12);
  background: rgba(111,122,58,.10);
  color: var(--olive-2);
  flex: 0 0 auto;
}
.info-label{ margin: 0; font-size: 13px; font-weight: 950; color: rgba(31,42,36,.9); }
.info-text{ margin: 6px 0 0; color: var(--muted); font-weight: 650; }
.info-link{ display:inline-block; margin-top: 6px; color: var(--text); font-weight: 950; text-decoration: none; }
.info-link:hover{ text-decoration: underline; }

.social{ margin-top: 8px; }
.social-row{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.social-btn{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  border: 1px solid rgba(74,43,32,.18);
  background: rgba(255,255,255,.86);
  text-decoration: none;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans);
  color: rgba(43,32,24,.88);
}
.social-btn i{ font-size: 18px; line-height: 1; display:block; }
.social-btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.98);
  border-color: rgba(74,43,32,.28);
}


.map-card{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(40,60,45,.12);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 18px 50px rgba(20,30,22,.08);
}
.map-head{ display:flex; gap: 10px; align-items:center; margin-bottom: 10px; font-weight: 1000; }
.map-head i{ color: var(--olive-2); }
.map-wrap{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(40,60,45,.12);
}
.map-wrap iframe{ width: 100%; height: 240px; border: 0; }
.map-hint{ margin: 10px 0 0; color: var(--muted-2); font-weight: 650; font-size: 13px; }

/* Gallery Hero Section */
.gallery-hero{
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  overflow: hidden;
}

.gallery-hero-bg{
  position: absolute;
  inset: 0;
  background: url("../images/jamursegar1.jpeg") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.02) brightness(.86);
}

.gallery-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,22,.46) 0%, rgba(20,24,22,.22) 40%, rgba(251,246,234,.72) 100%);
}

.gallery-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 75ch;
}

.gallery-hero-title{
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 12px;
  letter-spacing: -.03em;
  line-height: 1.1;
  font-weight: 1000;
  color: #ffffff;
}

.gallery-hero-subtitle{
  font-size: 18px;
  color: rgba(255,255,255,.88);
  font-weight: 650;
  margin: 0;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery Section */
.gallery-section{
  padding: 74px 0;
}

/* Gallery Filter */
.gallery-filter-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 54px;
  flex-wrap: wrap;
}

.filter-label{
  font-weight: 1000;
  color: var(--text);
  font-size: 15px;
  letter-spacing: -.01em;
}

.gallery-filters{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn{
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(40,60,45,.18);
  background: rgba(255,255,255,.60);
  color: rgba(31,42,36,.78);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--trans);
  outline: none;
}

.filter-btn:hover{
  border-color: rgba(111,122,58,.35);
  background: rgba(255,255,255,.90);
  color: var(--text);
}

.filter-btn.active{
  background: linear-gradient(135deg, rgba(111,122,58,.18), rgba(107,78,61,.12));
  border-color: rgba(111,122,58,.45);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(111,122,58,.12);
}

/* Gallery Masonry Grid */
.gallery-masonry{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  grid-auto-rows: 240px;
}

.gallery-item{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(40,60,45,.12);
  box-shadow: 0 12px 36px rgba(20,30,22,.08);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), opacity 420ms var(--ease);
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.gallery-item:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(20,30,22,.16);
}


.gallery-item-media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(111,122,58,.10);
}

.gallery-item-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.gallery-item:hover .gallery-item-media img{
  transform: scale(1.12);
}

.gallery-item-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,30,22,.0) 0%, rgba(20,30,22,.35) 60%, rgba(20,30,22,.65) 100%);
  opacity: 0;
  transition: opacity 420ms var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 2;
}

.gallery-item:hover .gallery-item-overlay{
  opacity: 1;
}

.gallery-item-content{
  display: grid;
  gap: 6px;
}

.gallery-item-title{
  margin: 0;
  font-size: 16px;
  font-weight: 1000;
  color: rgba(255,255,255,.95);
  letter-spacing: -.01em;
}

.gallery-item-category{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.70);
  letter-spacing: .01em;
}

.gallery-item-expand{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.90);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all var(--trans);
  align-self: flex-start;
  margin-left: auto;
  opacity: 0;
  transform: scale(.8);
}

.gallery-item:hover .gallery-item-expand{
  opacity: 1;
  transform: scale(1);
}

.gallery-item-expand:hover{
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.50);
}

/* Lightbox Modal */
.gallery-lightbox{
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.gallery-lightbox[aria-hidden="false"]{
  display: flex;
}

.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 12, .60);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox-container{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(10,14,12,.40);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  max-height: 90vh;
  animation: lightboxSlideIn 420ms var(--ease);
}

@keyframes lightboxSlideIn{
  from{
    opacity: 0;
    transform: scale(.92);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(40,60,45,.18);
  background: rgba(255,255,255,.90);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: all var(--trans);
}

.lightbox-close:hover{
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 24px rgba(40,60,45,.16);
}

.lightbox-media{
  width: 100%;
  height: 100%;
  max-height: 60vh;
  overflow: hidden;
  background: rgba(111,122,58,.08);
}

.lightbox-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageFadeIn 420ms var(--ease);
}

@keyframes imageFadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}

.lightbox-info{
  padding: 24px;
  background: rgba(255,255,255,.98);
}

.lightbox-title{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -.01em;
  color: var(--text);
}

.lightbox-category{
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--olive-2);
  letter-spacing: .01em;
}

.lightbox-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 12px;
  gap: 12px;
}

.lightbox-prev, .lightbox-next{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(40,60,45,.18);
  background: rgba(255,255,255,.90);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all var(--trans);
  flex: 0 0 auto;
}

.lightbox-prev:hover, .lightbox-next:hover{
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 24px rgba(40,60,45,.12);
}

/* Footer */
.footer{
  padding: 46px 0 0;
}

/* Force all footer text to be satu warna */
.footer,
.footer *{
  color: var(--text) !important;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
  gap: 18px;
  padding-bottom: 18px;
  align-items: start;
}

/* Ensure footer columns align items to start and navigation stacks vertically */
.footer-col{ align-items: flex-start; }

.footer-grid-4{
  grid-template-columns: 1fr 0.9fr 1fr 0.7fr;
}

.footer-brand .muted{ max-width: 42ch; }

.footer-brand .brand-mini{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.brand-mini-mark{
  width: 48px; height: 48px;
  border-radius: 18px;
  background: transparent;
  border: none;
  display:grid; place-items:center;
  color: var(--olive-2);
}
.brand-mini-mark img{ width: 100%; height: 100%; object-fit: contain; background: transparent; }
.brand-mini-mark i{ font-size: 18px; }

.footer-col{
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col h4{
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: -.01em;
  font-weight: 1000;
}

.footer-col a{
  display:block;
  text-decoration:none;
  font-weight: 900;
  padding: 10px 0;
  line-height: 1.2;
  color: var(--text);
}

.footer-col a:hover{ text-decoration: underline; }

.footer-contact-list{
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.footer-text{
  margin: 8px 0 0;
  font-weight: 650;
}

.footer-link{ font-weight: 900; }

.muted{
  color: var(--text);
  font-weight: 650;
}

.footer-bottom{
  padding: 18px 0 26px;
  border-top: 1px solid rgba(74,43,32,.18);
  background: rgba(243,234,213,.55);
}

.footer-bottom-inner{
  display:flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}

.footer-bottom-inner > span{
  width: 100%;
}

/* Make social icons in footer match footer text color and simplify appearance */
.footer .social-btn,
.footer .social-btn i{
  color: var(--text) !important;
  background: transparent !important;
  border-color: rgba(74,43,32,.06) !important;
}

/* Footer responsive: pastikan navigasi terlihat stacked rapi ke bawah */
@media (max-width: 860px){
  .footer-grid{
    gap: 14px;
  }
}

@media (max-width: 720px){
  .footer-col a{
    padding: 12px 0;
  }
}

/* Modal */
.modal{ position: fixed; inset: 0; z-index: 200; display:none; }
.modal[data-open="true"]{ display:block; }
.modal-backdrop{ position:absolute; inset:0; background: rgba(10, 14, 12, .45); backdrop-filter: blur(6px); }
.modal-dialog{
  position: relative;
  width: min(720px, calc(100% - 28px));
  margin: 6vh auto;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(40,60,45,.14);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-dialog:before{
  content:"";
  position:absolute; inset: 0;
  background: radial-gradient(1000px 420px at 15% 0%, rgba(111,122,58,.16), transparent 55%),
              radial-gradient(820px 360px at 80% 10%, rgba(107,78,61,.16), transparent 55%);
  pointer-events:none;
}
.modal-body{ position: relative; padding: 18px 18px 20px; }
.modal-close{
  position:absolute;
  top: 12px; right: 12px;
  width: 44px; height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(40,60,45,.12);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  z-index: 1;
}
.modal-close i{ color: var(--cocoa); }
.modal-hero{ padding: 14px 6px 6px; }
.modal-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.modal-note{ margin: 14px 0 0; font-size: 13px; }

/* Responsive */
@media (max-width: 1020px){
  .cards-grid{ grid-template-columns: repeat(3, 1fr); }
  .masonry{ columns: 3; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ align-items: flex-start; }
  .art-card:nth-child(1){ left: 0; }
  .art-card:nth-child(2){ right: 0; }
  .art-image img{ height: 320px; }
  .team-grid{ grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry{ gap: 18px; }

}

@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .media-stats{ grid-template-columns: 1fr; }
  .adv-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry{ grid-template-columns: repeat(2, 1fr); gap: 16px; grid-auto-rows: 200px; }

  .gallery-filter-wrapper{ gap: 14px; }
  .gallery-filters{ gap: 10px; }
  .filter-btn{ padding: 9px 14px; font-size: 13px; }
}

@media (max-width: 720px){
  .nav{ display:none; }
  .hamburger{ display:block; }
  .cards-grid{ grid-template-columns: 1fr; }
  .masonry{ columns: 2; }
  .hero-meta{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gallery-masonry{ grid-template-columns: 1fr; gap: 14px; grid-auto-rows: 180px; }

  .gallery-hero{ min-height: 360px; padding: 40px 0; }
  .gallery-hero-title{ font-size: clamp(28px, 4.5vw, 40px); margin: 12px 0 10px; }
  .gallery-hero-subtitle{ font-size: 16px; }
  .gallery-filter-wrapper{ gap: 12px; flex-direction: column; }
  .filter-label{ margin-bottom: 8px; }
  .gallery-filters{ width: 100%; }
  .filter-btn{ flex: 1; min-width: 100px; }
  .lightbox-container{ max-height: 100vh; grid-template-rows: auto 1fr auto; }
  .lightbox-media{ max-height: 50vh; }
  .lightbox-info{ padding: 16px; }
  .lightbox-title{ font-size: 18px; }
}

/* ==========================================
   Product Page Styles (Katalog Premium)
   ========================================== */

/* Product Hero Section */
.product-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/9.jpg") center/cover no-repeat;
  filter: brightness(0.8) contrast(1.02);
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 43, 32, 0.45) 0%, rgba(251, 246, 234, 0.96) 100%);
}

.product-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 64ch;
  margin: 0 auto;
  padding: 0 18px;
}

.product-hero-title {
  font-size: clamp(30px, 4.4vw, 48px);
  margin: 18px 0 18px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text);
}

.product-hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 18px 0;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.product-hero .badge{ margin-bottom: 14px; }
.product-hero .hero-actions{ margin-top: 20px; display:flex; justify-content:center; gap:12px; }

@media (min-width: 1000px){
  .product-hero-content{ text-align:left; max-width: 62ch; }
  .product-hero{ padding: 120px 0 80px; }
}

/* Product Section */
.product-section {
  padding: 74px 0;
}

/* Filter Kategori */
.product-filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.product-filter-label {
  font-weight: 800;
  color: var(--text);
  font-size: 15px;
  letter-spacing: -0.01em;
}

.product-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(122, 83, 58, 0.2);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(43, 32, 24, 0.8);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--trans);
  outline: none;
}

.product-filter-btn:hover {
  border-color: rgba(122, 83, 58, 0.4);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.product-filter-btn.active {
  background: linear-gradient(135deg, var(--brown), var(--cocoa));
  border-color: var(--cocoa);
  color: #fff;
  box-shadow: 0 8px 24px rgba(74, 43, 32, 0.15);
}

/* Product Grid */
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Premium Card Design */
.premium-product-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 450ms var(--ease), box-shadow 450ms var(--ease), border-color 450ms var(--ease), opacity 400ms var(--ease), scale 400ms var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 1;
  transform: scale(1);
}

.premium-product-card.filtered-out {
  opacity: 0;
  transform: scale(0.95);
}

.premium-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(122, 83, 58, 0.3);
}

.premium-product-media {
  position: relative;
  width: 100%;
  padding-top: 66%; /* Aspect ratio 3:2 */
  overflow: hidden;
  background: var(--cream);
}

.premium-product-media img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.premium-product-card:hover .premium-product-media img {
  transform: scale(1.08);
}

.premium-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 43, 32, 0) 0%, rgba(74, 43, 32, 0.35) 100%);
  opacity: 0;
  transition: opacity 450ms var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.premium-product-card:hover .premium-product-overlay {
  opacity: 1;
}

.premium-product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  color: var(--cocoa);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  z-index: 2;
}

.premium-product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.premium-product-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.premium-product-desc {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 500;
  flex: 1;
}

.premium-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(74, 43, 32, 0.1);
}

.premium-product-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--brown);
}

.premium-product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  transition: all var(--trans);
  cursor: pointer;
}

.premium-product-btn:hover {
  background: var(--cream);
  border-color: rgba(122, 83, 58, 0.4);
  transform: translateY(-1px);
}

.premium-product-btn i {
  font-size: 11px;
  transition: transform var(--trans);
}

.premium-product-btn:hover i {
  transform: translateX(3px);
}

/* Product Highlight Section */
.product-highlight-section {
  background: linear-gradient(180deg, rgba(243, 234, 213, 0.3), rgba(251, 246, 234, 0.8));
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 40px;
}

.highlight-box {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.highlight-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--text);
  letter-spacing: -0.02em;
}

.highlight-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 28px 0;
  font-size: 15px;
}

.highlight-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments for products */
@media (max-width: 1020px) {
  .product-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .product-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .highlight-box {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  .highlight-image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 720px) {
  .product-catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-filter-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .product-filter-label {
    margin-bottom: 4px;
  }
  .product-filters {
    width: 100%;
  }
  .product-filter-btn {
    flex: 1;
    min-width: 110px;
    padding: 9px 14px;
    font-size: 13px;
  }
  .product-hero {
    min-height: 340px;
    padding: 40px 0;
  }
  .product-hero-title {
    font-size: clamp(28px, 4.5vw, 40px);
  }
  .product-hero-subtitle {
    font-size: 16px;
  }
}
