/* ==========================================================================
   CV SATRYA ANUGERAH SCAFFOLDING — Design System
   Industrial · Profesional · Modern · Terpercaya · Premium
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. FONTS (self-hosted — tanpa permintaan ke server pihak ketiga)
   -------------------------------------------------------------------------- */
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/archivo-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/archivo-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/archivo-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-style: normal; font-weight: 800; font-display: swap;
  src: url('../fonts/archivo-latin-800-normal.woff2') format('woff2'); }

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }

@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2'); }

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces — "ink & galvanised steel" */
  --ink:        #0A0B0D;
  --ink-2:      #101317;
  --ink-3:      #171B21;
  --ink-4:      #1F242B;
  --hairline:   rgba(255,255,255,.10);
  --hairline-2: rgba(255,255,255,.06);

  /* Light surfaces — "concrete" */
  --concrete:   #F1EFEA;
  --concrete-2: #E6E3DC;
  --concrete-3: #D6D2C9;

  /* Text */
  --on-ink:      #F4F5F7;
  --on-ink-dim:  #9AA3AE;
  --on-ink-faint:#5F6873;
  --on-light:    #14171B;
  --on-light-dim:#5A6169;

  /* Accent — signal orange (safety / high-vis) */
  --accent:      #FF4A17;
  --accent-hot:  #FF6A3D;
  --accent-deep: #C4330C;
  --accent-soft: rgba(255,74,23,.12);

  /* Support */
  --zinc:        #9FB0C0;
  --ok:          #37C08A;

  /* Type */
  --f-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --f-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --f-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Space */
  --gut: clamp(20px, 4vw, 64px);
  --sec: clamp(80px, 11vw, 168px);
  --max: 1440px;

  /* Motion */
  --e-out:  cubic-bezier(.16,1,.3,1);
  --e-in-out: cubic-bezier(.65,0,.35,1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01","cv11";
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: #fff; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.t-mega   { font-size: clamp(2.4rem, 7vw, 6.2rem); }
.t-xl     { font-size: clamp(2.25rem, 5.6vw, 4.9rem); }
.t-lg     { font-size: clamp(1.75rem, 3.4vw, 3.1rem); }
.t-md     { font-size: clamp(1.3rem, 2.1vw, 1.9rem); line-height: 1.06; }
.t-sm     { font-size: clamp(1.05rem, 1.4vw, 1.28rem); line-height: 1.2; letter-spacing: -.015em; }

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.62;
  color: var(--on-ink-dim);
  max-width: 58ch;
  text-wrap: pretty;
}
.lede--light { color: var(--on-light-dim); }

p { text-wrap: pretty; }

/* Technical / engineering-drawing labels */
.mono {
  font-family: var(--f-mono);
  font-size: .688rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.accent { color: var(--accent); }
.dim    { color: var(--on-ink-dim); }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.section { padding-block: var(--sec); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 104px); }

.bg-ink      { background: var(--ink);      color: var(--on-ink); }
.bg-ink-2    { background: var(--ink-2);    color: var(--on-ink); }
.bg-concrete { background: var(--concrete); color: var(--on-light); }
.bg-concrete h1, .bg-concrete h2, .bg-concrete h3, .bg-concrete h4 { color: var(--on-light); }

/* Section heading pattern: 01 — LABEL / big title */
.sec-head { margin-bottom: clamp(36px, 5vw, 72px); }
.sec-head__eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  color: var(--accent);
}
.sec-head__eyebrow .num { color: inherit; }
.sec-head__eyebrow .rule {
  flex: 1; height: 1px; max-width: 180px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.bg-concrete .sec-head__eyebrow .rule {
  background: linear-gradient(90deg, var(--accent), transparent);
}
.sec-head__label { color: var(--on-ink-dim); }
.bg-concrete .sec-head__label { color: var(--on-light-dim); }

.sec-head--split {
  display: grid; gap: clamp(24px, 4vw, 64px);
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .sec-head--split { grid-template-columns: 1.25fr .85fr; }
}

/* Hairline grid decoration */
.section > .wrap { position: relative; z-index: 1; }
.gridlines {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, var(--hairline-2) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  opacity: .8;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}
.bg-concrete .gridlines {
  background-image: linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .938rem;
  letter-spacing: -.01em;
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--e-out), box-shadow .35s var(--e-out);
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: #fff;
  transform: translateY(101%);
  transition: transform .45s var(--e-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(255,74,23,.55); }
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); }
.btn__ico { transition: transform .4s var(--e-out); flex: none; }
.btn:hover .btn__ico { transform: translateX(4px); }

.btn--wa { --btn-bg: #1FAF54; }
.btn--wa:hover { box-shadow: 0 12px 30px -12px rgba(31,175,84,.55); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--on-ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.btn--ghost:hover { color: var(--ink); box-shadow: inset 0 0 0 1px transparent; }

.btn--ghost-dark {
  --btn-bg: transparent; --btn-fg: var(--on-light);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
}
.btn--ghost-dark::before { background: var(--ink); }
.btn--ghost-dark:hover { color: #fff; box-shadow: inset 0 0 0 1px transparent; }

.btn--sm { padding: 12px 18px; font-size: .875rem; }
.btn--lg { padding: 22px 34px; font-size: clamp(1rem, 1.4vw, 1.18rem); }
.btn--block { display: flex; width: 100%; justify-content: center; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Text link with animated rule */
.tlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; font-size: .938rem;
  padding-bottom: 4px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 2px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .45s var(--e-out), color .3s;
}
.tlink:hover { background-size: 100% 2px; color: var(--accent); }
.tlink svg { transition: transform .4s var(--e-out); }
.tlink:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .5s var(--e-out), border-color .5s, backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10,11,13,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--hairline);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px;
}
.nav.is-stuck .nav__inner { height: 66px; }
.nav__inner { transition: height .4s var(--e-out); }

.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo__mark {
  width: 42px; height: 42px; flex: none;
  object-fit: contain;
  border-radius: 50%;
}
.nav.is-stuck .logo__mark { width: 38px; height: 38px; }
.logo__mark { transition: width .4s var(--e-out), height .4s var(--e-out); }
.foot .logo__mark { width: 54px; height: 54px; }
.logo__txt { line-height: 1.05; }
.logo__name {
  font-family: var(--f-display); font-weight: 800;
  font-size: .938rem; letter-spacing: -.02em; text-transform: uppercase;
  color: #fff;
}
.logo__sub {
  font-family: var(--f-mono); font-size: .563rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--on-ink-faint);
}

.nav__menu { display: none; align-items: center; gap: 4px; }
@media (min-width: 1080px) { .nav__menu { display: flex; } }
.nav__link {
  position: relative;
  padding: 9px 14px;
  font-size: .875rem; font-weight: 500;
  color: var(--on-ink-dim);
  transition: color .3s;
}
.nav__link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--e-out);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: #fff; }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { display: none; }
@media (min-width: 720px) { .nav__cta { display: inline-flex; } }

.nav__burger {
  display: grid; place-items: center; width: 44px; height: 44px;
  margin-right: -8px;
}
@media (min-width: 1080px) { .nav__burger { display: none; } }
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: #fff;
  transition: transform .4s var(--e-out), opacity .3s;
}
.nav__burger span + span { margin-top: 6px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 890;
  background: var(--ink);
  padding: 110px var(--gut) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--e-out);
  overflow-y: auto;
}
body.menu-open .drawer { clip-path: inset(0 0 0 0); }
.drawer__list li { border-bottom: 1px solid var(--hairline-2); }
.drawer__list a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 0;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.5rem, 6vw, 2.1rem); letter-spacing: -.03em;
  transition: color .3s, padding-left .4s var(--e-out);
}
.drawer__list a:hover { color: var(--accent); padding-left: 10px; }
.drawer__list .idx { font-family: var(--f-mono); font-size: .625rem; color: var(--on-ink-faint); letter-spacing: .16em; }
.drawer__foot { padding-top: 32px; display: grid; gap: 16px; }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 120px;
  overflow: hidden;
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.22) contrast(1.06) brightness(.74);
  transform: scale(1.06);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,11,13,.88) 0%, rgba(10,11,13,.34) 36%, rgba(10,11,13,.82) 78%, var(--ink) 100%),
    linear-gradient(90deg, rgba(10,11,13,.86) 0%, rgba(10,11,13,.06) 68%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}
