/* ============================================================
   STBM DUA SAUDARA — Design System kustom di atas Tailwind
   Palet: ink navy + emas metalik + cream hangat
   ============================================================ */

:root {
  --ink: #0A1220;
  --navy: #0B1D33;
  --gold: #C0924E;
  --gold-bright: #E3B23C;
  --gold-deep: #8A6530;
  --cream: #FDFAF5;
  --ease-luxe: cubic-bezier(0.25, 1, 0.5, 1);
}

html { scroll-behavior: smooth; }
::selection { background: var(--gold); color: #fff; }

/* Scrollbar tipis bernuansa navy */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #EDE4D3; }
::-webkit-scrollbar-thumb { background: rgba(11, 29, 51, 0.55); border-radius: 8px; border: 2px solid #EDE4D3; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-luxe), visibility 0.7s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.pre-logo { animation: preFloat 2.2s var(--ease-luxe) infinite alternate; }
@keyframes preFloat { from { transform: translateY(4px) scale(.97); opacity:.8 } to { transform: translateY(-4px) scale(1); opacity:1 } }
.pre-word {
  color: var(--cream); letter-spacing: 0.42em; font-size: 13px; text-indent: 0.42em;
  animation: preWord 1.4s var(--ease-luxe) both 0.2s;
}
@keyframes preWord { from { opacity: 0; filter: blur(8px); letter-spacing: 0.7em } to { opacity: 1; filter: blur(0); letter-spacing: 0.42em } }
.pre-bar { width: 180px; height: 2px; background: rgba(192,146,78,.2); overflow: hidden; border-radius: 2px; }
.pre-bar span { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, transparent, var(--gold-bright), transparent); animation: preBar 1.2s linear infinite; }
@keyframes preBar { from { transform: translateX(-120%) } to { transform: translateX(320%) } }

/* ---------- NAVBAR ---------- */
#navbar { color: var(--cream); }
#navbar .nav-shell { max-width: 1400px; }
#navbar.scrolled {
  background: rgba(7, 21, 40, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(192,146,78,.25), 0 12px 40px -18px rgba(0,0,0,.6);
}
#navbar.scrolled .nav-shell { padding-top: 10px; padding-bottom: 10px; }
.nav-brand { color: var(--cream); }
.nav-brand-sub { color: var(--gold-bright); }

.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(253,250,245,.82); cursor: pointer; transition: color .3s;
}
.nav-link:hover { color: var(--gold-bright); }
.nav-link::after {
  content: ''; position: absolute; left: 12px; right: 100%; bottom: 2px; height: 1.5px;
  background: var(--gold-bright);
  transition: right .45s var(--ease-luxe);
}
.nav-link:hover::after, .nav-link.active::after { right: 12px; }
.nav-link.active { color: var(--gold-bright); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown:hover .has-drop svg { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 12px);
  min-width: 240px; padding: 10px;
  background: rgba(7,21,40,.96); backdrop-filter: blur(16px);
  border: 1px solid rgba(192,146,78,.28); border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all .35s var(--ease-luxe);
}
.nav-dropdown:hover .drop-menu, .nav-dropdown:focus-within .drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.drop-menu a {
  display: block; padding: 10px 14px; font-size: 13.5px; font-weight: 500;
  color: rgba(253,250,245,.78); border-radius: 9px; transition: all .25s;
}
.drop-menu a:hover { background: rgba(192,146,78,.14); color: var(--gold-bright); padding-left: 20px; }

/* Menu mobile */
#mobileMenu { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
#mobileMenu.open { visibility: visible; }
.mm-backdrop { position: absolute; inset: 0; background: rgba(4,10,20,.55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .4s; }
#mobileMenu.open .mm-backdrop { opacity: 1; }
.mm-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 380px);
  background: var(--navy); display: flex; flex-direction: column;
  transform: translateX(102%); transition: transform .55s var(--ease-luxe);
  box-shadow: -30px 0 80px rgba(0,0,0,.5);
}
#mobileMenu.open .mm-panel { transform: translateX(0); }
.mm-links { display: flex; flex-direction: column; padding: 18px 24px; gap: 2px; overflow-y: auto; }
.mm-links a {
  display: flex; align-items: baseline; gap: 14px; padding: 13px 4px;
  font-family: 'Playfair Display', serif; font-size: 21px; color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.06); transition: all .3s;
  opacity: 0; transform: translateX(30px);
}
#mobileMenu.open .mm-links a { opacity: 1; transform: none; transition: all .5s var(--ease-luxe); }
.mm-links a:hover { color: var(--gold-bright); padding-left: 10px; }
.mm-no { font-family: Manrope, sans-serif; font-size: 11px; letter-spacing: .2em; color: var(--gold); }

