/* =========================================================
   Sewa Bus Malang — Design System v2 "Jalan Malam"
   Arah: editorial bold. Hero gelap + garis rute merah,
   kartu tiket, tipografi display besar. Palet tetap terkunci.
   ========================================================= */


:root {
  /* -- Warna (terkunci dari logo) -- */
  --c-primary: #D91E1E;
  --c-primary-hover: #B01515;
  --c-primary-soft: #FBE9E9;
  --c-surface: #FFFFFF;
  --c-ink: #1F2430;
  --c-sky: #87CEEB;
  --c-primary-bright: #FF6B61;
  --c-green: #8FBC8F;
  --c-asphalt: #696969;
  --c-charcoal: #26282E;
  --c-charcoal-2: #30333B;
  --c-line: #E7E7EC;
  --c-bg: #F6F6F4;

  /* -- Spacing 8px -- */
  --s-xs: 4px; --s-sm: 8px; --s-md: 16px; --s-lg: 24px;
  --s-xl: 32px; --s-2xl: 48px; --s-3xl: 64px; --s-4xl: 104px;

  /* -- Radius -- */
  --r-sm: 6px; --r-md: 12px; --r-lg: 18px; --r-xl: 26px; --r-full: 999px;

  /* -- Shadow -- */
  --sh-sm: 0 1px 2px rgba(31,36,48,.07);
  --sh-md: 0 8px 24px rgba(31,36,48,.10);
  --sh-lg: 0 20px 48px rgba(31,36,48,.16);

  /* -- Motion -- */
  --e-out: cubic-bezier(.22,1,.36,1);
  --t-fast: 150ms; --t-normal: 280ms; --t-slow: 500ms;

  --max-w: 1180px;
  --nav-h: 76px;
  --bottomnav-h: 62px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }

/* ============ SPLASH SCREEN ============ */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash.hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-inner {
  text-align: center;
  padding: var(--s-xl);
  max-width: 400px;
}

.splash-logo {
  margin-bottom: var(--s-2xl);
  animation: logo-glow 2s ease-in-out infinite;
}

.splash-logo img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(217, 30, 30, 0.3));
}

@keyframes logo-glow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 30px rgba(217, 30, 30, 0.3));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(217, 30, 30, 0.5));
  }
}

.splash-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--s-md);
  overflow: hidden;
}

.splash-text {
  display: inline-block;
  color: #fff;
  animation: text-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

.splash-text:nth-child(1) {
  animation-delay: 0.3s;
}

.splash-text:nth-child(2) {
  animation-delay: 0.5s;
}

.splash-highlight {
  color: var(--c-primary);
}

@keyframes text-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.splash-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #9DA0AA;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--s-2xl);
  opacity: 0;
  animation: text-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.splash-route {
  position: relative;
  margin-bottom: var(--s-lg);
  height: 60px;
}

.route-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--c-primary) 0%, 
    var(--c-primary-bright) 50%, 
    var(--c-primary) 100%);
  transform: translateY(-50%);
  border-radius: 2px;
  overflow: hidden;
}

.route-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent);
  animation: route-shine 2s ease-in-out infinite;
}

@keyframes route-shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.route-dots {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  transform: translateY(-50%);
}

.route-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9DA0AA;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.route-dots .dot.active {
  background: var(--c-primary);
  box-shadow: 0 0 15px rgba(217, 30, 30, 0.6);
  width: 10px;
  height: 10px;
}

.route-bus {
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  animation: bus-move 3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.route-bus svg {
  width: 100%;
  height: 100%;
  color: var(--c-primary-bright);
  filter: drop-shadow(0 0 8px rgba(255, 107, 97, 0.4));
}

@keyframes bus-move {
  0% {
    left: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  10% {
    transform: translate(-50%, -50%) rotate(-5deg);
  }
  20% {
    transform: translate(-50%, -50%) rotate(5deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    left: 100%;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.splash-loading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #9DA0AA;
  font-weight: 500;
  opacity: 0;
  animation: text-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

.splash-loading::after {
  content: '...';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% {
    content: '.';
  }
  40% {
    content: '..';
  }
  60%, 100% {
    content: '...';
  }
}

/* Disable scroll saat splash aktif */
body.splash-active {
  overflow: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--c-ink);
  background: var(--c-bg);
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 700; }
p { margin: 0; }

.container-x { max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }

/* Eyebrow label khas editorial */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 2px; background: var(--c-primary); }
.eyebrow.on-dark { color: #E8E9EE; }
.eyebrow.on-dark::before { background: var(--c-primary-bright); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-lg); flex-wrap: wrap; margin-bottom: var(--s-xl); }
.section-head p.lede { max-width: 46ch; color: var(--c-asphalt); margin-top: var(--s-sm); }

/* ============ HEADER DESKTOP (redesain penuh) ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: rgba(38, 40, 46, .97);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 10px 30px rgba(0,0,0,.22);
  -webkit-transform: translateZ(0); transform: translateZ(0);
}
.header-inner { display: flex; align-items: center; gap: var(--s-lg); height: var(--nav-h); }
.header-inner .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.header-inner .brand img { height: 42px; width: auto; }
.header-inner .brand b { color: #fff; font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; line-height: 1.05; }
.header-inner .brand small { display: block; color: #9DA0AA; font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

.nav-desktop { display: none; margin-left: auto; align-items: center; gap: 6px; }
.nav-desktop a {
  position: relative;
  color: #C9CBD4; text-decoration: none;
  font-size: .9rem; font-weight: 600;
  padding: 10px 14px; border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-desktop a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-desktop a.is-active { color: #fff; }
.nav-desktop a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--c-primary);
}
.nav-cta { display: none; }
@media (min-width: 900px) { .nav-desktop, .nav-cta { display: flex; } }

/* ============ BURGER + DRAWER (mobile & tablet) ============ */
.nav-burger {
  margin-left: auto; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 11px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md); cursor: pointer;
}
.nav-burger span { display: block; height: 2px; width: 100%; border-radius: 2px; background: #fff; transition: transform var(--t-normal) var(--e-out), opacity var(--t-fast); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .nav-burger { display: none; } }

body.no-scroll { overflow: hidden; }
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; pointer-events: none; }
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(10,11,14,.66); opacity: 0; transition: opacity var(--t-normal); }
.drawer.is-open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(84vw, 340px);
  background: var(--c-charcoal-2);
  border-left: 1px solid rgba(255,255,255,.08);
  box-shadow: -24px 0 48px rgba(0,0,0,.4);
  padding: calc(var(--nav-h) + var(--s-lg)) var(--s-xl) var(--s-xl);
  display: flex; flex-direction: column;
  transform: translateX(102%);
  transition: transform var(--t-normal) var(--e-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer.is-open .drawer-panel { transform: none; }
.drawer-panel a.d-link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.3rem;
  color: #DEE0E6; text-decoration: none;
  padding: 13px 12px; border-radius: var(--r-md);
  opacity: 0; transform: translateX(18px);
  transition: opacity var(--t-normal) var(--e-out), transform var(--t-normal) var(--e-out), background var(--t-fast), color var(--t-fast);
}
.drawer-panel a.d-link:hover, .drawer-panel a.d-link:focus-visible { background: rgba(255,255,255,.06); color: #fff; }
.drawer-panel a.d-link.is-active { color: var(--c-primary-bright); }
.drawer-panel a.d-link svg { width: 18px; height: 18px; flex: none; color: #7A7D89; }
.drawer.is-open a.d-link { opacity: 1; transform: none; }
.drawer.is-open a.d-link:nth-child(1) { transition-delay: 70ms; }
.drawer.is-open a.d-link:nth-child(2) { transition-delay: 120ms; }
.drawer.is-open a.d-link:nth-child(3) { transition-delay: 170ms; }
.drawer.is-open a.d-link:nth-child(4) { transition-delay: 220ms; }
.drawer.is-open a.d-link:nth-child(5) { transition-delay: 270ms; }
.drawer.is-open a.d-link:nth-child(6) { transition-delay: 320ms; }
.drawer.is-open a.d-link:nth-child(7) { transition-delay: 370ms; }
.drawer.is-open a.d-link:nth-child(8) { transition-delay: 420ms; }
.drawer-panel .d-cta { margin-top: auto; display: grid; gap: 10px; padding-top: var(--s-xl); }

/* Halaman dengan header terang (selain beranda) pakai modul ini */
.site-header.on-light .brand b { color: var(--c-ink); }
.site-header.on-light .brand small { color: var(--c-asphalt); }
.site-header.on-light.is-solid { background: rgba(255,255,255,.96); box-shadow: var(--sh-sm); }
.site-header.on-light .nav-desktop a { color: var(--c-asphalt); }
.site-header.on-light .nav-desktop a:hover, .site-header.on-light .nav-desktop a.is-active { color: var(--c-ink); background: rgba(31,36,48,.05); }

/* ============ TOMBOL ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: .95rem; font-family: inherit;
  padding: 14px 28px; border-radius: var(--r-md);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform var(--t-fast) var(--e-out), background var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.btn:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 2px; }
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.btn-primary { background: var(--c-primary); color: #fff; box-shadow: 0 6px 20px rgba(217,30,30,.35); }
.btn-primary:hover:not(:disabled) { background: var(--c-primary-hover); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(217,30,30,.4); }

.btn-wa { background: #1FA855; color: #fff; box-shadow: 0 8px 24px rgba(31,168,85,.26); }
.btn-wa:hover:not(:disabled) { background: #178A46; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(31,168,85,.34); }
.btn-wa .icon-wa { width: 18px; height: 18px; flex: none; margin-left: -2px; }

.btn-light { background: #fff; color: var(--c-ink); }
.btn-light:hover:not(:disabled) { transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover:not(:disabled) { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn-ghost:hover:not(:disabled) { border-color: var(--c-primary); color: var(--c-primary); }

.btn-sm { padding: 9px 18px; font-size: .85rem; border-radius: var(--r-sm); }

/* ============ HERO "JALAN MALAM" ============ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(255,107,97,.10), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(217,30,30,.22), transparent 55%),
    var(--c-charcoal);
  color: #fff;
  padding: 0 0 clamp(56px, 9vw, 120px);
}
/* Tekstur garis jalan halus */
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, transparent 0 90px, rgba(255,255,255,.028) 90px 91px);
}
/* Garis rute merah melintas — identitas desain */
.route-line {
  position: absolute; left: -5%; right: -5%; top: 118px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-primary) 0 26px, transparent 26px 44px);
  opacity: .8; transform: rotate(-2.2deg); pointer-events: none;
}
.route-line .dot {
  position: absolute; top: -5px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--c-primary); box-shadow: 0 0 0 5px rgba(217,30,30,.18);
  animation: dot-cruise 14s linear infinite;
}
@keyframes dot-cruise { from { left: -3%; } to { left: 103%; } }