.hero__inner { position: relative; z-index: 3; width: 100%; padding-bottom: clamp(28px, 4vw, 56px); }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 14px; margin-bottom: clamp(20px, 3vw, 30px);
  border: 1px solid var(--hairline);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  color: var(--on-ink-dim);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,74,23,.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,74,23,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(255,74,23,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,74,23,0); }
}

.hero h1 { max-width: 15ch; margin-bottom: clamp(20px, 2.6vw, 30px); }
.hero h1 { line-height: 1.02; }
.hero h1 .ln { display: block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.11em; }
.hero h1 .ln > span {
  display: block;
  transform: translateY(105%);
  animation: lineUp 1.05s var(--e-out) forwards;
}
.hero h1 .ln:nth-child(1) > span { animation-delay: .12s; }
.hero h1 .ln:nth-child(2) > span { animation-delay: .22s; }
.hero h1 .ln:nth-child(3) > span { animation-delay: .32s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__lede { max-width: 46ch; margin-bottom: clamp(26px, 3.4vw, 40px); color: #C7CDD5; }

.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; margin-top: clamp(44px, 6vw, 76px);
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
}
@media (min-width: 760px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }
.hero__stat { background: var(--ink); padding: 22px 18px 6px; }
.hero__stat .v {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem); letter-spacing: -.03em;
  line-height: 1; margin-bottom: 8px;
}
.hero__stat .k { color: var(--on-ink-faint); }

.scroll-cue {
  position: absolute; right: var(--gut); bottom: 28px; z-index: 4;
  display: none; align-items: center; gap: 12px;
  writing-mode: vertical-rl;
  color: var(--on-ink-faint);
}
@media (min-width: 1080px) { .scroll-cue { display: flex; } }
.scroll-cue .bar {
  width: 1px; height: 64px; background: var(--hairline); position: relative; overflow: hidden;
}
.scroll-cue .bar::after {
  content: ''; position: absolute; left: 0; top: 0; width: 1px; height: 24px;
  background: var(--accent); animation: cue 2s infinite var(--e-in-out);
}
@keyframes cue { 0% { transform: translateY(-24px); } 100% { transform: translateY(64px); } }

/* --------------------------------------------------------------------------
   8. STATEMENT BAND + MARQUEE
   -------------------------------------------------------------------------- */
.band {
  border-block: 1px solid var(--hairline);
  background: var(--ink-2);
  overflow: hidden;
}
.marquee { display: flex; overflow: hidden; user-select: none; padding-block: 22px; }
.marquee__track {
  display: flex; flex: 0 0 auto; gap: 0; align-items: center;
  animation: slide 42s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-100%); } }
.marquee__item {
  display: inline-flex; align-items: center; gap: 22px;
  padding-inline: 22px; flex: none;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(.95rem, 1.5vw, 1.22rem); letter-spacing: -.02em;
  color: var(--on-ink-dim); white-space: nowrap;
}
.marquee__item svg { color: var(--accent); flex: none; }

/* Statement block */
.statement { max-width: 22ch; }
.statement em { font-style: normal; color: var(--accent); }

/* --------------------------------------------------------------------------
   9. PLACEHOLDER / MEDIA SLOTS
   -------------------------------------------------------------------------- */
.media {
  position: relative; overflow: hidden;
  background: var(--ink-3);
  border-radius: 2px;
}
.media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--e-out), filter .6s;
}
.media--zoom:hover img { transform: scale(1.06); }

.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-4x3  { aspect-ratio: 4 / 3; }
.ratio-3x4  { aspect-ratio: 3 / 4; }
.ratio-1x1  { aspect-ratio: 1 / 1; }
.ratio-21x9 { aspect-ratio: 21 / 9; }

/* Styled placeholder — intentional, not broken */
.ph {
  position: relative;
  display: grid; place-content: center; gap: 10px;
  text-align: center;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.028) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px dashed rgba(255,255,255,.14);
  color: var(--on-ink-faint);
  border-radius: 2px;
  padding: 24px;
}
.ph--light {
  background:
    repeating-linear-gradient(135deg,
      rgba(0,0,0,.035) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, var(--concrete-2), var(--concrete));
  border-color: rgba(0,0,0,.18);
  color: var(--on-light-dim);
}
.ph__ico { justify-self: center; opacity: .5; }
.ph__label { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .16em; text-transform: uppercase; }
.ph__hint { font-size: .75rem; opacity: .7; max-width: 30ch; }

.media > .ph { position: absolute; inset: 0; }

/* Caption overlay on project media */
.media__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 10px; border-radius: 2px;
  background: rgba(10,11,13,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  color: #fff;
}

/* --------------------------------------------------------------------------
   10. GOOGLE REVIEWS
   -------------------------------------------------------------------------- */
.rev-top {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
  padding-bottom: clamp(32px, 4vw, 52px);
  border-bottom: 1px solid rgba(0,0,0,.1);
  margin-bottom: clamp(32px, 4vw, 52px);
}
@media (min-width: 900px) { .rev-top { grid-template-columns: auto 1fr auto; } }

.rev-score { display: flex; align-items: center; gap: 20px; }
.rev-score__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(3.4rem, 8vw, 5.4rem); line-height: .82; letter-spacing: -.05em;
}
.rev-score__meta { display: grid; gap: 7px; }
.stars { display: flex; gap: 3px; color: #F5A623; }
.rev-score__count { color: var(--on-light-dim); font-size: .875rem; }

.gbadge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  font-size: .813rem; font-weight: 600;
}