/* ---------- TOMBOL ---------- */
.btn-gold {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; overflow: hidden;
  background: linear-gradient(120deg, #B1834A, #E3B23C 55%, #B1834A);
  background-size: 200% 100%;
  color: #221604; font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  transition: background-position .6s var(--ease-luxe), transform .3s, box-shadow .3s;
  box-shadow: 0 12px 30px -12px rgba(227,178,60,.55);
}
.btn-gold:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(227,178,60,.7); }
.btn-gold.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-gold:hover .arrow-loop { animation: arrowLoop .8s var(--ease-luxe) infinite; }
@keyframes arrowLoop { 0% { transform: translateX(0) } 45% { transform: translateX(5px) } 100% { transform: translateX(0) } }

.btn-ghost-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  border: 1px solid rgba(192,146,78,.55); color: var(--gold-bright);
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  transition: all .4s var(--ease-luxe);
}
.btn-ghost-gold:hover { background: rgba(192,146,78,.14); border-color: var(--gold-bright); transform: translateY(-2px); }
.btn-ghost-gold:hover .arrow-loop { animation: arrowLoop .8s var(--ease-luxe) infinite; }

/* ---------- LABEL & JUDUL SEKSI ---------- */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-deep);
}
.gold-num {
  color: transparent; -webkit-text-stroke: 1.4px rgba(192,146,78,.65);
  line-height: .8;
}

/* ---------- HERO SLIDER (Ken Burns + blur text) ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: var(--ink); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.2s var(--ease-luxe), visibility 1.2s; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide .hero-media {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.12); will-change: transform;
}
.hero-slide.active .hero-media { animation: kenburns var(--dur, 7s) linear forwards; }
@keyframes kenburns { from { transform: scale(1.12) } to { transform: scale(1.0) } }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,16,30,.92) 0%, rgba(7,16,30,.35) 45%, rgba(7,16,30,.25) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(110px, 16vh, 170px);
}
.hero-text > * { opacity: 0; filter: blur(15px); transform: translateY(25vh); }
.hero-slide.active .hero-text > * {
  animation: heroTextIn 1.3s var(--ease-luxe) forwards;
}
.hero-slide.active .hero-text > *:nth-child(1) { animation-delay: .25s }
.hero-slide.active .hero-text > *:nth-child(2) { animation-delay: .45s }
.hero-slide.active .hero-text > *:nth-child(3) { animation-delay: .65s }
.hero-slide.active .hero-text > *:nth-child(4) { animation-delay: .85s }
@keyframes heroTextIn {
  from { opacity: 0; filter: blur(15px); transform: translateY(25vh); }
  to   { opacity: 1; filter: blur(0);     transform: translateY(0); }
}
.hero-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-bright);
}
.hero-label::before { content: ''; width: 42px; height: 1px; background: var(--gold-bright); }
.hero-title {
  font-family: 'Playfair Display', serif; color: var(--cream);
  font-size: clamp(38px, 6.2vw, 84px); line-height: 1.05; font-weight: 700;
  max-width: 16ch; margin-top: 18px;
}
.hero-title em { font-style: italic; color: var(--gold-bright); }
.hero-sub { color: rgba(253,250,245,.78); max-width: 52ch; margin-top: 20px; font-size: clamp(14px, 1.4vw, 17px); line-height: 1.7; font-weight: 400; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Progress bars slider */
.hero-progress { position: absolute; z-index: 5; bottom: 34px; left: 0; right: 0; }
.hp-track { display: flex; gap: 10px; }
.hp-item { position: relative; flex: 0 1 130px; height: 26px; cursor: pointer; }
.hp-item::before { content: ''; position: absolute; left: 0; right: 0; top: 12px; height: 2px; background: rgba(253,250,245,.22); }
.hp-fill {
  position: absolute; left: 0; top: 12px; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}
