/* ════════════════════════════════════════════════════════════
   INDOSTAR — Percetakan & Custom Packaging Premium
   Palette dari logo: indigo #3F3D86 · red star #ED3338
   Type: Archivo (variable width) · Fraunces · Fragment Mono
   ════════════════════════════════════════════════════════════ */

:root {
  --ink:      #0B0B12;
  --ink-2:    #12121D;
  --ink-3:    #1B1B2A;
  --bone:     #EDE9E0;
  --muted:    #8E8C9A;
  --indigo:   #3F3D86;
  --indigo-2: #6C69C4;
  --red:      #ED3338;
  --line:     rgba(237, 233, 224, 0.13);
  --line-soft: rgba(237, 233, 224, 0.07);

  --font-sans: "Archivo", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-mono: "Fragment Mono", "Courier New", monospace;

  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --nav-h: 76px;
  --ease: cubic-bezier(0.65, 0.01, 0.15, 1);
  --radius: 18px;
  --radius-sm: 11px;
  /* Font UI ala Apple (SF Pro di perangkat Apple, Segoe UI di Windows) */
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", system-ui, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-sans);
  font-variation-settings: "wdth" 100;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--red); color: var(--ink); }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 300;
  background: var(--red); color: var(--ink);
  padding: 0.6rem 1rem; font-family: var(--font-mono); font-size: 0.8rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ─── Type voices ─── */
.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.serif { font-family: var(--font-serif); font-weight: 340; }
.serif em { font-style: italic; font-weight: 380; }

.h-display {
  font-family: var(--font-sans);
  font-variation-settings: "wdth" 85;
  font-weight: 560;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-bottom: 1.4rem;
}
.eyebrow--center { justify-content: center; width: 100%; text-align: center; }

.star-dot { color: var(--red); font-style: normal; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn--solid { background: var(--bone); color: var(--ink); }
.btn--solid:hover { background: var(--red); color: var(--bone); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--bone); }
.btn--ghost:hover { border-color: var(--bone); transform: translateY(-2px); }

/* ════════════ PRELOADER ════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
html:not(.js) .preloader { display: none; }

.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.preloader__o {
  font-family: var(--font-sans); font-variation-settings: "wdth" 80;
  font-weight: 640; font-size: clamp(3rem, 9vw, 5rem); line-height: 1;
  color: var(--red);
}
.preloader__count {
  font-family: var(--font-sans); font-variation-settings: "wdth" 82;
  font-weight: 560; font-size: clamp(2.6rem, 8vw, 4.8rem); line-height: 1;
}
.preloader__tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.3em; color: var(--muted); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════ NAV ════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, border-color 0.4s, transform 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav__inner {
  height: var(--nav-h);
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav__brand img { width: 128px; height: auto; }

.nav__links { display: flex; gap: 2.1rem; }
.nav__links a {
  font-family: var(--font-ui); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.02em;
  text-transform: none; color: var(--bone); opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}
.nav__links a:hover { opacity: 1; color: var(--red); }

.nav__right { display: flex; align-items: center; gap: 1rem; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--bone);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav__burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

/* ════════════ MOBILE MENU ════════════ */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink-2);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 2.5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  font-family: var(--font-sans); font-variation-settings: "wdth" 62;
  font-weight: 740; text-transform: uppercase;
  font-size: clamp(2.4rem, 10vw, 4rem); line-height: 1.16;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: 1rem;
  transition: color 0.3s;
}
.menu__links a:hover { color: var(--red); }
.menu__links em {
  font-family: var(--font-mono); font-style: normal; font-weight: 400;
  font-size: 0.7rem; letter-spacing: 0.15em; color: var(--red);
}
.menu__foot { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 38%;
  transform: scale(1.08);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,11,18,0.72) 0%, rgba(11,11,18,0.35) 42%, rgba(11,11,18,0.88) 100%),
    radial-gradient(ellipse at 22% 60%, rgba(63,61,134,0.28), transparent 55%);
}

.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 7rem;
}

.hero__eyebrow { display: block; margin-bottom: 1.6rem; color: var(--bone); opacity: 0.7; }

/* Judul INDOSTAR disembunyikan secara visual — branding datang dari foto hero.
   Tetap ada di DOM sebagai <h1> untuk SEO & pembaca layar. */
.hero__title {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.hero__row { display: flex; align-items: baseline; }
.hero__ch {
  display: inline-block;
  font-family: var(--font-sans);
  font-variation-settings: "wdth" 78;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
/* Huruf "O" pada INDOSTAR — merah, seperti di logo */
.hero__ch--o { color: var(--red); }

.hero__sub {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.35;
  max-width: 24ch;
  margin-top: 1.8rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.4rem; }

.hero__spec {
  position: absolute; z-index: 2;
  color: var(--bone); opacity: 0.65;
  font-family: var(--font-ui); font-weight: 500; letter-spacing: 0.04em;
}
.hero__spec--a { top: calc(var(--nav-h) + 3.2rem); right: var(--pad); text-align: right; }
.hero__spec--b { bottom: 8.5rem; right: var(--pad); writing-mode: vertical-rl; }
.hero__spec--c { bottom: 2.4rem; right: var(--pad); }

.hero__foot {
  position: absolute; z-index: 2;
  left: var(--pad); bottom: 2.4rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.hero__foot .mono { color: var(--bone); opacity: 0.6; }
.hero__line {
  display: block; width: 64px; height: 1px;
  background: var(--line);
  position: relative; overflow: hidden;
}
.hero__line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--red);
  transform: translateX(-100%);
  animation: sweep 2.2s var(--ease) infinite;
}
@keyframes sweep { 40% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* ════════════ MARQUEE ════════════ */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--ink);
}
.marquee__track { display: flex; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span {
  font-family: var(--font-sans); font-variation-settings: "wdth" 62;
  font-weight: 720; text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 233, 224, 0.35);
}
.marquee__track i { font-style: normal; color: var(--red); -webkit-text-stroke: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ════════════ ABOUT ════════════ */
.about { padding: clamp(5.5rem, 11vw, 10.5rem) var(--pad); }

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about__statement {
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.about__body {
  margin-top: 1.8rem;
  max-width: 52ch;
  color: var(--muted);
}
.about__body em { color: var(--bone); font-style: italic; }

.about__stats {
  margin-top: 3.2rem;
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 2.4rem;
  justify-content: start;
}
.stat { display: flex; flex-direction: column; gap: 0.45rem; }
.stat__num {
  font-family: var(--font-sans); font-variation-settings: "wdth" 62;
  font-weight: 760; font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1;
}
.stat__label { font-size: 0.62rem; }

.about__media { position: relative; }
.about__img { position: relative; overflow: hidden; }
.about__img img { width: 100%; object-fit: cover; }
.about__img--main img { aspect-ratio: 4 / 4.4; }
.about__img--main figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(11, 11, 18, 0.7); backdrop-filter: blur(6px);
  padding: 0.5rem 0.8rem; font-size: 0.62rem; color: var(--bone);
}
.about__img--float {
  position: absolute; width: 46%;
  right: -8%; bottom: -12%;
  border: 6px solid var(--ink);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* ════════════ STORY — accordion cerita & nilai (halaman Tentang) ════════════ */
.story { padding: clamp(3.5rem, 8vw, 7rem) var(--pad); }
.story__head { max-width: 62ch; margin-bottom: clamp(2.6rem, 5vw, 4.2rem); }
.story__title {
  font-size: clamp(1.9rem, 4vw, 3.3rem); line-height: 1.16; letter-spacing: -0.01em;
  margin: 0.9rem 0 1.4rem; max-width: 20ch;
}
.story__title em { color: var(--red); font-style: italic; }
.story__intro { color: var(--muted); line-height: 1.8; max-width: 56ch; }
.story__intro em { color: var(--bone); font-style: italic; }

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

/* --- daftar accordion --- */
.story__list { border-top: 1px solid var(--line); }
.story__item { border-bottom: 1px solid var(--line); }
.story__heading { margin: 0; font-weight: inherit; }
.story__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.15rem, 2.4vw, 1.7rem) 0;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  line-height: 1.2; color: var(--muted); text-align: left; cursor: pointer;
  transition: color 0.4s var(--ease);
}
.story__trigger:hover { color: var(--bone); }
.story__item.is-open .story__trigger { color: var(--bone); }
.story__chev {
  flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center;
  color: var(--muted); transition: transform 0.45s var(--ease), color 0.4s;
}
.story__chev svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.story__item.is-open .story__chev { transform: rotate(180deg); color: var(--red); }