.rev-grid {
  display: grid; gap: 1px;
  grid-template-columns: 1fr;
  background: rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.1);
}
@media (min-width: 700px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .rev-grid { grid-template-columns: repeat(3, 1fr); } }
.rev-card {
  background: var(--concrete);
  padding: clamp(24px, 2.6vw, 34px);
  display: grid; gap: 16px; align-content: start;
  min-height: 250px;
  transition: background .4s var(--e-out);
}
.rev-card:hover { background: #fff; }
.rev-card__head { display: flex; align-items: center; gap: 12px; }
.rev-card__av {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-family: var(--f-display); font-weight: 800; font-size: .875rem;
}
.rev-card__name { font-weight: 600; font-size: .938rem; line-height: 1.25; }
.rev-card__when { font-size: .75rem; color: var(--on-light-dim); }
.rev-card__body { font-size: .938rem; line-height: 1.62; color: var(--on-light-dim); }
.rev-text { font-size: .938rem; line-height: 1.62; color: var(--on-light-dim); margin: 0; }

.rev-slot {
  border: 1px dashed rgba(0,0,0,.22);
  background: repeating-linear-gradient(135deg, rgba(0,0,0,.03) 0 2px, transparent 2px 11px);
  padding: 16px; border-radius: 2px;
  display: grid; gap: 9px;
}
.rev-slot .line { height: 9px; background: rgba(0,0,0,.1); border-radius: 99px; }
.rev-slot .line:nth-child(2) { width: 92%; }
.rev-slot .line:nth-child(3) { width: 74%; }

.notice {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: 2px;
  background: rgba(255,74,23,.08);
  border: 1px solid rgba(255,74,23,.24);
  border-left: 3px solid var(--accent);
  font-size: .875rem; line-height: 1.58;
}
.notice svg { flex: none; color: var(--accent); margin-top: 2px; }
.notice strong { font-weight: 650; }

/* Leave-a-review CTA strip */
.rev-cta {
  margin-top: clamp(32px, 4vw, 52px);
  display: grid; gap: 24px; align-items: center;
  grid-template-columns: 1fr;
  padding: clamp(28px, 3.4vw, 44px);
  background: var(--ink); color: var(--on-ink);
  border-radius: 2px;
  position: relative; overflow: hidden;
}
@media (min-width: 860px) { .rev-cta { grid-template-columns: 1fr auto; } }
.rev-cta h3, .bg-concrete .rev-cta h3 { color: var(--on-ink); margin-bottom: 8px; }
.rev-cta .lede { color: var(--on-ink-dim); }

/* --------------------------------------------------------------------------
   11. CLIENT WALL
   -------------------------------------------------------------------------- */
.clients {
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (min-width: 700px) { .clients { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .clients { grid-template-columns: repeat(4, 1fr); } }
.client {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding: clamp(18px, 2vw, 26px);
  min-height: 172px;
  display: grid; align-content: center; justify-items: center; gap: 12px;
  transition: background .45s var(--e-out);
}
.client__tile {
  width: 100%; max-width: 168px; aspect-ratio: 5 / 3;
  background: var(--concrete); border-radius: 3px;
  display: grid; place-items: center; padding: 10px;
  overflow: hidden;
  filter: saturate(.15) contrast(.94); opacity: .74;
  transition: filter .45s var(--e-out), opacity .45s var(--e-out);
}
.client:hover .client__tile { filter: none; opacity: 1; }
.client__tile img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.client__tile .ph {
  position: absolute; inset: 0; border: 0; background: none;
  font-family: var(--f-display); font-weight: 800; font-size: .82rem;
  letter-spacing: -.02em; color: var(--on-light); text-align: center;
  padding: 8px; line-height: 1.15; align-content: center;
}
.client::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--e-out);
}
.client:hover { background: var(--ink-3); }
.client:hover::before { transform: scaleX(1); }
.client__name {
  font-family: var(--f-display); font-weight: 700;
  font-size: .875rem; letter-spacing: -.015em;
  line-height: 1.15; text-align: center;
}
.client__meta {
  color: var(--on-ink-faint); font-size: .75rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .45s var(--e-out), transform .45s var(--e-out);
}
.client:hover .client__meta { opacity: 1; transform: translateY(0); }
@media (hover: none) { .client__meta { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   12. PROJECTS
   -------------------------------------------------------------------------- */
.proj-list { display: grid; gap: 1px; background: var(--hairline); border-block: 1px solid var(--hairline); }

.proj {
  position: relative;
  background: var(--ink);
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  transition: background .5s var(--e-out);
  overflow: hidden;
}
@media (min-width: 900px) { .proj { grid-template-columns: .95fr 1.05fr; } }
.proj:hover { background: var(--ink-3); }

.proj__media { position: relative; overflow: hidden; aspect-ratio: 4/5; }
@media (min-width: 900px) { .proj__media { aspect-ratio: auto; min-height: 580px; } }
.proj__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.55) contrast(1.05) brightness(.82);
  transition: transform 1.2s var(--e-out), filter .7s var(--e-out);
}
.proj:hover .proj__media img { transform: scale(1.05); filter: grayscale(0) contrast(1.03) brightness(.95); }

.proj__body {
  padding: clamp(28px, 4vw, 60px);
  display: grid; align-content: center; gap: 18px;
}
.proj__idx { color: var(--accent); }
.proj__title { letter-spacing: -.035em; }
.proj__specs {
  display: grid; gap: 1px; margin-top: 6px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--hairline-2);
  border: 1px solid var(--hairline-2);
}
.proj__spec { background: var(--ink); padding: 14px 16px; }
.proj:hover .proj__spec { background: var(--ink-3); }
.proj__spec { transition: background .5s var(--e-out); }
.proj__spec .k { color: var(--on-ink-faint); display: block; margin-bottom: 5px; }
.proj__spec .v { font-size: .875rem; font-weight: 550; }

/* --------------------------------------------------------------------------
   13. PRODUCTS — interactive scaffolding tower
   -------------------------------------------------------------------------- */
.tower-lab {
  display: grid; gap: clamp(28px, 3vw, 48px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) { .tower-lab { grid-template-columns: .82fr 1.18fr; } }

.tower-stage {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,74,23,.09), transparent 62%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: clamp(20px, 2.4vw, 34px);
  overflow: hidden;
}
.tower-stage::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(80% 70% at 50% 50%, #000, transparent);
}
.tower { position: relative; z-index: 2; width: 100%; height: auto; }

.tower g[data-part] { cursor: pointer; }
.tower g[data-part] .pc {
  stroke: #6E7A87; stroke-width: 5; stroke-linecap: round; fill: none;
  transition: stroke .35s var(--e-out), stroke-width .35s var(--e-out), filter .35s;
}
.tower g[data-part] .pc-fill {
  fill: #6E7A87; stroke: none;
  transition: fill .35s var(--e-out), filter .35s;
}
.tower g[data-part] .pc-thin { stroke: #6E7A87; stroke-width: 3.4; fill: none; stroke-linecap: round; transition: stroke .35s; }

.tower g[data-part].is-on .pc,
.tower g[data-part]:hover .pc {
  stroke: var(--accent); stroke-width: 6.5;
  filter: drop-shadow(0 0 10px rgba(255,74,23,.55));
}
.tower g[data-part].is-on .pc-fill,
.tower g[data-part]:hover .pc-fill {
  fill: var(--accent); filter: drop-shadow(0 0 10px rgba(255,74,23,.55));
}
.tower g[data-part].is-on .pc-thin,
.tower g[data-part]:hover .pc-thin { stroke: var(--accent); }

.tower .ground { stroke: rgba(255,255,255,.22); stroke-width: 1.5; stroke-dasharray: 5 6; }
.tower .hatch { stroke: rgba(255,255,255,.14); stroke-width: 1.2; }

.tower-stage__cap {
  position: relative; z-index: 2;
  margin-top: 14px; text-align: center; color: var(--on-ink-faint);
}

/* Component list */
.comp-list { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.comp {
  background: var(--ink-2);
  transition: background .35s var(--e-out);
}
.comp.is-on { background: var(--ink-3); }
.comp__btn {
  width: 100%; text-align: left;
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
  padding: 18px clamp(16px, 2vw, 24px);
}
.comp__no { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .14em; color: var(--on-ink-faint); }
.comp.is-on .comp__no { color: var(--accent); }
.comp__name {
  display: block;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(.95rem, 1.3vw, 1.1rem); letter-spacing: -.02em;
  line-height: 1.2;
}
.comp__spec { display: block; color: var(--on-ink-faint); font-size: .75rem; margin-top: 4px; font-family: var(--f-mono); letter-spacing: .06em; }
.comp__chev { color: var(--on-ink-faint); transition: transform .4s var(--e-out), color .3s; }
.comp.is-on .comp__chev { transform: rotate(90deg); color: var(--accent); }

.comp__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--e-out);
}
.comp.is-on .comp__panel { grid-template-rows: 1fr; }
.comp__panel > div { overflow: hidden; }
.comp__panel-in {
  padding: 0 clamp(16px, 2vw, 24px) 22px;
  display: grid; gap: 16px;
  border-top: 1px solid var(--hairline-2);
  margin-top: 0; padding-top: 18px;
}
.comp__desc { font-size: .938rem; color: var(--on-ink-dim); line-height: 1.6; max-width: 56ch; }
.comp__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px; border-radius: 2px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--hairline);
  font-family: var(--f-mono); font-size: .625rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-ink-dim);
}
.tag--ok { background: rgba(55,192,138,.1); border-color: rgba(55,192,138,.3); color: #6FD9B0; }

/* Product catalogue grid (produk.html) */
.cat-grid {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  background: var(--hairline); border: 1px solid var(--hairline);
}
.cat-card {
  background: var(--ink-2); display: grid; align-content: start;
  transition: background .4s var(--e-out);
}
.cat-card:hover { background: var(--ink-3); }
.cat-card__media { position: relative; aspect-ratio: 4/3; border-bottom: 1px solid var(--hairline); }
.cat-card__body { padding: 22px; display: grid; gap: 12px; align-content: start; }
.cat-card__name { font-family: var(--f-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -.02em; }
.cat-card__spec { font-family: var(--f-mono); font-size: .688rem; letter-spacing: .1em; color: var(--accent); }
.cat-card__desc { font-size: .875rem; color: var(--on-ink-dim); line-height: 1.58; }
.cat-card__foot { padding: 0 22px 22px; }

/* --------------------------------------------------------------------------
   14. CALCULATOR
   -------------------------------------------------------------------------- */
.calc {
  background: var(--ink-2);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  overflow: hidden;
}
.calc__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 16px clamp(18px, 2.2vw, 28px);
  border-bottom: 1px solid var(--hairline);
  background: var(--ink-3);
  flex-wrap: wrap;
}
.calc__steps { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 200px; }
.cstep {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: .625rem; letter-spacing: .12em;
  color: var(--on-ink-faint);
  transition: color .35s;
}
.cstep__dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  border: 1px solid var(--hairline);
  font-size: .625rem;
  transition: background .35s var(--e-out), border-color .35s, color .35s;
}
.cstep.is-done .cstep__dot { background: rgba(255,74,23,.18); border-color: var(--accent); color: var(--accent); }
.cstep.is-on { color: #fff; }
.cstep.is-on .cstep__dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.cstep__sep { width: 16px; height: 1px; background: var(--hairline); flex: none; }
@media (max-width: 640px) { .cstep__label { display: none; } .cstep__sep { width: 22px; } }

.calc__body { padding: clamp(24px, 3.2vw, 48px); min-height: 380px; }
.calc__panel { display: none; }
.calc__panel.is-on { display: block; animation: fadeUp .5s var(--e-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.calc__q { margin-bottom: 8px; }
.calc__hint { color: var(--on-ink-dim); font-size: .875rem; margin-bottom: 28px; }

.opt-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 176px), 1fr));
}
.opt {
  position: relative; text-align: left;
  padding: 20px 18px;
  background: var(--ink-3);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  display: grid; gap: 10px; align-content: start;
  transition: border-color .35s var(--e-out), background .35s, transform .35s var(--e-out);
}
.opt:hover { border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.opt.is-sel { border-color: var(--accent); background: rgba(255,74,23,.08); }
.opt__ico { color: var(--on-ink-faint); transition: color .3s; }
.opt.is-sel .opt__ico { color: var(--accent); }
.opt__name { font-family: var(--f-display); font-weight: 700; font-size: 1rem; letter-spacing: -.02em; }
.opt__sub { font-size: .75rem; color: var(--on-ink-faint); }
.opt__check {
  position: absolute; top: 14px; right: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  opacity: 0; transform: scale(.7);
  transition: opacity .3s, transform .3s var(--e-out);
  background: var(--accent); border-color: var(--accent);
}
.opt.is-sel .opt__check { opacity: 1; transform: scale(1); }

/* Field + slider */
.field-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.field { display: grid; gap: 9px; }
.field__label { color: var(--on-ink-dim); }
.field__input {
  width: 100%;
  padding: 15px 16px;
  background: var(--ink-3);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  font-family: var(--f-display); font-weight: 700; font-size: 1.12rem;
  letter-spacing: -.02em;
  transition: border-color .3s;
}
.field__input:focus { border-color: var(--accent); outline: none; }
.field__unit { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--on-ink-faint); pointer-events: none; }
.field__wrap { position: relative; }