.hero-grid { position: relative; display: grid; gap: var(--s-2xl); padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 88px)); }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; } }
@media (max-width: 899px) { .hero-grid { padding-top: calc(var(--nav-h) + var(--s-3xl)); padding-bottom: var(--s-xl); } }

.hero h1 { color: #fff; max-width: 13ch; }
.hero h1 em { font-style: normal; color: var(--c-primary); display: block; }
.hero .hero-sub { color: #B9BCC6; font-size: clamp(1rem, 2vw, 1.15rem); max-width: 46ch; margin-top: var(--s-lg); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: var(--s-xl); }

.hero-stats { display: flex; gap: clamp(20px, 4vw, 44px); margin-top: var(--s-2xl); flex-wrap: wrap; }
.hero-stats b { display: block; font-family: 'Bricolage Grotesque'; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: #fff; }
.hero-stats span { color: #C3C6CE; font-size: .8rem; font-weight: 600; letter-spacing: .04em; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; display: block; border-radius: var(--r-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.1);
  transform: rotate(1.6deg);
  transition: transform var(--t-slow) var(--e-out);
}
.hero-photo:hover img { transform: rotate(0deg) scale(1.01); }
/* Stempel harga menempel di foto */
.hero-badge {
  position: absolute; left: -14px; bottom: 22px;
  background: #fff; color: var(--c-ink);
  border-radius: var(--r-md); padding: 14px 18px;
  box-shadow: var(--sh-lg);
  transform: rotate(-2deg);
}
.hero-badge b { display: block; font-family: 'Bricolage Grotesque'; font-size: 1.15rem; color: var(--c-primary); }
.hero-badge span { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-asphalt); }

/* Rotating text */
.rotator { color: var(--c-primary-bright); text-shadow: 0 2px 18px rgba(255,107,97,.28); }
.rotator.is-swapping { animation: rotator-swap 550ms var(--e-out); }
@keyframes rotator-swap { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Marquee strip di bawah hero */
.marquee {
  background: var(--c-primary); color: #fff; overflow: hidden;
  padding: 12px 0; transform: rotate(-1.1deg) scale(1.04);
  margin-top: -34px;
  position: relative; z-index: 2;
}
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee-move 30s linear infinite; }
.marquee-track span { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: .95rem; letter-spacing: .02em; white-space: nowrap; display: flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: "●"; font-size: .5rem; opacity: .7; }
@keyframes marquee-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* ============ HALAMAN 404 ============ */
.nf-angka {
  font-family: 'Bricolage Grotesque'; font-weight: 800; line-height: .9;
  font-size: clamp(6rem, 22vw, 13rem); letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 3px var(--c-primary);
  text-shadow: 0 24px 60px rgba(217,30,30,.25);
  user-select: none;
}

@media (prefers-reduced-motion: reduce) { .marquee-track, .route-line .dot { animation: none; } }

/* ============ SECTIONS ============ */
.section { padding: var(--s-4xl) 0; }
.section-tight { padding: var(--s-3xl) 0; }

/* Keunggulan — grid asimetris dengan angka besar */
.why-grid { display: grid; gap: var(--s-md); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: var(--s-lg);
  position: relative; overflow: hidden;
  transition: transform var(--t-normal) var(--e-out), box-shadow var(--t-normal);
}
.why:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.why::before {
  content: attr(data-n); position: absolute; right: 10px; top: -14px;
  font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 4.6rem;
  color: var(--c-primary-soft); line-height: 1;
}
.why svg { width: 26px; height: 26px; color: var(--c-primary); }
.why h3 { font-size: 1.05rem; margin-top: 12px; }
.why p { color: var(--c-asphalt); font-size: .88rem; margin-top: 6px; }

/* Kartu armada */
.fleet-grid { display: grid; gap: var(--s-lg); }
@media (min-width: 760px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }
.fleet {
  background: var(--c-surface); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  transition: transform var(--t-normal) var(--e-out), box-shadow var(--t-normal);
}
.fleet:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.fleet .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--c-charcoal-2); }
.fleet .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--e-out); }
.fleet:hover .thumb img { transform: scale(1.05); }
.fleet .seat {
  position: absolute; top: 12px; left: 12px;
  background: var(--c-charcoal); color: #fff;
  font-weight: 800; font-size: .78rem;
  padding: 6px 12px; border-radius: var(--r-full);
}
.fleet .body { padding: var(--s-lg); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.fleet .price { margin-top: auto; font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.25rem; }
.fleet .price small { display: block; font-family: 'Plus Jakarta Sans'; font-weight: 600; font-size: .72rem; color: var(--c-asphalt); letter-spacing: .06em; text-transform: uppercase; }

/* Kartu tiket harga populer — khas, bukan kartu generik */
.ticket-grid { display: grid; gap: var(--s-md); }
@media (min-width: 760px) { .ticket-grid { grid-template-columns: repeat(3, 1fr); } }
.ticket {
  position: relative;
  isolation: isolate;
  min-height: 156px;
  background:
    linear-gradient(90deg, var(--c-primary) 0 6px, transparent 6px),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(250,250,251,.92)),
    radial-gradient(260px 160px at 100% 0%, rgba(217,30,30,.1), transparent 70%);
  border: 1px solid rgba(31,36,48,.12);
  border-radius: var(--r-md); padding: 20px 18px 18px;
  display: flex; flex-direction: column; gap: 10px;
  color: inherit; text-decoration: none;
  box-shadow: 0 14px 34px rgba(31,36,48,.08);
  overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t-normal) var(--e-out), box-shadow var(--t-normal);
}
.ticket:hover { border-color: rgba(217,30,30,.42); transform: translateY(-4px); box-shadow: 0 22px 44px rgba(31,36,48,.14); }
.ticket:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 3px; }
.ticket > * { position: relative; z-index: 1; }
.ticket::before, .ticket::after { /* lubang tiket */
  content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-bg); border: 1px solid rgba(31,36,48,.1); left: 50%; z-index: 2;
  transform: translateX(-50%);
}
.ticket::before { top: -10px; }
.ticket::after { bottom: -10px; }
.ticket .dest {
  order: 2;
  font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.18; letter-spacing: -.01em; color: var(--c-ink);
  min-height: 2.4em;
  overflow-wrap: anywhere;
}
.ticket .dur {
  order: 3; margin-top: auto;
  display: inline-flex; width: fit-content; max-width: 100%;
  color: var(--c-asphalt); background: #F1F2F5; border: 1px solid rgba(31,36,48,.08);
  border-radius: var(--r-full); padding: 6px 10px;
  font-size: .72rem; line-height: 1.25; font-weight: 800;
}
.ticket .amount {
  order: 1;
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.05; color: var(--c-primary); border-bottom: 2px dashed #D8DAE1; padding-bottom: 12px; text-align: right;
}
.ticket .amount small {
  display: block;
  font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: .64rem; line-height: 1.2;
  color: #606573; letter-spacing: .08em; text-transform: uppercase;
  text-align: left;
}
@media (max-width: 759px) {
  .ticket { min-height: 132px; }
}
@media (max-width: 420px) {
  .ticket { padding-left: 18px; }
  .ticket::before, .ticket::after { display: none; }
  .ticket .amount { display: grid; gap: 6px; justify-content: start; text-align: left; }
}