.story__panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.story__item.is-open .story__panel { max-height: 360px; }
.story__panel-in { padding: 0; }
.story__desc {
  color: var(--muted); line-height: 1.8; max-width: 48ch;
  padding-bottom: clamp(1.2rem, 2.4vw, 1.7rem);
}
.story__desc em { color: var(--bone); font-style: italic; }
.story__media--inline { display: none; }

/* --- panel visual kanan (crossfade) --- */
.story__visual {
  position: relative;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 9;          /* default = media pertama (landscape); di-override per item aktif via JS */
  align-self: center;
  max-height: 80vh; background: var(--ink-3);
}
.story__figure {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.story__figure.is-active { opacity: 1; visibility: visible; }
.story__figure img,
.story__figure video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- strip statistik + nilai --- */
.story__stats {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid; grid-template-columns: repeat(4, auto); gap: 2.4rem;
  justify-content: center; text-align: center;
  padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line-soft);
}
.story__values {
  margin-top: 2.2rem; color: var(--muted);
  font-size: 0.72rem; letter-spacing: 0.04em; line-height: 1.9;
  padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
  text-align: center;
}

@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; gap: 0; }
  .story__visual { display: none; }
  .story__media--inline {
    display: block; overflow: hidden; border-radius: var(--radius-sm);
    margin: 0.2rem 0 1.5rem;
  }
  .story__media--inline img,
  .story__media--inline video { width: 100%; height: auto; object-fit: contain; display: block; max-height: 70vh; margin-inline: auto; }
  .story__item.is-open .story__panel { max-height: 760px; }
  .story__stats { grid-template-columns: repeat(2, auto); gap: 1.8rem 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .story__panel, .story__chev, .story__figure { transition: none; }
}