.slider-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.slider-val {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: .85; letter-spacing: -.045em;
  color: var(--accent);
}
.slider-unit { font-family: var(--f-mono); font-size: .875rem; color: var(--on-ink-dim); letter-spacing: .1em; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px; background: var(--ink-4); border-radius: 99px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--ink-2);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 14px rgba(255,74,23,.4);
  cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--ink-2);
  box-shadow: 0 0 0 1px var(--accent);
  cursor: grab;
}
.slider-scale { display: flex; justify-content: space-between; margin-top: 10px; color: var(--on-ink-faint); }

.calc__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px clamp(18px, 2.2vw, 28px);
  border-top: 1px solid var(--hairline);
  background: var(--ink-3);
  flex-wrap: wrap;
}

/* Result */
.res-grid {
  display: grid; gap: clamp(24px, 3vw, 40px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .res-grid { grid-template-columns: .8fr 1.2fr; } }

.bom { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.bom__row {
  display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center;
  padding: 15px 18px; background: var(--ink-3);
}
.bom__row--head { background: var(--ink-4); }
.bom__name { font-size: .938rem; font-weight: 550; }
.bom__sub { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .1em; color: var(--on-ink-faint); margin-top: 2px; }
.bom__qty {
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.3rem; letter-spacing: -.03em; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.bom__unit { font-family: var(--f-mono); font-size: .625rem; color: var(--on-ink-faint); letter-spacing: .1em; margin-left: 6px; }

/* --------------------------------------------------------------------------
   15. DELIVERY MAP
   -------------------------------------------------------------------------- */
.map-lab {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink-2);
}
@media (min-width: 980px) { .map-lab { grid-template-columns: 380px 1fr; } }

.map-panel { padding: clamp(24px, 2.8vw, 36px); display: grid; gap: 22px; align-content: start; border-bottom: 1px solid var(--hairline); }
@media (min-width: 980px) { .map-panel { border-bottom: 0; border-right: 1px solid var(--hairline); } }

.map-node { display: grid; grid-template-columns: auto 1fr; gap: 14px; }
.map-node__rail { display: grid; justify-items: center; gap: 4px; }
.map-node__dot {
  width: 12px; height: 12px; border-radius: 50%; margin-top: 5px;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(255,74,23,.18);
}
.map-node__dot--end { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.14); }
.map-node__line { width: 1px; flex: 1; min-height: 34px; background: repeating-linear-gradient(180deg, var(--hairline) 0 4px, transparent 4px 9px); }
.map-node__k { color: var(--on-ink-faint); margin-bottom: 5px; }
.map-node__v { font-family: var(--f-display); font-weight: 700; font-size: 1rem; letter-spacing: -.02em; line-height: 1.25; }
.map-node__sub { font-size: .813rem; color: var(--on-ink-dim); margin-top: 3px; }

.map-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.map-metric { background: var(--ink-3); padding: 18px; }
.map-metric .v { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.035em; line-height: 1; margin-bottom: 7px; }
.map-metric .k { color: var(--on-ink-faint); }

.map-canvas {
  position: relative; min-height: 520px; overflow: hidden;
  background: linear-gradient(160deg, #0E1218, #090A0C);
}
.map-search svg, .map-legend svg { flex: none; width: 16px; height: 16px; }
.map-search {
  position: absolute; top: 18px; left: 18px; right: 18px; z-index: 1002;
  display: flex; gap: 10px; align-items: center;
  padding: 8px 8px 8px 14px; margin: 0;
  background: rgba(10,11,13,.82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  border-radius: 2px;
}
.map-search input { flex: 1; background: none; border: 0; outline: none; font-size: .875rem; }
.map-search input::placeholder { color: var(--on-ink-faint); }
.map-legend {
  position: absolute; bottom: 18px; left: 18px; z-index: 1001;
  display: grid; gap: 8px; pointer-events: none;
  padding: 12px 14px;
  background: rgba(10,11,13,.82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  border-radius: 2px;
}
.map-legend__row { display: flex; align-items: center; gap: 9px; color: var(--on-ink-dim); }
.map-legend__sw { width: 16px; height: 2px; background: var(--accent); flex: none; }
.map-legend__sw--dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; }

.map-legend__sw--gudang { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(255,74,23,.25); }

/* peta OpenStreetMap (Leaflet) */
.peta-osm { position: absolute; inset: 0; z-index: 1; background: #0B0D10; }
.peta-osm.leaflet-container { font: inherit; background: #0B0D10; cursor: crosshair; }
.peta-osm .leaflet-tile-pane { filter: invert(1) hue-rotate(180deg) brightness(.9) contrast(.9) saturate(.3); }
.peta-osm .leaflet-control-attribution {
  background: rgba(10,11,13,.78); color: var(--on-ink-faint);
  font-size: 10px; padding: 2px 8px;
}
.peta-osm .leaflet-control-attribution a { color: var(--on-ink-dim); }
.peta-osm .leaflet-bar { border: 1px solid var(--hairline); border-radius: 2px; box-shadow: none; }
.peta-osm .leaflet-bar a {
  background: rgba(10,11,13,.86); color: #fff; border-bottom-color: var(--hairline);
  width: 34px; height: 34px; line-height: 34px;
}
.peta-osm .leaflet-bar a:hover { background: #1A1F26; }
.peta-osm .leaflet-top.leaflet-right { top: 76px; }
.peta-osm .leaflet-top.leaflet-right .leaflet-control { margin-right: 18px; }
.pin-gudang span, .pin-tujuan span { display: block; border-radius: 50%; }
.pin-gudang span {
  width: 22px; height: 22px; background: var(--accent);
  box-shadow: 0 0 0 2px #fff inset, 0 0 0 8px rgba(255,74,23,.24);
}
.pin-tujuan { cursor: grab; }
.pin-tujuan span {
  width: 18px; height: 18px; background: #fff;
  box-shadow: 0 0 0 3px #0A0B0D inset, 0 0 0 7px rgba(255,255,255,.2);
}
.leaflet-tooltip.peta-label {
  background: rgba(10,11,13,.88); color: #fff; border: 1px solid var(--hairline);
  border-radius: 2px; box-shadow: none; padding: 4px 8px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
}
.leaflet-tooltip.peta-label::before { border-bottom-color: rgba(10,11,13,.88); }

.map-lok {
  display: inline-flex; align-items: center; gap: 7px; flex: none;
  padding: 8px 12px; border: 1px solid var(--hairline); border-radius: 2px;
  background: rgba(255,255,255,.04); color: #fff; cursor: pointer;
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  transition: border-color .25s, background .25s;
}
.map-lok:hover { border-color: var(--accent); background: var(--accent-soft); }
.map-lok:disabled { opacity: .55; cursor: progress; }
.map-lok svg { flex: none; color: var(--accent); }

.map-hasil {
  position: absolute; top: 74px; left: 18px; right: 18px; z-index: 1003;
  list-style: none; margin: 0; padding: 0;
  background: rgba(10,11,13,.95); backdrop-filter: blur(14px);
  border: 1px solid var(--hairline); border-radius: 2px;
  max-height: 260px; overflow: auto;
}
.map-hasil button {
  display: grid; gap: 2px; width: 100%; text-align: left;
  padding: 11px 14px; background: none; border: 0; border-bottom: 1px solid var(--hairline);
  color: #fff; cursor: pointer; font: inherit;
}
.map-hasil li:last-child button { border-bottom: 0; }
.map-hasil button:hover, .map-hasil button:focus-visible { background: var(--accent-soft); outline: none; }
.map-hasil strong { font-size: .9rem; }
.map-hasil span { font-size: .78rem; color: var(--on-ink-dim); }

.map-status {
  position: absolute; top: 74px; left: 18px; right: 18px; z-index: 1002;
  padding: 10px 14px; font-size: .82rem; line-height: 1.45; color: #fff;
  background: rgba(10,11,13,.9); border: 1px solid var(--hairline); border-left: 2px solid var(--accent);
  border-radius: 2px;
}
.map-status:empty { display: none; }

.map-catatan {
  padding: 12px 14px; font-size: .85rem; line-height: 1.5;
  border: 1px solid rgba(255,74,23,.35); background: var(--accent-soft); color: #fff;
}
.map-metric .v.v--kecil { font-size: clamp(1.15rem, 2vw, 1.45rem); }
#petaKoord { font-size: .72rem; letter-spacing: .04em; }

.tujuan-chip { display: inline-flex; padding: 0; background: none; border: 0; cursor: pointer; }
.tujuan-chip .tag { transition: color .3s, border-color .3s, background .3s; }
.tujuan-chip:hover .tag { color: #fff; border-color: rgba(255,255,255,.32); }
.tujuan-chip.is-sel .tag { color: #fff; background: var(--accent-soft); border-color: var(--accent); }

/* --------------------------------------------------------------------------
   16. PROCESS
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative; overflow: hidden;
  background: var(--ink-2);
  padding: clamp(28px, 3.2vw, 44px);
  display: grid; gap: 16px; align-content: start;
  min-height: 280px;
  transition: background .5s var(--e-out);
}
.step:hover { background: var(--ink-3); }
.step__no {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 5rem); line-height: .8; letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.2);
  transition: -webkit-text-stroke-color .5s var(--e-out), color .5s;
}
.step:hover .step__no { -webkit-text-stroke-color: var(--accent); }
.step__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.15rem, 1.8vw, 1.5rem); letter-spacing: -.03em; }
.step__desc { font-size: .938rem; color: var(--on-ink-dim); line-height: 1.6; }
.step__ico { position: absolute; right: -18px; bottom: -18px; color: rgba(255,255,255,.04); transition: color .5s; }
.step:hover .step__ico { color: rgba(255,74,23,.1); }

/* --------------------------------------------------------------------------
   17. WHY CARDS
   -------------------------------------------------------------------------- */
.why { display: grid; gap: 1px; background: rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.1); }
@media (min-width: 700px)  { .why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .why { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  position: relative; overflow: hidden;
  background: var(--concrete);
  padding: clamp(28px, 3vw, 40px);
  display: grid; gap: 14px; align-content: start;
  min-height: 250px;
  transition: background .5s var(--e-out), transform .5s var(--e-out);
}
.why-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .55s var(--e-out);
}
.why-card:hover { background: #fff; }
.why-card:hover::after { transform: scaleY(1); }
.why-card__ico {
  width: 46px; height: 46px; border-radius: 2px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--accent);
  transition: background .4s;
}
.why-card__title { font-family: var(--f-display); font-weight: 800; font-size: 1.22rem; letter-spacing: -.03em; }
.why-card__desc { font-size: .938rem; line-height: 1.62; color: var(--on-light-dim); }

/* --------------------------------------------------------------------------
   18. BIG CTA
   -------------------------------------------------------------------------- */
.cta {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding-block: clamp(88px, 12vw, 180px);
}
.cta__glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(1100px, 130%); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,74,23,.16), transparent 62%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 2; text-align: center; display: grid; justify-items: center; gap: clamp(22px, 3vw, 34px); }
.cta h2 { max-width: 16ch; }
.cta .lede { text-align: center; max-width: 52ch; }
.cta__contacts {
  display: grid; gap: 1px; width: 100%; margin-top: clamp(28px, 4vw, 52px);
  background: var(--hairline); border: 1px solid var(--hairline);
  grid-template-columns: 1fr;
  text-align: left;
}
@media (min-width: 700px) { .cta__contacts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .cta__contacts { grid-template-columns: repeat(4, 1fr); } }
.cta__contact { background: var(--ink); padding: 24px; display: grid; gap: 7px; transition: background .4s; }
.cta__contact:hover { background: var(--ink-3); }
.cta__contact .k { color: var(--on-ink-faint); }
.cta__contact .v { font-family: var(--f-display); font-weight: 700; font-size: .95rem; letter-spacing: -.02em; line-height: 1.35; }

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.foot { background: #060708; border-top: 1px solid var(--hairline); padding-block: clamp(52px, 6vw, 84px) 0; }
.foot__grid {
  display: grid; gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
  padding-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 760px)  { .foot__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .foot__grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; } }
.foot__h { color: var(--on-ink-faint); margin-bottom: 18px; }
.foot__list { display: grid; gap: 11px; }
.foot__list a, .foot__list li { font-size: .875rem; color: var(--on-ink-dim); transition: color .3s; }
.foot__list a:hover { color: var(--accent); }
.foot__areas { display: flex; flex-wrap: wrap; gap: 7px; }
.foot__areas a {
  padding: 5px 10px; border: 1px solid var(--hairline); border-radius: 2px;
  font-size: .75rem; color: var(--on-ink-faint); transition: border-color .3s, color .3s;
}
.foot__areas a:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.foot__bar {
  border-top: 1px solid var(--hairline-2);
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  color: var(--on-ink-faint);
}

/* --------------------------------------------------------------------------
   20. FLOATING WHATSAPP + MOBILE BOTTOM NAV
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; z-index: 880;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px 14px 14px;
  background: #1FAF54; color: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 40px -10px rgba(31,175,84,.6);
  transition: transform .4s var(--e-out), box-shadow .4s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float__txt { font-family: var(--f-display); font-weight: 700; font-size: .875rem; letter-spacing: -.01em; }
@media (max-width: 900px) { .wa-float { bottom: 82px; padding: 14px; } .wa-float__txt { display: none; } }

.mnav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 885;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(10,11,13,.9);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--hairline);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 901px) { .mnav { display: none; } }
.mnav a {
  display: grid; justify-items: center; gap: 5px;
  padding: 11px 4px 12px;
  color: var(--on-ink-faint);
  font-family: var(--f-mono); font-size: .563rem; letter-spacing: .1em; text-transform: uppercase;
  transition: color .3s;
}
.mnav a.is-active { color: #fff; }
.mnav a.is-wa { color: #35D06E; }
body { padding-bottom: 0; }
@media (max-width: 900px) { body { padding-bottom: 62px; } }

/* --------------------------------------------------------------------------
   21. SCROLL REVEAL
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--e-out), transform .85s var(--e-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].in { opacity: 1; transform: none; }

/* Scroll progress bar */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 950;
  background: var(--accent); width: 0%;
  transition: width .1s linear;
}

/* --------------------------------------------------------------------------
   22. PAGE HEADER (inner pages)
   -------------------------------------------------------------------------- */
.phead {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding-top: clamp(130px, 15vw, 190px);
  padding-bottom: clamp(48px, 6vw, 84px);
  border-bottom: 1px solid var(--hairline);
}
.phead__glow {
  position: absolute; left: -10%; top: -40%;
  width: min(780px, 90%); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,74,23,.13), transparent 62%);
  pointer-events: none;
}
.phead__inner { position: relative; z-index: 2; }
.crumb { display: flex; gap: 10px; align-items: center; color: var(--on-ink-faint); margin-bottom: 22px; }
.crumb a:hover { color: var(--accent); }

/* Utility */
.stack { display: grid; gap: 20px; align-content: start; }
.stack-sm { display: grid; gap: 12px; align-content: start; }
.mt-l { margin-top: clamp(32px, 4vw, 56px); }
.mt-m { margin-top: clamp(20px, 2.4vw, 32px); }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.divider { height: 1px; background: var(--hairline); }

/* --------------------------------------------------------------------------
   23. HALAMAN PRODUK
   -------------------------------------------------------------------------- */
.scheme-grid {
  display: grid; gap: 1px;
  grid-template-columns: 1fr;
  background: var(--hairline); border: 1px solid var(--hairline);
}
@media (min-width: 820px) { .scheme-grid { grid-template-columns: repeat(3, 1fr); } }
.scheme {
  background: var(--ink-2); padding: clamp(24px, 2.6vw, 34px);
  display: grid; gap: 12px; align-content: start;
  transition: background .4s var(--e-out);
}
.scheme:hover { background: var(--ink-3); }
.scheme__ico {
  width: 40px; height: 40px; border-radius: 2px; display: grid; place-items: center;
  background: rgba(255,74,23,.12); color: var(--accent); margin-bottom: 4px;
}
.scheme p { font-size: .875rem; color: var(--on-ink-dim); line-height: 1.6; }

.cat-card__media {
  display: grid; place-items: center;
  background:
    radial-gradient(110% 80% at 50% 0%, rgba(255,74,23,.07), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
}
.cat-dia { width: 78%; max-width: 190px; height: auto; }
.cat-card__no {
  position: absolute; top: 12px; left: 14px;
  color: var(--on-ink-faint); font-size: .625rem;
}
.cat-card__media { position: relative; }
.cat-card__body { min-height: 190px; }

/* --------------------------------------------------------------------------
   24. HALAMAN PROYEK
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filters .mono { margin-right: 6px; }
.filters .tag { cursor: default; }

.pgrid {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr));
  background: var(--hairline); border: 1px solid var(--hairline);
}
.pcard {
  background: var(--ink-2); display: grid; align-content: start;
  transition: background .45s var(--e-out);
}
.pcard:hover { background: var(--ink-3); }
.pcard__media { display: block; position: relative; aspect-ratio: 3/4; border-bottom: 1px solid var(--hairline); }
.pcard__media img { filter: grayscale(.5) brightness(.85); transition: transform 1.1s var(--e-out), filter .6s; }
.pcard:hover .pcard__media img { filter: grayscale(0) brightness(.98); }
.pcard__body { padding: clamp(20px, 2.2vw, 28px); display: grid; gap: 10px; align-content: start; }
.pcard__title { font-family: var(--f-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -.03em; line-height: 1.12; }
.pcard__loc { color: var(--on-ink-faint); }
.pcard__desc { font-size: .875rem; color: var(--on-ink-dim); line-height: 1.58; }
.pcard .tlink { margin-top: 6px; justify-self: start; }

/* Studi kasus */
.detail-grid { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .detail-grid { grid-template-columns: 300px 1fr; } }
@media (min-width: 960px) { .detail-meta { position: sticky; top: 100px; } }

.gal { display: grid; gap: 1px; grid-template-columns: 1fr; background: var(--hairline); border: 1px solid var(--hairline); margin-top: clamp(20px, 2.4vw, 30px); }
@media (min-width: 700px) { .gal { grid-template-columns: repeat(2, 1fr); } }
.gal--3 { grid-template-columns: 1fr; }
@media (min-width: 760px) { .gal--3 { grid-template-columns: repeat(3, 1fr); } }
.gal__item { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink-3); }
.gal--tegak .gal__item { aspect-ratio: 3/4; }
.gal__item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4) brightness(.88); transition: transform 1.1s var(--e-out), filter .6s; }
.gal__item:hover img { transform: scale(1.05); filter: none; }
.gal__item > .ph { position: absolute; inset: 0; }