/* CTA band gelap */
.cta-band {
  background: var(--c-charcoal); color: #fff; position: relative; overflow: hidden;
  border-radius: var(--r-xl); padding: clamp(32px, 6vw, 64px);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(500px 260px at 90% 20%, rgba(217,30,30,.25), transparent 60%);
}
.cta-band h2 { color: #fff; max-width: 16ch; }
.cta-band p { color: #B9BCC6; margin-top: var(--s-md); max-width: 44ch; }
.cta-band .row { position: relative; display: flex; gap: 14px; flex-wrap: wrap; margin-top: var(--s-xl); z-index: 1; }

/* ============ ARMADA PAGE ============ */
.armada-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #1B1D22; border: 1px solid var(--c-line); border-radius: var(--r-xl);
  overflow: hidden; margin-bottom: var(--s-2xl);
}
.armada-card:nth-child(even) { direction: rtl; }
.armada-card:nth-child(even) > * { direction: ltr; }
.armada-media { position: relative; min-height: 300px; }
.armada-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.armada-cap {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--c-primary); color: #fff; font-weight: 700; font-size: .78rem;
  padding: 6px 12px; border-radius: var(--r-sm); letter-spacing: .04em;
}
.armada-body { padding: clamp(24px, 4vw, 44px); display: flex; flex-direction: column; gap: var(--s-md); }
.armada-body h2 { color: #fff; }
.armada-price { color: #C9CBD4; margin: 0; }
.armada-price b { color: var(--c-primary-bright); font-family: 'Bricolage Grotesque'; font-size: 1.35rem; font-weight: 800; }
.armada-specs h3 { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: #A9ACB8; margin: var(--s-sm) 0 8px; }
.armada-specs ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.armada-specs li {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .8rem; font-weight: 600; line-height: 1;
  height: 32px; padding: 0 14px;
  color: #DEE0E6;
  background: #22252B; border: 1px solid #3A3D45; border-radius: var(--r-full);
}
.armada-specs li svg { width: 13px; height: 13px; flex: none; }
.armada-specs li.is-in svg { color: #34D399; }
.armada-specs li.is-out svg { color: #F87171; }
.armada-body .row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--s-sm); }
@media (max-width: 860px) {
  .armada-card { grid-template-columns: 1fr; }
  .armada-media { min-height: 220px; max-height: 280px; }
}

/* ============ HARGA PAGE ============ */
.harga-search, .art-search {
  display: flex; align-items: center; gap: 10px;
  max-width: 520px; margin-top: var(--s-xl);
  background: #1F2229; border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-md);
  padding: 0 16px;
}
.harga-search svg, .art-search svg { width: 18px; height: 18px; color: #A6A9B3; flex: none; }
.harga-search input, .art-search input {
  flex: 1; min-width: 0; background: none; border: 0; outline: 0;
  color: #fff; font: inherit; padding: 14px 0;
}
.harga-search input::placeholder, .art-search input::placeholder { color: #9DA0AA; }
.harga-search input::-webkit-search-cancel-button, .art-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
/* Fokus terlihat untuk input pencarian (pengganti outline:0 di dalamnya) */
.harga-search:focus-within, .art-search:focus-within { border-color: #fff; box-shadow: 0 0 0 3px var(--c-sky); }

.harga-chips, .art-chips {
  position: sticky; top: var(--nav-h); z-index: 30;
  background: var(--c-bg); border-bottom: 1px solid var(--c-line);
}
.harga-chips .container-x, .art-chips .container-x {
  display: flex; gap: 8px; overflow-x: auto;
  padding-top: 12px; padding-bottom: 12px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.harga-chips .container-x::-webkit-scrollbar, .art-chips .container-x::-webkit-scrollbar { display: none; }
.chip {
  flex: none; height: 34px; padding: 0 16px;
  font-family: inherit; font-size: .82rem; font-weight: 700; line-height: 1;
  border-radius: var(--r-full); border: 1px solid var(--c-line);
  background: #fff; color: var(--c-ink); cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.chip:hover { border-color: var(--c-asphalt); }
.chip.is-active { background: var(--c-charcoal); color: #fff; border-color: var(--c-charcoal); }
.chip:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 2px; }

.harga-grup { margin-bottom: var(--s-xl); }
.harga-grup-head { display: flex; align-items: center; gap: 12px; margin: var(--s-lg) 0 var(--s-md); }
.harga-grup-head h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
.harga-count {
  font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--c-asphalt); background: #fff; border: 1px solid var(--c-line);
  padding: 6px 11px; border-radius: var(--r-full);
}

.hrow {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: 16px 18px; margin-bottom: 10px; box-shadow: var(--sh-sm);
  transition: border-color var(--t-fast);
}
.hrow:hover { border-color: #C6C9D2; }
.hrow-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.hrow-top h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 1.02rem; letter-spacing: -.01em; line-height: 1.3;
}
.hrow-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  margin-top: 6px; color: var(--c-asphalt); font-size: .8rem; font-weight: 600;
}
.hrow-meta svg { width: 14px; height: 14px; flex: none; }
.dotsep { color: #C6C9D2; }
.hrow-wa {
  flex: none; width: 40px; height: 40px; border-radius: var(--r-full);
  background: #EAF7EF; color: #178A46;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.hrow-wa:hover { background: #1FA855; color: #fff; }
.hrow-wa svg { width: 18px; height: 18px; display: block; }
.hrow-wa:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 2px; }
.hrow-harga {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--c-line);
}
.hrow-harga > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hrow-harga span {
  font-size: .62rem; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--c-asphalt);
}
.hrow-harga b {
  font-size: clamp(.78rem, 2.6vw, .95rem); font-weight: 800;
  letter-spacing: -.01em; color: var(--c-ink); white-space: nowrap;
}

.harga-note { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s-xl); }
.harga-note > div {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 700;
  padding: 11px 16px; border-radius: var(--r-md);
}
.harga-note svg { width: 15px; height: 15px; flex: none; }
.hn-in { background: #EDF7F0; border: 1px solid #CBE8D6; color: #116B3C; }
.hn-out { background: #FBEDED; border: 1px solid #F2CFCF; color: #8F1F1F; }

/* State kosong pencarian */
.harga-empty, .art-empty { text-align: center; padding: var(--s-3xl) var(--s-md); }
.harga-empty img, .art-empty img {
  width: 100%; max-width: 240px; border-radius: var(--r-lg);
  box-shadow: var(--sh-md); margin-bottom: var(--s-lg);
}
.harga-empty h3, .art-empty h3 { font-size: 1.35rem; }
.harga-empty p, .art-empty p { color: var(--c-asphalt); max-width: 44ch; margin: var(--s-sm) auto var(--s-lg); }
.harga-empty[hidden], .art-empty[hidden] { display: none; }
/* Index artikel — kartu dengan ringkasan + hitungan hasil */
.art-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.art-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: #C6C9D2; }
.art-card:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 2px; }
.art-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.art-card .art-card-body { padding: 14px 16px 16px; display: grid; gap: 6px; }
.art-card small { font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--c-primary); }
.art-card b { font-size: .98rem; line-height: 1.35; letter-spacing: -.01em; }
.art-card .art-card-ringkas { font-size: .84rem; line-height: 1.55; color: var(--c-asphalt); }
.art-card[hidden] { display: none; }
.art-count { font-size: .8rem; font-weight: 700; color: var(--c-asphalt); margin: var(--s-md) 0 0; }

/* ============ BOTTOM NAV (mobile) ============ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--c-charcoal);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 32px rgba(31,36,48,.35);
  -webkit-transform: translateZ(0); transform: translateZ(0);
  will-change: transform;
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 4px 12px;
  font-size: .66rem; font-weight: 700; color: #C3C6CE;
  text-decoration: none;
  transition: color var(--t-fast);
}
.bottom-nav a svg { width: 22px; height: 22px; }
.bottom-nav a.is-active { color: #fff; }
.bottom-nav a.is-active svg { color: var(--c-primary-bright); }
@media (min-width: 900px) { .bottom-nav { display: none; } }

/* Floating WA */
.wa-float {
  position: fixed; right: 16px; bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom) + 16px);
  z-index: 45; width: 56px; height: 56px; border-radius: var(--r-full);
  background: #1FA855; color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.82);
  box-shadow: 0 12px 30px rgba(31,168,85,.34), 0 3px 10px rgba(31,36,48,.16);
  -webkit-transform: translateZ(0); transform: translateZ(0);
  will-change: transform;
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.wa-float:hover { background: #178A46; box-shadow: 0 14px 34px rgba(31,168,85,.42), 0 4px 12px rgba(31,36,48,.18); -webkit-transform: translateZ(0) scale(1.06); transform: translateZ(0) scale(1.06); }
.wa-float svg { width: 27px; height: 27px; display: block; }
@media (min-width: 900px) { .wa-float { bottom: 28px; } }

/* ============ SPLASH ============ */
.splash {
  position: fixed; inset: 0; z-index: 100;
  background: var(--c-charcoal);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--s-lg);
}
.splash img { width: 110px; animation: splash-pulse 1.1s var(--e-out) infinite alternate; }
.splash p { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.splash.is-done { opacity: 0; visibility: hidden; transition: opacity var(--t-slow) var(--e-out), visibility var(--t-slow); }
@keyframes splash-pulse { from { transform: scale(.93); opacity: .75; } to { transform: scale(1); opacity: 1; } }

/* ============ SHEET / TOAST / SKELETON ============ */
.sheet-backdrop {
  position: fixed; inset: 0; z-index: 60; background: rgba(31,36,48,.55);
  opacity: 0; visibility: hidden; transition: opacity var(--t-normal) var(--e-out), visibility var(--t-normal);
}
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 61;
  background: var(--c-surface);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: var(--s-sm) var(--s-lg) calc(var(--s-2xl) + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform var(--t-normal) var(--e-out);
  max-height: 85vh; overflow-y: auto;
  box-shadow: var(--sh-lg);
}
.sheet.is-open { transform: translateY(0); }
.sheet-backdrop.is-open { opacity: 1; visibility: visible; }
.sheet-handle { width: 44px; height: 5px; border-radius: var(--r-full); background: var(--c-line); margin: var(--s-sm) auto var(--s-lg); }

.toast {
  position: fixed; left: 50%; bottom: calc(var(--bottomnav-h) + 84px);
  transform: translateX(-50%) translateY(16px);
  background: var(--c-charcoal); color: #fff;
  padding: 12px 22px; border-radius: var(--r-md);
  font-size: .875rem; font-weight: 600;
  opacity: 0; visibility: hidden; z-index: 70;
  transition: all var(--t-normal) var(--e-out);
  max-width: min(90vw, 420px); text-align: center;
  box-shadow: var(--sh-lg);
}
.toast.is-show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.skeleton {
  background: linear-gradient(90deg, #EBEBEE 25%, #F6F6F8 50%, #EBEBEE 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.4s ease infinite;
  border-radius: var(--r-sm);
}
@keyframes skeleton-wave { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ============ FOOTER ============ */
.site-footer { background: var(--c-charcoal); color: #B9BCC6; padding: var(--s-3xl) 0 var(--s-2xl); }
.site-footer .grid { display: grid; gap: var(--s-xl); grid-template-columns: repeat(2, 1fr); }
.site-footer .grid > div:first-child { grid-column: 1 / -1; }
.site-footer .grid > div:last-child { text-align: left; }
@media (max-width: 899px) {
  .site-footer .grid > div:last-child { grid-column: 1 / -1; text-align: center; }
  .site-footer .grid > div:last-child ul { justify-items: center; }
  /* Ruang ekstra bawah agar konten tidak tertutup bottom nav (mobile) */
  .site-footer { padding-bottom: calc(var(--s-2xl) + var(--bottomnav-h) + 16px + env(safe-area-inset-bottom)); }
}
@media (min-width: 900px) { .site-footer .grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } .site-footer .grid > div:first-child { grid-column: auto; } }
.site-footer a { color: #B9BCC6; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer h3 { color: #fff; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; font-family: 'Plus Jakarta Sans'; font-weight: 800; }
.site-footer ul { list-style: none; padding: 0; margin: var(--s-md) 0 0; display: grid; gap: 10px; font-size: .9rem; }
/* Daftar Sekretariat: ikon kiri + teks kanan */
.site-footer ul.sek-list li { display: flex; align-items: flex-start; gap: 10px; }
.site-footer .sek-ic { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 34px; height: 34px; border-radius: var(--r-sm); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--c-primary-bright); }
.site-footer .sek-ic svg { width: 15px; height: 15px; }
.site-footer ul.sek-list a { text-decoration: none; }
.site-footer ul.sek-list a:hover { color: #fff; text-decoration: underline; }
.footer-note { border-top: 1px solid rgba(255,255,255,.1); margin-top: var(--s-2xl); padding-top: var(--s-lg); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; font-size: 10px; color: #A6A9B3; line-height: 1.5; }
.footer-note a { color: #C9CBD4; font-weight: 800; text-decoration: none; letter-spacing: .02em; }
.footer-note a:hover { color: #fff; text-decoration: underline; }
.sosmed { display: flex; gap: 10px; margin-top: var(--s-md); }
.sosmed a {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast) var(--e-out), transform var(--t-fast);
}
.sosmed a:hover { background: var(--c-primary); transform: translateY(-3px); }
.sosmed a[data-sosmed="whatsapp"] { background: rgba(31,168,85,.18); color: #7FD8A4; }
.sosmed a[data-sosmed="whatsapp"]:hover { background: #1FA855; color: #fff; }
.sosmed svg { width: 18px; height: 18px; display: block; }

/* ============ KETENTUAN PAGE ============ */
.harga-chips a.chip { display: inline-flex; align-items: center; text-decoration: none; }
.kt-wrap { max-width: 780px; margin: 0 auto; display: grid; gap: var(--s-xl); }
.kt-sec {
  display: grid; grid-template-columns: 56px 1fr; gap: var(--s-md);
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 32px); box-shadow: var(--sh-sm);
  scroll-margin-top: calc(var(--nav-h) + 76px);
}
.kt-num {
  font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.05rem;
  width: 44px; height: 44px; border-radius: var(--r-full);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-charcoal); color: #fff; letter-spacing: .02em;
}
.kt-body h2 { font-size: clamp(1.3rem, 3.4vw, 1.7rem); margin-bottom: var(--s-sm); }
.kt-body > p { color: var(--c-ink); }
.kt-body p + p, .kt-body .kt-list + p { margin-top: var(--s-sm); }
.kt-list { margin: var(--s-md) 0 0; padding: 0; display: grid; gap: 10px; list-style: none; counter-reset: kt; }
.kt-list li { position: relative; padding-left: 26px; font-size: .95rem; line-height: 1.6; }
.kt-list li::before {
  content: ""; position: absolute; left: 2px; top: .55em;
  width: 8px; height: 8px; border-radius: 2px; background: var(--c-primary);
  transform: rotate(45deg);
}
ol.kt-list { counter-reset: kt; }
ol.kt-list li { counter-increment: kt; padding-left: 34px; }
ol.kt-list li::before {
  content: counter(kt, decimal-leading-zero); transform: none;
  width: auto; height: auto; background: none; color: var(--c-primary);
  font-weight: 800; font-size: .78rem; top: .25em; letter-spacing: .04em;
}
.kt-list a { color: var(--c-primary); font-weight: 700; text-decoration: none; }
.kt-list a:hover { text-decoration: underline; }
.kt-callout {
  margin-top: var(--s-md); padding: 14px 16px; border-radius: var(--r-md);
  background: #F0F6FF; border: 1px solid #CFE1F7; color: #1E4E8C;
  font-size: .88rem; line-height: 1.55;
}
.kt-callout b { display: inline; }
.kt-callout.kt-warn { background: #FFF7E8; border-color: #F2DFB6; color: #7A5A14; }
.kt-rek {
  margin-top: var(--s-md); padding: 16px 20px; border-radius: var(--r-md);
  background: var(--c-charcoal); color: #fff;
  display: grid; gap: 2px;
}
.kt-rek span { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #A6A9B3; }
.kt-rek b { font-family: 'Bricolage Grotesque'; font-size: 1.4rem; font-weight: 800; letter-spacing: .03em; }
.kt-rek small { font-size: .78rem; color: #C3C6CE; font-weight: 600; }
.kt-incex { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: var(--s-md); }
@media (min-width: 640px) { .kt-incex { grid-template-columns: 1fr 1fr; } }
.kt-in, .kt-out { border-radius: var(--r-md); padding: 16px 18px; }
.kt-in { background: #EDF7F0; border: 1px solid #CBE8D6; }
.kt-out { background: #FBEDED; border: 1px solid #F2CFCF; }
.kt-in b { color: #116B3C; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.kt-out b { color: #8F1F1F; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.kt-in ul, .kt-out ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .9rem; font-weight: 600; }
.kt-in ul li, .kt-out ul li { display: flex; gap: 8px; align-items: baseline; }
.kt-in ul li::before { content: "✓"; color: #116B3C; font-weight: 800; }
.kt-out ul li::before { content: "✗"; color: #8F1F1F; font-weight: 800; }
.kt-updated { font-size: .82rem; color: var(--c-asphalt); text-align: center; }
.kt-updated a { color: var(--c-primary); font-weight: 700; text-decoration: none; }
.kt-updated a:hover { text-decoration: underline; }
@media (max-width: 560px) { .kt-sec { grid-template-columns: 1fr; } .kt-num { width: 40px; height: 40px; } }

/* ============ BOOKING PAGE ============ */
.bk-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); align-items: start; }
@media (min-width: 900px) { .bk-grid { grid-template-columns: 1.25fr .75fr; gap: var(--s-xl); } }
.bk-form { display: grid; gap: var(--s-lg); }
.bk-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 32px); box-shadow: var(--sh-sm);
}
.bk-title { font-size: 1.2rem; margin-bottom: var(--s-md); }
.bk-fields { display: grid; gap: var(--s-md); grid-template-columns: 1fr; }
@media (min-width: 640px) { .bk-fields { grid-template-columns: 1fr 1fr; } }
.bk-field { display: grid; gap: 6px; }
.bk-field + .bk-field { margin-top: var(--s-md); }
.bk-fields + .bk-field { margin-top: var(--s-md); }
.bk-field > span, .bk-field legend span { font-size: .8rem; font-weight: 700; letter-spacing: .02em; }
.bk-field b { color: var(--c-primary); }
.bk-field fieldset, fieldset.bk-field { border: 0; padding: 0; margin: 0; min-width: 0; }
.bk-hint { font-size: .76rem; color: var(--c-asphalt); font-weight: 600; }
select.input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23696969' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 42px; }
textarea.input { resize: vertical; min-height: 88px; }
.input:invalid:not(:placeholder-shown) { border-color: #E5A2A2; }

.bk-armada { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.bk-arm { display: block; cursor: pointer; }
.bk-arm input { position: absolute; opacity: 0; pointer-events: none; }
.bk-arm-card {
  display: grid; gap: 3px; text-align: center; justify-items: center;
  border: 1.5px solid var(--c-line); border-radius: var(--r-md);
  padding: 14px 8px; background: #fff;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.bk-arm-card b { font-size: .88rem; font-weight: 800; letter-spacing: -.01em; }
.bk-arm-card small { font-size: .68rem; font-weight: 600; color: var(--c-asphalt); }
.bk-arm:hover .bk-arm-card { border-color: var(--c-asphalt); }
.bk-arm input:checked + .bk-arm-card {
  border-color: var(--c-primary); background: var(--c-primary-soft);
  box-shadow: 0 0 0 3px var(--c-primary-soft);
}
.bk-arm input:focus-visible + .bk-arm-card { outline: 3px solid var(--c-sky); outline-offset: 2px; }

.bk-summary {
  position: sticky; top: calc(var(--nav-h) + var(--s-md));
  background: var(--c-charcoal); border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 28px);
  box-shadow: var(--sh-lg); overflow: hidden;
}
.bk-sum-body { margin-top: var(--s-md); display: grid; gap: 10px; }
.bk-sum-row { display: flex; justify-content: space-between; gap: 14px; font-size: .86rem; }
.bk-sum-row span { color: #9DA0AA; font-weight: 600; flex: none; }
.bk-sum-row b { color: #DEE0E6; font-weight: 700; text-align: right; }
.bk-sum-harga {
  margin-top: 6px; padding: 14px 16px; border-radius: var(--r-md);
  background: #1F2229; border: 1px solid rgba(255,255,255,.1);
  display: grid; gap: 4px;
}
.bk-sum-harga span { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #A6A9B3; }
.bk-sum-harga b { font-family: 'Bricolage Grotesque'; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: var(--c-primary-bright); letter-spacing: -.02em; }
.bk-sum-note { display: grid; gap: 4px; font-size: .76rem; font-weight: 600; color: #C3C6CE; }
.bk-sum-note div:first-child { color: #7FD8A4; }
.bk-sum-note div:last-child { color: #F0A9A9; }
.btn-block { width: 100%; }
.bk-fineprint { font-size: .7rem; color: #9DA0AA; text-align: center; line-height: 1.5; }
@media (max-width: 899px) {
  .bk-summary { position: static; }
}

/* ============ FORM ============ */
.input, select.input, textarea.input {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--c-line); border-radius: var(--r-sm);
  background: var(--c-surface); font: inherit; color: var(--c-ink);
  transition: border-color var(--t-fast) var(--e-out), box-shadow var(--t-fast) var(--e-out);
}
.input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px var(--c-primary-soft); }

/* Util animasi reveal saat load */
.anim-up { animation: anim-up var(--t-slow) var(--e-out) both; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .24s; }
@keyframes anim-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ============ GALERI PAGE ============ */
.galeri-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  grid-auto-flow: dense;
}
@media (min-width: 640px) {
  .galeri-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 128px;
  }
}
@media (min-width: 1024px) {
  .galeri-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 118px;
    gap: 18px;
  }
}
.g-item {
  position: relative; display: block; padding: 0; border: 1px solid rgba(31,36,48,.1); cursor: zoom-in;
  border-radius: var(--r-md); overflow: hidden; background: var(--c-charcoal-2);
  aspect-ratio: 4/3; text-align: left; font: inherit; box-shadow: 0 12px 30px rgba(31,36,48,.1);
}
@media (min-width: 640px) {
  .g-item { aspect-ratio: auto; min-height: 0; }
  .g-normal { grid-row: span 2; }
  .g-tall { grid-row: span 3; }
  .g-wide, .g-feature { grid-column: span 2; grid-row: span 2; }
}
@media (min-width: 1024px) {
  .g-normal { grid-row: span 2; }
  .g-tall { grid-row: span 3; }
  .g-wide { grid-column: span 2; grid-row: span 2; }
  .g-feature { grid-column: span 2; grid-row: span 3; }
}
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-slow) var(--e-out); }
.g-item:hover img, .g-item:focus-visible img { transform: scale(1.06); }
.g-item:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 2px; }
.g-num {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: .72rem; letter-spacing: .08em;
  color: #fff; background: rgba(31,36,48,.72); padding: 4px 9px; border-radius: var(--r-full);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.g-cap {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 2;
  display: block; min-height: 56px; padding: 34px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(15,16,20,.88));
  color: #fff; font-size: .82rem; font-weight: 700; text-align: left; line-height: 1.35;
  transform: translateY(0); opacity: 1; text-shadow: 0 1px 2px rgba(0,0,0,.22);
}
.galeri-noscript { margin-top: var(--s-lg); font-size: .9rem; color: var(--c-asphalt); }
.galeri-noscript a { color: var(--c-primary); font-weight: 700; }

/* ============ LIGHTBOX ============ */
.lb {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; pointer-events: none;
}
.lb.is-open { visibility: visible; pointer-events: auto; }
.lb-scrim { position: absolute; inset: 0; background: rgba(10,11,14,.9); opacity: 0; transition: opacity var(--t-normal); }
.lb.is-open .lb-scrim { opacity: 1; }
.lb-fig {
  position: relative; z-index: 1; margin: 0;
  max-width: min(92vw, 1040px);
  display: flex; flex-direction: column;
  transform: scale(.96); opacity: 0;
  transition: transform var(--t-normal) var(--e-out), opacity var(--t-normal);
}
.lb.is-open .lb-fig { transform: none; opacity: 1; }
.lb-fig img {
  max-width: 100%; max-height: calc(100vh - 180px);
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  background: var(--c-charcoal-2);
}
.lb-fig img.is-in { animation: lb-pop 320ms var(--e-out); }
@keyframes lb-pop { from { opacity: .35; transform: scale(.985); } to { opacity: 1; transform: none; } }
.lb-fig figcaption { display: flex; align-items: baseline; gap: 12px; padding: 14px 6px 0; color: #fff; }
.lb-count { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: .8rem; color: var(--c-primary-bright); letter-spacing: .08em; flex: none; }
.lb-fig figcaption p { font-size: .92rem; font-weight: 600; color: #E8E9EE; }
.lb-btn {
  position: absolute; z-index: 2;
  width: 46px; height: 46px; border-radius: var(--r-full); border: 1px solid rgba(255,255,255,.18);
  background: rgba(31,36,48,.72); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: background var(--t-fast), transform var(--t-fast) var(--e-out);
}
.lb-btn:hover { background: var(--c-primary); }
.lb-btn:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 2px; }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: max(16px, env(safe-area-inset-top)); right: 16px; }
.lb-close:hover { transform: scale(1.06); }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 640px) {
  .lb-btn { width: 42px; height: 42px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-fig figcaption { flex-direction: column; gap: 4px; }
}

/* ============ TENTANG PAGE ============ */
.tb-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); align-items: start; }
@media (min-width: 900px) { .tb-grid { grid-template-columns: 1.15fr .85fr; gap: var(--s-3xl); } }
.tb-manifesto p {
  font-family: 'Bricolage Grotesque'; font-weight: 500;
  font-size: clamp(1.25rem, 3.2vw, 1.8rem); line-height: 1.42; letter-spacing: -.01em;
  color: var(--c-ink);
}
.tb-manifesto p + p { margin-top: var(--s-lg); }
.tb-manifesto b { font-weight: 700; }
.tb-mark {
  background: linear-gradient(180deg, transparent 62%, var(--c-primary-soft) 62%);
  padding: 0 2px;
}
.tb-sheet {
  background: var(--c-charcoal); color: #DEE0E6;
  border-radius: var(--r-lg); padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--sh-lg);
}
.tb-sheet-title {
  font-family: 'Plus Jakarta Sans'; font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: #A6A9B3;
  padding-bottom: var(--s-md); border-bottom: 1px solid rgba(255,255,255,.14);
}
.tb-sheet-list { margin: 0; display: grid; }
.tb-sheet-list > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 13px 0; border-bottom: 1px dashed rgba(255,255,255,.14);
}
.tb-sheet-list > div:last-child { border-bottom: 0; }
.tb-sheet-list dt { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #9DA0AA; flex: none; }
.tb-sheet-list dd { margin: 0; font-size: .88rem; font-weight: 700; text-align: right; line-height: 1.45; }
.tb-sheet-list dd small { display: block; font-size: .7rem; font-weight: 600; color: #9DA0AA; }
.tb-sheet-list a { color: var(--c-primary-bright); text-decoration: none; }
.tb-sheet-list a:hover { text-decoration: underline; }

.tb-stats {
  margin-top: var(--s-2xl);
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--c-line);
}
@media (min-width: 760px) { .tb-stats { grid-template-columns: repeat(3, 1fr); } }
.tb-stats > div { padding: var(--s-lg) 0; }
@media (min-width: 760px) {
  .tb-stats > div { padding: var(--s-lg) var(--s-xl); }
  .tb-stats > div + div { border-left: 1px solid var(--c-line); }
  .tb-stats > div:first-child { padding-left: 0; }
}
.tb-stats b {
  display: block; font-family: 'Bricolage Grotesque'; font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem); letter-spacing: -.02em; color: var(--c-primary);
}
.tb-stats span { font-size: .84rem; font-weight: 600; color: var(--c-asphalt); }

.tb-nilai { list-style: none; margin: 0; padding: 0; }
.tb-nilai li {
  display: grid; grid-template-columns: 1fr; gap: 6px;
  padding: var(--s-xl) 0; border-top: 1px solid var(--c-line);
}
@media (min-width: 760px) { .tb-nilai li { grid-template-columns: 96px 1fr; gap: var(--s-lg); } }
.tb-nilai li:last-child { border-bottom: 1px solid var(--c-line); }
.tb-no {
  font-family: 'Bricolage Grotesque'; font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.4rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px #C9CBD4;
  transition: -webkit-text-stroke-color var(--t-fast);
}
.tb-nilai li:hover .tb-no { -webkit-text-stroke-color: var(--c-primary); }
.tb-nilai h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }
.tb-nilai p { margin-top: 8px; color: var(--c-asphalt); font-size: .95rem; max-width: 62ch; }
.tb-nilai a { color: var(--c-primary); font-weight: 700; text-decoration: none; }
.tb-nilai a:hover { text-decoration: underline; }

.tb-segmen {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 32px);
}
.tb-segmen-label {
  display: block; font-size: .72rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--c-asphalt);
  margin-bottom: var(--s-md);
}
.tb-segmen ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-md); }
@media (min-width: 760px) { .tb-segmen ul { grid-template-columns: repeat(5, 1fr); gap: var(--s-lg); } }
.tb-segmen li { border-left: 3px solid var(--c-primary); padding-left: 14px; }
.tb-segmen b { display: block; font-size: .95rem; letter-spacing: -.01em; }
.tb-segmen span { font-size: .78rem; font-weight: 600; color: var(--c-asphalt); }

.tb-fleet { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); }
@media (min-width: 760px) { .tb-fleet { grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); } }
.tb-fleet-a { display: block; text-decoration: none; color: inherit; }
/* Offset via margin (bukan transform) agar tidak ditimpa animasi .anim-up fill-mode:both */
@media (min-width: 760px) { .tb-fleet-a:nth-child(2) { margin-top: 26px; } }
.tb-fleet-a img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border-radius: var(--r-md); border: 1px solid var(--c-line);
  transition: transform var(--t-slow) var(--e-out);
}
.tb-fleet-a:hover img { transform: scale(1.03); }
.tb-fleet-a:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 3px; border-radius: var(--r-md); }
.tb-fleet-cap { display: block; padding-top: 12px; }
.tb-fleet-cap b { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.02rem; }
.tb-fleet-cap small { display: block; margin-top: 3px; font-size: .8rem; font-weight: 600; color: var(--c-asphalt); }