/* ════════════ SERVICES ════════════ */
.services {
  position: relative;
  padding: clamp(5.5rem, 11vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.services__head { padding: 0 var(--pad); margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.services__note { margin-top: 1.4rem; font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--muted); }
.services__note em { color: var(--bone); }

.services__list { border-top: 1px solid var(--line); }

.srow { border-bottom: 1px solid var(--line); }
.srow__link {
  display: flex; align-items: center; gap: clamp(1.2rem, 4vw, 3.5rem);
  padding: clamp(1.6rem, 3.4vw, 2.8rem) var(--pad);
  position: relative;
  transition: background 0.4s var(--ease);
}
.srow__link:hover { background: rgba(63, 61, 134, 0.14); }

.srow__no { color: var(--red); flex: 0 0 auto; }

.srow__body { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
.srow__title {
  font-family: var(--font-sans); font-variation-settings: "wdth" 62;
  font-weight: 750; text-transform: uppercase;
  font-size: clamp(1.9rem, 4.6vw, 4rem); line-height: 1;
  transition: transform 0.45s var(--ease), color 0.45s;
}
.srow__link:hover .srow__title { transform: translateX(0.35em); color: var(--bone); }
.srow__tags { font-size: 0.62rem; }

.srow__arrow {
  margin-left: auto;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: var(--muted);
  transition: transform 0.45s var(--ease), color 0.45s;
}
.srow__link:hover .srow__arrow { transform: translateX(0.4rem) rotate(-45deg); color: var(--red); }

.services__preview {
  position: fixed; z-index: 60;
  width: clamp(220px, 22vw, 340px); aspect-ratio: 4 / 5;
  top: 0; left: 0;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.services__preview img { width: 100%; height: 100%; object-fit: cover; }

/* ════════════ WORK (horizontal) ════════════ */
.work {
  padding: clamp(5.5rem, 11vw, 10rem) 0 0;
  overflow: clip;
}
.work__head {
  padding: 0 var(--pad);
  margin-bottom: clamp(2.2rem, 4.5vw, 4rem);
  display: flex; flex-wrap: wrap; align-items: end; gap: 1.5rem;
}
.work__head .h-display { margin-right: auto; }
.work__hint { padding-bottom: 0.6rem; }

.work__pin { position: relative; }

.work__track {
  display: flex; gap: clamp(1.2rem, 2.5vw, 2.2rem);
  padding: 0 var(--pad) 3.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.work__track::-webkit-scrollbar { display: none; }

/* saat di-pin oleh GSAP (desktop) */
.work__pin.is-pinned { height: 100vh; display: flex; align-items: center; overflow: hidden; }
.work__pin.is-pinned .work__track {
  overflow: visible; scroll-snap-type: none;
  padding-bottom: 0; width: max-content;
}

.wcard {
  flex: 0 0 auto;
  width: clamp(240px, 30vw, 420px);
  scroll-snap-align: start;
}
.wcard__img { overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink-3); }
.wcard__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.wcard:hover .wcard__img img { transform: scale(1.06); }

.wcard figcaption {
  margin-top: 0.9rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.wcard figcaption strong {
  font-family: var(--font-serif); font-weight: 380; font-style: italic;
  font-size: 1.2rem;
}

.wcard--cta { display: flex; }
.wcard--cta a {
  flex: 1;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.8rem;
  transition: border-color 0.4s, background 0.4s;
}
.wcard--cta a:hover { border-color: var(--red); background: rgba(237, 51, 56, 0.06); }
.wcard--cta .serif { font-size: clamp(1.7rem, 2.6vw, 2.4rem); line-height: 1.15; }
.wcard--cta .mono { color: var(--red); }

/* ════════════ WHY ════════════ */
.why {
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.why__grid {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
}
.why__media { overflow: hidden; }
.why__media img { aspect-ratio: 4 / 4.8; object-fit: cover; width: 100%; }

.why__title { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.14; max-width: 16ch; }

.why__list { margin-top: 2.6rem; display: flex; flex-direction: column; }
.why__list li {
  display: flex; gap: 1.2rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line-soft);
}
.why__star { color: var(--red); font-size: 0.85rem; line-height: 2; flex: 0 0 auto; }
.why__list strong {
  display: block;
  font-family: var(--font-sans); font-variation-settings: "wdth" 72;
  font-weight: 640; text-transform: uppercase; letter-spacing: 0.03em;
  font-size: 1rem; margin-bottom: 0.3rem;
}
.why__list p { color: var(--muted); font-size: 0.92rem; max-width: 46ch; }

.why__values {
  margin-top: 2.2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.62rem; line-height: 2;
}

/* ════════════ PROCESS ════════════ */
.process { padding: clamp(5.5rem, 11vw, 10rem) var(--pad); }
.process__head { margin-bottom: clamp(2.8rem, 5vw, 4.5rem); }

.process__steps {
  position: relative;
  max-width: 760px;
  padding-left: clamp(2.2rem, 5vw, 3.2rem);
}
.process__rail {
  position: absolute; left: 8px; top: 0.6rem; bottom: 0.6rem;
  width: 1px; background: var(--line);
}
.process__rail-fill {
  position: absolute; inset: 0;
  background: var(--red);
  transform-origin: top;
  transform: scaleY(0);
}
html:not(.js) .process__rail-fill { transform: scaleY(1); }

.pstep {
  position: relative;
  display: flex; gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: 1.5rem 0;
  opacity: 0.38;
  transition: opacity 0.5s var(--ease);
}
.pstep.is-active, html:not(.js) .pstep { opacity: 1; }
.pstep::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(2.2rem, 5vw, 3.2rem) + 4px);
  top: 2.1rem;
  width: 9px; height: 9px;
  background: var(--ink); border: 1.5px solid var(--muted);
  border-radius: 50%;
  transition: border-color 0.4s, background 0.4s;
}
.pstep.is-active::before { border-color: var(--red); background: var(--red); }

.pstep__no { color: var(--red); line-height: 2.2; }
.pstep__body strong {
  display: block;
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 0.3rem;
}
.pstep__body p { color: var(--muted); font-size: 0.93rem; max-width: 52ch; }

/* ════════════ TESTIMONI ════════════ */
.testi {
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  text-align: center;
}

.testi__stage { position: relative; max-width: 860px; margin: 0 auto; min-height: clamp(240px, 46vw, 320px); }
.testi__slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), visibility 0.7s;
}
.testi__slide.is-active { opacity: 1; visibility: visible; transform: none; }

.testi__quote { font-size: clamp(1.5rem, 3.4vw, 2.7rem); line-height: 1.25; }
.testi__who { color: var(--red); }

.testi__dots { display: flex; justify-content: center; gap: 0.7rem; margin-top: 2.2rem; }
.testi__dots button {
  width: 26px; height: 3px;
  background: var(--line);
  transition: background 0.3s;
}
.testi__dots button.is-active { background: var(--red); }

/* ════════════ CLIENTS ════════════ */
.clients { padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 7vw, 5.5rem); text-align: center; }
.clients__headline {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem); line-height: 1.15; color: var(--bone);
  max-width: 18ch; margin: clamp(0.7rem, 1.6vw, 1.1rem) auto clamp(2.6rem, 5.5vw, 3.8rem);
  padding: 0 var(--pad);
}
.clients__headline em { color: var(--red); font-style: italic; }

.clients__logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  padding: 0 var(--pad);
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.clients__logos figure {
  width: clamp(88px, 11vw, 128px); aspect-ratio: 1;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: clamp(11px, 1.4vw, 16px); box-sizing: border-box;
  border: 1px solid rgba(11, 11, 18, 0.06);
  filter: none; opacity: 1;
  transition: transform 0.4s var(--ease);
}
.clients__logos figure:hover { transform: translateY(-4px); }
.clients__logos img { width: 100%; height: 100%; object-fit: contain; display: block; }

.clients__marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 0.9rem 0;
}
.clients__track { display: flex; white-space: nowrap; width: max-content; animation: marquee 42s linear infinite; }
.clients__track span {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--muted);
}
.clients__track i { font-style: normal; color: var(--red); padding: 0 0.9rem; }

/* Roster nama PT (di bawah logo wall) */
.clients__roster {
  max-width: 1000px; margin: 0 auto; padding: clamp(2.2rem, 5vw, 3.4rem) var(--pad) 0;
}
.clients__roster-label { margin-bottom: clamp(1.3rem, 2.8vw, 1.9rem); }
.clients__roster-list {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.6rem clamp(1.2rem, 3vw, 2.6rem);
  max-width: 860px; margin: 0 auto; text-align: left;
}
.clients__roster-list li {
  position: relative; padding-left: 1.15rem;
  font-family: var(--font-ui); font-size: 0.9rem; line-height: 1.5;
  color: var(--muted); transition: color 0.3s var(--ease);
}
.clients__roster-list li::before {
  content: "\25c6"; position: absolute; left: 0; top: 0.42em;
  font-size: 0.5rem; color: var(--red);
}
.clients__roster-list li:hover { color: var(--bone); }