/* --------------------------------------------------------------------------
   25. AREA LAYANAN
   -------------------------------------------------------------------------- */
.areas {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  background: var(--hairline); border: 1px solid var(--hairline);
}
.area {
  background: var(--ink-2); padding: clamp(20px, 2.2vw, 28px);
  display: grid; gap: 8px; align-content: start; min-height: 130px;
  position: relative; overflow: hidden;
  transition: background .4s var(--e-out);
}
.area::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--e-out);
}
.area:hover { background: var(--ink-3); }
.area:hover::before { transform: scaleY(1); }
.area__name { font-family: var(--f-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.03em; }
.area__sub { font-size: .813rem; color: var(--on-ink-dim); line-height: 1.55; }

/* --------------------------------------------------------------------------
   26. TENTANG — linimasa
   -------------------------------------------------------------------------- */
.about-grid { display: grid; gap: clamp(28px, 4vw, 64px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 920px) { .about-grid { grid-template-columns: .9fr 1.1fr; } }

.tl { display: grid; }
.tl__row { display: grid; grid-template-columns: auto 1fr; gap: 20px; }
@media (min-width: 760px) { .tl__row { grid-template-columns: 150px auto 1fr; gap: 28px; } }
.tl__year { color: var(--accent); padding-top: 2px; }
@media (max-width: 759px) { .tl__year { grid-column: 2; padding-bottom: 6px; } }
.tl__rail { display: grid; justify-items: center; grid-row: span 1; }
@media (max-width: 759px) { .tl__rail { grid-row: span 2; grid-column: 1; } }
.tl__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); margin-top: 6px; box-shadow: 0 0 0 4px rgba(255,74,23,.16); }
.tl__line { width: 1px; flex: 1; height: 100%; background: repeating-linear-gradient(180deg, var(--hairline) 0 4px, transparent 4px 9px); }
.tl__content { padding-bottom: clamp(32px, 4vw, 52px); }
.tl__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: -.03em; margin-bottom: 10px; }
.tl__desc { font-size: .95rem; color: var(--on-ink-dim); line-height: 1.62; max-width: 60ch; }
.tl__row:last-child .tl__line { background: none; }

