/* Landing page publik MX69 — nilai tema datang dari CSS variables (diatur editor). */
:root {
  --lp-bg: #0e0a14; --lp-surface: #1a1323; --lp-text: #ece6dc; --lp-muted: #a79fb3;
  --lp-accent: #8f2fe6; --lp-accent2: #a8764a;
  --lp-font-h: 'Pirata One', Georgia, serif; --lp-font-b: 'Archivo', 'Segoe UI', Arial, sans-serif;
  --lp-base: 17px; --lp-hscale: 1; --lp-gap: 112px; --lp-max: 1180px; --lp-radius: 4px;
  --lp-line: color-mix(in srgb, var(--lp-text) 12%, transparent);
  color-scheme: dark;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; background: var(--lp-bg); color: var(--lp-text);
  font: 400 var(--lp-base)/1.65 var(--lp-font-b); -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(1200px 700px at 78% -10%, color-mix(in srgb, var(--lp-accent) 16%, transparent), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, color-mix(in srgb, var(--lp-accent2) 10%, transparent), transparent 60%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--lp-accent); outline-offset: 3px; border-radius: 2px; }
.lp-wrap { width: 100%; max-width: var(--lp-max); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
.lp-display { font-family: var(--lp-font-h); font-weight: 400; letter-spacing: .01em; }
.lp-muted { color: var(--lp-muted); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--lp-accent); color: #fff; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }

/* ---------- navigasi ---------- */
.lp-nav { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--lp-bg) 78%, transparent); border-bottom: 1px solid var(--lp-line); }
.lp-nav-in { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.lp-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.lp-brand-mark { height: 48px; width: auto; filter: drop-shadow(0 0 14px color-mix(in srgb, var(--lp-accent) 45%, transparent)); }
.lp-brand .lp-display { font-size: 1.7rem; line-height: 1; }
.lp-menu { display: flex; align-items: center; gap: 26px; font-size: .95rem; }
.lp-menu a:not(.lp-btn) { text-decoration: none; color: var(--lp-muted); transition: color .2s; }
.lp-menu a:not(.lp-btn):hover { color: var(--lp-text); }
.lp-burger { display: none; background: none; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); width: 44px; height: 40px; cursor: pointer; padding: 0 11px; }
.lp-burger span { display: block; height: 2px; background: var(--lp-text); margin: 6px 0; transition: transform .2s; }

/* ---------- tombol ---------- */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px;
  border-radius: var(--lp-radius); font-weight: 600; font-size: .98rem; text-decoration: none; border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .2s; }
.lp-btn-primary { background: var(--lp-accent); color: #fff; box-shadow: 0 10px 30px -12px var(--lp-accent); }
.lp-btn-primary:hover { background: color-mix(in srgb, var(--lp-accent) 85%, #fff); transform: translateY(-1px); }
.lp-btn-ghost { border-color: color-mix(in srgb, var(--lp-text) 30%, transparent); color: var(--lp-text); }
.lp-btn-ghost:hover { border-color: var(--lp-accent2); }
.lp-btn-sm { min-height: 38px; padding: 0 16px; font-size: .9rem; }

/* ---------- hero ---------- */
.lp-hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 96px) 0 calc(var(--lp-gap) * .8); }
.has-bg { position: relative; isolation: isolate; }
.has-bg::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--bg-img) center/cover no-repeat; opacity: .38; }
.has-bg::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, var(--lp-bg) 10%, color-mix(in srgb, var(--lp-bg) 55%, transparent) 60%, color-mix(in srgb, var(--lp-bg) 70%, transparent)); }
.lp-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
.lp-kicker { margin: 0 0 18px; color: var(--lp-accent2); font-size: .95rem; font-weight: 600; letter-spacing: .02em; display: flex; align-items: center; gap: 12px; }
.lp-kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.lp-hero h1 { margin: 0; font-size: calc(clamp(3rem, 7.4vw, 6.4rem) * var(--lp-hscale)); line-height: .95; text-wrap: balance; }
.lp-lead { max-width: 34em; color: var(--lp-muted); font-size: 1.1rem; margin: 22px 0 0; }
.lp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.lp-hero-art { position: relative; display: flex; flex-direction: column; align-items: center; }
.lp-halo { position: relative; width: min(100%, 470px); aspect-ratio: 1 / 1.06; display: grid; place-items: center; }
.lp-halo::before { content: ""; position: absolute; inset: 6% 4% 10%; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--lp-accent) 42%, transparent), transparent 66%); filter: blur(6px); }
.lp-arc { position: absolute; inset: 2% -2% 8% 6%; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--lp-text) 26%, transparent);
  border-left-color: transparent; border-bottom-color: transparent; transform: rotate(-18deg); }