/* ════════════ CONTACT ════════════ */
.contact { padding: clamp(5.5rem, 11vw, 10rem) var(--pad); }

.contact__head { max-width: 900px; }
.contact__title { font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.08; }
.contact__sub { margin-top: 1.4rem; color: var(--muted); max-width: 46ch; }

.contact__sales {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
/* Satu kartu admin — di tengah, tampil menonjol */
.contact__sales--single { display: block; border: 0; padding: clamp(1rem, 3vw, 2.4rem) 0; }
.scard--feature {
  max-width: 440px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center; align-items: center; gap: 0.55rem;
  background: var(--ink-2);
}
.scard--feature:hover { border-color: var(--red); background: rgba(63, 61, 134, 0.14); transform: translateY(-3px); }
.scard__ic {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--red); color: #EDE9E0;
  display: grid; place-items: center; margin-bottom: 0.9rem;
}
.scard__ic svg { width: 34px; height: 34px; fill: currentColor; }
.scard--feature .scard__phone { font-size: 0.95rem; }
.scard--feature .scard__go { margin-top: 1.3rem; }
.scard {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: background 0.4s var(--ease);
  position: relative;
}
.scard:hover { background: rgba(63, 61, 134, 0.16); }
.scard__name {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}
.scard__phone { color: var(--muted); }
.scard__go {
  margin-top: 1.6rem; color: var(--red);
  transition: transform 0.35s var(--ease);
}
.scard:hover .scard__go { transform: translateX(0.35rem); }

.contact__info {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
.contact__label { color: var(--red); margin-bottom: 0.8rem; }
.contact__info p { color: var(--bone); font-size: 0.95rem; }
.contact__info a { border-bottom: 1px solid var(--line); transition: border-color 0.3s, color 0.3s; }
.contact__info a:hover { color: var(--red); border-color: var(--red); }
.contact__legal { color: var(--muted); font-size: 0.68rem; line-height: 2; }

/* ════════════ FOOTER ════════════ */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
  overflow: hidden;
}

.footer__mark {
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad) 0;
  display: flex; justify-content: center;
}
.footer__word {
  font-family: var(--font-sans);
  font-variation-settings: "wdth" 78;
  font-weight: 640; text-transform: uppercase;
  font-size: clamp(3.2rem, 15vw, 16rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: var(--ink-3);
  display: inline-flex; align-items: center;
  user-select: none;
}
/* Wordmark footer diwarnai seperti logo: INDO merah, STAR biru */
.footer__ind { color: var(--red); }
.footer__star { color: var(--indigo-2); }
:root[data-theme="light"] .footer__star { color: var(--indigo); }

.footer__grid {
  padding: clamp(2.8rem, 6vw, 4.5rem) var(--pad);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
  gap: 2.5rem;
  border-top: 1px solid var(--line-soft);
}
.footer__tag { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.footer__parent { display: flex; align-items: center; gap: 1.1rem; margin-top: 1.6rem; }
.footer__parent img { background: #fff; padding: 0.45rem 0.6rem; width: 110px; }
.footer__parent .mono { font-size: 0.6rem; line-height: 1.9; }

.footer__col { display: flex; flex-direction: column; gap: 0.65rem; align-items: flex-start; }
.footer__label { color: var(--red); margin-bottom: 0.5rem; }
.footer__col a { color: var(--muted); font-size: 0.92rem; transition: color 0.3s; }
.footer__col a:hover { color: var(--bone); }

.footer__base {
  padding: 1.4rem var(--pad) 1.8rem;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer__base .mono { font-size: 0.62rem; }

/* ════════════ WA FLOAT ════════════ */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(237, 51, 56, 0.35);
  transition: transform 0.35s var(--ease), opacity 0.4s, visibility 0.4s;
}
html.js .wa-float { opacity: 0; visibility: hidden; transform: translateY(12px); }
html.js .wa-float.is-visible { opacity: 1; visibility: visible; transform: none; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }

/* ════════════ REVEAL STATE AWAL (hanya kalau JS aktif) ════════════ */
html.js [data-reveal],
html.js [data-hero-fade] { opacity: 0; transform: translateY(26px); }
html.js [data-ch] { opacity: 0; transform: translateY(0.35em); }
html.js [data-lines] { opacity: 0; }
html.js.anim-ready [data-lines] { opacity: 1; }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 560px; }
  .about__stats { grid-template-columns: repeat(2, auto); gap: 1.8rem 3rem; }

  .why__grid { grid-template-columns: 1fr; }
  .why__media { max-width: 560px; }

  .contact__sales { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .nav__brand img { width: 104px; }
  .nav__cta { display: none; }

  .hero__spec--a { display: none; }
  .hero__spec--b { display: none; }
  .hero__sub { max-width: 20ch; }

  .about__img--float { right: 0; }

  .srow__tags { display: none; }
  .srow__link { gap: 1rem; }

  .contact__sales { grid-template-columns: 1fr; }
  .contact__info { grid-template-columns: 1fr; gap: 1.8rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__base { flex-direction: column; gap: 0.4rem; }
}

/* ════════════ REDUCED MOTION ════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js [data-reveal], html.js [data-hero-fade],
  html.js [data-ch], html.js [data-lines] { opacity: 1; transform: none; }
  .marquee__track, .clients__track { animation: none; }
  .process__rail-fill { transform: scaleY(1); }
  .pstep { opacity: 1; }
}

/* ════════════════════════════════════════════
   MULTI-PAGE ADDITIONS
   ════════════════════════════════════════════ */

/* Nav active state */
.nav__links a.is-active { color: var(--bone); }
.nav__links a.is-active::after {
  content: "◆"; color: var(--red);
  font-size: 0.5em; vertical-align: super; margin-left: 0.35em;
}
.menu__links a.is-active { color: var(--bone); }

/* Page hero (subhalaman) */
.phero {
  padding: calc(var(--nav-h) + clamp(4rem, 10vh, 7rem)) var(--pad) clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line-soft);
}
.phero__title { margin: 0.9rem 0 1.2rem; font-size: clamp(3rem, 9.5vw, 8.2rem); }
.phero__sub {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  max-width: 40ch;
}
.phero__sub em { color: var(--bone); }
.phero__meta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; color: var(--muted); margin-bottom: 0.4rem;
}

/* About page variant */
.about--page { padding-top: clamp(3.5rem, 7vw, 6rem); }
.about--page .about__body + .about__body { margin-top: 1.1rem; }
.about__more { margin-top: 2.2rem; }

/* Services: link kecil di note */
.services__all {
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.services__all:hover { color: var(--indigo-2); }

/* Detail layanan */
.sdetail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad);
  border-bottom: 1px solid var(--line-soft);
}
/* Nomor besar samar sebagai latar tiap layanan (keluar dari alur grid) */
.sdetail__ghost {
  position: absolute; top: clamp(0.4rem, 3vw, 2rem); right: var(--pad);
  z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--font-sans); font-variation-settings: "wdth" 62;
  font-weight: 800; line-height: 0.8;
  font-size: clamp(7rem, 20vw, 17rem);
  color: var(--bone); opacity: 0.05;
}
.sdetail__media, .sdetail__copy { position: relative; z-index: 1; }
.sdetail__media { overflow: hidden; }
.sdetail__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform 0.9s var(--ease);
}
.sdetail__media:hover img { transform: scale(1.04); }
.sdetail--flip .sdetail__media { order: 2; }
.sdetail__no { color: var(--red); letter-spacing: 0.14em; font-size: 0.72rem; }
.sdetail__title { font-size: clamp(2.4rem, 5.5vw, 4.6rem); margin: 0.7rem 0 1.1rem; }
.sdetail__desc { color: var(--muted); max-width: 46ch; line-height: 1.75; }
.sdetail__tags {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.55rem 0.6rem;
  margin: 1.5rem 0 1.9rem;
}
.sdetail__tags li {
  border: 1px solid var(--line);
  padding: 0.42rem 0.8rem;
  font-size: 0.68rem; letter-spacing: 0.12em;
  color: var(--muted);
}

