/* =========================================================================
   style.css — sistem visual situs
   Struktur: tokens / dasar / animasi huruf / chrome / overlay nav /
             hero / halaman / komponen / responsif
   ========================================================================= */

/* ------------------------------------------------------------- 1. TOKENS */
:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, .52);
  --line: rgba(255, 255, 255, .16);
  --character: #a9d3e1;              /* aksen, diganti per slide oleh JS */
  --pad: 32px;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);
  --font: 'Jost', 'Futura', 'Century Gothic', 'Avenir Next', 'Segoe UI', 'Helvetica Neue', sans-serif;
  --stagger: 26ms;
}

@media (max-width: 767px) {
  :root { --pad: 18px; --stagger: 20ms; }
}

/* -------------------------------------------------------------- 2. DASAR */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--character); color: #000; }

.u-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------- 3. ANIMASI HURUF (c-word) */
/* .w   = pembungkus seluruh kalimat (inline, boleh wrap antar kata)
   .w-i = satu kata, punya overflow:hidden sendiri sebagai "topeng" huruf
   .l   = satu huruf                                                        */
.w { display: inline; }

.w-i {
  display: inline-flex;
  overflow: hidden;
  vertical-align: bottom;
  white-space: pre;
  padding-bottom: .14em;      /* ruang untuk ekor huruf g/y/p */
  margin-bottom: -.14em;
}

.w .l {
  display: block;
  flex: none;                 /* wajib: tanpa ini huruf ikut menyusut */
  opacity: 0;
  transform: translateY(112%);
  transition: transform .9s var(--ease), opacity .7s var(--ease);
  transition-delay: calc(var(--i) * var(--stagger) + var(--d, 0ms));
  will-change: transform;
}

.w.is-in .l { opacity: 1; transform: none; }

.w .l i {
  display: block;
  font-style: normal;
  position: relative;
  transition: transform .48s var(--ease);
  transition-delay: calc(var(--i) * 20ms);
}

.w .l i::after {
  content: attr(data-c);
  position: absolute;
  inset: 100% auto auto 0;
  width: 100%;
}

.w-hover:hover .l i,
a:hover .w-hover .l i,
button:hover .w-hover .l i { transform: translateY(-100%); }

/* fade sederhana untuk blok teks panjang */
.fade { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0ms); }
.fade.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .w .l, .fade { transition: none !important; opacity: 1 !important; transform: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ------------------------------------------------------------- 4. CHROME */
.hd-logo {
  position: fixed;
  top: 30px; left: var(--pad);
  z-index: 110;
  line-height: 1;
  mix-blend-mode: difference;
}
.hd-logo a { display: block; }
.hd-logo b {
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .34em;
  line-height: 1.45;
}
.hd-logo b span { display: block; text-indent: .34em; }
.hd-logo img { width: auto; height: auto; max-width: 210px; max-height: 62px; }
.hd-logo small {
  display: block;
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: .3em;
  text-indent: .3em;
  color: var(--muted);
  text-transform: uppercase;
}

/* --- simbol berdampingan dengan nama brand --- */
._lockup {
  display: flex;
  align-items: center;
  gap: 13px;
}
._lockup ._mark {
  flex: none;
  width: auto;
  height: 46px;
  max-width: none;
  color: var(--fg);            /* SVG dengan currentColor ikut warna teks */
}
._lockup ._txt { display: block; min-width: 0; }

.ft-brand ._lockup { gap: 12px; }
.ft-brand ._lockup ._mark { height: 42px; }

@media (max-width: 767px) {
  ._lockup { gap: 10px; }
  ._lockup ._mark { height: 34px; }
}

.hd-nav {
  position: fixed;
  top: 33px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 34px;
  pointer-events: none;
  mix-blend-mode: difference;
}
.hd-nav a {
  pointer-events: auto;
  font-size: 12px;
  letter-spacing: .1em;
  padding: 4px 0;
  position: relative;
}
.hd-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.hd-nav a.is-current::after,
.hd-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.hd-lang {
  position: fixed;
  top: 34px; right: calc(var(--pad) + 74px);
  z-index: 101;
  display: flex;
  gap: 11px;
  font-size: 11px;
  letter-spacing: .1em;
  mix-blend-mode: difference;
}
.hd-lang button { opacity: .45; transition: opacity .4s; }
.hd-lang button.is-active, .hd-lang button:hover { opacity: 1; }

.hd-toggle {
  position: fixed;
  top: 30px; right: var(--pad);
  z-index: 130;
  width: 46px; height: 22px;
  mix-blend-mode: difference;
}
.hd-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--fg);
  transition: transform .6s var(--ease), width .6s var(--ease), opacity .3s;
}
.hd-toggle span:nth-child(1) { top: 5px; }
.hd-toggle span:nth-child(2) { top: 14px; width: 60%; margin-left: auto; }
body.nav-open .hd-toggle span:nth-child(1) { transform: translateY(4.5px) rotate(9deg); }
body.nav-open .hd-toggle span:nth-child(2) { width: 100%; transform: translateY(-4.5px) rotate(-9deg); }