/* ============ KONTAK PAGE ============ */
.kn-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); align-items: stretch; }
@media (min-width: 900px) { .kn-grid { grid-template-columns: 1.1fr .9fr; gap: var(--s-xl); } }

/* Kartu WA besar — tombol utama halaman */
.kn-wa {
  position: relative; overflow: hidden;
  background: var(--c-charcoal); color: #fff;
  border-radius: var(--r-xl); padding: clamp(24px, 5vw, 44px);
  box-shadow: var(--sh-lg);
  display: flex; flex-direction: column; align-items: flex-start;
}
.kn-wa::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 260px at 92% 0%, rgba(31,168,85,.22), transparent 62%);
}
.kn-wa-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #7FD8A4; background: rgba(31,168,85,.14); border: 1px solid rgba(31,168,85,.35);
  padding: 7px 13px; border-radius: var(--r-full);
}
.kn-wa-badge svg { width: 14px; height: 14px; }
.kn-wa-title { font-size: clamp(1.3rem, 3.4vw, 1.7rem); margin-top: var(--s-lg); }
.kn-wa-num {
  position: relative; z-index: 1;
  display: inline-block; margin-top: 6px; text-decoration: none;
  font-family: 'Bricolage Grotesque'; font-weight: 800;
  font-size: clamp(2rem, 6.5vw, 3.1rem); letter-spacing: .01em; line-height: 1.1; color: #fff;
  border-bottom: 3px solid rgba(31,168,85,.55);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.kn-wa-num:hover { color: var(--c-primary-bright); border-color: var(--c-primary-bright); }
.kn-wa-num:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 3px; border-radius: 4px; }
.kn-wa-note { position: relative; z-index: 1; margin-top: var(--s-md); color: #B9BCC6; font-size: .92rem; max-width: 44ch; }
.kn-wa-row { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-xl); }
.kn-wa-row .btn-wa { box-shadow: 0 8px 24px rgba(31,168,85,.35); }