/* Grid karya */
.wgrid-wrap { padding: clamp(3rem, 6vw, 5rem) var(--pad) clamp(4rem, 8vw, 7rem); }
.wgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
}
.gcard { margin: 0; }
.gcard--wide { grid-column: span 2; }
.gcard__img { overflow: hidden; background: var(--ink-2); }
.gcard__img img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
  transition: transform 0.9s var(--ease);
}
.gcard--wide .gcard__img img { aspect-ratio: 21 / 9; }

/* Pemisah kategori di dalam grid portofolio */
.wgroup {
  grid-column: 1 / -1;
  display: flex; align-items: baseline; gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  margin-top: clamp(1.5rem, 3vw, 2.6rem);
}
.wgroup:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.wgroup__no { color: var(--red); font-size: 0.68rem; letter-spacing: 0.16em; }
.wgroup__name {
  font-family: var(--font-serif); font-weight: 450;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}
.wgroup__count { margin-left: auto; color: var(--muted); font-size: 0.64rem; letter-spacing: 0.14em; }
.gcard:hover .gcard__img img { transform: scale(1.045); }
.gcard figcaption { display: flex; flex-direction: column; gap: 0.25rem; padding-top: 0.85rem; }
.gcard figcaption .mono { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.12em; }
.gcard figcaption strong { font-family: var(--font-serif); font-weight: 450; font-size: 1.15rem; }

/* CTA band */
.ctaband {
  text-align: center;
  padding: clamp(5rem, 11vw, 8.5rem) var(--pad);
  border-top: 1px solid var(--line-soft);
}
.ctaband__title {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  margin: 1rem auto 2rem;
  max-width: 16ch;
}
.ctaband__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* Kontak halaman sendiri */
.contact--page { padding-top: clamp(3rem, 6vw, 5rem); }
.contact--page .contact__info { grid-template-columns: repeat(4, 1fr); }
.contact__map { color: var(--red); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.12em; }
.contact__map:hover { color: var(--bone); }

/* Induk perusahaan */
.parentco { padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad); border-top: 1px solid var(--line-soft); }
.parentco__inner {
  display: flex; align-items: center; gap: clamp(1.6rem, 4vw, 3.2rem);
  max-width: 880px; margin: 0 auto;
}
.parentco__inner > img { background: #fff; padding: 10px; flex-shrink: 0; }
.parentco__label { color: var(--red); letter-spacing: 0.14em; font-size: 0.7rem; margin-bottom: 0.5rem; }
.parentco__title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 0.7rem; }
.parentco__body { color: var(--muted); max-width: 52ch; }

/* ════════════ LEGALITAS ════════════ */
.legal { padding: clamp(4rem, 8vw, 7rem) var(--pad); border-top: 1px solid var(--line-soft); }
.legal__head { max-width: 58ch; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.legal__title { font-size: clamp(1.8rem, 3.8vw, 3rem); line-height: 1.15; margin: 0.9rem 0 1.1rem; }
.legal__title em { color: var(--red); font-style: italic; }
.legal__intro { color: var(--muted); line-height: 1.8; max-width: 52ch; }
.legal__grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(0.8rem, 1.6vw, 1.15rem);
}
.legal__item {
  flex: 1 1 220px; max-width: 300px;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--ink-2);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.legal__item:hover { border-color: rgba(237, 233, 224, 0.2); transform: translateY(-3px); }
.legal__label { font-size: 0.62rem; letter-spacing: 0.14em; color: var(--muted); }
.legal__val {
  font-family: var(--font-ui); font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--bone); font-variant-numeric: tabular-nums; line-height: 1.3; word-break: break-word;
}