.hd-meta {
  position: fixed;
  top: 88px; right: var(--pad);
  z-index: 100;
  text-align: right;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .08em;
  color: var(--muted);
  mix-blend-mode: difference;
}

/* --------------------------------------------------------- 5. OVERLAY NAV */
.ov {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr .82fr;
  background: #000;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .95s var(--ease);
  pointer-events: none;
}
body.nav-open .ov { clip-path: inset(0 0 0 0); pointer-events: auto; }

.ov-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px var(--pad) var(--pad);
}
.ov-list li + li { margin-top: 4px; }
.ov-list a {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(36px, 5.2vw, 78px);
  font-weight: 300;
  letter-spacing: .015em;
  line-height: 1.16;
}
.ov-list sup {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
  margin-top: .8em;
}
.ov-sub {
  margin-top: 54px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 12px;
  letter-spacing: .07em;
  color: var(--muted);
}
.ov-sub a:hover { color: var(--fg); }

.ov-right {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.ov-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.1s var(--ease), transform 1.6s var(--ease);
}
body.nav-open .ov-right img { opacity: .9; transform: none; }
.ov-right figcaption {
  position: absolute;
  left: 28px; bottom: 26px; right: 28px;
}
.ov-right ._s { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--character); }
.ov-right ._n { font-size: clamp(22px, 2vw, 34px); font-weight: 300; margin-top: 6px; }
.ov-right ._c { font-size: 12px; color: var(--muted); }

/* ---------------------------------------------------------------- 6. HERO */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #050505;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.25s var(--ease-io), visibility 0s linear 1.25s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.25s var(--ease-io), visibility 0s;
  z-index: 1;
}

.hero-img { position: absolute; inset: 0; }
.hero-img picture { display: block; width: 100%; height: 100%; }
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  transition: transform 9s linear;
}
.hero-slide.is-active .hero-img img { transform: scale(1); }
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .74) 0%, rgba(0, 0, 0, .12) 38%, rgba(0, 0, 0, .42) 100%);
}