.lp-smoke { position: absolute; inset: 14% 12% 18%; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--lp-accent) 40%, transparent);
  border-right-color: transparent; border-top-color: transparent; transform: rotate(12deg); }
.lp-hero-img { position: relative; width: 84%; height: auto; max-height: 520px; object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.55)); animation: lp-rise .9s cubic-bezier(.2,.7,.2,1) both; }
.lp-quote { margin: 8px 0 0; max-width: 22em; text-align: center; font-style: italic; color: var(--lp-muted); font-size: .98rem; }
@keyframes lp-rise { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

/* ---------- section umum ---------- */
.lp-about, .lp-divisions, .lp-text { padding: calc(var(--lp-gap) * .6) 0; }
.lp-h2 { font-family: var(--lp-font-h); font-weight: 400; font-size: calc(clamp(2.2rem, 4.6vw, 3.6rem) * var(--lp-hscale)); line-height: 1; margin: 0 0 22px; }
.lp-prose p { margin: 0 0 1em; max-width: 38em; }
.lp-prose p:last-child { margin-bottom: 0; }
.lp-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(24px, 5vw, 72px); align-items: center; }
.lp-split.no-img { grid-template-columns: minmax(0, 1fr); }
.lp-split.img-left > figure { order: -1; }
.lp-figure { margin: 0; border-radius: var(--lp-radius); overflow: hidden; border: 1px solid var(--lp-line); }
.lp-figure img { width: 100%; height: auto; }
.lp-about { border-top: 1px solid var(--lp-line); }
.lp-facts { display: flex; flex-wrap: wrap; gap: clamp(20px, 5vw, 64px); margin: 36px 0 0; }
.lp-facts div { display: flex; flex-direction: column-reverse; }
.lp-facts dt { color: var(--lp-muted); font-size: .92rem; }
.lp-facts dd { margin: 0; font-size: calc(3.4rem * var(--lp-hscale)); line-height: 1; color: var(--lp-accent2); }

/* ---------- divisi ---------- */
.lp-sec-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 24px; margin-bottom: 24px; }
.lp-sec-head .lp-h2 { margin: 0; }
.lp-sec-head p { margin: 0; max-width: 28em; }
.lp-div-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--lp-line); }
.lp-div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) 120px; gap: 16px 32px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--lp-line); position: relative; transition: background .25s; }
.lp-div.no-img { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
.lp-div::before { content: ""; position: absolute; left: -18px; top: 50%; width: 3px; height: 0; background: var(--lp-accent); transition: height .25s, top .25s; }
.lp-div:hover::before { height: 60%; top: 20%; }
.lp-div-name h3 { margin: 0; font-size: calc(clamp(1.9rem, 3.4vw, 2.7rem) * var(--lp-hscale)); line-height: 1; }
.lp-div-alias { display: inline-block; margin-top: 8px; color: var(--lp-accent2); font-size: .9rem; font-weight: 600; }
.lp-div-desc { margin: 0; color: var(--lp-muted); }
.lp-div-img { width: 120px; height: 90px; object-fit: cover; border-radius: var(--lp-radius); }

/* ---------- CTA ---------- */
.lp-cta { padding: calc(var(--lp-gap) * .7) 0; }
.lp-cta-box { text-align: center; display: flex; flex-direction: column; align-items: center; }
.lp-cta-box .lp-lead { margin: 0 0 28px; }
.lp-cta { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--lp-surface) 90%, transparent)); border-top: 1px solid var(--lp-line); }