/* Responsive halaman baru */
@media (max-width: 1024px) {
  .wgrid { grid-template-columns: repeat(2, 1fr); }
  .contact--page .contact__info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sdetail { grid-template-columns: 1fr; }
  .sdetail--flip .sdetail__media { order: 0; }
  .wgrid { grid-template-columns: 1fr; }
  .gcard--wide { grid-column: span 1; }
  .gcard--wide .gcard__img img { aspect-ratio: 4 / 3; }
  .contact--page .contact__info { grid-template-columns: 1fr; }
  .parentco__inner { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════
   PAGE VEIL — transisi antar subhalaman (main.js)
   ════════════════════════════════════════════ */
.pveil {
  position: fixed; inset: 0; z-index: 250;
  background: var(--ink);
  pointer-events: none;
}

/* ════════════════════════════════════════════
   PETA KANTOR — MapLibre (kontak.html)
   ════════════════════════════════════════════ */
.omap { padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad); border-top: 1px solid var(--line-soft); }
.omap__head { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.omap__title { font-size: clamp(1.8rem, 4vw, 3rem); }
.omap__title em { color: var(--bone); }

.omap__frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
}
.omap__canvas { width: 100%; height: clamp(320px, 52vh, 540px); border: 0; display: block; }
.omap__open {
  position: absolute; left: 0; bottom: 0; z-index: 5;
  background: var(--red); color: var(--ink);
  padding: 0.7rem 1.1rem;
  font-size: 0.66rem; letter-spacing: 0.14em;
  transition: background 0.3s var(--ease);
}
.omap__open:hover { background: var(--bone); }

/* Marker bintang + pulse */
.omap-marker { position: relative; width: 30px; height: 30px; cursor: pointer; }
.omap-marker svg { position: relative; z-index: 2; width: 100%; height: 100%; }
.omap-marker__pulse {
  position: absolute; inset: -8px; border-radius: 50%;
  background: rgba(237, 51, 56, 0.32);
  animation: omapPulse 2.2s ease-out infinite;
}
@keyframes omapPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Popup — override tema default MapLibre */
.omap-popup .maplibregl-popup-content {
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 1rem 1.1rem;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.omap-popup .maplibregl-popup-tip { display: none; }
.omap-popup .maplibregl-popup-close-button { color: var(--muted); font-size: 1.1rem; padding: 0 0.4rem; }
.omap-popup .maplibregl-popup-close-button:hover { background: none; color: var(--red); }
.omap-popup__label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; color: var(--red); }
.omap-popup__name { font-family: var(--font-serif); font-size: 1.15rem; margin: 0.35rem 0 0.3rem; }
.omap-popup__addr { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.omap-popup__links { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.75rem; }
.omap-popup__link {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em;
  color: var(--bone); border-bottom: 1px solid var(--line); padding-bottom: 0.25rem;
  align-self: flex-start; transition: color 0.3s, border-color 0.3s;
}
.omap-popup__link:hover { color: var(--red); border-color: var(--red); }

/* ════════════════════════════════════════════
   HERO VIDEO — 9:16 native, cover per-viewport
   ════════════════════════════════════════════ */
.hero__bg video {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
}
/* Fallback statis: tampil sampai video siap, lalu disembunyikan JS */
.hero__bg .hero__fallback { position: absolute; inset: 0; }
.hero__bg.is-playing .hero__fallback { opacity: 0; transition: opacity 0.8s var(--ease); }

/* ════════════════════════════════════════════
   REELS — strip video 9:16 "di balik layar"
   ════════════════════════════════════════════ */
.reels { padding: clamp(4.5rem, 9vw, 8rem) var(--pad); border-top: 1px solid var(--line-soft); }
.reels__head {
  display: flex; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.reels__head .h-display { margin-right: auto; }
.reels__note { color: var(--muted); font-size: 0.95rem; max-width: 34ch; }

.reels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  gap: clamp(1rem, 2.2vw, 2rem);
  justify-content: center;
}
.reels__grid .reel__frame { max-height: 66vh; }

.reel { position: relative; margin: 0; }
.reel__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line);
  cursor: pointer;
  width: 100%;
  display: block;
  padding: 0;
}
.reel__frame img,
.reel__frame video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Preview bisu di atas poster — fade-in saat hover (desktop) */
.reel__preview {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.reel__frame:hover .reel__preview,
.reel__frame:focus-visible .reel__preview { opacity: 1; }

.reel__scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(11,11,18,0.15) 0%, rgba(11,11,18,0) 45%, rgba(11,11,18,0.82) 100%);
  pointer-events: none;
}
.reel__play {
  position: absolute; left: 50%; top: 50%; z-index: 3;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(237, 51, 56, 0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--bone);
  pointer-events: none;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.reel__frame:hover .reel__play { transform: translate(-50%, -50%) scale(1.12); }
.reel__play svg { width: 20px; height: 20px; margin-left: 3px; fill: currentColor; }

.reel__dur {
  position: absolute; right: 0.7rem; top: 0.7rem; z-index: 3;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em;
  background: rgba(11, 11, 18, 0.7); color: var(--bone);
  padding: 0.25rem 0.5rem;
  pointer-events: none;
}
.reel figcaption { display: flex; flex-direction: column; gap: 0.28rem; padding-top: 0.9rem; }
.reel figcaption .mono { color: var(--red); font-size: 0.62rem; letter-spacing: 0.14em; }
.reel figcaption strong { font-family: var(--font-serif); font-weight: 450; font-size: 1.1rem; }
.reel figcaption p { color: var(--muted); font-size: 0.86rem; line-height: 1.6; }

/* Reel tunggal tertanam di halaman lain — video di kiri, cerita di kanan */
.reels--single .reels__grid {
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4rem);
}
.reels--single .reels__copy { max-width: 46ch; }
.reels--single .reels__copy .h-display { font-size: clamp(1.9rem, 4vw, 3.2rem); }
.reels--single .reels__copy p {
  color: var(--muted); margin-top: 1.2rem; line-height: 1.75;
}
.reels--single .reels__copy em { color: var(--bone); font-family: var(--font-serif); }