.hero-slide-no { position: absolute; top: -16px; left: 0; font-size: 10px; letter-spacing: .18em; color: rgba(253,250,245,.55); font-weight: 700; }
.hp-item.active .hp-fill { animation: hpFill var(--dur, 7s) linear forwards; }
.hp-item.active .hero-slide-no { color: var(--gold-bright); }
@keyframes hpFill { from { width: 0% } to { width: 100% } }

/* Navigasi panah slider */
.hero-arrows { position: absolute; z-index: 5; right: clamp(20px, 5vw, 64px); bottom: 30px; display: flex; gap: 10px; }
.hero-arrow {
  width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center;
  border: 1px solid rgba(253,250,245,.3); color: var(--cream);
  transition: all .35s var(--ease-luxe); cursor: pointer; background: rgba(7,16,30,.3); backdrop-filter: blur(6px);
}
.hero-arrow:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: scale(1.08); }

/* Indikator scroll */
.scroll-hint {
  position: absolute; z-index: 5; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(253,250,245,.55); font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-hint::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  animation: hintDrop 1.8s var(--ease-luxe) infinite;
}
@keyframes hintDrop { 0% { transform: scaleY(0); transform-origin: top } 55% { transform: scaleY(1); transform-origin: top } 56% { transform-origin: bottom } 100% { transform: scaleY(0); transform-origin: bottom } }

/* ---------- MARQUEE EMAS ---------- */
.marquee {
  background: linear-gradient(100deg, #B1834A, #E3B23C 40%, #C0924E 70%, #E9C98F);
  color: #241703; overflow: hidden; padding: 15px 0; position: relative; z-index: 3;
}
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-weight: 800; font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 0 28px; white-space: nowrap; display: flex; align-items: center; gap: 28px;
}
.marquee-track span::after { content: '\2726'; font-size: 11px; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ---------- REVEAL SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(46px); filter: blur(6px); transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe), filter 1s var(--ease-luxe); }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal.d1 { transition-delay: .12s } .reveal.d2 { transition-delay: .24s }
.reveal.d3 { transition-delay: .36s } .reveal.d4 { transition-delay: .48s }

/* ---------- MONOGRAM AVATAR ---------- */
.monogram {
  background:
    radial-gradient(circle at 30% 25%, rgba(233,196,106,.28), transparent 55%),
    linear-gradient(150deg, #0B1D33, #071528 70%);
  color: transparent;
}
.monogram span {
  font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; letter-spacing: .06em;
  background: linear-gradient(140deg, #EBCB7E, #C0924E 60%, #9A7034);
  -webkit-background-clip: text; background-clip: text;
}
.monogram-md span { font-size: 21px; }
.monogram-sm span { font-size: 14px; letter-spacing: 0; }

/* Kartu tokoh */
.person-card .person-photo {
  position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(192,146,78,.35);
  box-shadow: 0 24px 48px -24px rgba(10,18,32,.35);
  transition: transform .5s var(--ease-luxe), box-shadow .5s;
}
.person-card:hover .person-photo { transform: translateY(-6px); box-shadow: 0 34px 60px -24px rgba(138,101,48,.45); }
.person-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(233,196,106,.22) 48%, transparent 62%);
  transform: translateX(-110%); transition: transform .9s var(--ease-luxe);
}
.person-card:hover .person-sheen { transform: translateX(110%); }

/* ---------- DAFTAR BERNOMOR ---------- */
.num-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start;
  padding: 20px 0; border-bottom: 1px solid rgba(138,101,48,.18);
  transition: padding-left .4s var(--ease-luxe);
}
.num-item:hover { padding-left: 10px; }
.num-idx {
  font-size: 26px; line-height: 1.1; color: transparent;
  -webkit-text-stroke: 1px var(--gold); transition: all .4s;
}
.num-item:hover .num-idx { color: var(--gold-bright); -webkit-text-stroke: 1px var(--gold-bright); }

/* ---------- STATISTIK ---------- */
.stat-num {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(44px, 5.4vw, 76px); line-height: 1;
  background: linear-gradient(140deg, #EBCB7E, #C0924E 55%, #8A6530);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- DIVIDER PARALLAX ---------- */
.parallax-band { position: relative; overflow: hidden; }
.parallax-bg {
  position: absolute; inset: -18% 0; background-size: cover; background-position: center;
  will-change: transform;
}
.parallax-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,16,30,.88), rgba(7,16,30,.55)); }
.parallax-band > :not(.parallax-bg) { position: relative; z-index: 2; }