/* --------------------------------------------------------------------------
   27. KONTAK
   -------------------------------------------------------------------------- */
.kontak-grid { display: grid; gap: clamp(32px, 4vw, 64px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 980px) { .kontak-grid { grid-template-columns: .9fr 1.1fr; } }

.kontak-list { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.kontak-item {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  background: var(--ink-2); padding: 20px;
  transition: background .4s var(--e-out);
}
a.kontak-item:hover { background: var(--ink-3); }
.kontak-item__ico {
  width: 38px; height: 38px; border-radius: 2px; display: grid; place-items: center;
  background: rgba(255,255,255,.05); color: var(--accent); flex: none;
}
.kontak-item__k { display: block; color: var(--on-ink-faint); margin-bottom: 5px; }
.kontak-item__v { display: block; font-family: var(--f-display); font-weight: 700; font-size: .95rem; letter-spacing: -.02em; line-height: 1.4; }

.form-card {
  background: var(--ink-2); border: 1px solid var(--hairline); border-radius: 2px;
  padding: clamp(24px, 3vw, 40px);
}
.form-card form { margin-top: clamp(22px, 2.6vw, 30px); }
.form-card select.field__input { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235F6873' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-card textarea.field__input { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-card ::placeholder { color: var(--on-ink-faint); font-weight: 400; }

/* Penyelarasan tinggi kartu & rel linimasa */
.cat-card { grid-template-rows: auto 1fr auto; }
.pcard { grid-template-rows: auto 1fr; }
.tl__rail { grid-template-rows: auto 1fr; align-content: stretch; }
.tl__line { height: 100%; align-self: stretch; }

@media (max-width: 640px) {
  .map-canvas { min-height: 440px; }
  .map-search { top: 12px; left: 12px; right: 12px; padding: 6px 6px 6px 12px; }
  .map-lok span { display: none; }
  .map-lok { padding: 8px 10px; }
  .map-hasil, .map-status { top: 66px; left: 12px; right: 12px; }
  .map-legend { display: none; }
  .peta-osm .leaflet-top.leaflet-right { top: 66px; }
  .peta-osm .leaflet-top.leaflet-right .leaflet-control { margin-right: 12px; }
}

/* Proses 4 langkah + durasi sewa */
@media (min-width: 700px)  { .steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }
.steps--4 .step { min-height: 260px; padding: clamp(24px, 2.6vw, 34px); }
.steps--4 .step__no { font-size: clamp(2.8rem, 5vw, 3.8rem); }

.durasi {
  display: grid; gap: 6px; padding: clamp(22px, 2.6vw, 32px);
  background: var(--ink); color: var(--on-ink); border-radius: 2px;
  position: relative; overflow: hidden;
}
.durasi__k { color: var(--accent); }
.durasi__v {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem); letter-spacing: -.035em; line-height: 1.05;
}
.durasi__p { font-size: .95rem; color: var(--on-ink-dim); max-width: 62ch; margin-top: 4px; }

/* Kartu proyek: komponen + varian kecil */
.pcard__komp {
  font-size: .688rem; letter-spacing: .06em; color: var(--on-ink-faint);
  padding-top: 4px; border-top: 1px solid var(--hairline-2); margin-top: 4px;
}
.pgrid--kecil { grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr)); }
.pgrid--kecil .pcard__body { padding: 14px 16px; gap: 5px; }
.pgrid--kecil .pcard__title { font-size: 1rem; }
a.pcard { color: inherit; }