/* ════════════ ATMO — pita suasana b-roll monokrom (Tentang) ════════════ */
.atmo {
  position: relative; height: clamp(320px, 66vh, 600px); overflow: hidden;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.atmo__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.atmo__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,18,0.45) 0%, rgba(11,11,18,0.15) 42%, rgba(11,11,18,0.88) 100%);
}
.atmo__cap { position: absolute; left: var(--pad); right: var(--pad); bottom: clamp(1.6rem, 4vw, 3rem); z-index: 2; }
.atmo__cap .eyebrow { color: rgba(237, 233, 224, 0.72); }
.atmo__line { color: #EDE9E0; font-size: clamp(1.5rem, 3.6vw, 2.8rem); line-height: 1.16; max-width: 22ch; margin-top: 0.55rem; }
.atmo__line em { color: var(--red); font-style: italic; }

/* ════════════ SYSSTRIP — di balik sistem (2 b-roll landscape) ════════════ */
.sysstrip { padding: clamp(4rem, 8vw, 7rem) var(--pad); }
.sysstrip__head { max-width: 58ch; margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.sysstrip__line { color: var(--muted); line-height: 1.75; margin-top: 0.7rem; max-width: 50ch; }
.sysstrip__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 2rem); }
.sysclip { margin: 0; }
.sysclip__video {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  border-radius: var(--radius); border: 1px solid var(--line); background: var(--ink-3);
}
.sysclip figcaption { margin-top: 0.85rem; color: var(--red); font-size: 0.62rem; letter-spacing: 0.14em; }
/* Embed video anniversary (16:9 responsif) */
.sysvideo {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-3);
}
.sysvideo iframe,
.sysvideo__player { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; object-fit: cover; background: #000; }

/* ════════════ BTS — Di Balik Layar (reel unggulan + 2 pendamping ke-align) ════════════ */
.bts__body {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 300px) minmax(0, 300px);
  grid-template-areas:
    "feature copy  copy"
    "feature mini1 mini2";
  column-gap: clamp(1.8rem, 4vw, 3.2rem);
  row-gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.bts__body > figure:nth-of-type(1) { grid-area: feature; }
.bts__body > figure:nth-of-type(2) { grid-area: mini1; }
.bts__body > figure:nth-of-type(3) { grid-area: mini2; }
.reel--feature { margin: 0; }
.reel--feature .reel__frame { aspect-ratio: 9 / 16; }
.bts__mini-item .reel__frame { aspect-ratio: 9 / 12; }
.bts__copy { grid-area: copy; align-self: center; }
.bts__copy .h-display { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.bts__copy p { color: var(--muted); margin-top: 1rem; line-height: 1.75; max-width: 48ch; }
.bts__copy em { color: var(--bone); font-family: var(--font-serif); font-style: italic; }

@media (max-width: 900px) {
  .bts__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "feature copy"
      "mini1   mini2";
  }
  .reel--feature { max-width: 380px; }
  .reel--feature .reel__frame { aspect-ratio: 9 / 12; }
  .sysstrip__grid { grid-template-columns: 1fr; gap: 1.4rem; }
}
@media (max-width: 620px) {
  .bts__body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "copy"
      "mini1"
      "mini2";
    max-width: 360px;
    margin-inline: auto;
  }
  .reel--feature { max-width: none; }
}

/* ════════════════════════════════════════════
   VIDEO MODAL — pemutar layar penuh
   ════════════════════════════════════════════ */
.vmodal {
  position: fixed; inset: 0; z-index: 220;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.vmodal.is-open { opacity: 1; visibility: visible; }
.vmodal__backdrop { position: absolute; inset: 0; background: rgba(6, 6, 10, 0.92); }
.vmodal__panel {
  position: relative; z-index: 2;
  max-width: min(430px, 92vw);
  width: 100%;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.45s var(--ease);
}
.vmodal.is-open .vmodal__panel { transform: none; }
.vmodal__panel video {
  width: 100%; height: auto;
  max-height: 82vh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
  border: 1px solid var(--line);
  display: block;
}
.vmodal__cap { display: flex; flex-direction: column; gap: 0.25rem; padding-top: 0.8rem; }
.vmodal__cap .mono { color: var(--red); font-size: 0.62rem; letter-spacing: 0.14em; }
.vmodal__cap strong { font-family: var(--font-serif); font-weight: 450; font-size: 1.15rem; }
.vmodal__close {
  position: absolute; right: -0.2rem; top: -2.6rem; z-index: 3;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--muted); transition: color 0.3s;
}
.vmodal__close:hover { color: var(--red); }

/* ════════════════════════════════════════════
   FINISHING — grid makro tekstur (layanan.html)
   ════════════════════════════════════════════ */
.finishing { padding: clamp(4.5rem, 9vw, 8rem) var(--pad); border-top: 1px solid var(--line-soft); }
.finishing__head { margin-bottom: clamp(2rem, 4vw, 3.2rem); max-width: 60ch; }
.finishing__note { margin-top: 1.2rem; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); }
.finishing__note em { color: var(--bone); font-family: var(--font-serif); }

.finishing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.2vw, 1.8rem);
}
.fcard { margin: 0; }
.fcard__img { overflow: hidden; background: var(--ink-2); aspect-ratio: 4 / 5; }
.fcard__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s var(--ease);
}
.fcard:hover .fcard__img img { transform: scale(1.06); }
.fcard figcaption { padding-top: 0.85rem; display: flex; flex-direction: column; gap: 0.3rem; }
.fcard figcaption .mono { color: var(--red); font-size: 0.62rem; letter-spacing: 0.14em; }
.fcard figcaption strong { font-family: var(--font-serif); font-weight: 450; font-size: 1.1rem; }
.fcard figcaption p { color: var(--muted); font-size: 0.84rem; line-height: 1.6; }

/* ════════════════════════════════════════════
   RESPONSIVE — bagian media baru
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .finishing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .reels__grid { grid-template-columns: 1fr; max-width: 380px; }
  .reels--single .reels__grid { grid-template-columns: 1fr; max-width: 380px; }
}
@media (max-width: 640px) {
  .finishing__grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .vmodal__close { top: auto; bottom: -2.4rem; right: 0; }
}

/* Hemat kuota / hemat baterai: jangan autoplay preview */
@media (prefers-reduced-motion: reduce) {
  .reel__preview { display: none; }
  .omap-marker__pulse { animation: none; }
}

/* ════════════════════════════════════════════
   ARTIKEL — listing (kartu) + detail (prose)
   ════════════════════════════════════════════ */