/* ---------- KARTU PRODI ---------- */
.prodi-card { position: relative; border-radius: 22px; overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; isolation: isolate; }
.prodi-card .pc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.1s var(--ease-luxe); z-index: -2; }
.prodi-card:hover .pc-bg { transform: scale(1.07); }
.prodi-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(7,16,30,.95) 8%, rgba(7,16,30,.35) 55%, rgba(7,16,30,.15)); transition: opacity .5s; }
.pc-body { padding: 30px; width: 100%; }
.pc-line { height: 2px; width: 44px; background: var(--gold-bright); transition: width .6s var(--ease-luxe); }
.prodi-card:hover .pc-line { width: 90px; }

/* ---------- VIDEO FRAME ---------- */
.video-frame { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16/9; background: #071528; border: 1px solid rgba(192,146,78,.3); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-cover { position: absolute; inset: 0; background-size: cover; background-position: center; cursor: pointer; }
.video-cover::after { content: ''; position: absolute; inset: 0; background: rgba(7,16,30,.45); transition: background .4s; }
.video-cover:hover::after { background: rgba(7,16,30,.25); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 84px; height: 84px; border-radius: 999px; display: grid; place-items: center;
  background: linear-gradient(135deg, #E3B23C, #C0924E); color: #241703;
  box-shadow: 0 0 0 0 rgba(227,178,60,.5); animation: pulseGold 2.4s infinite;
  transition: transform .35s var(--ease-luxe);
}
.video-cover:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }
@keyframes pulseGold { 0% { box-shadow: 0 0 0 0 rgba(227,178,60,.45) } 70% { box-shadow: 0 0 0 26px rgba(227,178,60,0) } 100% { box-shadow: 0 0 0 0 rgba(227,178,60,0) } }

/* ---------- KARTU FITUR / BEASISWA ---------- */
.luxe-card {
  position: relative; border-radius: 18px; padding: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(192,146,78,.25);
  transition: all .45s var(--ease-luxe); overflow: hidden;
}
.luxe-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0; transition: opacity .4s;
}
.luxe-card:hover { transform: translateY(-6px); border-color: rgba(227,178,60,.55); background: rgba(255,255,255,.07); }
.luxe-card:hover::before { opacity: 1; }
.luxe-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  color: var(--gold-bright); border: 1px solid rgba(192,146,78,.4);
  background: radial-gradient(circle at 30% 25%, rgba(233,196,106,.16), transparent 60%);
  transition: all .4s;
}
.luxe-card:hover .luxe-icon { transform: rotate(-6deg) scale(1.06); background: rgba(227,178,60,.14); }