/* Tombol ghost terang untuk surface gelap */
.btn-ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.3);
}
.btn-ghost-light:hover:not(:disabled) { border-color: #fff; background: rgba(255,255,255,.08); }

/* Kartu pendukung: email / jam / alamat */
.kn-side { display: grid; gap: var(--s-md); align-content: start; }
.kn-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: var(--s-lg); text-decoration: none; color: inherit;
  transition: border-color var(--t-fast), transform var(--t-normal) var(--e-out), box-shadow var(--t-normal);
}
a.kn-row:hover { border-color: var(--c-primary); transform: translateX(4px); box-shadow: var(--sh-md); }
.kn-row:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 2px; }
.kn-ic {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--c-primary-soft); color: var(--c-primary);
}
.kn-ic svg { width: 20px; height: 20px; }
.kn-row-body { display: grid; gap: 3px; min-width: 0; }
.kn-row-body b { font-size: .98rem; letter-spacing: -.01em; }
.kn-row-body small { font-size: .88rem; font-weight: 600; color: var(--c-ink); line-height: 1.45; }
.kn-row-body em { font-style: normal; font-size: .76rem; font-weight: 600; color: var(--c-asphalt); margin-top: 2px; }

/* Peta penuh lebar + kartu overlay alamat */
.kn-map {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-line); box-shadow: var(--sh-md);
}
.kn-map iframe {
  display: block; width: 100%; aspect-ratio: 16/10; border: 0; background: var(--c-charcoal-2);
}
@media (max-width: 640px) { .kn-map iframe { aspect-ratio: 4/3; } }
.kn-map-card {
  position: absolute; left: 14px; bottom: 14px; max-width: min(340px, calc(100% - 28px));
  background: #fff; border-radius: var(--r-md); padding: 16px 18px;
  box-shadow: var(--sh-lg); display: grid; gap: 6px;
}
.kn-map-card b { font-size: .78rem; letter-spacing: .04em; color: var(--c-ink); }
.kn-map-card span { font-size: .84rem; font-weight: 600; color: var(--c-asphalt); line-height: 1.5; }
.kn-map-card a {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 4px; font-size: .84rem; font-weight: 800; color: var(--c-primary); text-decoration: none;
}
.kn-map-card a:hover { text-decoration: underline; }
.kn-map-card a svg { width: 14px; height: 14px; }
@media (max-width: 640px) { .kn-map-card { position: static; max-width: none; border-radius: 0; box-shadow: none; border-top: 1px solid var(--c-line); } }