/* ---------- footer ---------- */
.lp-footer { border-top: 1px solid var(--lp-line); padding: 34px 0 40px; background: var(--lp-surface); }
.lp-foot-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 18px 32px; align-items: center; }
.lp-foot-brand { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; }
.lp-foot-mark { height: 40px; width: auto; }
.lp-foot-text { margin: 0; font-size: .9rem; max-width: 46em; }
.lp-foot-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: .92rem; }

/* ---------- responsif ---------- */
@media (max-width: 860px) {
  .lp-burger { display: block; }
  .lp-menu { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--lp-bg); border-bottom: 1px solid var(--lp-line); padding: 8px 20px 18px; display: none; }
  .lp-nav.open .lp-menu { display: flex; }
  .lp-menu a:not(.lp-btn) { padding: 12px 0; border-bottom: 1px solid var(--lp-line); font-size: 1.02rem; }
  .lp-menu .lp-btn { margin-top: 14px; }
  .lp-nav.open .lp-burger span:first-child { transform: translateY(4px) rotate(45deg); }
  .lp-nav.open .lp-burger span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .lp-hero-grid, .lp-split { grid-template-columns: minmax(0, 1fr); }
  .lp-hero-art { order: -1; }
  .lp-halo { width: min(78vw, 340px); }
  .lp-hero h1 { font-size: calc(clamp(2.6rem, 12vw, 4rem) * var(--lp-hscale)); }
  .has-bg::after { background: linear-gradient(180deg, color-mix(in srgb, var(--lp-bg) 60%, transparent), var(--lp-bg) 70%); }
  .lp-div, .lp-div.no-img { grid-template-columns: minmax(0, 1fr); padding: 22px 0; }
  .lp-div-img { width: 100%; height: 160px; }
  .lp-div::before { left: -12px; }
  .lp-foot-grid { grid-template-columns: minmax(0, 1fr); }
  .lp-brand-mark { height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ================= Galeri MX69 ================= */
.lp-gallery { padding: var(--lp-gap) 0; }
.lp-gal-grid { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr)); gap: 14px; grid-auto-flow: dense; }
.lp-gal-item.is-featured { grid-column: span 2; grid-row: span 2; }
.lp-gal-card { position: relative; display: block; width: 100%; height: 100%; min-height: 220px; padding: 0; border: 1px solid rgba(255,255,255,.08); border-radius: var(--lp-radius); overflow: hidden; background: var(--lp-surface); cursor: zoom-in; color: var(--lp-text); text-align: left; }
.lp-gal-img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .5s ease, filter .5s ease; filter: saturate(.9); }
.lp-gal-card:hover .lp-gal-img, .lp-gal-card:focus-visible .lp-gal-img { transform: scale(1.04); filter: saturate(1.1); }
.lp-gal-card:focus-visible { outline: 2px solid var(--lp-accent); outline-offset: 3px; }
.lp-gal-cap { position: absolute; inset: auto 0 0 0; padding: 40px 16px 14px; background: linear-gradient(transparent, rgba(8,5,12,.92)); display: grid; gap: 4px; }
.lp-gal-title { font-family: var(--lp-font-h); font-size: calc(1.35rem * var(--lp-hscale)); line-height: 1.1; }
.lp-gal-meta { font-size: .85rem; color: var(--lp-muted); }
.lp-gal-badge { justify-self: start; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lp-accent2); border: 1px solid currentColor; padding: 1px 8px; border-radius: 999px; }
.lp-gal-badge.draft { color: #f0c36b; }
.lp-gal-empty { margin-top: 18px; }
@media (max-width: 640px) { .lp-gal-item.is-featured { grid-column: auto; grid-row: auto; } .lp-gal-card { min-height: 0; } }

.lp-noscroll { overflow: hidden; }
.lp-lb { position: fixed; inset: 0; z-index: 100; background: rgba(6,4,10,.94); display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; align-items: center; padding: 20px 10px; animation: lpfade .2s ease; }
@keyframes lpfade { from { opacity: 0; } }
.lp-lb-fig { margin: 0; display: grid; gap: 12px; justify-items: center; max-height: 100%; }
.lp-lb-img { max-width: 100%; max-height: calc(100vh - 170px); object-fit: contain; border-radius: var(--lp-radius); box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lp-lb-cap { text-align: center; display: grid; gap: 4px; max-width: 760px; color: var(--lp-text); }
.lp-lb-cap strong { font-family: var(--lp-font-h); font-size: 1.4rem; font-weight: 400; }
.lp-lb-sub, .lp-lb-desc { color: var(--lp-muted); font-size: .95rem; }
.lp-lb-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(20,14,28,.7); color: var(--lp-text); font-size: 28px; line-height: 1; cursor: pointer; justify-self: center; }
.lp-lb-btn:hover, .lp-lb-btn:focus-visible { border-color: var(--lp-accent); outline: none; }
.lp-lb-close { position: absolute; top: 14px; right: 14px; }
@media (max-width: 640px) {
  .lp-lb { grid-template-columns: 1fr; grid-template-rows: 1fr auto; padding: 60px 8px 16px; }
  .lp-lb-prev, .lp-lb-next { position: absolute; bottom: 18px; }
  .lp-lb-prev { left: 18px; } .lp-lb-next { right: 18px; }
  .lp-lb-img { max-height: calc(100vh - 220px); }
}
@media (prefers-reduced-motion: reduce) { .lp-gal-img, .lp-lb { transition: none; animation: none; } }

/* pilihan bahasa */
.lp-lang { display: inline-flex; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; overflow: hidden; }
.lp-lang-btn { background: none; border: 0; color: var(--lp-muted); font: 600 .78rem/1 var(--lp-font-b); padding: 8px 10px; cursor: pointer; letter-spacing: .08em; }
.lp-lang-btn.on { background: var(--lp-accent); color: #fff; }
.lp-lang-btn:focus-visible { outline: 2px solid var(--lp-accent2); outline-offset: -2px; }

/* ================= Media sosial ================= */
.lp-social { padding: var(--lp-gap) 0; }
.lp-soc-grid { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 14px; }
.lp-soc-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--lp-radius); background: var(--lp-surface); color: var(--lp-text); text-decoration: none; transition: border-color .2s, transform .2s; }
.lp-soc-card:hover, .lp-soc-card:focus-visible { border-color: var(--lp-accent); transform: translateY(-2px); outline: none; }
.lp-soc-card .lp-ico { width: 34px; height: 34px; flex: none; color: var(--lp-accent2); }
.lp-soc-txt { display: grid; gap: 2px; min-width: 0; }
.lp-soc-name { font-family: var(--lp-font-h); font-size: calc(1.4rem * var(--lp-hscale)); line-height: 1.1; }
.lp-soc-handle { color: var(--lp-muted); font-size: .92rem; overflow-wrap: anywhere; }
.lp-ico { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lp-foot-social { display: flex; gap: 10px; flex-wrap: wrap; grid-column: 1 / -1; }
.lp-foot-soc { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: var(--lp-text); text-decoration: none; font-size: .9rem; }
.lp-foot-soc .lp-ico { width: 18px; height: 18px; }
.lp-foot-soc .lp-soc-name { font-family: var(--lp-font-b); font-size: .9rem; }
.lp-foot-soc:hover, .lp-foot-soc:focus-visible { border-color: var(--lp-accent); outline: none; }
@media (prefers-reduced-motion: reduce) { .lp-soc-card { transition: none; } }