/* Blok pernyataan penutup */
.statement-blok {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--hairline); border-left: 3px solid var(--accent);
  background: linear-gradient(120deg, rgba(255,74,23,.06), transparent 60%);
  border-radius: 2px;
}
.statement-blok p:first-child { max-width: 26ch; letter-spacing: -.03em; font-family: var(--f-display); font-weight: 800; line-height: 1.05; }
.statement-blok em { font-style: normal; color: var(--accent); }

/* Logo klien gagal dimuat -> tampilkan nama saja, jangan ganda */
.client__tile.img-failed { display: none; }
.client:has(.client__tile.img-failed) .client__name { font-size: clamp(.95rem, 1.3vw, 1.12rem); font-weight: 800; }
.client__tile .ph { display: none !important; }

/* Angka hero terakhir jangan tertutup tombol WhatsApp mengambang */
@media (min-width: 901px) {
  .hero__stats > .hero__stat:last-child { padding-right: 132px; }
}

/* Kartu klien lebih ringkas */
@media (min-width: 640px)  { .clients { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .clients { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1180px) { .clients { grid-template-columns: repeat(5, 1fr); } }
.client { min-height: 128px; padding: 16px 14px; gap: 9px; }
.client__tile { max-width: 108px; padding: 7px; border-radius: 2px; }
.client__name { font-size: .75rem; }
.client__meta { font-size: .625rem; }

/* Kartu proyek lebih ringkas */
@media (min-width: 900px) { .proj__media { min-height: 440px; } }
.proj__body { padding: clamp(24px, 3vw, 44px); gap: 14px; }
.proj__title { font-size: clamp(1.45rem, 2.4vw, 2.1rem); }
.proj .lede { font-size: .95rem; }
.pgrid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 244px), 1fr)); }
.pcard__title { font-size: 1.08rem; }
.pcard__body { padding: 16px 18px; gap: 8px; }
.pcard__desc { font-size: .813rem; }

/* Diagram menara tetap terlihat saat daftar komponen digulir */
@media (min-width: 980px) {
  .tower-stage { position: sticky; top: 96px; align-self: start; }
}

/* Tinggi: angka besar yang bisa diketik */
input.slider-val {
  -webkit-appearance: none; appearance: none; -moz-appearance: textfield;
  background: none; border: 0; padding: 0;
  width: 4.2ch; min-width: 4.2ch;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: .85; letter-spacing: -.045em;
  color: var(--accent);
  border-bottom: 2px dashed rgba(255,74,23,.35);
  transition: border-color .3s;
}
input.slider-val::-webkit-outer-spin-button,
input.slider-val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input.slider-val:focus { outline: none; border-bottom-color: var(--accent); }
.calc__catatan { color: var(--on-ink-faint); margin-top: 12px; }

/* Panel "cara angka ini didapat" */
.cara {
  border: 1px solid var(--hairline); border-radius: 2px;
  background: rgba(255,255,255,.02);
  padding: clamp(16px, 2vw, 22px);
}
.cara__judul { color: var(--accent); margin-bottom: 14px; }
.cara__baris {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px;
  padding: 12px 0; border-top: 1px solid var(--hairline-2);
}
.cara__baris:first-of-type { border-top: 0; padding-top: 0; }
.cara__no {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: .625rem;
  background: rgba(255,74,23,.14); color: var(--accent);
}
.cara__isi { display: grid; gap: 4px; min-width: 0; }
.cara__nama { font-family: var(--f-display); font-weight: 700; font-size: .938rem; letter-spacing: -.02em; }
.cara__asing { color: var(--on-ink-faint); font-weight: 400; }
.cara__rumus { font-size: .625rem; letter-spacing: .1em; color: var(--on-ink-faint); }
.cara__hitung {
  font-family: var(--f-mono); font-size: .813rem; color: var(--on-ink);
  background: rgba(255,255,255,.04); padding: 7px 10px; border-radius: 2px;
  overflow-x: auto; white-space: nowrap;
}
.cara__hitung b { color: var(--accent); font-weight: 500; }
.cara__arti { font-size: .813rem; color: var(--on-ink-dim); line-height: 1.55; }