/* ============ FAQ PAGE ============ */
.faq-count { font-size: .78rem; font-weight: 700; color: var(--c-asphalt); margin-bottom: var(--s-md); }
.faq-list { border-top: 1px solid var(--c-line); }
.faq-item { border-bottom: 1px solid var(--c-line); scroll-margin-top: calc(var(--nav-h) + 72px); animation: anim-up var(--t-slow) var(--e-out) both; }
.faq-item[hidden] { display: none; }
.faq-q {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px;
  width: 100%; padding: var(--s-lg) 0; border: 0; background: none; cursor: pointer;
  font: inherit; text-align: left;
}
.faq-q:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 4px; border-radius: var(--r-sm); }
.faq-no {
  font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: .82rem;
  color: var(--c-primary); letter-spacing: .04em; min-width: 26px;
}
.faq-tanya {
  font-family: 'Bricolage Grotesque'; font-weight: 700;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem); line-height: 1.3; letter-spacing: -.01em;
  color: var(--c-ink); transition: color var(--t-fast);
}
.faq-q:hover .faq-tanya { color: var(--c-primary); }
.faq-ic {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 34px; height: 34px; border-radius: var(--r-full);
  border: 1.5px solid var(--c-line); color: var(--c-asphalt);
  transition: transform var(--t-normal) var(--e-out), border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.faq-ic svg { width: 16px; height: 16px; }
.faq-q:hover .faq-ic { border-color: var(--c-primary); color: var(--c-primary); }
.faq-item.is-open .faq-ic { transform: rotate(45deg); background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
/* Panel jawaban: grid-rows agar animasi tinggi mulus tanpa JS ukur */
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-normal) var(--e-out);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner > p {
  padding: 0 42px var(--s-lg); max-width: 68ch;
  color: var(--c-asphalt); font-size: .95rem; line-height: 1.7;
}
.faq-a-inner > p b { color: var(--c-ink); }
.faq-a-inner a { color: var(--c-primary); font-weight: 700; text-decoration: none; }
.faq-a-inner a:hover { text-decoration: underline; }
.faq-kat {
  display: inline-block; margin: 0 42px 10px;
  font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-asphalt); background: var(--c-bg); border: 1px solid var(--c-line);
  padding: 4px 10px; border-radius: var(--r-full);
}
@media (max-width: 640px) {
  .faq-q { gap: 12px; }
  .faq-ic { width: 30px; height: 30px; }
  .faq-a-inner > p, .faq-kat { margin-left: 0; margin-right: 0; padding-left: 38px; padding-right: 0; }
}