.blog-wrap { padding: clamp(2.5rem, 5vw, 4.5rem) var(--pad) clamp(4rem, 8vw, 7rem); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 2.8rem);
}
.bcard { display: flex; flex-direction: column; color: inherit; }
.bcard__media { display: block; overflow: hidden; background: var(--ink-2); aspect-ratio: 16 / 12; border: 1px solid var(--line); }
.bcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease); }
.bcard:hover .bcard__media img { transform: scale(1.05); }
.bcard__cat { margin-top: 1rem; color: var(--red); font-size: 0.62rem; letter-spacing: 0.16em; }
.bcard__title {
  font-family: var(--font-serif); font-weight: 450;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.25;
  margin: 0.5rem 0 0.6rem; transition: color 0.3s var(--ease);
}
.bcard:hover .bcard__title { color: var(--indigo-2); }
.bcard__excerpt { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.bcard__meta {
  margin-top: auto; padding-top: 1rem;
  color: var(--muted); font-size: 0.6rem; letter-spacing: 0.1em;
  display: flex; gap: 0.9rem;
}

/* Detail artikel */
.article__head {
  padding: calc(var(--nav-h) + clamp(3rem, 7vh, 5.5rem)) var(--pad) clamp(1.5rem, 3vw, 2.5rem);
  max-width: 860px;
}
.article__back { display: inline-block; margin-bottom: 1.3rem; color: var(--muted); font-size: 0.66rem; letter-spacing: 0.12em; transition: color 0.3s; }
.article__back:hover { color: var(--red); }
.article__cat { color: var(--red); font-size: 0.68rem; letter-spacing: 0.16em; }
.article__title { font-family: var(--font-serif); font-weight: 480; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.14; margin: 0.8rem 0 1rem; }
.article__meta { color: var(--muted); font-size: 0.66rem; letter-spacing: 0.1em; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.article__hero { padding: 0 var(--pad); margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.article__hero img { width: 100%; max-width: 1000px; margin: 0 auto; display: block; border: 1px solid var(--line); }

.article__body { max-width: 760px; margin: 0 auto; padding: 0 var(--pad) clamp(3rem, 6vw, 5rem); }
.article__body h2 { font-family: var(--font-serif); font-weight: 450; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.25; margin: 2.3rem 0 0.9rem; }
.article__body h3 { font-family: var(--font-sans); font-variation-settings: "wdth" 82; font-weight: 640; font-size: clamp(1.15rem, 2vw, 1.4rem); margin: 1.9rem 0 0.7rem; color: var(--bone); }
.article__body h3 strong { font-weight: 640; }
.article__body h4 { font-weight: 640; font-size: 1.05rem; margin: 1.4rem 0 0.5rem; color: var(--bone); }
.article__body p { color: #cfccd6; line-height: 1.85; margin-bottom: 1.1rem; }
.article__body ul, .article__body ol { margin: 0 0 1.3rem 0.2rem; display: flex; flex-direction: column; gap: 0.55rem; }
.article__body ul { list-style: none; }
.article__body ul li { position: relative; padding-left: 1.3rem; color: #cfccd6; line-height: 1.75; }
.article__body ul li::before { content: "◆"; position: absolute; left: 0; top: 0.4em; color: var(--red); font-size: 0.58rem; }
.article__body ol { list-style: decimal; padding-left: 1.3rem; }
.article__body ol li { color: #cfccd6; line-height: 1.75; padding-left: 0.3rem; }
.article__body a { color: var(--indigo-2); border-bottom: 1px solid var(--line); transition: color 0.3s, border-color 0.3s; }
.article__body a:hover { color: var(--red); border-color: var(--red); }
.article__body blockquote { border-left: 2px solid var(--red); padding-left: 1.2rem; margin: 1.6rem 0; font-family: var(--font-serif); font-style: italic; color: var(--bone); }
.article__body strong { color: var(--bone); }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════
   SUDUT TUMPUL — foto & kartu dibuat rounded biar
   lebih calm; garis struktur/teks/marquee tetap tajam.
   ════════════════════════════════════════════ */
.wcard__img,
.gcard__img,
.bcard__media,
.reel__frame,
.fcard__img,
.sdetail__media,
.why__media,
.about__img,
.services__preview,
.omap__frame,
.vmodal__panel video,
.article__hero img { border-radius: var(--radius); overflow: hidden; }

.clients__logos figure { border-radius: var(--radius-sm); }

/* Hero latar penuh & video preview reel tetap tajam (full-bleed) */
.hero, .hero__bg, .hero__bg img, .hero__bg video { border-radius: 0; }

/* ════════════════════════════════════════════════════════════
   TOMBOL TOGGLE (tema & bahasa) di nav
   ════════════════════════════════════════════════════════════ */
.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 0.55rem;
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--bone); opacity: 0.8;
  border: 1px solid var(--line); border-radius: 999px;
  transition: opacity 0.3s, color 0.3s, border-color 0.3s, background 0.3s;
}
.nav__toggle:hover { opacity: 1; border-color: currentColor; }
.nav__toggle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.9; }
:root[data-theme="dark"] .nav__toggle--theme .icon-moon { display: none; }
:root[data-theme="light"] .nav__toggle--theme .icon-sun { display: none; }

/* ════════════════════════════════════════════════════════════
   LIGHT MODE — override variabel + titik-titik hardcoded
   ════════════════════════════════════════════════════════════ */
:root[data-theme="light"] {
  --ink:       #F4F1EA;
  --ink-2:     #ECE8DF;
  --ink-3:     #DFDACE;
  --bone:      #17171F;
  --muted:     #6A6875;
  --line:      rgba(23, 23, 31, 0.15);
  --line-soft: rgba(23, 23, 31, 0.08);
}

/* Nav: bar blur saat scroll jadi terang */
:root[data-theme="light"] .nav.is-scrolled { background: rgba(244, 241, 234, 0.85); }

/* Hero tetap "gelap" (foto + veil gelap); teksnya tetap terang di kedua mode */
:root[data-theme="light"] .hero { color: #EDE9E0; }
:root[data-theme="light"] .hero__eyebrow,
:root[data-theme="light"] .hero__spec,
:root[data-theme="light"] .hero__foot .mono { color: #EDE9E0; }

/* Nav transparan di atas hero gelap (khusus homepage) → tetap terang */
:root[data-theme="light"] body:has(.hero) .nav:not(.is-scrolled) .nav__links a,
:root[data-theme="light"] body:has(.hero) .nav:not(.is-scrolled) .nav__toggle { color: #EDE9E0; }
:root[data-theme="light"] body:has(.hero) .nav:not(.is-scrolled) .nav__burger span { background: #EDE9E0; }

/* Teks tubuh artikel jadi gelap di light mode */
:root[data-theme="light"] .article__body p,
:root[data-theme="light"] .article__body ul li,
:root[data-theme="light"] .article__body ol li { color: #3B3A45; }

/* Bayangan tombol WA sedikit dilembutkan di light */
:root[data-theme="light"] .wa-float { box-shadow: 0 12px 30px rgba(237, 51, 56, 0.28); }

/* Hero selalu gelap (foto+veil) → tombol hero tetap gaya terang di light mode */
:root[data-theme="light"] .hero .btn--solid { background: #EDE9E0; color: #0B0B12; }
:root[data-theme="light"] .hero .btn--solid:hover { background: var(--red); color: #EDE9E0; }
:root[data-theme="light"] .hero .btn--ghost { color: #EDE9E0; border-color: rgba(237, 233, 224, 0.32); }
:root[data-theme="light"] .hero .btn--ghost:hover { border-color: #EDE9E0; }