/* Kalkulator: kelompok komponen utama vs pelengkap opsional */
.bom__grup { padding: 14px 18px 12px; background: var(--ink-2); }
.bom__grup-ket { font-size: .813rem; color: var(--on-ink-dim); margin-top: 4px; line-height: 1.45; }
.bom__row--opsi { grid-template-columns: 20px 1fr auto; cursor: pointer; transition: background .2s var(--e-out); }
.bom__row--opsi:hover { background: var(--ink-4); }
.bom__row--opsi .bom__qty { color: var(--on-ink-faint); }
.bom__row--opsi.is-on .bom__qty { color: var(--accent); }
.bom__row--opsi:not(.is-on) .bom__name { color: var(--on-ink-dim); }
.bom__cek { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.bom__kotak { width: 18px; height: 18px; border: 1.5px solid var(--on-ink-faint); border-radius: 2px; display: grid; place-items: center; }
.bom__row--opsi.is-on .bom__kotak { background: var(--accent); border-color: var(--accent); }
.bom__row--opsi.is-on .bom__kotak::after { content: ""; width: 9px; height: 5px; border: solid #fff; border-width: 0 0 2px 2px; transform: translateY(-1px) rotate(-45deg); }
.bom__cek:focus-visible + .bom__kotak { outline: 2px solid var(--accent); outline-offset: 2px; }
.bom__row--opsi { position: relative; }

/* Kalkulator langkah 5: pilihan komponen */
.pilih { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .pilih { grid-template-columns: 1fr 1fr; } .pk--lepas { grid-column: 1 / -1; } .pk--lepas .pk__anak { grid-template-columns: repeat(3, 1fr); } }
.pk { border: 1px solid var(--hairline); border-radius: 2px; background: rgba(255,255,255,.02); }
.pk__kepala { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; padding: 16px 18px; cursor: pointer; border-bottom: 1px solid var(--hairline-2); position: relative; }
.pk__kepala--polos { grid-template-columns: 1fr; cursor: default; }
.pk__judul { display: block; font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.pk__ket { display: block; font-size: .813rem; color: var(--on-ink-dim); margin-top: 3px; line-height: 1.45; }
.pk__anak { display: grid; }
.pk__item { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; padding: 12px 18px; cursor: pointer; position: relative; transition: background .2s var(--e-out); }
.pk__item + .pk__item { border-top: 1px solid var(--hairline-2); }
.pk--lepas .pk__item + .pk__item { border-top: 0; }
.pk__item:hover, .pk__kepala:not(.pk__kepala--polos):hover { background: rgba(255,255,255,.03); }
.pk__nama { display: block; font-size: .938rem; font-weight: 550; }
.pk__item:not(.is-on) .pk__nama { color: var(--on-ink-dim); }
.pk__sub { display: block; font-size: .625rem; letter-spacing: .08em; color: var(--on-ink-faint); margin-top: 3px; }
.pk__cek { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.pk__kotak { width: 18px; height: 18px; margin-top: 2px; border: 1.5px solid var(--on-ink-faint); border-radius: 2px; display: grid; place-items: center; transition: background .15s, border-color .15s; }
.is-on > .pk__kotak { background: var(--accent); border-color: var(--accent); }
.is-on > .pk__kotak::after { content: ""; width: 9px; height: 5px; border: solid #fff; border-width: 0 0 2px 2px; transform: translateY(-1px) rotate(-45deg); }
.is-sebagian > .pk__kotak { border-color: var(--accent); }
.is-sebagian > .pk__kotak::after { content: ""; width: 8px; height: 2px; background: var(--accent); }
.pk__cek:focus-visible + .pk__kotak { outline: 2px solid var(--accent); outline-offset: 2px; }
.bom__row--nol .bom__qty { color: var(--on-ink-faint); }
.bom__kosong { padding: 18px; background: var(--ink-3); color: var(--on-ink-dim); font-size: .875rem; }
.bom__ubah { display: block; width: 100%; text-align: left; padding: 13px 18px; background: var(--ink-2); color: var(--accent); border: 0; cursor: pointer; font-size: .688rem; letter-spacing: .1em; }
.bom__ubah:hover { background: var(--ink-4); }

/* --------------------------------------------------------------------------
   Tema WordPress: isi dari dashboard
   -------------------------------------------------------------------------- */
a.tag { text-decoration: none; transition: border-color .2s, color .2s; }
a.tag:hover { border-color: var(--accent); color: #fff; }
.notice--ok { border-left-color: #2FB36B; }
.notice--ok svg { color: #2FB36B; }
.rev-card__body p { margin: 0 0 .8em; }
.rev-card__body p:last-child { margin-bottom: 0; }
.rev-card__foto { display: block; margin-top: 4px; width: 96px; height: 96px; border-radius: 2px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); }
.rev-card__foto img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--e-out); }
.rev-card__foto:hover img { transform: scale(1.06); }
.rev-sumber { margin-top: 14px; font-size: .625rem; letter-spacing: .1em; color: var(--on-light-dim); }
.cat-card__media--foto { overflow: hidden; }
.cat-card__media--foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-card__desc p { margin: 0 0 .6em; }
.cat-card__desc p:last-child { margin-bottom: 0; }
.peta-gudang { position: relative; overflow: hidden; background: var(--ink-3); }
.peta-gudang iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05); }

/* Isi halaman / artikel biasa dari editor WordPress */
.konten { max-width: 72ch; font-size: 1.0625rem; line-height: 1.75; }
.konten--gelap { color: var(--on-ink-dim); }
.konten > * + * { margin-top: 1.1em; }
.konten h2, .konten h3, .konten h4 { font-family: var(--f-display); color: var(--on-ink); letter-spacing: -.02em; line-height: 1.2; margin-top: 1.8em; }
.konten h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.konten h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
.konten a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.konten ul, .konten ol { padding-left: 1.3em; }
.konten li + li { margin-top: .4em; }
.konten img, .konten figure { max-width: 100%; height: auto; border-radius: 2px; }
.konten figure { margin-left: 0; margin-right: 0; }
.konten figcaption { font-family: var(--f-mono); font-size: .75rem; color: var(--on-ink-faint); margin-top: 8px; }
.konten blockquote { border-left: 3px solid var(--accent); padding-left: 18px; color: var(--on-ink); }
.konten table { width: 100%; border-collapse: collapse; font-size: .938rem; }
.konten th, .konten td { border: 1px solid var(--hairline); padding: 10px 12px; text-align: left; }
.konten .gallery, .konten .wp-block-gallery { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.konten .gallery img, .konten .wp-block-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.daftar-artikel { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.artikel { background: var(--ink-2); padding: clamp(22px, 3vw, 36px); display: grid; gap: 10px; }
.artikel h2 a { color: var(--on-ink); text-decoration: none; }
.artikel h2 a:hover { color: var(--accent); }
.nav-links { display: flex; gap: 10px; flex-wrap: wrap; font-family: var(--f-mono); font-size: .8rem; }
.nav-links a, .nav-links span { padding: 8px 12px; border: 1px solid var(--hairline); color: var(--on-ink-dim); text-decoration: none; }
.nav-links .current { border-color: var(--accent); color: #fff; }
.detail-body .konten { font-size: clamp(1.02rem, 1.35vw, 1.28rem); line-height: 1.62; }

/* Ulasan yang bisa digeser (lebih dari 3) */
.rev-geser { display: grid; gap: 14px; }
.rev-geser__jalur {
  display: grid; grid-auto-flow: column; grid-auto-columns: 86%;
  gap: 1px; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  background: rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.1);
  scrollbar-width: none;
}
.rev-geser__jalur::-webkit-scrollbar { display: none; }
.rev-geser__jalur:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.rev-geser__jalur > .rev-card { scroll-snap-align: start; }
@media (min-width: 700px) { .rev-geser__jalur { grid-auto-columns: calc((100% - 1px) / 2); } }
@media (min-width: 1080px) { .rev-geser__jalur { grid-auto-columns: calc((100% - 2px) / 3); } }
.rev-geser__kendali { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.rev-geser__hitung { font-size: .688rem; letter-spacing: .1em; color: var(--on-light-dim); min-width: 9ch; text-align: center; font-variant-numeric: tabular-nums; }
.rev-geser__tombol {
  width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer;
  background: transparent; color: var(--on-light); border: 1px solid rgba(0,0,0,.18); border-radius: 2px;
  transition: background .2s, color .2s, border-color .2s;
}
.rev-geser__tombol:hover:not(:disabled) { background: var(--ink); color: #fff; border-color: var(--ink); }
.rev-geser__tombol:disabled { opacity: .3; cursor: default; }
.rev-geser__tombol:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.rev-top .gbadge { justify-self: start; }