.hero-info {
  position: absolute;
  left: var(--pad); bottom: 58px;
  z-index: 3;
  max-width: min(560px, 62vw);
}
._status {
  font-size: clamp(9px, .74vw, 11px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--character);
}
._name {
  margin-top: 12px;
  font-size: clamp(38px, 3.34vw, 58px);
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1.05;
}
._caption {
  margin-top: 10px;
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 300;
  letter-spacing: .025em;
  color: rgba(255, 255, 255, .82);
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 12px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .2em;
  overflow: hidden;
  position: relative;
  transition: border-color .5s, color .5s;
}
.c-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--character);
  transform: translateY(101%);
  transition: transform .6s var(--ease);
}
.c-btn > * { position: relative; z-index: 1; }
.c-btn:hover { color: #000; border-color: var(--character); }
.c-btn:hover::before { transform: none; }
.c-btn i { font-style: normal; }

/* tombol pesan — Instagram & WhatsApp */
.c-btn.-order::before { background: linear-gradient(115deg, #f9a03f, #d92e7f 52%, #8b3ab5); }
.c-btn.-order:hover { color: #fff; border-color: #d92e7f; }
.c-btn.-wa::before { background: #25d366; }
.c-btn.-wa:hover { color: #05391a; border-color: #25d366; }

/* pemberitahuan singkat setelah teks pesanan disalin */
.c-toast {
  position: fixed;
  left: 50%; bottom: 26px;
  z-index: 950;
  transform: translate(-50%, 130%);
  max-width: min(92vw, 480px);
  padding: 13px 22px;
  background: var(--fg);
  color: #000;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  letter-spacing: .01em;
  transition: transform .6s var(--ease);
}
.c-toast.is-on { transform: translate(-50%, 0); }

/* tombol marketplace — warna khas tiap lapak, teks putih saat terisi */
.c-btn.-etsy::before { background: #f1641e; }
.c-btn.-etsy:hover { color: #fff; border-color: #f1641e; }
.c-btn.-shopee::before { background: #ee4d2d; }
.c-btn.-shopee:hover { color: #fff; border-color: #ee4d2d; }

.buy-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.buy-row .c-btn { margin-top: 0; }

.hero-credit {
  position: absolute;
  right: var(--pad); bottom: 58px;
  z-index: 3;
  text-align: right;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--muted);
}
.hero-credit dl { display: flex; gap: 6px; justify-content: flex-end; }
.hero-credit dd { color: rgba(255, 255, 255, .82); }

.hero-dots {
  position: absolute;
  left: var(--pad); bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 8px;
  /* dibatasi supaya banyaknya slide tidak pernah membuat baris ini
     melebar keluar layar — tiap indikator menyusut mengikuti tempat */
  max-width: min(56vw, 620px);
}
.hero-dots button {
  flex: 1 1 46px;
  min-width: 5px;
  max-width: 46px;
  height: 2px;
  background: rgba(255, 255, 255, .22);
  position: relative;
  overflow: hidden;
}
.hero-dots button::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-dots button.is-active::after {
  animation: dotfill var(--speed, 6200ms) linear forwards;
}
@keyframes dotfill { to { transform: scaleX(1); } }

.hero-scroll {
  position: absolute;
  right: var(--pad); bottom: 24px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 40px; height: 1px;
  background: currentColor;
  transform-origin: right;
  animation: scrollline 2.4s var(--ease-io) infinite;
}
@keyframes scrollline {
  0%, 100% { transform: scaleX(.3); }
  50% { transform: scaleX(1); }
}

/* ------------------------------------------------------------ 7. HALAMAN */
.page {
  padding: 168px var(--pad) 120px;
  min-height: 100svh;
}

.page-head { margin-bottom: 74px; }
.page-head ._eyebrow {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--character);
}
.page-head ._title {
  margin-top: 14px;
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.04;
}
.page-head ._lead {
  margin-top: 22px;
  max-width: 46em;
  font-size: clamp(14px, 1.2vw, 17px);
  color: rgba(255, 255, 255, .78);
}

/* --- grid koleksi --- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
}
.filters button {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
  transition: color .4s, border-color .4s, background .4s;
}
.filters button.is-active { color: #000; background: var(--fg); border-color: var(--fg); }
.filters button:hover { color: var(--fg); border-color: var(--fg); }
.filters button.is-active:hover { color: #000; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 34px;
}
.card { position: relative; }
.card._hide { display: none; }
.card a { display: block; }
.card ._thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0b0b0b;
}
.card ._thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease), filter .8s;
  filter: saturate(.86);
}
.card a:hover ._thumb img { transform: scale(1.09); filter: saturate(1.06); }
.card ._num {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .7);
  z-index: 2;
}
.card ._tag {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .55);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.card ._body { padding-top: 16px; display: flex; justify-content: space-between; gap: 16px; }
.card ._n { font-size: clamp(19px, 1.6vw, 26px); font-weight: 300; letter-spacing: .03em; }
.card ._s { margin-top: 4px; font-size: 11.5px; color: var(--muted); }
._arrow {
  align-self: flex-end;
  font-size: 15px;
  color: var(--muted);
  transition: transform .5s var(--ease), color .5s;
}
a:hover ._arrow { transform: translate(5px, -5px); color: var(--fg); }

/* --- detail produk --- */
.detail { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: start; }
.detail-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #0b0b0b; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }

/* --- galeri foto di halaman detail --- */
.gal {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0b0b0b;
}
.gal-item {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease-io), visibility 0s linear .9s;
}
.gal-item.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .9s var(--ease-io), visibility 0s;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s linear;
}
.gal-item.is-active img { transform: none; }

.gal-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px; height: 44px;
  margin-top: -22px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: var(--fg);
  background: rgba(0, 0, 0, .38);
  border: 1px solid var(--line);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .45s, background .45s, transform .45s var(--ease);
}
.gal-nav.-prev { left: 14px; }
.gal-nav.-next { right: 14px; }
.gal:hover .gal-nav, .gal-nav:focus-visible { opacity: 1; }
.gal-nav:hover { background: var(--character); color: #000; }
.gal-nav.-prev:hover { transform: translateX(-3px); }
.gal-nav.-next:hover { transform: translateX(3px); }

.gal-count {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .66);
}
.gal-count b { font-weight: 400; color: var(--fg); }

.gal-dots {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.gal-dots button {
  flex: 1 1 auto;
  min-width: 5px;
  height: 2px;
  background: rgba(255, 255, 255, .26);
  transition: background .4s;
}
.gal-dots button.is-active { background: var(--fg); }

@media (hover: none) {
  .gal-nav { opacity: 1; }
}
.detail-body { position: sticky; top: 168px; }
.detail-desc { margin-top: 26px; color: rgba(255, 255, 255, .8); max-width: 40em; }

.spec { margin-top: 42px; border-top: 1px solid var(--line); }
.spec div {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.spec dt { color: var(--muted); letter-spacing: .08em; }

.pager-next {
  margin-top: 110px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.pager-next ._l { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.pager-next ._t { font-size: clamp(24px, 3vw, 44px); font-weight: 300; }

/* --- tentang --- */
.about-lead {
  font-size: clamp(20px, 2.4vw, 38px);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: .01em;
  max-width: 20em;
}
.about-grid { margin-top: 84px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.about-grid p + p { margin-top: 20px; }
.about-grid ._col { color: rgba(255, 255, 255, .78); }
.about-figure { aspect-ratio: 4 / 3; overflow: hidden; background: #0b0b0b; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }

.stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stats div { background: var(--bg); padding: 30px 24px; }
.stats dt { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.stats dd { margin-top: 10px; font-size: clamp(20px, 2vw, 30px); font-weight: 300; }

/* --- berita --- */
.news-list { border-top: 1px solid var(--line); }
.news-item { border-bottom: 1px solid var(--line); }
.news-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 116px 132px 1fr 30px;
  gap: 20px;
  align-items: baseline;
  padding: 28px 0;
  text-align: left;
  transition: opacity .4s;
}
.news-item ._d { font-size: 12px; color: var(--muted); letter-spacing: .08em; }
.news-item ._g { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--character); }
.news-item ._t { font-size: clamp(16px, 1.5vw, 22px); font-weight: 300; }
.news-item ._x { justify-self: end; color: var(--muted); transition: transform .5s var(--ease); }
.news-item.is-open ._x { transform: rotate(45deg); }
.news-item ._p {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .6s var(--ease);
}
.news-item.is-open ._p { grid-template-rows: 1fr; }
.news-item ._p > div { overflow: hidden; }
.news-item ._p p {
  max-width: 52em;
  padding: 0 0 30px 248px;
  color: rgba(255, 255, 255, .74);
}
.news-item button:hover { opacity: .62; }

/* --- kontak --- */
.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-info dl + dl { margin-top: 26px; }
.contact-info dt { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.contact-info dd { margin-top: 7px; font-size: 15px; }

.field { margin-bottom: 34px; position: relative; }
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color .45s;
  border-radius: 0;
}
.field select option { background: #101010; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--character); }
.field.is-err input, .field.is-err textarea { border-color: #e06a6a; }
.form-msg { margin-top: 8px; font-size: 13px; color: var(--character); min-height: 1.4em; }
.form-msg.is-err { color: #e06a6a; }

/* --- teks legal --- */
.legal { max-width: 62em; }
.legal h2 {
  margin: 62px 0 16px;
  font-size: clamp(19px, 1.9vw, 27px);
  font-weight: 300;
  letter-spacing: .02em;
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: rgba(255, 255, 255, .76); }
.legal p + p { margin-top: 14px; }
.legal ul { margin-top: 12px; }
.legal li { padding-left: 20px; position: relative; }
.legal li::before { content: '—'; position: absolute; left: 0; color: var(--muted); }

/* ------------------------------------------------------------ 8. FOOTER */
.ft {
  padding: 84px var(--pad) 34px;
  border-top: 1px solid var(--line);
}
.ft-top { display: flex; justify-content: space-between; gap: 50px; flex-wrap: wrap; }
.ft-brand b { display: block; font-size: 15px; font-weight: 400; letter-spacing: .34em; line-height: 1.5; }
.ft-brand b span { display: block; }
.ft-brand img { width: auto; height: auto; max-width: 200px; max-height: 58px; }
.ft-brand small { display: block; margin-top: 8px; font-size: 10px; letter-spacing: .24em; color: var(--muted); text-transform: uppercase; }
.ft-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.ft-cols ul { font-size: 12.5px; }
.ft-cols li + li { margin-top: 11px; }
.ft-cols a { color: var(--muted); transition: color .4s; }
.ft-cols a:hover { color: var(--fg); }
.ft-bot {
  margin-top: 66px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--muted);
}

/* ------------------------------------------------- 9. KURSOR & TRANSISI */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  z-index: 999;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s;
}
.cursor {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(255, 255, 255, .7);
  transition: opacity .3s, width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease);
}
.cursor-dot { width: 4px; height: 4px; margin: -2px 0 0 -2px; background: #fff; }
body.has-cursor .cursor, body.has-cursor .cursor-dot { opacity: 1; }
body.cursor-hot .cursor { width: 62px; height: 62px; margin: -31px 0 0 -31px; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

.curtain {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: #000;
  pointer-events: none;
  opacity: 1;
  transition: opacity .7s var(--ease);
}
body.is-ready .curtain { opacity: 0; }
body.is-leaving .curtain { opacity: 1; transition-duration: .45s; }

/* --------------------------------------------------------- 10. RESPONSIF */
@media (max-width: 1180px) {
  .hd-nav { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .ov { grid-template-columns: 1fr; }
  .ov-right { display: none; }
  .detail { grid-template-columns: 1fr; gap: 34px; }
  .detail-body { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; gap: 44px; }
  .news-item button { grid-template-columns: 1fr 30px; gap: 6px 20px; }
  .news-item ._d, .news-item ._g { grid-column: 1; }
  .news-item ._t { grid-column: 1; margin-top: 6px; }
  .news-item ._x { grid-row: 1 / span 3; grid-column: 2; align-self: start; }
  .news-item ._p p { padding-left: 0; }
}

@media (max-width: 767px) {
  body { font-size: 14px; }
  .hd-logo { top: 22px; }
  .hd-logo b { font-size: 17px; }
  .hd-logo small { display: none; }
  .hd-toggle { top: 24px; }
  .hd-lang { top: 27px; right: calc(var(--pad) + 62px); }
  .hd-meta { display: none; }
  .hero { min-height: 520px; }
  .hero-info { bottom: 92px; max-width: none; right: var(--pad); }
  .hero-credit { left: var(--pad); right: auto; bottom: 52px; text-align: left; }
  .hero-credit dl { justify-content: flex-start; }
  .hero-dots { bottom: 22px; }
  .hero-dots button { width: 34px; }
  .hero-scroll { display: none; }
  .page { padding: 118px var(--pad) 80px; }
  .page-head { margin-bottom: 48px; }
  .grid { grid-template-columns: 1fr; gap: 44px; }
  .stats { grid-template-columns: 1fr; }
  .ov-left { padding: 96px var(--pad) 40px; justify-content: flex-start; }
  .ov-sub { margin-top: 38px; gap: 18px; }
  .spec div { grid-template-columns: 42% 1fr; }
  .pager-next { margin-top: 70px; }
  .ft { padding-top: 60px; }
  .ft-cols { gap: 40px; }
}