/* ---------- PAGE HERO (halaman dalam) ---------- */
.page-hero { position: relative; padding: 168px 0 90px; background: var(--ink); overflow: hidden; }
.page-hero .ph-pattern {
  position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(192,146,78,.16) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.page-hero .ph-glow {
  position: absolute; top: -180px; right: -120px; width: 520px; height: 520px; border-radius: 999px;
  background: radial-gradient(circle, rgba(227,178,60,.22), transparent 65%); filter: blur(10px);
}
.crumb { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: rgba(253,250,245,.5); font-weight: 700; }
.crumb a:hover { color: var(--gold-bright); }
.crumb .sep { color: var(--gold); margin: 0 10px; }

/* ---------- PANEL CREAM BERPOLA ---------- */
.grid-paper {
  background-image:
    linear-gradient(rgba(11,29,51,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,29,51,.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ---------- STRUKTUR ORGANISASI ---------- */
.org-tree { display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-level { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; position: relative; padding-top: 46px; }
.org-level:first-child { padding-top: 0; }
.org-level::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1.5px; height: 46px; background: linear-gradient(to bottom, var(--gold), rgba(192,146,78,.3));
}
.org-node {
  position: relative; min-width: 210px; max-width: 250px; text-align: center;
  background: #fff; border: 1px solid rgba(192,146,78,.4); border-radius: 16px;
  padding: 20px 18px 18px; box-shadow: 0 18px 40px -22px rgba(10,18,32,.25);
  transition: all .4s var(--ease-luxe);
}
.org-node:hover { transform: translateY(-5px); border-color: var(--gold-bright); box-shadow: 0 26px 48px -20px rgba(138,101,48,.4); }
.org-node.root {
  background: linear-gradient(150deg, #0B1D33, #071528);
  border-color: var(--gold); min-width: 270px;
}
.org-node.root .org-name { color: var(--cream); }
.org-node.root .org-role { color: var(--gold-bright); }
.org-node::before {
  content: ''; position: absolute; top: -23px; left: 50%; transform: translateX(-50%);
  width: 1.5px; height: 23px; background: rgba(192,146,78,.5);
}
.org-level:first-child .org-node::before { display: none; }
.org-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15.5px; color: var(--ink); line-height: 1.35; }
.org-role { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-top: 6px; }
.org-nidn { font-size: 10.5px; color: rgba(10,18,32,.4); margin-top: 4px; }

/* ---------- TIMELINE KALENDER ---------- */
.tl-wrap { position: relative; }
.tl-wrap::before {
  content: ''; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--gold-bright), rgba(192,146,78,.15));
}
.tl-item { position: relative; padding: 0 0 34px 64px; }
.tl-dot {
  position: absolute; left: 8px; top: 2px; width: 24px; height: 24px; border-radius: 999px;
  border: 2px solid var(--gold-bright); background: var(--cream);
  display: grid; place-items: center;
}
.tl-dot::after { content: ''; width: 8px; height: 8px; border-radius: 999px; background: var(--gold); }
.tl-item:hover .tl-dot { box-shadow: 0 0 0 8px rgba(227,178,60,.18); }

/* ---------- LANGKAH PMB ---------- */
.step-num {
  font-family: 'Playfair Display', serif; font-size: 54px; font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.2px rgba(233,196,106,.8);
}

/* ---------- FOOTER ---------- */
.footer-glow {
  position: absolute; top: -260px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 480px; border-radius: 999px;
  background: radial-gradient(ellipse, rgba(227,178,60,.14), transparent 65%);
  pointer-events: none;
}
.footer-head { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-bright); font-weight: 800; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(253,250,245,.62); font-size: 14px; transition: all .3s; position: relative; }
.footer-links a:hover { color: var(--gold-bright); padding-left: 8px; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center;
  border: 1px solid rgba(192,146,78,.4); color: rgba(253,250,245,.75);
  transition: all .35s var(--ease-luxe);
}
.soc-btn:hover { background: var(--gold-bright); color: #241703; border-color: var(--gold-bright); transform: translateY(-3px); }
.footer-wordmark { margin: 56px 0 34px; overflow: hidden; }
.footer-wordmark span {
  display: block; text-align: center; white-space: nowrap;
  font-size: clamp(52px, 10.6vw, 168px); font-weight: 800; letter-spacing: .02em; line-height: .95;
  color: transparent; -webkit-text-stroke: 1px rgba(192,146,78,.5);
  transition: color 1s var(--ease-luxe);
}
.footer-wordmark:hover span { color: rgba(192,146,78,.16); }

/* ---------- TOMBOL KE ATAS ---------- */
#toTop {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold-bright); border: 1px solid rgba(192,146,78,.5);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .45s var(--ease-luxe); cursor: pointer;
  box-shadow: 0 16px 36px -14px rgba(0,0,0,.5);
}
#toTop.show { opacity: 1; visibility: visible; transform: none; }
#toTop:hover { background: var(--gold-bright); color: #241703; }

/* ---------- LAIN-LAIN ---------- */
.drop-cap::first-letter {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 3.4em; float: left; line-height: .82;
  padding: 6px 12px 0 0; color: var(--gold-deep);
}
.quote-mark {
  font-family: 'Playfair Display', serif; font-size: 120px; line-height: .6;
  color: transparent; -webkit-text-stroke: 1.5px rgba(192,146,78,.6);
}
.check-gold { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 999px; background: rgba(227,178,60,.16); color: var(--gold-bright); flex: none; }

.badge-gold {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(192,146,78,.5); color: var(--gold-deep);
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(233,196,106,.12);
}

@media (max-width: 768px) {
  .hero-content { padding-bottom: 130px; }
  .hp-item { flex: 1 1 0; }
  .hero-slide-no { display: none; }
  .hero-arrows { display: none; }
  .num-item { grid-template-columns: 46px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}