/* Cuplikan FAQ di beranda: daftar link ringkas, bukan kartu */
.faq-cuplikan { display: grid; gap: 10px; }
.faq-cuplikan a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: #fff; border: 1px solid var(--c-line); border-left: 3px solid var(--c-primary);
  border-radius: var(--r-md); padding: 15px 18px;
  font-weight: 700; font-size: .95rem; color: var(--c-ink); text-decoration: none;
  transition: border-color var(--t-fast), transform var(--t-normal) var(--e-out), box-shadow var(--t-normal);
}
.faq-cuplikan a:hover { border-color: #C6C9D2; transform: translateX(4px); box-shadow: var(--sh-sm); }
.faq-cuplikan a svg { width: 17px; height: 17px; flex: none; color: var(--c-primary); transition: transform var(--t-fast); }
.faq-cuplikan a:hover svg { transform: translateX(3px); }
.faq-cuplikan a:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 2px; }

/* ============ TESTIMONI PAGE ============ */
.ts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-md); align-items: stretch; }
@media (min-width: 900px) { .ts-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-lg); } }
.ts-grid.is-photo {
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
  gap: 14px;
}
@media (min-width: 640px) {
  .ts-grid.is-photo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 124px;
  }
}
@media (min-width: 980px) {
  .ts-grid.is-photo {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 108px;
    gap: 18px;
  }
}
.ts-photo {
  position: relative; margin: 0; overflow: hidden;
  aspect-ratio: 4/3; border-radius: var(--r-md);
  border: 1px solid rgba(31,36,48,.12); background: var(--c-charcoal-2);
  box-shadow: 0 14px 32px rgba(31,36,48,.1);
}
@media (min-width: 640px) {
  .ts-photo { aspect-ratio: auto; }
  .ts-normal { grid-row: span 2; }
  .ts-tall { grid-row: span 3; }
  .ts-wide, .ts-feature { grid-column: span 2; grid-row: span 2; }
}
@media (min-width: 980px) {
  .ts-normal { grid-row: span 2; }
  .ts-tall { grid-row: span 3; }
  .ts-wide { grid-column: span 2; grid-row: span 2; }
  .ts-feature { grid-column: span 2; grid-row: span 3; }
}
.ts-photo img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--e-out), filter var(--t-normal);
}
.ts-photo:hover img { transform: scale(1.045); filter: saturate(1.04) contrast(1.02); }
.ts-photo figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  display: flex; align-items: center; gap: 9px;
  padding: 42px 13px 12px;
  color: #fff; background: linear-gradient(180deg, transparent, rgba(15,16,20,.84));
}
.ts-photo figcaption span {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: var(--r-full);
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.2);
  font-family: 'Bricolage Grotesque'; font-size: .72rem; font-weight: 800;
}
.ts-photo figcaption b {
  min-width: 0; font-size: .8rem; line-height: 1.25; letter-spacing: .02em;
  text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Kartu video: frame 9:16 + caption */
.ts-card { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ts-frame {
  position: relative; aspect-ratio: 9/16; border-radius: var(--r-md); overflow: hidden;
  background:
    radial-gradient(240px 160px at 50% 22%, rgba(217,30,30,.16), transparent 70%),
    var(--c-charcoal-2);
  border: 1px solid var(--c-line);
}
.ts-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ts-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: var(--r-full); border: 0; cursor: pointer;
  background: var(--c-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(217,30,30,.45);
  transition: transform var(--t-normal) var(--e-out), background var(--t-fast);
}
.ts-play svg { width: 22px; height: 22px; margin-left: 3px; }
.ts-play:hover { background: var(--c-primary-hover); transform: translate(-50%, -50%) scale(1.1); }
.ts-play:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 3px; }
.ts-frame.is-loading .ts-play { display: none; }
.ts-dur {
  position: absolute; bottom: 10px; left: 10px;
  font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #DEE0E6; background: rgba(15,16,20,.66); padding: 5px 10px; border-radius: var(--r-full);
}
.ts-card figcaption { display: grid; gap: 2px; padding: 0 4px; }
.ts-card figcaption b { font-size: .92rem; letter-spacing: -.01em; }
.ts-card figcaption small { font-size: .76rem; font-weight: 600; color: var(--c-asphalt); }

/* Slot kosong: jujur, berirama, tidak terlihat rusak */
.ts-slot {
  min-height: 300px;
  border: 1.5px dashed #C6C9D2; border-radius: var(--r-md);
  background: repeating-linear-gradient(135deg, #fff 0 14px, #FAFAFB 14px 28px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 8px; padding: var(--s-lg);
}
.ts-slot svg { width: 30px; height: 30px; color: #A6A9B3; }
.ts-slot b { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1rem; color: var(--c-ink); }
.ts-slot p { font-size: .76rem; font-weight: 600; color: var(--c-asphalt); max-width: 24ch; line-height: 1.5; }
.ts-slot-no { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: .7rem; letter-spacing: .12em; color: #C6C9D2; }

/* Band ajakan kirim video */
.ts-kirim {
  background: #fff; border: 1px solid var(--c-line); border-left: 3px solid var(--c-primary);
  border-radius: var(--r-lg); padding: clamp(22px, 4vw, 36px);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-xl); flex-wrap: wrap;
}
.ts-kirim .btn-wa { flex: none; }

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
}
@media (min-width: 700px) {
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1060px) {
  .review-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-lg); }
}
.review-card {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,250,251,.98)),
    var(--c-white);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-primary);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 14px 34px rgba(31,36,48,.08);
  transition: transform var(--t-normal) var(--e-out), box-shadow var(--t-normal), border-color var(--t-fast);
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217,30,30,.35);
  box-shadow: 0 20px 46px rgba(31,36,48,.12);
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-stars {
  color: #F5A524;
  font-size: .86rem;
  letter-spacing: .08em;
}
.review-badge {
  flex: none;
  border: 1px solid var(--c-line);
  border-radius: var(--r-full);
  padding: 5px 9px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-asphalt);
  background: #fff;
}
.review-card p {
  margin: 0;
  color: var(--c-ink);
  font-size: .95rem;
  line-height: 1.72;
}
.review-person {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
  display: grid;
  gap: 3px;
}
.review-person span {
  font-family: 'Bricolage Grotesque';
  font-weight: 800;
  font-size: 1rem;
}
.review-person small {
  color: var(--c-asphalt);
  font-weight: 700;
  font-size: .78rem;
}
.review-note {
  margin: var(--s-lg) 0 0;
  max-width: 76ch;
  color: var(--c-asphalt);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.6;
}

/* ============ BANNER OFFLINE (W11) ============ */
.offline-bar {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 55;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #7A5A14; color: #FFF7E8;
  font-size: .82rem; font-weight: 700; line-height: 1.4;
  padding: 10px 16px; text-align: center;
  box-shadow: 0 10px 26px rgba(15,16,20,.28);
  transform: translateY(-130%); opacity: 0; visibility: hidden;
  transition: transform var(--t-normal) var(--e-out), opacity var(--t-normal), visibility var(--t-normal);
}
.offline-bar.is-show { transform: none; opacity: 1; visibility: visible; }
.offline-bar svg { width: 16px; height: 16px; flex: none; }

/* ============ TEMPLATE ARTIKEL (W10) ============ */
.art-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .78rem; font-weight: 600; color: var(--c-asphalt); }
.art-breadcrumb a { color: var(--c-asphalt); text-decoration: none; }
.art-breadcrumb a:hover { color: var(--c-primary); }
.art-breadcrumb svg { width: 13px; height: 13px; color: #C6C9D2; }
.art-breadcrumb [aria-current] { color: var(--c-ink); }

.art-hero { margin-top: var(--s-md); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--sh-md); }
.art-hero img { display: block; width: 100%; aspect-ratio: 21/9; object-fit: cover; }
@media (max-width: 640px) { .art-hero img { aspect-ratio: 16/10; } }

.art-head { padding-top: var(--s-lg); }
.art-kat {
  display: inline-block; font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-primary); background: var(--c-primary-soft);
  padding: 6px 12px; border-radius: var(--r-full);
}
.art-head h1 { font-size: clamp(1.7rem, 4.6vw, 2.6rem); margin-top: var(--s-md); max-width: 24ch; letter-spacing: -.02em; }
.art-meta { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: var(--s-md); font-size: .8rem; font-weight: 600; color: var(--c-asphalt); }
.art-meta span { display: inline-flex; align-items: center; gap: 6px; }
.art-meta svg { width: 14px; height: 14px; }

/* Layout: konten + sidebar TOC (desktop) */
.art-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--s-xl); padding-top: var(--s-xl); align-items: start; }
@media (min-width: 980px) { .art-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: var(--s-2xl); } }
.art-aside { display: none; }
@media (min-width: 980px) { .art-aside { display: block; position: sticky; top: calc(var(--nav-h) + var(--s-md)); } }

/* Kartu daftar isi (navigasi = interaksi nyata) */
.art-toc { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: var(--s-lg); box-shadow: var(--sh-sm); }
.art-toc-title { display: flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--c-asphalt); }
.art-toc-title svg { width: 14px; height: 14px; color: var(--c-primary); }
.art-toc a {
  display: block; padding: 9px 12px; margin-top: 2px;
  border-left: 2px solid var(--c-line);
  font-size: .84rem; font-weight: 600; color: var(--c-asphalt); text-decoration: none; line-height: 1.4;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.art-toc a:hover { color: var(--c-ink); }
.art-toc a.is-active { color: var(--c-primary); border-left-color: var(--c-primary); font-weight: 700; }

/* TOC mobile: collapsible native */
.art-toc-mobile { margin-top: var(--s-lg); }
.art-toc-mobile summary {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; cursor: pointer; list-style: none;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: 14px 16px; font-weight: 800; font-size: .9rem;
}
.art-toc-mobile summary::-webkit-details-marker { display: none; }
.art-toc-mobile summary svg { width: 16px; height: 16px; color: var(--c-asphalt); transition: transform var(--t-normal) var(--e-out); }
.art-toc-mobile[open] summary svg { transform: rotate(180deg); }
.art-toc-mobile .art-toc { margin-top: 10px; box-shadow: none; }
@media (min-width: 980px) { .art-toc-mobile { display: none; } }

/* Prose konten artikel */
.art-body { font-size: 1.02rem; }
.art-body > p { margin-top: var(--s-md); line-height: 1.8; color: #333845; }
.art-body h2 {
  font-size: clamp(1.35rem, 3.4vw, 1.8rem); margin-top: var(--s-2xl);
  scroll-margin-top: calc(var(--nav-h) + var(--s-md));
}
.art-body h3 { font-size: clamp(1.1rem, 2.8vw, 1.3rem); margin-top: var(--s-xl); }
.art-body ul, .art-body ol { margin: var(--s-md) 0 0; padding-left: 22px; display: grid; gap: 8px; color: #333845; line-height: 1.7; }
.art-body li::marker { color: var(--c-primary); font-weight: 800; }
.art-body a:not(.btn) { color: var(--c-primary); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(217,30,30,.35); }
.art-body a:not(.btn):hover { border-bottom-color: var(--c-primary); }
.art-body img { width: 100%; border-radius: var(--r-md); border: 1px solid var(--c-line); margin-top: var(--s-lg); }
.art-body figure { margin: var(--s-lg) 0 0; }
.art-body figcaption { font-size: .78rem; color: var(--c-asphalt); margin-top: 8px; text-align: center; }
.art-table { width: 100%; border-collapse: collapse; margin-top: var(--s-md); font-size: .9rem; background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); }
/* Wadah scroll tabel: mencegah tabel melebarkan kolom grid di layar sempit */
.art-twrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: var(--s-md); }
.art-twrap .art-table { margin-top: 0; }
.art-table th { background: var(--c-charcoal); color: #fff; text-align: left; padding: 11px 14px; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.art-table td { padding: 11px 14px; border-bottom: 1px solid var(--c-line); }
.art-table tr:last-child td { border-bottom: 0; }
.art-table b { color: var(--c-primary); white-space: nowrap; }
.art-callout { margin-top: var(--s-md); padding: 14px 18px; border-radius: var(--r-md); background: #F0F6FF; border: 1px solid #CFE1F7; color: #1E4E8C; font-size: .92rem; line-height: 1.6; }

/* FAQ artikel: details native (tahan banting, tanpa JS) */
.art-faq { margin-top: var(--s-2xl); border-top: 1px solid var(--c-line); }
.art-faq > h2 { margin-bottom: var(--s-sm); }
.art-faq details { border-bottom: 1px solid var(--c-line); }
.art-faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  cursor: pointer; list-style: none; padding: var(--s-md) 0;
  font-weight: 700; font-size: 1rem; color: var(--c-ink);
}
.art-faq summary::-webkit-details-marker { display: none; }
.art-faq summary::after {
  content: "+"; flex: none; font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.3rem;
  color: var(--c-asphalt); transition: transform var(--t-normal) var(--e-out), color var(--t-fast);
}
.art-faq details[open] summary::after { content: "–"; color: var(--c-primary); }
.art-faq details p { padding-bottom: var(--s-md); color: var(--c-asphalt); line-height: 1.7; font-size: .95rem; max-width: 68ch; }

/* Artikel terkait */
.art-related { margin-top: var(--s-3xl); }
.art-related-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-md); margin-top: var(--s-md); }
@media (min-width: 760px) { .art-related-grid { grid-template-columns: repeat(3, 1fr); } }
.art-rel {
  display: flex; flex-direction: column; gap: 8px; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); overflow: hidden;
  transition: transform var(--t-normal) var(--e-out), box-shadow var(--t-normal), border-color var(--t-fast);
}
.art-rel:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: #C6C9D2; }
.art-rel:focus-visible { outline: 3px solid var(--c-sky); outline-offset: 2px; }
.art-rel img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.art-rel .art-rel-body { padding: 0 16px 16px; display: grid; gap: 4px; }
.art-rel small { font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--c-primary); }
.art-rel b { font-size: .95rem; line-height: 1.4; letter-spacing: -.01em; }

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

/* Aksesibilitas: skip-link, sentuhan, dan target fokus */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--c-charcoal); color: #fff;
  padding: 12px 20px; border-radius: var(--r-md);
  font-weight: 700; font-size: .9rem; text-decoration: none;
  transition: top var(--t-fast) var(--e-out);
}
.skip-link:focus { top: 12px; outline: 3px solid var(--c-sky); outline-offset: 2px; }
a, button, summary, input, select, textarea, label, .chip { touch-action: manipulation; }
