/* ========================================================================
   GSKI Rehobot Surabaya
   Editorial, service-focused, warm minimal
   ======================================================================== */

:root {
  --bg: #fafaf6;          /* warm white */
  --bg-2: #f1eee3;        /* parchment */
  --ink: #182551;         /* navy primary */
  --ink-soft: #2a3a6e;
  --ink-mute: #6e7799;
  --rule: #d6d2c1;
  --gold: #ba9a42;        /* brand gold */
  --gold-deep: #8a7028;
  --night: #0e1633;       /* deep navy */
  --night-2: #182551;     /* brand navy */
  --light-on-night: #f4efde;
  --hairline: rgba(24,37,81,.16);

  --f-display: "Instrument Serif", "Times New Roman", serif;
  --f-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(20px, 4vw, 56px);
  --pad-l: clamp(40px, 8vw, 120px);

  --ease: cubic-bezier(.2,.7,.2,1);

  --line-light: linear-gradient(to right, transparent, var(--hairline) 10%, var(--hairline) 90%, transparent);
  --line-dark: linear-gradient(to right, transparent, var(--on-night-15) 10%, var(--on-night-15) 90%, transparent);
  --line-dark-subtle: linear-gradient(to right, transparent, var(--on-night-1) 10%, var(--on-night-1) 90%, transparent);

  --line-light-r: linear-gradient(to right, var(--hairline), var(--hairline) 80%, transparent);
  --line-dark-r: linear-gradient(to right, var(--on-night-15), var(--on-night-15) 80%, transparent);
  --line-dark-subtle-r: linear-gradient(to right, var(--on-night-1), var(--on-night-1) 80%, transparent);

  --gradient-gold: linear-gradient(100deg, #ba9a42 0%, #f5e07a 45%, #c9a840 100%);
  --gradient-gold-deep: linear-gradient(100deg, #7a6018 0%, #ba9a42 45%, #8a7028 100%);
  --gradient-cream-gold: linear-gradient(95deg, var(--light-on-night) 30%, var(--gold) 100%);

  --on-night-15: rgba(244,239,222,.15);
  --on-night-1: rgba(244,239,222,.1);
  --on-night-3: rgba(244,239,222,.3);
  --on-night-5: rgba(244,239,222,.5);
  --on-night-55: rgba(244,239,222,.55);
  --on-night-6: rgba(244,239,222,.6);
  --on-night-7: rgba(244,239,222,.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; -webkit-user-drag: none; user-drag: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: italic; font-family: var(--f-display); font-weight: 400; }

::selection { background: var(--gold); color: var(--bg); }

button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ============== Loader ============== */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: linear-gradient(135deg, #0a1128 0%, #141d3a 55%, #1a1508 100%);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: clip-path 1.1s cubic-bezier(.76,0,.24,1);
  clip-path: inset(0 0 0 0);
}
.loader.is-done { clip-path: inset(0 0 100% 0); }
.loader__inner {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.loader__logo {
  width: 160px; height: 160px;
  opacity: 0;
  animation: loaderLogoIn 1.1s var(--ease) 0.1s forwards;
}
@keyframes loaderLogoIn {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to { opacity: 1; transform: none; }
}
.loader__mark { width: 80px; height: 80px; color: var(--gold); }
.loader__cross-v, .loader__cross-h {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCross 1.3s var(--ease) forwards;
}
.loader__cross-h { animation-delay: .35s; }
@keyframes drawCross { to { stroke-dashoffset: 0; } }
.loader__count {
  font-family: var(--f-mono);
  font-size: 13px; letter-spacing: 0.04em; color: var(--bg);
  display: flex; align-items: baseline; gap: 2px;
}
.loader__pct {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============== Cursor ============== */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 999;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink); pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .2s;
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 60px; height: 60px; background: var(--gold); }
@media (hover: none) { .cursor { display: none; } }

/* ============== Nav ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  transition: color .7s var(--ease), border-color .7s var(--ease);
  border-bottom: 2px solid transparent;
  color: var(--ink);
  isolation: isolate;
}
.svg-defs { position: absolute; width: 0; height: 0; pointer-events: none; }

.nav::before,
.nav::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity .7s var(--ease);
  backdrop-filter: blur(7px) saturate(190%) url(#liquidGlass);
  -webkit-backdrop-filter: blur(7px) saturate(190%);
  pointer-events: none;
}
.nav::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(250,250,246,0.34) 0%, rgba(250,250,246,0.14) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.70),
    inset 0 -1px 0 rgba(255,255,255,0.18),
    inset 1px 0 0 rgba(255,255,255,0.10),
    inset -1px 0 0 rgba(255,255,255,0.10),
    0 8px 32px rgba(24,37,81,0.06);
}
.nav::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(14,22,51,0.36) 0%, rgba(8,12,28,0.18) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(186,154,66,0.10),
    inset 1px 0 0 rgba(255,255,255,0.04),
    inset -1px 0 0 rgba(255,255,255,0.04),
    0 8px 32px rgba(0,0,0,0.28);
}
.nav > * { position: relative; z-index: 1; }

.nav.is-scrolled::before { opacity: 1; }
.nav.is-scrolled { border-bottom-color: rgba(186,154,66,0.32); }

.nav.is-dark { color: var(--light-on-night); }
.nav.is-dark.is-scrolled::before { opacity: 0; }
.nav.is-dark.is-scrolled::after { opacity: 1; }
.nav.is-dark.is-scrolled { border-bottom-color: rgba(186,154,66,0.45); }
.nav.drawer-open {
  background: linear-gradient(180deg, #1a2858 0%, #121e48 100%) !important;
  color: var(--light-on-night);
  border-bottom-color: rgba(186,154,66,0.18);
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 36px; width: auto; object-fit: contain; }
.nav__links {
  display: flex; gap: 26px;
  font-size: 13px; letter-spacing: 0.01em;
  justify-self: center;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: opacity .2s;
}
.nav__links a:hover { opacity: .6; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(186,154,66,0.42);
  border-radius: 100px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 4px 14px rgba(24,37,81,0.10);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease), color .25s;
}
.nav__cta:hover {
  background:
    linear-gradient(135deg, rgba(186,154,66,0.28) 0%, rgba(186,154,66,0.10) 100%);
  border-color: rgba(186,154,66,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 8px 24px rgba(186,154,66,0.20);
  transform: translateY(-1px);
}
.nav.is-dark .nav__cta {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(186,154,66,0.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 4px 14px rgba(0,0,0,0.25);
}
.nav.is-dark .nav__cta:hover {
  background:
    linear-gradient(135deg, rgba(186,154,66,0.30) 0%, rgba(186,154,66,0.08) 100%);
  border-color: rgba(186,154,66,0.75);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 10px 28px rgba(186,154,66,0.25);
  color: var(--light-on-night);
}
.nav__cta .dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.nav__cta-main, .nav__cta-sub { display: inline-block; line-height: 1.1; }
.nav__cta-sub {
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid rgba(186,154,66,0.45);
  color: var(--gold);
  letter-spacing: 0.10em;
}
.nav__cta-sub[hidden] { display: none; }
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(186,154,66,.5); }
  50% { opacity: .6; box-shadow: 0 0 0 6px rgba(186,154,66,0); }
}

.nav__menu { display: none; }

@media (max-width: 1599px) and (min-width: 1351px) {
  .nav { gap: 18px; }
  .nav__links { gap: 18px; font-size: 12.5px; }
  .nav__cta-sub { display: none; }
}

@media (max-width: 1350px) and (min-width: 1101px) {
  .nav { gap: 12px; padding: 14px var(--pad); }
  .nav__links { gap: 14px; font-size: 11.5px; }
  .nav__logo { height: 30px; }
  .nav__cta { padding: 8px 12px; font-size: 10px; gap: 6px; }
  .nav__cta-sub { display: none; }
}

@media (max-width: 1100px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 12px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__menu {
    display: flex; flex-direction: column; justify-content: center;
    align-items: flex-end; gap: 4px;
    width: 32px; height: 24px;
  }
  .nav__menu span {
    width: 22px; height: 1px; background: currentColor;
    transition: transform .3s, width .3s;
  }
  .nav__menu span:nth-child(2) { width: 14px; }
  .nav__menu.is-open span:nth-child(1) { transform: translateY(2px) rotate(45deg); }
  .nav__menu.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); width: 22px; }
}

/* drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 380px;
  background:
    radial-gradient(ellipse at top right, rgba(186,154,66,0.10) 0%, rgba(186,154,66,0) 55%),
    linear-gradient(165deg, #1a2858 0%, #121e48 45%, #0a1232 100%);
  color: var(--bg);
  z-index: 49; padding: 90px 32px 28px;
  transform: translateX(100%);
  transition: transform .6s var(--ease), box-shadow .3s var(--ease);
  box-shadow: none;
  border-left: 1px solid rgba(186,154,66,0.18);
  overflow-y: auto;
}
.drawer.is-open { box-shadow: -24px 0 60px rgba(0,0,0,0.4); }
.drawer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(186,154,66,0.12) 0%, rgba(186,154,66,0) 8%),
    linear-gradient(0deg, rgba(186,154,66,0.06) 0%, rgba(186,154,66,0) 12%);
  pointer-events: none;
}
.drawer.is-open { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; position: relative; z-index: 1; }
.drawer nav a {
  font-family: var(--f-display);
  font-size: 20px;
  padding: 6px 0;
  background: linear-gradient(to right, rgba(255,255,255,0.07), rgba(255,255,255,0.07) 75%, transparent) bottom / 100% 1px no-repeat;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
@media (max-height: 750px) {
  .drawer nav a { font-size: 17px; padding: 4px 0; }
  .drawer { padding: 72px 28px 16px; }
}
.drawer nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

/* ============== Shared ============== */
.dot {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: currentColor;
}
.kbd {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 3px 7px;
  border: 1px solid currentColor; border-radius: 3px;
  line-height: 1;
  opacity: 0.7;
}
.kbd--light { color: var(--light-on-night); border-color: var(--on-night-3); }

.section-label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.section-label .num {
  color: var(--gold);
}
.section-label--light { color: var(--on-night-6); }
.section-label--light .num { color: var(--gold); }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  overflow: visible;
}
.display em,
.display em .reveal-word__inner {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.display--light { color: var(--light-on-night); }

/* word reveal */
[data-reveal-words] {
  overflow: visible;
}
.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 1em;
  margin-bottom: -1em;
  line-height: inherit;
}
@media (max-width: 900px) {
  .display { line-height: 1.1; }
  .reveal-word {
    overflow: visible;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.reveal-word.is-done,
em .reveal-word {
  overflow: visible !important;
}
.reveal-word__inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
  line-height: inherit;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px var(--pad-l) 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__meta {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
}
.meta__row { display: flex; align-items: center; gap: 8px; }
.meta__row .kbd { border-color: var(--hairline); padding: 2px 5px; font-size: 9px; }

.hero__center {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero__tag {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,250,246,0.78);
}
.hero__tag .line { width: 40px; height: 1px; background: currentColor; opacity: .55; }

.hero__title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.9; letter-spacing: -0.04em;
  color: #fafaf6;
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(8,12,28,0.45);
}
.hero__title .word { display: block; overflow: visible; }
.hero__title em {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(250,250,246,0.85);
  text-shadow: 0 1px 12px rgba(8,12,28,0.5);
}
.hero__sub em { color: #fafaf6; font-style: italic; }

.hero__verse {
  position: relative;
  max-width: 600px;
  padding: 36px 32px 28px;
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--bg);
  font-style: italic;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.2);
  margin: 20px auto 0;
}
.hero__verse::before,
.hero__verse::after {
  content: none;
}
.hero__verse-mark {
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  background: transparent; padding: 0 12px;
  font-family: var(--f-display); font-size: 60px;
  line-height: 1; color: var(--gold);
}
.hero__verse cite {
  display: block; margin-top: 12px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-style: normal; color: var(--ink-mute);
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__scroll {
  display: flex; align-items: center; gap: 10px;
}
.hero__scroll svg {
  width: 12px; height: 24px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50% { transform: translateY(4px); opacity: 1; }
}
.hero__live {
  justify-self: center;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 6px 16px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.12);
}
.live__pulse {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  position: relative;
}
.live__pulse::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid var(--gold); animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.4); }
}
.hero__time { justify-self: end; }

/* corner ornaments */
.corner {
  position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--hairline);
}
.corner--tl { top: 80px; left: 24px; border-right: 0; border-bottom: 0; }
.corner--tr { top: 80px; right: 24px; border-left: 0; border-bottom: 0; }
.corner--bl { bottom: 24px; left: 24px; border-right: 0; border-top: 0; }
.corner--br { bottom: 24px; right: 24px; border-left: 0; border-top: 0; }

/* ============== Marquee ============== */
.marquee {
  background: var(--bg-2);
  overflow: hidden;
  padding: 28px 0;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hairline) 15%, var(--hairline) 85%, transparent);
  z-index: 2;
  pointer-events: none;
}
.marquee::before { top: 0; }
.marquee::after { bottom: 0; }
.marquee__track {
  display: inline-flex; gap: 40px; align-items: center;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 48px);
  line-height: 1;
  color: var(--ink);
  font-style: italic;
  animation: marquee 55s linear infinite;
  padding-left: 40px;
}
.marquee__track span:not(.dot-mq) { letter-spacing: -0.02em; }
.dot-mq { color: var(--gold); font-style: normal; font-size: 0.5em; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============== Statement ============== */
.statement {
  padding: 140px var(--pad-l);
}
.statement .grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto;
}
.statement__label {
  position: sticky; top: 100px;
  align-self: start;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.statement__label .num { color: var(--gold); }
.statement__body { display: flex; flex-direction: column; gap: 40px; }
.statement__lede {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.statement__lede em,
.statement__lede em .reveal-word__inner {
  background: var(--gradient-gold-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statement__lede--alt { font-size: clamp(28px, 3.2vw, 46px); }

@media (max-width: 900px) {
  .statement .grid { grid-template-columns: 1fr; gap: 40px; }
  .statement__label { position: relative; top: auto; }
}

/* ============== Pelayanan ============== */
.pelayanan {
  padding: 120px var(--pad-l);
  background: var(--bg);
  position: relative;
}
.pelayanan::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hairline) 15%, var(--hairline) 85%, transparent);
  pointer-events: none;
}
.pelayanan__intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
  max-width: 1500px; margin-left: auto; margin-right: auto;
}
.pelayanan__intro .display {
  font-size: clamp(52px, 7vw, 110px);
}
.pelayanan__note {
  font-size: 15px; color: var(--ink-soft);
  max-width: 360px;
}
.pelayanan__note a {
  color: var(--gold-deep); border-bottom: 1px solid currentColor;
}

.services {
  max-width: 1500px;
  margin: 0 auto;
  background: var(--line-light-r) top / 100% 1px no-repeat;
}
.service {
  display: grid;
  grid-template-columns: 80px 1.5fr 2fr 160px;
  gap: 32px;
  padding: 36px 24px;
  background: var(--line-light-r) bottom / 100% 1px no-repeat;
  align-items: start;
  cursor: pointer;
  transition: padding .4s var(--ease), background .4s var(--ease);
  position: relative;
}
.service::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 0; background: linear-gradient(125deg, #07101f 0%, #182551 45%, #1f3d80 100%); z-index: -1;
  transition: height .5s var(--ease);
}
.service > * { position: relative; z-index: 1; }
.service::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 52%;
  background-image: var(--svc-img);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.75) contrast(1.1);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 28%, transparent 80%);
  mask-image: linear-gradient(to right, black 0%, black 28%, transparent 80%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.65s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.service:hover::after { opacity: 0.8; }
.service[data-service="01"]::after { background-image: url('assets/baptisan/baptisan-pemuda-dicelup-dua-pendeta-kolam.webp'); }
.service[data-service="02"]::after { background-image: url('assets/jemaat/jemaat-worship-berdiri-bernyanyi.webp'); }
.service[data-service="03"]::after { background-image: url('assets/pemberkatan/pemberkatan-nikah.webp'); background-position: center 35%; }
.service[data-service="04"]::after { background-image: url('assets/anak/anak-sekolah-minggu-pendeta-berdiri-stage.webp'); }
.service[data-service="05"]::after { background-image: url('assets/jemaat/jemaat-doa-kepala-tunduk-full-hall.webp'); }
.service[data-service="06"]::after { background-image: url('assets/pendeta/pendeta-wanita-kotbah-ibadah-pemakaman-salib-bunga.webp'); background-position: 80% center; }
.service[data-service="07"]::after { background-image: url('assets/pemberkatan/pemberkatan-rumah.webp'); background-position: center 38%; }
.service[data-service="08"]::after { background-image: url('assets/jemaat/jemaat-worship-berdiri-cny-lantern.webp'); }
.service:hover {
  padding-left: 40px; padding-right: 24px;
  color: var(--bg);
}
.service:hover::before { height: calc(100% + 1px); top: 0; bottom: auto; }
.service:hover .service__cta { color: var(--gold); }

.service__index {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  padding-top: 6px;
}
.service:hover .service__index { color: var(--gold); text-shadow: 0 1px 8px rgba(0,0,0,0.6); }

.service__title h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.service__tag {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
}
.service:hover .service__tag { color: var(--bg-2); text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
.service:hover .service__title h3 { text-shadow: 0 2px 12px rgba(0,0,0,0.5); }

.service__desc {
  font-size: 15px; line-height: 1.5; color: var(--ink-soft);
  padding-top: 6px;
}
.service:hover .service__desc { color: var(--bg-2); }

.service__cta {
  display: flex; align-items: center; gap: 10px;
  justify-self: end;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 6px;
}
.service__cta svg {
  width: 24px; height: 12px;
  transition: transform .3s var(--ease);
}
.service:hover .service__cta svg { transform: translateX(6px); }

.service--cta {
  background: var(--bg-2);
}
.service--cta .service__title h3 {
  background: var(--gradient-gold-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  padding-bottom: 0.25em;
  margin-bottom: calc(8px - 0.25em);
}
.service--cta:hover .service__title h3 {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--bg);
}

@media (max-width: 900px) {
  .pelayanan__intro { grid-template-columns: 1fr; }
  .service {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding-left: 20px; padding-right: 20px;
  }
  .service__desc { grid-column: 1 / -1; }
  .service__cta { grid-column: 1 / -1; justify-self: start; }
  .service:hover { padding-left: 36px; padding-right: 20px; }
  .service--cta { padding-left: 20px; padding-right: 20px; }
  .service::after {
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
    filter: grayscale(100%) brightness(0.55) contrast(1.1);
  }
  .service:hover::after { opacity: 0.65; }
}

/* ============== 3 PILAR (DARK SECTION) ============== */
.pilar {
  background: var(--night);
  color: var(--light-on-night);
  padding: 140px var(--pad-l);
  position: relative;
}
.pilar__head {
  max-width: 1500px; margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}
.pilar__head .display { font-size: clamp(52px, 7vw, 110px); }

.pilar__grid {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--line-dark) top / 100% 1px no-repeat, var(--line-dark) bottom / 100% 1px no-repeat;
}
.pilar__card {
  padding: 40px 30px 50px;
  border-right: 1px solid var(--on-night-15);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.pilar__card:last-child { border-right: 0; }
.pilar__num {
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 0.8;
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pilar__card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.01em;
}
.pilar__verse {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 8px 0;
  background: var(--line-dark-r) top / 100% 1px no-repeat, var(--line-dark-r) bottom / 100% 1px no-repeat;
}
.pilar__card p:not(.pilar__verse) {
  font-size: 14px;
  line-height: 1.55;
  color: var(--on-night-7);
}

.pilar__visi {
  max-width: 1500px; margin: 80px auto 0;
  display: flex; align-items: baseline; gap: 30px;
  padding-top: 40px;
}
.pilar__visi-label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-night-5);
  flex-shrink: 0;
}
.pilar__visi-text {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--light-on-night);
}
.pilar__visi-text em {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .pilar__head { grid-template-columns: 1fr; gap: 30px; }
  .pilar__grid { grid-template-columns: 1fr; }
  .pilar__card { border-right: 0; border-bottom: 1px solid var(--on-night-15); }
  .pilar__card:last-child { border-bottom: 0; }
  .pilar__visi { flex-direction: column; gap: 16px; }
}

/* ============== Gembala ============== */
.gembala {
  padding: 140px var(--pad-l);
  background: var(--bg);
}
.gembala__head {
  max-width: 1500px; margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}
.gembala__head .display { font-size: clamp(52px, 7vw, 110px); }

.gembala__grid {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
}
.pastor {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 460px);
  gap: 60px;
  align-items: center;
  justify-content: center;
}
.pastor__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-2);
  width: 100%;
  border-radius: 6px;
  cursor: default !important;
}
.pastor__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.4) contrast(1.05);
  transition: filter .8s var(--ease), transform 1.2s var(--ease);
}
.pastor:hover .pastor__image img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.03);
}
.pastor__role-overlay {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(14, 22, 51, 0.55);
  color: var(--bg);
  padding: 6px 12px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.15);
}
.pastor--senior .pastor__image { order: 2; }
.pastor--senior .pastor__meta { order: 1; }
.pastor--senior .pastor__role-overlay { 
  background: rgba(201, 168, 76, 0.25); 
  color: #e8c96e; 
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  border: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.15);
}
.pastor__line {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
}
.pastor__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.pastor__bio {
  font-size: 15px; line-height: 1.55; color: var(--ink-soft);
  max-width: 460px;
}
.pastor__do {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-soft);
}
.pastor__do span { color: var(--gold); margin-right: 8px; }

.pastor__meta {
  display: flex; flex-direction: column; gap: 14px;
}

@media (max-width: 900px) {
  .gembala__head { grid-template-columns: 1fr; gap: 30px; }
  .gembala__grid { gap: 60px; }
  .pastor { grid-template-columns: 1fr; gap: 24px; }
  .pastor--senior .pastor__image { order: unset; }
  .pastor--senior .pastor__meta { order: unset; }
}

/* ============== Galeri ============== */
.galeri {
  padding: 140px var(--pad-l);
  background: var(--bg);
  position: relative;
}
.galeri::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hairline) 15%, var(--hairline) 85%, transparent);
  pointer-events: none;
}
.galeri__head {
  max-width: 1500px; margin: 0 auto 60px;
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start;
}
.galeri__head .display { font-size: clamp(52px, 7vw, 110px); }
.galeri__note {
  max-width: 540px;
  font-size: 15px;
  color: var(--ink-soft);
}

.galeri__grid {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gal {
  grid-column: span 2;
  grid-row: span 1;
  display: flex; flex-direction: column;
  position: relative;
  background: var(--bg-2);
}
.gal--lg { grid-column: span 3; grid-row: span 2; }
.gal--tall { grid-column: span 2; grid-row: span 2; }
.gal--wide { grid-column: span 3; grid-row: span 1; }
.gal image-slot {
  flex: 1;
  width: 100%;
  height: 100%;
  --slot-bg: var(--bg-2);
  --slot-border: 1px dashed rgba(24,37,81,.25);
  --slot-color: var(--ink-mute);
  display: block;
}
.gal__num { color: var(--gold); font-weight: 500; }
.gal__label { color: var(--ink-soft); }

.galeri__hint {
  max-width: 1500px; margin: 32px auto 0;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.galeri__hint span { color: var(--gold); margin-right: 6px; }

@media (max-width: 900px) {
  .galeri__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gal, .gal--lg, .gal--tall, .gal--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ============== Ibadah (dark) ============== */
.ibadah {
  background: var(--night);
  color: var(--light-on-night);
  padding: 140px var(--pad-l);
}
.ibadah__head {
  max-width: 1500px; margin: 0 auto 80px;
  display: flex; flex-direction: column; gap: 28px;
  align-items: flex-start;
}
.ibadah__head .display { font-size: clamp(52px, 7vw, 110px); }
.ibadah__sub {
  max-width: 640px;
  font-size: 16px;
  color: var(--on-night-6);
}

/* Hero card: Ibadah Raya */
.ibadah__hero {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border: 1px solid var(--on-night-15);
}
.ibadah-hero__left {
  padding: 50px 44px;
  display: flex; flex-direction: column; gap: 16px;
  background: linear-gradient(135deg, #0e1633 0%, #1a2040 60%, #1e1a0f 100%);
  position: relative;
}
.ibadah-hero__left::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--gold);
}
.ibadah-hero__day {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.ibadah-hero__time {
  font-family: var(--f-display);
  font-size: clamp(96px, 11vw, 180px);
  line-height: 0.9; letter-spacing: -0.04em;
  color: var(--light-on-night);
  display: flex; align-items: flex-start; gap: 4px;
}
.ibadah-hero__time span {
  font-size: 0.45em; letter-spacing: 0;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ibadah-hero__time em {
  font-family: var(--f-mono); font-style: normal;
  font-size: 0.1em; letter-spacing: 0.2em;
  color: var(--on-night-5);
  align-self: flex-end;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.ibadah-hero__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  background: var(--gradient-cream-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ibadah-hero__where {
  font-size: 15px; line-height: 1.5; color: var(--on-night-7);
}
.ibadah-hero__pulse {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-night-6);
  margin-top: auto;
  padding-top: 20px;
}
.ibadah-hero__pulse span {
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.ibadah-hero__right {
  padding: 50px 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: rgba(244,239,222,.02);
  border-left: 1px solid var(--on-night-1);
  position: relative;
  transition: background .3s;
}
.ibadah-hero__right:hover { background: rgba(186,154,66,.1); }
.yt-big {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96e 45%, #b8942a 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  align-self: flex-start;
  box-shadow: 0 4px 20px rgba(186,154,66,0.35);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.ibadah-hero__right:hover .yt-big {
  box-shadow: 0 6px 28px rgba(186,154,66,0.55);
  transform: scale(1.05);
}
.yt-big svg { width: 30px; height: 30px; margin-left: 4px; }
.yt-big__label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-night-5);
  margin-top: auto;
}
.yt-big__name {
  font-family: var(--f-display); font-size: clamp(24px, 2.6vw, 36px);
  color: var(--light-on-night);
}
.yt-big__arrow {
  position: absolute; top: 28px; right: 32px;
  font-size: 24px; color: var(--gold);
  transition: transform .3s var(--ease);
}
.ibadah-hero__right:hover .yt-big__arrow { transform: translate(4px, -4px); }

/* Schedule */
.schedule {
  max-width: 1500px; margin: 80px auto 0;
}
.schedule__head {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.schedule__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--light-on-night);
  letter-spacing: -0.01em;
}
.schedule__legend {
  display: flex; gap: 20px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-night-5);
}
.schedule__legend span {
  display: inline-flex; align-items: center; gap: 8px;
}
.schedule__legend .dot { width: 6px; height: 6px; }

.schedule__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr 1fr;
  gap: 0;
  background: var(--line-dark-subtle) top / 100% 1px no-repeat, var(--line-dark-subtle) bottom / 100% 1px no-repeat;
}
.day {
  border-right: 1px solid var(--on-night-1);
  padding: 28px 20px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.day:last-child { border-right: 0; }
.day__name {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.day__tag {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  padding: 2px 8px;
  border: 1px solid rgba(186,154,66,.4);
  border-radius: 3px;
  align-self: flex-start;
}
.day__list {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 4px;
}
.ev {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 0;
  background: var(--line-dark-subtle-r) top / 100% 1px no-repeat;
  position: relative;
}
.ev:first-child { background: none; padding-top: 0; }
.ev::after {
  content: ""; position: absolute;
  top: 18px; left: -10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.ev:first-child::after { top: 4px; }
.ev--away::after { background: #7e8bb4; }
.ev--monthly::after { background: transparent; border: 1px solid var(--gold); }
.ev__time {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.ev__name {
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.15;
  color: var(--light-on-night);
}
.ev__name em {
  display: block;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--light-on-night);
  font-style: normal;
  margin-top: 4px;
}
.ev--feature .ev__name em {
  color: inherit;
}
.ev__loc {
  font-size: 12px;
  color: var(--on-night-55);
  line-height: 1.35;
}

.ev--feature .ev__name {
  background: var(--gradient-cream-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Schedule Note */
.schedule__note {
  margin-top: 40px;
  font-size: 14px;
  color: var(--on-night-55);
  text-align: center;
}
.schedule__note a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
}

@media (max-width: 1100px) {
  .schedule__grid { grid-template-columns: 1fr 1fr 1fr; }
  .day { border-right: 1px solid var(--on-night-1) !important; }
  .day--wide { grid-column: span 3; }
}
@media (max-width: 700px) {
  .ibadah__hero { grid-template-columns: 1fr; }
  .ibadah-hero__right {
    border-left: 0; border-top: 1px solid var(--on-night-1);
    justify-content: flex-start; gap: 32px; padding: 40px 28px;
  }
  .yt-big__label { margin-top: 0; }
  .schedule__grid { grid-template-columns: 1fr 1fr; }
  .day--wide { grid-column: span 2; }
}

/* ============== Tonton (YouTube + Instagram) ============== */
.tonton {
  background: var(--night);
  color: var(--light-on-night);
  padding: 140px var(--pad-l);
  position: relative;
}
.tonton__head {
  max-width: 1500px; margin: 0 auto 80px;
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start;
}
.tonton__head .display { font-size: clamp(52px, 7vw, 110px); }
.tonton__sub {
  max-width: 580px;
  font-size: 16px;
  color: var(--on-night-6);
}

.tonton__yt {
  max-width: 1500px;
  margin: 0 auto;
}

.tonton__sub-head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 0;
  margin-bottom: 16px;
}
.tonton__platform {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.tonton__platform svg { color: var(--gold); }
.tonton__handle {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-night-7);
  transition: color .25s;
}
.tonton__handle:hover { color: var(--gold); }
.tonton__handle span { color: var(--gold); }

/* YouTube grid: hero + side list */
.yt-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
}

.yt-hero {
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  cursor: pointer;
}
.yt-hero__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--on-night-1);
  border-radius: 8px;
}
.yt-hero__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
  filter: brightness(.85);
}
.yt-hero__thumb iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.yt-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: opacity .25s;
}
.yt-play::before {
  content: '';
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(14,22,51,.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(186,154,66,.4);
  position: absolute;
}
.yt-play svg {
  position: relative; z-index: 1;
  color: var(--gold);
  margin-left: 3px;
}
.yt-hero:hover .yt-play { opacity: 0.85; }
.yt-hero__thumb.is-playing .yt-play { display: none; }
.yt-embed-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light-on-night);
  text-decoration: none;
  background: rgba(14,22,51,.15);
  transition: background .25s, color .25s;
}
.yt-embed-fallback:hover {
  background: rgba(186,154,66,.15);
  color: var(--gold);
}
.yt-hero:hover .yt-hero__thumb img {
  transform: scale(1.04);
  filter: brightness(1);
}
.yt-hero__meta {
  display: flex; flex-direction: column; gap: 10px;
}
.yt-hero__date {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
}
.yt-hero__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--light-on-night);
  transition: color .25s;
}
.yt-hero:hover .yt-hero__title { color: var(--gold); }

.yt-list {
  display: flex; flex-direction: column; gap: 18px;
}
.yt-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  cursor: pointer;
  align-items: start;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}
.yt-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--on-night-1);
  border-radius: 6px;
}
.yt-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.85);
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.yt-card:hover .yt-card__thumb img {
  transform: scale(1.06);
  filter: brightness(1);
}
.yt-card__meta {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 2px;
}
.yt-card__date {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-night-5);
}
.yt-card__title {
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 1.3;
  color: var(--light-on-night);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s;
}
.yt-card:hover .yt-card__title { color: var(--gold); }

/* Skeleton state */
.yt-card--skeleton {
  height: 92px;
  background: var(--on-night-1);
  border-radius: 6px;
  animation: skelPulse 1.6s ease-in-out infinite;
}
@keyframes skelPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

@media (max-width: 900px) {
  .yt-grid { grid-template-columns: 1fr; gap: 40px; }
  .yt-list { gap: 28px; }
  .yt-card { grid-template-columns: 1fr; gap: 12px; }
  .yt-card__title { -webkit-line-clamp: 2; font-size: 17px; }
}

/* ============== Misi ============== */
.misi {
  padding: 140px var(--pad-l);
  background: var(--bg);
}
.misi__head { max-width: 1500px; margin: 0 auto 60px; }
.misi__list {
  max-width: 1500px; margin: 0 auto;
  background: var(--line-light-r) top / 100% 1px no-repeat;
}
.misi__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 60px;
  padding: 50px 0;
  background: var(--line-light-r) bottom / 100% 1px no-repeat;
  align-items: baseline;
  position: relative;
}
.misi__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.misi__text {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.misi__text em,
.misi__text em .reveal-word__inner {
  background: var(--gradient-gold-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}

@media (max-width: 900px) {
  .misi__item { grid-template-columns: 50px 1fr; gap: 20px; }
  .misi__num { font-size: 36px; }
  .misi__text { line-height: 1.4; }
  .misi__text em { text-underline-offset: 12px; }
}

/* ============== Lokasi ============== */
.lokasi {
  padding: 140px var(--pad-l);
  background: var(--bg-2);
  position: relative;
}
.lokasi::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hairline) 15%, var(--hairline) 85%, transparent);
  pointer-events: none;
}
.lokasi__head { max-width: 1500px; margin: 0 auto 60px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative; z-index: 1;
}
.lokasi__head .display { font-size: clamp(52px, 7vw, 110px); }

.lokasi__entrance {
  max-width: 1500px; margin: 0 auto 60px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 21 / 9;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.35), 0 8px 20px -10px rgba(0,0,0,.2);
}
.lokasi__entrance img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: contrast(1.04) saturate(0.92);
  transition: transform 4s var(--ease);
}
.lokasi__entrance:hover img { transform: scale(1.03); }
.lokasi__entrance-cap {
  position: absolute;
  left: 16px; bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(186,154,66,0.32);
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), 0 4px 14px rgba(0,0,0,0.25);
  display: inline-flex; align-items: center;
  z-index: 1;
}
.lokasi__entrance-tag {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--light-on-night);
}

.lokasi__grid {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}
.lokasi__map {
  border: 1px solid var(--hairline);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.map-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  color: var(--ink-soft);
}
.map-placeholder iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}
.map-placeholder__cta {
  position: absolute; top: 18px; right: 18px;
  background: var(--ink); color: var(--bg);
  padding: 12px 18px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .3s, color .3s;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.map-placeholder__cta:hover { background: var(--gold); color: var(--ink); }

.lokasi__info {
  display: flex; flex-direction: column;
}
.lokasi__row {
  padding: 20px 0;
  background: var(--line-light-r) bottom / 100% 1px no-repeat;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: start;
}
.lokasi__row:first-child {
  background: var(--line-light-r) top / 100% 1px no-repeat, var(--line-light-r) bottom / 100% 1px no-repeat;
}
.lokasi__label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 4px;
}
.lokasi__value {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}
.lokasi__value a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }
.lokasi__direction {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  align-self: flex-start;
  transition: background .3s;
}
.lokasi__direction:hover { background: var(--gold); color: var(--ink); }
.lokasi__direction svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .lokasi__grid { grid-template-columns: 1fr; }
  .lokasi__entrance { aspect-ratio: 1 / 1; }
}

/* ============== Persembahan ============== */
.persembahan {
  background: var(--night);
  color: var(--light-on-night);
  padding: 140px var(--pad-l);
}
.persembahan__inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
  align-items: flex-start;
}
.persembahan__title { font-size: clamp(52px, 7vw, 110px); }
.persembahan__note {
  font-size: 16px; color: var(--on-night-7);
  max-width: 580px;
}

.rek-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  column-gap: 32px;
  margin-top: 24px;
}

.rek {
  width: 100%;
  background: var(--line-dark-r) top / 100% 1px no-repeat;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
.rek--diakonia .rek__no { color: var(--gold); }
.rek__hdr {
  padding: 20px 0;
  background: var(--line-dark-subtle-r) bottom / 100% 1px no-repeat;
  margin-bottom: 4px;
  display: flex; flex-direction: column; gap: 6px;
  justify-content: center;
}
.rek__tag {
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.rek__sub {
  font-family: var(--f-body); font-size: 13px; font-style: normal;
  color: var(--on-night-6);
  letter-spacing: 0.01em;
}
.rek__row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  background: var(--line-dark-subtle-r) bottom / 100% 1px no-repeat;
  align-items: center;
}
.rek__label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--on-night-5);
}
.rek__value {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: 0.02em;
}
.rek__no {
  color: var(--gold);
  font-feature-settings: "tnum";
}
.rek__copy {
  position: relative;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--on-night-3);
  border-radius: 100px;
  color: var(--light-on-night);
  width: 90px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: width .4s var(--ease), background .25s, color .25s, border-color .25s;
  overflow: hidden;
}
.rek__copy.is-copied { width: 140px; }
.rek__copy:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.rek__copy.is-copied { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.rek__copy-default,
.rek__copy-done {
  display: inline-block;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.rek__copy-done {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(8px);
}
.rek__copy.is-copied .rek__copy-default {
  opacity: 0;
  transform: translateY(-8px);
}
.rek__copy.is-copied .rek__copy-done {
  opacity: 1;
  transform: translateY(0);
}

.persembahan__verse {
  font-family: var(--f-display);
  font-size: 20px;
  font-style: normal;
  color: var(--on-night-7);
  max-width: 720px;
  line-height: 1.5;
  margin-top: 16px;
}

/* ============== Footer ============== */
.foot {
  background: var(--bg-2);
  color: var(--ink);
  padding: 80px var(--pad-l) 30px;
  position: relative;
}

.foot__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  padding-bottom: 60px;
  align-items: center;
}
.foot__brand { display: flex; align-items: center; }
.foot__logo { height: 64px; width: auto; object-fit: contain; }

.foot__motto {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.4;
  font-style: normal;
  color: var(--ink-soft);
  max-width: 700px;
  justify-self: end;
}
.foot__motto span {
  display: block;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-style: normal;
  color: var(--ink-mute);
  margin-top: 12px;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 60px 0;
}
.foot__cols h4 {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.foot__cols ul { display: flex; flex-direction: column; gap: 8px; }
.foot__cols a, .foot__cols address {
  font-family: var(--f-display);
  font-style: normal;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
}
.foot__cols a:hover { color: var(--gold-deep); }

.foot__bottom {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  padding-top: 30px;
}
.foot__col {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
}
.foot__col--end { align-items: flex-end; }
.foot__bigword {
  font-family: var(--f-display);
  font-size: clamp(80px, 11vw, 160px);
  letter-spacing: -0.03em;
  line-height: 0.9;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  font-style: italic;
}

@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr; }
  .foot__motto { justify-self: start; }
  .foot__cols { grid-template-columns: 1fr 1fr 1fr; }
  .foot__bottom { grid-template-columns: 1fr; gap: 20px; }
  .foot__col--end { align-items: flex-start; }
}

@media (max-width: 900px) {
  .rek-group { grid-template-columns: 1fr; grid-template-rows: none; gap: 20px; }
  .rek { display: block; grid-row: auto; }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(64px, 18vw, 100px); }
  .hero__verse { font-size: 16px; }
  .hero__bottom { grid-template-columns: 1fr; gap: 16px; }
  .hero__live, .hero__time { justify-self: start; }
  .foot__cols { grid-template-columns: 1fr; }
  .rek__row { grid-template-columns: 1fr; gap: 8px; }
}

/* ============== Ibadah Raya right photo ============== */
.ibadah-hero__right { overflow: hidden; }
.ibadah-hero__right::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: url('assets/jemaat/jemaat-worship-tangan-terangkat-masker.webp');
  background-size: cover; background-position: center top;
  filter: grayscale(75%) brightness(0.42) contrast(1.2);
  transition: transform 0.8s ease, filter 0.5s ease;
  pointer-events: none;
}
.ibadah-hero__right::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(8,12,28,0) 30%, rgba(8,12,28,0.45) 100%),
    linear-gradient(180deg, rgba(14,22,51,0.25) 0%, rgba(14,22,51,0) 40%, rgba(14,22,51,0.7) 100%);
  pointer-events: none;
}
.ibadah-hero__right:hover::before {
  transform: scale(1.04);
  filter: grayscale(40%) brightness(0.55) contrast(1.15);
}


/* ============== Gembala — khotbah strip ============== */
.gembala__strip {
  max-width: 1500px;
  margin: 100px auto 0;
  padding-top: 36px;
  background: var(--line-light) top / 100% 1px no-repeat;
}
.strip__label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.strip__label .dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.strip__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.strip__item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-2);
  border-radius: 4px;
  cursor: default !important;
}
.strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.65) contrast(1.05) brightness(0.95);
  transition: filter .8s var(--ease), transform 1.2s var(--ease);
}
.strip__item:hover img {
  filter: grayscale(0) contrast(1) brightness(1);
  transform: scale(1.06);
}
.strip__item figcaption {
  position: absolute;
  left: 12px; bottom: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(186,154,66,0.32);
  border-radius: 100px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 4px 14px rgba(0,0,0,0.25);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--light-on-night);
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.strip__item figcaption span { color: var(--gold); font-weight: 600; }
.strip__item:hover figcaption { opacity: 1; transform: translateY(0); }
.gembala .strip__item:nth-child(2) img { object-position: 75% top !important; }
.gembala .strip__item:nth-child(3) img { object-position: 10% top !important; }
.gembala .strip__item:nth-child(4) img { object-position: 35% top !important; }

@media (max-width: 900px) {
  .strip__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .strip__track {
    grid-template-columns: 1fr;
  }
}

/* ============== Kreatif — sticky stage ============== */
.kreatif {
  background: var(--bg);
  padding: 140px var(--pad-l) 80px;
  position: relative;
}
.kreatif::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hairline) 15%, var(--hairline) 85%, transparent);
  pointer-events: none;
}
.kreatif__head {
  max-width: 1500px;
  margin: 0 auto 80px;
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start;
}
.kreatif__head .display { font-size: clamp(52px, 7vw, 110px); }
.kreatif__sub {
  max-width: 560px;
  font-size: 16px; line-height: 1.55;
  color: var(--ink-soft);
}

.kreatif__stage {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.kreatif__rail {
  display: flex; flex-direction: column;
  gap: 38vh;
  padding: 14vh 0 50vh;
}
.krChapter {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 460px;
  opacity: 0.28;
  transition: opacity .6s var(--ease);
}
.krChapter.is-active { opacity: 1; }
.krChapter__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.9;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.krChapter__tag {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
}
.krChapter__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.krChapter__title em {
  background: var(--gradient-gold-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.krChapter__body {
  font-size: 16px; line-height: 1.6;
  color: var(--ink-soft);
}
.krChapter__meta {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 6px;
}

.krChapter__cta {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  padding: 20px 22px 18px;
  border: 1px solid rgba(186,154,66,0.32);
  background:
    linear-gradient(180deg, rgba(186,154,66,0.06) 0%, rgba(186,154,66,0.02) 100%),
    rgba(250,250,246,0.55);
  border-radius: 6px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  overflow: hidden;
}
.krChapter__cta::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gradient-gold-deep);
  transition: width .4s var(--ease);
}
.krChapter__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(186,154,66,0.55);
  box-shadow: 0 14px 36px -18px rgba(186,154,66,0.4), 0 4px 12px -6px rgba(24,37,81,0.08);
  background:
    linear-gradient(180deg, rgba(186,154,66,0.10) 0%, rgba(186,154,66,0.04) 100%),
    rgba(250,250,246,0.85);
}
.krChapter__cta:hover::before { width: 5px; }

.krChapter__cta-head {
  display: flex; flex-direction: column; gap: 4px;
}
.krChapter__cta-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.krChapter__cta-roles {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.krChapter__cta-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(24,37,81,0.08);
}
.krChapter__cta-contact {
  display: flex; flex-direction: column; gap: 2px;
}
.krChapter__cta-name {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.krChapter__cta-phone {
  font-family: var(--f-display);
  font-style: normal;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.krChapter__cta:hover .krChapter__cta-phone {
  background: var(--gradient-gold-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.krChapter__cta-arrow {
  width: 28px; height: 14px;
  color: var(--ink);
  transition: transform .35s var(--ease), color .35s var(--ease);
  flex-shrink: 0;
}
.krChapter__cta:hover .krChapter__cta-arrow {
  transform: translateX(8px);
  color: var(--gold);
}

.kreatif__viewer {
  position: sticky;
  top: calc(12vh + 36px);
  height: 76vh;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(24,37,81,.35), 0 8px 24px -12px rgba(24,37,81,.2);
}
.krSlot {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s var(--ease), transform 4s var(--ease);
  pointer-events: none;
}
.krSlot.is-shown {
  opacity: 1;
  transform: scale(1);
}
.krSlot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.95);
}
.krSlot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,22,51,0) 60%, rgba(14,22,51,0.55) 100%);
  pointer-events: none;
}

.kreatif__counter {
  position: absolute;
  left: 24px; bottom: 22px;
  z-index: 2;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--light-on-night);
  display: flex; align-items: baseline; gap: 4px;
  background: rgba(14, 22, 51, 0.4);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 6px 12px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.kreatif__counter-sep { color: var(--on-night-5); }
.kreatif__counter #krTotal { color: var(--gold); }

.kreatif__progress {
  position: absolute;
  left: 24px; right: 24px; bottom: 14px;
  z-index: 2;
  height: 1px;
  background: var(--on-night-15);
}
.kreatif__progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #b8942a, #e8c96e, #c9a84c);
  transition: width .35s var(--ease);
}

@media (max-width: 1024px) {
  .kreatif__stage {
    grid-template-columns: 1fr;
    gap: 0;
    display: flex; flex-direction: column;
  }
  .kreatif__viewer {
    position: sticky;
    top: 88px;
    height: clamp(240px, 38vh, 360px);
    order: -1;
    margin-bottom: 28px;
    align-self: stretch;
    border-radius: 6px;
    box-shadow: 0 14px 32px -16px rgba(24,37,81,.35), 0 4px 14px -6px rgba(24,37,81,.2);
  }
  .kreatif__rail { padding: 0 0 20vh; gap: 60px; }
  .krChapter { opacity: 1; max-width: none; }
}

/* ============== Galeri — editorial masonry override ============== */
@media (min-width: 901px) {
  .galeri .galeri__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(170px, 16vw, 220px);
    gap: 14px;
  }
  .galeri .gal { grid-column: auto; grid-row: auto; }
  .galeri .gal:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .galeri .gal:nth-child(2) { grid-column: 2 / span 2; grid-row: 1; }
  .galeri .gal:nth-child(3) { grid-column: 4; grid-row: 1; }
  .galeri .gal:nth-child(4) { grid-column: 4; grid-row: 2; }
  .galeri .gal:nth-child(5) { grid-column: 3; grid-row: 3 / span 2; }
  .galeri .gal:nth-child(6) { grid-column: 2; grid-row: 2; }
  .galeri .gal:nth-child(7) { grid-column: 3; grid-row: 2; }
  .galeri .gal:nth-child(8) { grid-column: 1 / span 2; grid-row: 3; }
  .galeri .gal:nth-child(9) { grid-column: 4; grid-row: 3; }
  .galeri .gal:nth-child(10) { grid-column: 1; grid-row: 4; }
  .galeri .gal:nth-child(11) { grid-column: 2; grid-row: 4; }
  .galeri .gal:nth-child(12) { grid-column: 4; grid-row: 4; }
  .galeri .gal:nth-child(13) { grid-column: 1 / -1; grid-row: 5 / span 2; }
  .galeri .gal:nth-child(14) { grid-column: 1 / span 2; grid-row: 7 / span 2; }
  .galeri .gal:nth-child(15) { grid-column: 3 / span 2; grid-row: 7; }
  .galeri .gal:nth-child(16) { grid-column: 3 / span 2; grid-row: 8; }
}
.gal {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-2);
}
.gal__img {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gal__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) saturate(0.95);
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
}
.gal:nth-child(7) .gal__img img { object-position: center 35%; }
.gal:nth-child(8) .gal__img img { object-position: center 42%; }
.gal:nth-child(13) .gal__img img { object-position: center 15%; }
.gal:hover .gal__img img {
  transform: scale(1.06);
  filter: contrast(1.05) saturate(1.05);
}
.gal__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,22,51,0) 50%, rgba(14,22,51,0.32) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.gal:hover .gal__img::after { opacity: 1; }

.gal figcaption {
  position: absolute;
  left: 12px; bottom: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(186,154,66,0.32);
  border-radius: 100px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 4px 14px rgba(0,0,0,0.25);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--light-on-night);
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  z-index: 1;
}
.gal:hover figcaption { opacity: 1; transform: translateY(0); }
.gal figcaption .gal__num { color: var(--gold); font-weight: 600; }
.gal figcaption .gal__label { color: var(--light-on-night); }

/* ============== Photo Ribbon — user-scrollable horizontal strip ============== */
.photostrip {
  background: var(--bg);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.photostrip::before,
.photostrip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 60px;
  width: clamp(40px, 8vw, 140px);
  z-index: 3;
  pointer-events: none;
}
.photostrip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.photostrip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}
.photostrip__scroll-area {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.photostrip__scroll-area::-webkit-scrollbar { display: none; }
.photostrip__scroll-area.is-dragging { cursor: grabbing; }
.photostrip__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 0 var(--pad-l);
}
.ps__cell {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-2);
  cursor: inherit;
}
.ps__cell.ps--wide { width: 460px; aspect-ratio: 4/3; }
.ps__cell.ps--tall { width: 230px; aspect-ratio: 2/3; }
.ps__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92) brightness(0.96);
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
}
.ps__cell:hover img {
  transform: scale(1.05);
  filter: contrast(1.08) saturate(1.05) brightness(1);
}
.ps__cell figcaption {
  position: absolute;
  left: 12px; bottom: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(186,154,66,0.32);
  border-radius: 100px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 4px 14px rgba(0,0,0,0.25);
  color: var(--light-on-night);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.ps__cell figcaption span { color: var(--gold); font-weight: 600; }
.ps__cell:hover figcaption { opacity: 1; transform: translateY(0); }

.photostrip__caption {
  margin-top: 36px;
  padding: 0 var(--pad-l);
  display: flex; align-items: center; gap: 18px; justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.photostrip__caption .line {
  flex: 1; max-width: 200px;
  height: 1px; background: var(--hairline);
}
@media (max-width: 700px) {
  .ps__cell { width: 200px; }
  .ps__cell.ps--wide { width: 320px; }
  .ps__cell.ps--tall { width: 170px; }
  .photostrip__track { gap: 12px; padding: 0 24px; }
  .photostrip__scroll-area { cursor: default; }
  .photostrip__caption {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .photostrip__caption > span:not(.line) {
    flex-basis: 100%;
    order: 0;
    text-align: center;
  }
  .photostrip__caption .line { max-width: 80px; }
}

/* ============== Pastor — hover carousel layering ============== */
.pastor__image[data-carousel] {
  position: relative;
  isolation: isolate;
  cursor: pointer;
}
.pastor__image[data-carousel] .pastor__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.55) contrast(1.05) brightness(0.96);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s var(--ease), transform 2.2s var(--ease), filter .8s var(--ease);
  z-index: 1;
}
.pastor__image[data-carousel] .pastor__photo:first-of-type { position: relative; }
.pastor__image[data-carousel] .pastor__photo.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.pastor__image[data-carousel]:hover .pastor__photo.is-active {
  filter: grayscale(0) contrast(1.02) brightness(1);
  transform: scale(1.05);
}
.pastor__counter {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 5;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--light-on-night);
  background: rgba(14,22,51,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 2px;
  display: inline-flex; gap: 2px; align-items: baseline;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.pastor__counter .pc__sep { color: var(--on-night-5); }
.pastor__counter .pc__total { color: var(--gold); }
.pastor__image[data-carousel]:hover .pastor__counter { opacity: 1; }
.pastor__hint {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 5;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-on-night);
  background: rgba(14,22,51,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 100px;
  border: 1px solid rgba(186,154,66,0.35);
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
  max-width: calc(100% - 32px);
  opacity: 1;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  animation: pastorHintPulse 2.6s ease-in-out infinite;
}
.pastor__hint-text--mobile { display: none; }
@media (hover: none), (max-width: 700px) {
  .pastor__hint-text--desktop { display: none; }
  .pastor__hint-text--mobile { display: inline; }
  .pastor__hint {
    left: 10px; right: 10px; bottom: 10px;
    padding: 7px 11px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }
}
@keyframes pastorHintPulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.pastor__hint-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
  animation: pastorHintBlink 1.4s ease-in-out infinite;
}
@keyframes pastorHintBlink {
  0%   { box-shadow: 0 0 0 0 rgba(186,154,66,0.7); opacity: 1; }
  100% { box-shadow: 0 0 0 8px rgba(186,154,66,0); opacity: 0.7; }
}
.pastor__image[data-carousel]:hover .pastor__hint {
  opacity: 0;
  transform: translateY(8px);
  animation: none;
}
.pastor__image[data-carousel] .pastor__role-overlay {
  z-index: 4;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.pastor__image[data-carousel].is-engaged .pastor__role-overlay {
  opacity: 1;
  transform: translateY(0);
}
.pastor__image[data-carousel].is-engaged .pastor__hint {
  opacity: 0;
  transform: translateY(8px);
  animation: none;
}
.pastor__image[data-carousel]:hover .pastor__role-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ============== Hero — cinematic B&W carousel backdrop ============== */
.hero { isolation: isolate; }
.hero__cinema {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.hero__cinema-frame {
  position: absolute;
  inset: -2%;
  background-size: cover;
  background-position: center 38%;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 2s var(--ease);
  filter: grayscale(1) contrast(1.05) brightness(0.42);
  will-change: opacity, transform;
}
.hero__cinema-frame.is-active {
  opacity: 0.95;
  animation: heroKenBurns 14s linear forwards;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.03); }
  100% { transform: scale(1.09); }
}
.hero__cinema::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8,12,28,0.15) 0%, rgba(8,12,28,0.55) 70%, rgba(8,12,28,0.78) 100%),
    linear-gradient(180deg, rgba(8,12,28,0.25) 0%, rgba(8,12,28,0) 35%, rgba(8,12,28,0) 65%, rgba(8,12,28,0.45) 100%);
  pointer-events: none;
}
.hero__cinema::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(186,154,66,0.05) 0%, rgba(24,37,81,0.10) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ============== Galeri lightbox ============== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,12,28,0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.96);
  transition: transform .6s var(--ease);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__caption {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-night-7);
  display: flex; gap: 16px; align-items: center;
}
.lightbox__caption span { color: var(--gold); }
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border: 1px solid var(--on-night-15);
  border-radius: 50%;
  color: var(--light-on-night);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s, color .25s;
}
.lightbox__close:hover {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border: 1px solid var(--on-night-15);
  border-radius: 50%;
  color: var(--light-on-night);
  font-size: 20px;
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, color .25s;
}
.lightbox__nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lightbox__nav--prev { left: 28px; }
.lightbox__nav--next { right: 28px; }

.lightbox__nav--bottom { display: none; }

@media (max-width: 640px) {
  .lightbox__nav:not(.lightbox__nav--bottom) { display: none; }
  .lightbox__nav--bottom {
    display: flex;
    position: static;
    transform: none;
    width: 36px;
    height: 36px;
    font-size: 18px;
    flex-shrink: 0;
  }
  .lightbox__caption {
    bottom: 20px;
    gap: 12px;
    align-items: center;
  }
}

/* ============== Footer REHOBOT — photo-filled word ============== */
.foot__bigword {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(186,154,66,.55) 0%, rgba(186,154,66,.05) 100%),
    url('assets/jemaat/jemaat-penuh-hall-tampak-atas.webp');
  background-size: cover, auto 130vh;
  background-position: center, center 0;
  background-repeat: no-repeat, no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  will-change: background-position;
}
@supports not (background-clip: text) {
  .foot__bigword {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* ============================================================
   MODERN UI ENHANCEMENTS
   ============================================================ */

/* ---- 1. Hero scroll cue ---- */
.hero__scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.78);
  padding: 12px 18px 14px;
  background: rgba(14,22,51,0.32);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 8px 24px rgba(0,0,0,0.18);
  animation: scrollCueBob 2.8s ease-in-out infinite;
  z-index: 3;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.hero__scroll-cue:hover {
  color: var(--gold);
  border-color: rgba(186,154,66,0.4);
}
.hero__scroll-icon {
  width: 16px; height: 24px;
  display: inline-flex;
}
.hero__scroll-icon svg { width: 100%; height: 100%; }
.hero__scroll-icon svg circle { animation: scrollCueDot 1.8s ease-in-out infinite; }
@keyframes scrollCueBob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -6px); }
}
@keyframes scrollCueDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(6px); opacity: 0.3; }
}
.hero__scroll-cue .hero__scroll-text { display: none; }
@media (max-width: 700px) {
  .hero__scroll-cue { bottom: 22px; padding: 10px 12px 11px; }
}

/* ---- 2. Mobile drawer CTA — Ibadah Minggu Ini at bottom of drawer ---- */
.drawer { display: flex; flex-direction: column; }
.drawer__cta {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid rgba(186,154,66,0.32);
  border-radius: 12px;
  color: var(--light-on-night);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.drawer__cta:hover { border-color: rgba(186,154,66,0.55); background: rgba(186,154,66,0.06); }
.drawer__cta-dot {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
  animation: pulse 1.6s ease-in-out infinite;
}
.drawer__cta-main {
  grid-row: 1;
  grid-column: 2;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.drawer__cta-sub {
  grid-row: 2;
  grid-column: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(250,250,246,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.drawer__cta-arrow {
  grid-row: 1 / span 2;
  grid-column: 3;
  width: 22px; height: 11px;
  color: var(--gold);
  align-self: center;
}

/* ---- 4. Section noise grain overlay ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---- 5. Galeri reveal — handled by existing GSAP fade-up (removed dup clip-path) ---- */

/* ---- 6. Pelayanan giant watermark number — REMOVED (too messy) ---- */
.service__ghost { display: none; }

/* ---- 7. Persembahan — keep original style (no glass), only ripple + toast on copy ---- */
.rek__copy {
  position: relative;
  overflow: hidden;
}
.rek__copy .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(186,154,66,0.35);
  pointer-events: none;
  transform: scale(0);
  animation: rekRipple 0.7s var(--ease) forwards;
}
@keyframes rekRipple {
  to { transform: scale(8); opacity: 0; }
}

/* ---- 8. Loader curtain reveal ---- */
.loader.is-done {
  animation: loaderCurtain 1.1s cubic-bezier(.76,0,.24,1) forwards;
}
@keyframes loaderCurtain {
  0%   { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 50% 0 50%); }
}

/* ---- 9. Cursor morph variants ---- */
.cursor {
  transition: width .35s var(--ease), height .35s var(--ease), background .25s var(--ease), border-radius .35s var(--ease), backdrop-filter .25s var(--ease);
}
.cursor.is-text {
  width: 4px; height: 28px;
  border-radius: 2px;
  background: var(--gold);
  mix-blend-mode: normal;
}
.cursor.is-photo {
  width: 72px; height: 72px;
  background: rgba(186,154,66,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(186,154,66,0.6);
  mix-blend-mode: normal;
}

/* ---- 10. Hero text char reveal stagger ---- */
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(2deg);
  animation: heroCharIn 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__title em.char {
  padding-bottom: 0.12em;
  line-height: 1.05;
  vertical-align: baseline;
}
@keyframes heroCharIn {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* ============== Home ============== */
.home {
  padding: 140px var(--pad-l);
  background: var(--bg);
  position: relative;
}
.home::before {
  content: "";
  position: absolute;
  left: var(--pad-l); right: var(--pad-l); top: 0;
  height: 1px;
  background: var(--line-light);
  pointer-events: none;
}
.home__head {
  max-width: 1500px; margin: 0 auto 60px;
  display: flex; flex-direction: column; gap: 28px;
  align-items: flex-start;
}
.home__head .display { font-size: clamp(52px, 7vw, 110px); }
.home__lede {
  max-width: 640px;
  font-size: 16px; line-height: 1.55;
  color: var(--ink-soft);
}
.home__lede em { color: var(--ink); }

.home__collage {
  max-width: 1500px; margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(140px, 16vw, 220px);
  gap: 8px;
}
.home-photo {
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.home-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform .8s var(--ease), filter .5s var(--ease);
  filter: saturate(0.95);
}
.home-photo:nth-child(2) img,
.home-photo:nth-child(4) img { object-position: center 18%; }
.home-photo:nth-child(3) img { object-position: center 65%; }
.home-photo:nth-child(5) img { object-position: center 50%; }
.home-photo:hover img { transform: scale(1.04); filter: saturate(1.05); }
.home-photo figcaption {
  position: absolute;
  left: 12px; bottom: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(186,154,66,0.32);
  border-radius: 100px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 4px 14px rgba(0,0,0,0.25);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--light-on-night);
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.home-photo figcaption span { color: var(--gold); font-weight: 600; }
.home-photo:hover figcaption { opacity: 1; transform: translateY(0); }

/* Layout: 5 cells across 6-col grid, 3 rows */
/* Row 1–2: portrait pair | Row 3: 3 landscape | Row 4: full-width */
.home-photo:nth-child(1) { grid-column: 1 / span 3; grid-row: 1 / span 2; }
.home-photo:nth-child(6) { grid-column: 4 / span 3; grid-row: 1 / span 2; }
.home-photo:nth-child(2) { grid-column: 1 / span 2; grid-row: 3; }
.home-photo:nth-child(3) { grid-column: 3 / span 2; grid-row: 3; }
.home-photo:nth-child(4) { grid-column: 5 / span 2; grid-row: 3; }
.home-photo:nth-child(5) { grid-column: 1 / -1;    grid-row: 4 / span 2; }

.home__strip-caption {
  max-width: 1500px; margin: 28px auto 110px;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
}
.home__strip-caption .line { flex: 1; height: 1px; background: var(--hairline); }

/* ----- Directory ----- */
.home-dir {
  max-width: 1500px;
  margin: 0 auto;
}
.home-dir__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 36px;
  background: var(--line-light-r) bottom / 100% 1px no-repeat;
}
.home-dir__label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.home-dir__arrow {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  line-height: 0.9;
}
.home-dir__intro {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}

.home-list {
  /* uses border-bottom on each row for separator */
}
.home-row {
  display: grid;
  grid-template-columns: 80px 1.5fr 2fr 280px;
  gap: 32px;
  align-items: center;
  padding: 36px 24px;
  background: linear-gradient(to right, var(--hairline) 0%, var(--hairline) 80%, transparent 100%) bottom / 100% 1px no-repeat;
  transition: padding .45s var(--ease), color .45s var(--ease);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.home-row::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 0;
  background: linear-gradient(125deg, #07101f 0%, #182551 45%, #1f3d80 100%);
  z-index: 0;
  transition: height .5s var(--ease);
}
.home-row > * { position: relative; z-index: 1; }
.home-row::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 52%;
  background-image: var(--home-img);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.75) contrast(1.1);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 28%, transparent 80%);
  mask-image: linear-gradient(to right, black 0%, black 28%, transparent 80%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.65s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.home-row[data-home="01"]::after { background-image: url('assets/home/home-sutos-1.webp'); }
.home-row[data-home="02"]::after { background-image: url('assets/fellowship/fellowship-pendeta-peluk-jemaat-setelah-ibadah.webp'); }
.home-row[data-home="03"]::after { background-image: url('assets/jemaat/jemaat-worship-tangan-terangkat-bapak.webp'); }
.home-row[data-home="04"]::after { background-image: url('assets/home/home-gabungan-all.webp'); background-position: center 50%; }
.home-row[data-home="05"]::after { background-image: url('assets/home/home-youth-1.webp'); background-position: center 18%; }
.home-row:hover {
  padding-left: 40px; padding-right: 24px;
  color: var(--bg);
}
.home-row:hover::before { height: calc(100% + 1px); top: 0; bottom: auto; }
.home-row:hover::after { opacity: 0.8; }
.home-row:hover .home-row__num { color: var(--gold); text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.home-row:hover .home-row__title h3 { color: var(--bg); text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.home-row:hover .home-row__tag { color: var(--bg-2); text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
.home-row:hover .home-row__desc { color: var(--bg-2); }
.home-row__num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--gold-deep);
  letter-spacing: 0.15em;
  padding-top: 6px;
  align-self: start;
}
.home-row__title h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}
.home-row__tag {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute);
}
.home-row__desc {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft);
  padding-top: 6px;
  max-width: 460px;
}

.home-row__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  justify-self: end;
  width: 100%;
  max-width: 280px;
  padding: 14px 18px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  transition: background .35s var(--ease), border-color .35s var(--ease), color .3s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease), transform .3s var(--ease);
  text-align: left;
}
.home-row:hover .home-row__cta {
  border-color: rgba(186,154,66,0.45);
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 6px 22px rgba(0,0,0,0.25);
  color: var(--light-on-night);
}
.home-row__cta:hover {
  border-color: rgba(186,154,66,0.75);
  background: linear-gradient(135deg, rgba(186,154,66,0.28) 0%, rgba(186,154,66,0.08) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 10px 28px rgba(186,154,66,0.22);
  color: var(--light-on-night);
}
.home-row__cta:hover .home-row__cp-phone { color: var(--gold); }
.home-row:hover .home-row__cp-name { color: var(--light-on-night); }
.home-row:hover .home-row__cp-phone { color: #e8c96e; }
.home-row__cp {
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
}
.home-row__cp-name {
  font-family: var(--f-display);
  font-size: 19px;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.1;
}
.home-row__cp-phone {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  transition: color .3s var(--ease);
}
.home-row__cta svg {
  width: 22px; height: 12px;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.home-row__cta:hover svg { transform: translateX(6px); }

.home-row--alt {
}
.home-row--alt .home-row__num { color: var(--ink-mute); }

@media (max-width: 1100px) {
  .home-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "num title"
      ".   desc"
      ".   cta";
    gap: 14px 20px;
    padding: 32px 20px;
  }
  .home-row:hover { padding-left: 26px; }
  .home-row__num { grid-area: num; }
  .home-row__title { grid-area: title; }
  .home-row__desc { grid-area: desc; max-width: none; }
  .home-row__cta { grid-area: cta; justify-self: start; width: auto; max-width: none; min-width: 280px; margin-top: 6px; }
}

@media (max-width: 900px) {
  .home-row::after {
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
    filter: grayscale(100%) brightness(0.55) contrast(1.1);
  }
  .home-row:hover::after { opacity: 0.65; }
}

@media (max-width: 760px) {
  .home { padding: 90px var(--pad-l); }
  .home__head { margin-bottom: 40px; }
  .home__collage {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 130px;
    gap: 6px;
  }
  /* Row 1–2: item 1 full-width | Row 3–4: portrait pair | Row 5: 2 landscape */
  .home-photo:nth-child(1) { grid-column: 1 / -1;    grid-row: 1 / span 2; }
  .home-photo:nth-child(6) { grid-column: 1 / span 2; grid-row: 3 / span 2; }
  .home-photo:nth-child(2) { grid-column: 3 / span 2; grid-row: 3; }
  .home-photo:nth-child(3) { grid-column: 3 / span 2; grid-row: 4; }
  .home-photo:nth-child(4) { grid-column: 1 / -1;    grid-row: 5; }
  .home-photo:nth-child(5) { grid-column: 1 / -1;    grid-row: 6 / span 2; }
  .home__strip-caption { margin: 22px auto 70px; font-size: 10px; }
  .home-dir__head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
  .home-row {
    padding: 28px 0;
    gap: 10px 16px;
  }
  .home-row:hover { padding-left: 16px; }
  .home-row__cta { min-width: 0; width: 100%; }
  .home-row::after {
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
    filter: grayscale(100%) brightness(0.55) contrast(1.1);
  }
  .home-row:hover::after { opacity: 0.65; }
}

/* ============== Makalah Home — weekly bulletin ============== */
.makalah {
  max-width: 1500px;
  margin: 100px auto 0;
  padding: 0 var(--pad);
}
.makalah__paper {
  position: relative;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(186,154,66,0.10), transparent 55%),
    radial-gradient(ellipse at 82% 100%, rgba(186,154,66,0.08), transparent 55%),
    linear-gradient(180deg, #0d1530 0%, #0a1028 100%);
  color: var(--bg);
  padding: clamp(56px, 7vw, 96px) clamp(28px, 6vw, 96px);
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
}
.makalah__paper::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.makalah__paper::after {
  content: "";
  position: absolute; inset: 18px;
  border: 1px solid rgba(186,154,66,0.18);
  border-radius: 3px;
  pointer-events: none;
  z-index: 0;
}
.makalah__paper > * { position: relative; z-index: 1; }

.makalah__corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.makalah__corner--tl { top: 28px; left: 28px; border-right: 0; border-bottom: 0; }
.makalah__corner--tr { top: 28px; right: 28px; border-left: 0; border-bottom: 0; }
.makalah__corner--bl { bottom: 28px; left: 28px; border-right: 0; border-top: 0; }
.makalah__corner--br { bottom: 28px; right: 28px; border-left: 0; border-top: 0; }

.makalah__overline {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 28px;
}
.makalah__overline .mk-line {
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186,154,66,0.55), transparent);
}

.makalah__head {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fafaf6;
  margin: 0 auto 24px;
  max-width: 820px;
}
.makalah__head em {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.makalah__body {
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.makalah__actions {
  display: flex; justify-content: center;
}
.makalah__cta {
  display: inline-flex; align-items: center;
  padding: 20px 32px;
  text-decoration: none;
  color: #fafaf6;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(186,154,66,0.42);
  border-radius: 4px;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 8px 28px rgba(0,0,0,0.40);
  transition: transform .45s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.makalah__cta:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(186,154,66,0.22) 0%, rgba(186,154,66,0.05) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 16px 40px rgba(0,0,0,0.48);
}
.makalah__cta-text {
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
}
.makalah__cta-label {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.makalah__cta-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(186,154,66,0.92);
  white-space: nowrap;
  width: 0;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .5s var(--ease), margin-top .5s var(--ease), opacity .35s var(--ease), transform .45s var(--ease);
}
.makalah__cta:hover .makalah__cta-meta,
.makalah__cta.is-revealed .makalah__cta-meta {
  width: auto;
  max-height: 24px;
  margin-top: 6px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s, 0s, .12s, .12s;
}
.makalah__cta svg {
  width: 0; height: 26px;
  margin-left: 0;
  color: var(--gold);
  overflow: hidden;
  opacity: 0;
  transform: translateX(-10px);
  transition: width .5s var(--ease), margin-left .5s var(--ease), opacity .35s var(--ease), transform .5s var(--ease), color .35s var(--ease);
  flex-shrink: 0;
}
.makalah__cta:hover svg,
.makalah__cta.is-revealed svg {
  width: 26px;
  margin-left: 28px;
  opacity: 1;
  transform: translateX(0);
  color: #e8c96e;
}

@media (max-width: 760px) {
  .makalah { margin-top: 60px; padding: 0; }
  .makalah__paper { padding: 56px 22px 48px; border-radius: 4px; }
  .makalah__paper::after { inset: 12px; }
  .makalah__corner { width: 18px; height: 18px; }
  .makalah__corner--tl, .makalah__corner--tr { top: 18px; }
  .makalah__corner--bl, .makalah__corner--br { bottom: 18px; }
  .makalah__corner--tl, .makalah__corner--bl { left: 18px; }
  .makalah__corner--tr, .makalah__corner--br { right: 18px; }
  .makalah__overline { gap: 10px; font-size: 9.5px; letter-spacing: 0.18em; margin-bottom: 22px; white-space: nowrap; }
  .makalah__overline .mk-line { width: 22px; }
  .makalah__head br { display: none; }
  .makalah__head { font-size: clamp(28px, 7vw, 38px); margin-bottom: 18px; }
  .makalah__body { font-size: 14.5px; margin-bottom: 32px; line-height: 1.7; }
  .makalah__cta { padding: 18px 22px; width: 100%; max-width: 360px; overflow: hidden; }
  .makalah__cta-text { min-width: 0; }
  .makalah__cta svg { width: 22px; height: 22px; margin-left: 18px; }
  .makalah__cta-label { font-size: 19px; }
  .makalah__cta-meta { font-size: 9px; letter-spacing: 0.18em; }
  .makalah__cta svg { width: 22px; height: 22px; }
}

/* ========================================================================
   AI Chatbot — Liquid Glass
   ======================================================================== */

.chatbot {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  font-family: var(--f-body);
}

.chatbot__toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--night);
  color: var(--gold);
  border: 1px solid rgba(186, 154, 66, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}

.chatbot__toggle:hover {
  transform: scale(1.06);
  border-color: rgba(186, 154, 66, 0.6);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(186, 154, 66, 0.15);
}

.chatbot.on-dark .chatbot__toggle {
  background: rgba(186, 154, 66, 0.22);
  color: var(--gold);
  border-color: rgba(186, 154, 66, 0.55);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(186, 154, 66, 0.25);
}
.chatbot.on-dark .chatbot__toggle:hover {
  background: rgba(186, 154, 66, 0.32);
  border-color: rgba(186, 154, 66, 0.75);
}

.chatbot__toggle svg {
  position: absolute;
  width: 22px;
  height: 22px;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.chatbot__toggle-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}

.chatbot__toggle-icon {
  opacity: 1;
  transform: scale(1);
}

.chatbot.is-open .chatbot__toggle-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.chatbot.is-open .chatbot__toggle-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Chat window — liquid glass */
.chatbot__window {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 56px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background:
    linear-gradient(180deg, rgba(18, 26, 58, 0.92) 0%, rgba(10, 16, 38, 0.95) 100%);
  backdrop-filter: blur(40px) saturate(170%);
  -webkit-backdrop-filter: blur(40px) saturate(170%);
  border: 0.5px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  box-shadow:
    inset 0 0.5px 0 rgba(255, 255, 255, 0.10),
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s, width 0.4s var(--ease), height 0.4s var(--ease), border-radius 0.4s var(--ease);
  pointer-events: none;
}

.chatbot.is-open .chatbot__window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot__window.chatbot__window--maximized {
  width: 520px;
  height: 680px;
  max-width: calc(100vw - 56px);
  max-height: calc(100vh - 120px);
}

/* Header */
.chatbot__header {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(186, 154, 66, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.chatbot__header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot__header-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(186, 154, 66, 0.4);
  animation: pulse 1.6s ease-in-out infinite;
}

.chatbot__header-title {
  font-family: var(--f-display);
  font-size: 18px;
  color: rgba(244, 239, 222, 0.88);
  letter-spacing: -0.01em;
}

.chatbot__header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chatbot__header-expand {
  background: none;
  border: none;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(244, 239, 222, 0.5);
  transition: color 0.2s;
}

.chatbot__header-expand:hover {
  color: rgba(244, 239, 222, 0.85);
}

.chatbot__header-expand svg {
  width: 13px;
  height: 13px;
}

.chatbot__header-clear {
  background: none;
  border: none;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(244, 239, 222, 0.4);
  transition: color 0.2s;
}

.chatbot__header-clear:hover {
  color: rgba(244, 239, 222, 0.85);
}

.chatbot__header-clear svg {
  width: 13px;
  height: 13px;
}

.chatbot__header-close {
  background: none;
  border: none;
  font-size: 22px;
  color: rgba(244, 239, 222, 0.5);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot__header-close:hover {
  color: rgba(244, 239, 222, 0.85);
}

/* Messages area */
.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}


.chatbot__welcome-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 28px;
  flex: 1;
  gap: 14px;
}

.chatbot__welcome-accent {
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.7;
}

.chatbot__welcome-heading {
  font-family: var(--f-display);
  font-size: 22px;
  color: rgba(244, 239, 222, 0.88);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.chatbot__welcome-greeting {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(244, 239, 222, 0.5);
  letter-spacing: 0.02em;
}

.chatbot__welcome-event {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: rgba(186, 154, 66, 0.10);
  border: 1px solid rgba(186, 154, 66, 0.25);
  border-radius: 10px;
  padding: 6px 12px;
  margin-top: 4px;
}

.chatbot__welcome-event-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}

.chatbot__welcome-sub {
  font-size: 12px;
  color: rgba(244, 239, 222, 0.4);
  line-height: 1.5;
  max-width: 240px;
}

.chatbot__messages::before {
  content: '';
  flex: 1 0 0px;
}

.chatbot__messages--welcome::before {
  flex: 0;
}

.chatbot__history {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Chat bubbles — frosted glass */
.chatbot__bubble {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  border-radius: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

.chatbot__bubble--bot {
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(244, 239, 222, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 2px solid rgba(186, 154, 66, 0.55);
  align-self: flex-start;
  border-top-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.chatbot__bubble--user {
  background: rgba(186, 154, 66, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(244, 239, 222, 0.95);
  border: 0.5px solid rgba(186, 154, 66, 0.25);
  align-self: flex-end;
  border-top-right-radius: 4px;
  font-weight: 450;
  white-space: pre-wrap;
}

.chatbot__bubble p {
  margin-bottom: 6px;
}

.chatbot__bubble p:empty {
  margin-bottom: 2px;
}

.chatbot__bubble p:last-child {
  margin-bottom: 0;
}

.chatbot__bubble strong {
  font-weight: 600;
  color: rgba(244, 239, 222, 0.95);
}

.chatbot__bubble em {
  font-family: var(--f-body) !important;
  font-style: italic;
  font-weight: 450;
}

.chatbot__link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(186, 154, 66, 0.4);
  text-underline-offset: 2px;
  font-weight: 500;
  transition: text-decoration-color 0.2s;
  word-break: break-all;
}

.chatbot__link:hover {
  text-decoration-color: var(--gold);
}

.chatbot__bubble--bot strong a,
.chatbot__bubble--bot a strong {
  color: var(--gold);
}

.chatbot__bubble--user .chatbot__link {
  color: rgba(244, 239, 222, 0.95);
}

.chatbot__list {
  list-style: disc !important;
  padding-left: 18px !important;
  margin-top: 6px;
  margin-bottom: 6px;
}

.chatbot__list-ord {
  list-style: decimal !important;
  padding-left: 18px !important;
  margin-top: 6px;
  margin-bottom: 6px;
}

.chatbot__list li, .chatbot__list-ord li {
  margin-bottom: 3px;
}

.chatbot__list li:last-child, .chatbot__list-ord li:last-child {
  margin-bottom: 0;
}

.chatbot__list-nested {
  margin-left: 16px;
  list-style-type: circle !important;
}

.chatbot__list-sub {
  list-style: circle !important;
  padding-left: 16px !important;
  margin: 4px 0 2px;
}

/* Suggestion Chips */
.chatbot__chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 18px 14px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.chatbot__chips::-webkit-scrollbar {
  height: 3px;
}

.chatbot__chips::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot__chips::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}

.chatbot__chips::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.chatbot__chip {
  white-space: nowrap;
  padding: 7px 14px;
  background: rgba(186, 154, 66, 0.10);
  border: 1px solid rgba(186, 154, 66, 0.30);
  border-radius: 14px;
  color: rgba(186, 154, 66, 0.85);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.chatbot__chip:hover {
  background: rgba(186, 154, 66, 0.22);
  border-color: rgba(186, 154, 66, 0.55);
  color: var(--gold);
}

/* Disclaimer */
.chatbot__disclaimer {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(186, 154, 66, 0.07);
  border-top: 0.5px solid rgba(186, 154, 66, 0.15);
  border-bottom: 0.5px solid rgba(186, 154, 66, 0.10);
  font-size: 11px;
  color: rgba(244, 239, 222, 0.45);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.chatbot__disclaimer-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: rgba(186, 154, 66, 0.55);
}

.chatbot__disclaimer-link {
  color: rgba(186, 154, 66, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}

.chatbot__disclaimer-link:hover {
  color: var(--gold);
}

/* Input Area */
.chatbot__input-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s var(--ease);
}

.chatbot__input-area:focus-within {
  border-top-color: rgba(186, 154, 66, 0.25);
}

.chatbot__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: rgba(244, 239, 222, 0.9);
  font-family: var(--f-body);
  font-size: 13.5px;
  resize: none;
  height: 20px;
  line-height: 1.5;
  overflow-y: auto;
}

.chatbot__input::placeholder {
  color: rgba(244, 239, 222, 0.3);
}

.chatbot__send-btn {
  background: none;
  border: none;
  color: rgba(186, 154, 66, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  cursor: pointer;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.chatbot__send-btn:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.chatbot__send-btn svg {
  width: 18px;
  height: 10px;
}

/* Blockquote */
.chatbot__quote {
  margin: 6px 0;
  padding: 6px 12px;
  border-left: 2px solid rgba(186, 154, 66, 0.45);
  color: rgba(244, 239, 222, 0.7);
  font-style: italic;
  font-size: 13px;
}

/* Quick reply buttons */
.chatbot__quickreply {
  display: block;
  width: fit-content;
  padding: 6px 14px;
  margin: 8px 0 0;
  background: rgba(186, 154, 66, 0.10);
  border: 1px solid rgba(186, 154, 66, 0.30);
  border-radius: 8px;
  color: var(--gold);
  font-family: var(--f-body);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.chatbot__quickreply:hover {
  background: rgba(186, 154, 66, 0.22);
  border-color: rgba(186, 154, 66, 0.55);
}

/* Verse card */
.chatbot__verse-card {
  margin: 4px 0;
  padding: 10px 12px;
  background: rgba(186, 154, 66, 0.08);
  border: 1px solid rgba(186, 154, 66, 0.22);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
}

.chatbot__verse-card + .chatbot__verse-card {
  margin-top: 4px;
}

.chatbot__verse-pilar {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.chatbot__verse-text {
  font-family: var(--f-display);
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
  color: rgba(244, 239, 222, 0.92);
  margin-bottom: 4px;
}

.chatbot__verse-ref {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 222, 0.5);
}

/* Copy button (rekening, etc.) */
.chatbot__copy-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  color: inherit;
  font-family: var(--f-mono);
  font-size: 13px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.chatbot__copy-btn:hover {
  background: rgba(186, 154, 66, 0.12);
  border-color: rgba(186, 154, 66, 0.35);
}

.chatbot__copy-text {
  letter-spacing: 0.05em;
  color: rgba(244, 239, 222, 0.95);
}

.chatbot__copy-icon {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* Nav links (in-page scroll) */
.chatbot__nav-link {
  display: block;
  width: fit-content;
  color: var(--gold);
  font-weight: 500;
  font-size: 12px;
  padding: 6px 14px;
  margin-top: 8px;
  background: rgba(186, 154, 66, 0.10);
  border: 1px solid rgba(186, 154, 66, 0.28);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  text-decoration: none;
}

.chatbot__bubble p:has(> .chatbot__nav-link),
.chatbot__bubble p:has(> .chatbot__quickreply) {
  margin-bottom: 0;
}

.chatbot__nav-link:hover {
  background: rgba(186, 154, 66, 0.20);
  border-color: rgba(186, 154, 66, 0.5);
}

/* Gallery in chat */
.chatbot__gallery {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0 4px;
  margin-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.chatbot__gallery::-webkit-scrollbar {
  height: 4px;
}
.chatbot__gallery::-webkit-scrollbar-track {
  background: transparent;
}
.chatbot__gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.chatbot__gallery + p,
.chatbot__gallery + ul {
  margin-top: 6px;
}

.chatbot__gallery-item {
  flex: 0 0 auto;
  width: 140px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot__window--maximized .chatbot__gallery-item {
  width: 180px;
  height: 120px;
}

.chatbot__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.chatbot__gallery-item:hover img {
  transform: scale(1.06);
}

/* Bubble action bar (copy + share) */
.chatbot__bubble-actions {
  display: flex;
  gap: 4px;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.chatbot__action-btn {
  background: none;
  border: none;
  padding: 3px 6px;
  cursor: pointer;
  color: rgba(244, 239, 222, 0.35);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  font-size: 11px;
}

.chatbot__action-btn:hover {
  color: var(--gold);
}


/* Typing Indicator */
.chatbot__bubble--typing {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
}

.typing-indicator {
  display: flex;
  gap: 5px;
  align-items: center;
}

.typing-indicator span {
  width: 5px;
  height: 5px;
  background: rgba(244, 239, 222, 0.6);
  border-radius: 50%;
  opacity: 0.4;
  animation: chatbotTyping 1.4s infinite both;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes chatbotTyping {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-3px); opacity: 0.8; }
}

/* Scrollbar */
.chatbot__messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot__messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot__messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.chatbot__messages::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Responsive */
}

/* ============== Chatbot Creative Features & Animations ============== */

/* 1. Guided Prayer Companion */
.chatbot__prayer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(212, 175, 55, 0.18);
  border-radius: 12px;
  padding: 16px;
  margin: 14px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.chatbot__prayer-box::before {
  content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.chatbot__prayer-intro {
  font-family: var(--f-mono); font-size: 10px; color: rgba(244, 239, 222, 0.5);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px;
}
.chatbot__prayer-verse {
  font-size: 12.5px; font-style: italic; color: var(--gold);
  line-height: 1.4; margin-bottom: 12px; padding-left: 10px;
  border-left: 2px solid var(--gold);
}
.chatbot__prayer-text {
  font-size: 13px; color: rgba(244, 239, 222, 0.92); line-height: 1.6; margin-bottom: 16px;
}
.chatbot__prayer-btn--amen {
  width: 100%; padding: 10px; border-radius: 8px; border: 0.5px solid rgba(212,175,55,0.4);
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  color: var(--gold); font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 0.25s ease; display: flex; align-items: center;
  justify-content: center; gap: 6px; box-shadow: 0 4px 12px rgba(212,175,55,0.05);
}
.chatbot__prayer-box + p,
.chatbot__prayer-box + ul,
.chatbot__prayer-box + div:not(.chatbot__prayer-box) {
  margin-top: 14px;
}

.chatbot__prayer-btn--amen:hover {
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.1));
  box-shadow: 0 4px 16px rgba(212,175,55,0.12);
  transform: translateY(-1px);
}
.chatbot__prayer-btn--amen.amened {
  background: linear-gradient(135deg, rgba(74,222,128,0.15), rgba(74,222,128,0.05));
  border-color: rgba(74,222,128,0.4); color: #4ade80; pointer-events: none;
}

/* Floating Amen Particles */
.chatbot__particle {
  position: absolute; pointer-events: none; z-index: 999;
  font-size: 14px; color: var(--gold); opacity: 1;
  animation: floatParticle 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes floatParticle {
  0% { transform: translateY(0) scale(0.5) rotate(0deg); opacity: 0; }
  15% { opacity: 0.9; }
  100% { transform: translateY(-80px) scale(1.2) rotate(15deg); opacity: 0; }
}

/* 2. Glassmorphic Pillar Cards */
.chatbot__pilar-card {
  position: relative; overflow: hidden;
  background: rgba(10, 16, 38, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px; padding: 16px; margin: 6px 0 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.chatbot__pilar-card-glow {
  position: absolute; top: -30px; right: -30px; width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.chatbot__pilar-card-header {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.chatbot__pilar-card-badge {
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold);
  border: 0.5px solid rgba(212,175,55,0.3); padding: 3px 8px; border-radius: 99px;
  background: rgba(212,175,55,0.05);
  flex-shrink: 0;
}
.chatbot__pilar-card-logo-img {
  height: 16px; width: auto; opacity: 0.55; object-fit: contain;
  flex-shrink: 0;
}
.chatbot__pilar-card-body { margin-bottom: 18px; }
.chatbot__pilar-card-verse {
  font-family: var(--f-display); font-size: 15px; font-style: normal;
  color: var(--on-night-7); line-height: 1.45; margin-bottom: 8px;
}
.chatbot__pilar-card-ref {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--on-night-5);
  letter-spacing: 0.02em;
}
.chatbot__pilar-card-actions { display: flex; gap: 8px; }
.chatbot__pilar-action-btn {
  flex: 1; padding: 8px; border-radius: 8px; border: 0.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04); color: var(--on-night-55); font-size: 11px;
  font-weight: 600; cursor: pointer; transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.chatbot__pilar-action-btn:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2);
  color: var(--light-on-night);
}

/* 3. SVG Home Group Finder */
.chatbot__home-finder {
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid rgba(255,255,255,0.06); border-radius: 14px;
  padding: 16px; margin: 12px 0;
}
.chatbot__home-finder-title {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.chatbot__home-finder-chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.chatbot__home-finder-chip {
  padding: 6px 12px; border-radius: 8px; border: 0.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02); color: var(--ink-mute); font-size: 11.5px;
  font-weight: 500; cursor: pointer; transition: all 0.2s ease;
}
.chatbot__home-finder-chip:hover {
  background: rgba(255,255,255,0.05); color: var(--ink);
}
.chatbot__home-finder-chip.active {
  background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.4);
  color: var(--gold); font-weight: 600;
}
.chatbot__home-finder-details {
  display: grid; grid-template-columns: 1fr 100px; gap: 14px;
  background: rgba(255,255,255,0.02); border: 0.5px solid rgba(255,255,255,0.04);
  border-radius: 10px; padding: 12px; min-height: 100px;
  align-items: center; transition: all 0.3s ease;
}
.chatbot__home-info-title {
  font-family: var(--f-display); font-size: 14px; font-weight: 600;
  color: var(--gold); margin-bottom: 4px;
}
.chatbot__home-info-row {
  font-size: 12px; color: var(--ink-mute); margin-bottom: 6px;
  line-height: 1.4; display: flex; flex-direction: column; gap: 1px;
}
.chatbot__home-info-row strong { color: var(--ink); font-weight: 600; }
.chatbot__home-cp-btn {
  display: inline-flex; align-items: center; gap: 4px; padding: 6px 10px;
  border-radius: 6px; background: rgba(74, 222, 128, 0.1);
  border: 0.5px solid rgba(74, 222, 128, 0.2); color: #4ade80;
  font-size: 11px; font-weight: 600; text-decoration: none;
  transition: all 0.2s ease; margin-top: 4px;
}
.chatbot__home-cp-btn:hover {
  background: rgba(74, 222, 128, 0.18);
  box-shadow: 0 2px 8px rgba(74, 222, 128, 0.08);
}
.chatbot__home-map-svg {
  width: 100px; height: 100px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.chatbot__home-map-svg svg { display: block; }
.glow-ring {
  transform-origin: center;
  animation: svgGlow 2s infinite ease-out;
}
@keyframes svgGlow {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* 4. Events Timeline & Calendar */
.chatbot__events-timeline {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 10px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.08) transparent;
  -webkit-overflow-scrolling: touch;
}
.chatbot__events-timeline::-webkit-scrollbar { height: 4px; }
.chatbot__events-timeline::-webkit-scrollbar-track { background: transparent; }
.chatbot__events-timeline::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08); border-radius: 2px;
}
.chatbot__event-card {
  width: 160px; flex-shrink: 0; background: rgba(10, 16, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px;
  padding: 12px; display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.chatbot__event-card-date {
  font-family: var(--f-mono); font-size: 9.5px; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 2px;
}
.chatbot__event-card-title {
  font-family: var(--f-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em; color: var(--light-on-night); line-height: 1.35;
  height: 36px; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.chatbot__event-card-time {
  font-size: 11px; color: var(--on-night-55);
}
.chatbot__event-card-link {
  width: 100%; text-align: center; padding: 6px 0; border-radius: 6px;
  border: 0.5px solid rgba(212,175,55,0.25); background: rgba(212,175,55,0.08);
  color: var(--gold); font-size: 10px; font-weight: 700; text-decoration: none;
  display: inline-block; transition: all 0.2s ease; margin-top: auto;
}
.chatbot__event-card-link:hover {
  background: rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.4);
}

@media (max-width: 480px) {
  .chatbot__home-finder-details {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .chatbot {
    bottom: 12px;
    right: 12px;
  }
  .chatbot__window,
  .chatbot__window.chatbot__window--maximized {
    position: fixed;
    top: 80px;
    bottom: 72px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    border-radius: 16px;
  }
  .chatbot__header-expand {
    display: none;
  }
}


/* ============== HOPE & TRUTH (dark, youth festival) ============== */
.hnt {
  background: var(--night);
  color: var(--light-on-night);
  padding: 140px var(--pad-l) 120px;
  position: relative;
  overflow: hidden;
}

/* huge faded wordmark behind everything */
.hnt__bgmark {
  position: absolute; inset: 0;
  display: flex; flex-direction: row;
  align-items: center; justify-content: center;
  gap: 0.18em;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(110px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--on-night-1);
  text-align: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.6;
  white-space: nowrap;
}
.hnt__bgmark-amp {
  font-size: 0.65em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.4;
}

.hnt > * { position: relative; z-index: 1; }

.hnt__head,
.hnt-hero,
.hnt__moments,
.hnt__archive,
.hnt__feed,
.hnt__social {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

/* head */
.hnt__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.hnt__head .display {
  font-size: clamp(56px, 8vw, 140px);
  margin-top: 22px;
  letter-spacing: -0.025em;
}
.hnt__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--on-night-7);
  max-width: 540px;
  padding-bottom: 12px;
}

/* ----- HERO ----- */
.hnt-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--on-night-15);
  background: rgba(244,239,222,.015);
  position: relative;
  margin-bottom: 100px;
}

.hnt-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}
.hnt-hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hnt-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(14,22,51,.0) 60%, rgba(14,22,51,.55) 100%),
    linear-gradient(90deg, transparent 70%, rgba(14,22,51,.35) 100%);
  pointer-events: none;
}
.hnt-hero__badge {
  position: absolute; top: 22px; left: 22px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(14,22,51,.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--on-night-3);
  color: var(--light-on-night);
  z-index: 2;
}
.hnt-hero__badge::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--gold);
}

.hnt-hero__body {
  padding: 48px 44px 44px;
  border-left: 1px solid var(--on-night-15);
  display: flex; flex-direction: column;
  gap: 0;
}

.hnt-hero__date {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.9;
  color: var(--light-on-night);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hnt-hero__date em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
  margin: 0 -2px;
}
.hnt-hero__date > div {
  display: flex; flex-direction: column;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  padding-top: 8px;
}
.hnt-hero__date-m { color: var(--light-on-night); }
.hnt-hero__date-y { color: var(--on-night-5); }

.hnt-hero__theme {
  font-family: var(--f-display);
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hnt-hero__tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  color: var(--on-night-7);
  margin-bottom: 36px;
}

.hnt-hero__meta {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0;
  margin: 0 0 36px;
  padding: 0;
  background:
    var(--line-dark-subtle) top / 100% 1px no-repeat,
    var(--line-dark-subtle) bottom / 100% 1px no-repeat;
}
.hnt-hero__meta li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  background: var(--line-dark-subtle) bottom / 100% 1px no-repeat;
  align-items: baseline;
}
.hnt-hero__meta li:last-child { background: none; }
.hnt-hero__meta-k {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-night-5);
}
.hnt-hero__meta-v {
  font-size: 14.5px; line-height: 1.4;
  color: var(--light-on-night);
}

.hnt-hero__cta {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  margin-top: auto;
  border: 1px solid var(--on-night-3);
  background: rgba(186,154,66,.04);
  color: var(--light-on-night);
  text-decoration: none;
  transition: background .3s, border-color .3s, transform .3s;
}
.hnt-hero__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.hnt-hero__cta-pill {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.hnt-hero__cta-pill svg { width: 16px; height: 16px; margin-left: 2px; }
.hnt-hero__cta:hover .hnt-hero__cta-pill { background: var(--ink); color: var(--gold); }
.hnt-hero__cta-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.hnt-hero__cta-label {
  font-family: var(--f-display); font-size: 19px; line-height: 1.15;
}
.hnt-hero__cta-meta {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-night-55);
}
.hnt-hero__cta:hover .hnt-hero__cta-meta { color: rgba(24,37,81,.7); }
.hnt-hero__cta-arrow { width: 28px; height: 14px; color: currentColor; flex-shrink: 0; }

/* ----- ARCHIVE ----- */
.hnt__archive {
  margin-bottom: 110px;
}
.hnt__archive-head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 8px;
}
.hnt__archive-tag {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-night-55);
  flex-shrink: 0;
}
.hnt__archive-rule {
  flex: 1; height: 1px;
  background: var(--on-night-15);
}

.hnt__archive-list {
  list-style: none; margin: 0; padding: 0;
  background:
    var(--line-dark) top / 100% 1px no-repeat,
    var(--line-dark) bottom / 100% 1px no-repeat;
}

.hnt-arc {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  background: var(--line-dark-subtle) bottom / 100% 1px no-repeat;
  transition: padding .3s var(--ease, ease);
}
.hnt-arc:last-child { background: none; }
.hnt-arc:hover { padding-left: 8px; padding-right: 8px; }

.hnt-arc__no {
  font-family: var(--f-mono); font-size: 32px;
  color: var(--on-night-3);
  letter-spacing: -0.02em;
  font-weight: 400;
}
.hnt-arc.is-latest .hnt-arc__no { color: var(--gold); }

.hnt-arc__main {
  display: flex; flex-direction: column; gap: 6px;
}
.hnt-arc__date {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-night-5);
}
.hnt-arc__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1; letter-spacing: -0.025em;
  margin: 0;
  color: var(--light-on-night);
}
.hnt-arc__title em {
  font-style: italic;
  color: var(--on-night-55);
  font-size: 0.55em;
  letter-spacing: 0;
  font-family: var(--f-display);
  margin-left: 8px;
}
.hnt-arc.is-latest .hnt-arc__title {
  background: var(--gradient-cream-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hnt-arc.is-latest .hnt-arc__title em {
  background: none;
  -webkit-text-fill-color: var(--on-night-55);
}
.hnt-arc__sub {
  font-size: 13.5px;
  color: var(--on-night-7);
}

.hnt-arc__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 16px;
  border: 1px solid var(--on-night-15);
  border-radius: 100px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-night-7);
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.hnt-arc__cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.hnt-arc__cta-arrow { font-size: 13px; }



/* ----- TIKTOK FEED ----- */
.hnt__feed {
  margin-bottom: 110px;
}
.hnt__feed-body {
  display: grid;
  grid-template-columns: minmax(288px, 780px) 1fr;
  gap: 40px;
  align-items: start;
}
.hnt__feed-yt {
  display: flex; flex-direction: column; gap: 16px;
}
.hnt__feed-yt-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-night-55);
}
.hnt__feed-yt-label svg { flex-shrink: 0; }
.hnt__feed-yt-label a {
  color: inherit; text-decoration: none;
  transition: color .25s;
}
.hnt__feed-yt-label a:hover { color: var(--gold); }
.hnt__feed-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
  padding-bottom: 28px;
  background: var(--line-dark) bottom / 100% 1px no-repeat;
}
.hnt__feed-tag {
  display: inline-block;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(186,154,66,.45);
  border-radius: 3px;
  margin-bottom: 16px;
}
.hnt__feed-title h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--light-on-night);
}
.hnt__feed-title h3 em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hnt__feed-title p {
  font-size: 15px; line-height: 1.55;
  color: var(--on-night-7);
  max-width: 540px;
}

.hnt__feed-cta {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid var(--on-night-15);
  background: rgba(244,239,222,.02);
  color: var(--light-on-night);
  text-decoration: none;
  transition: background .3s, border-color .3s;
}
.hnt__feed-cta:hover {
  background: rgba(186,154,66,.08);
  border-color: rgba(186,154,66,.4);
}
.hnt__feed-cta-plat {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.hnt__feed-cta-plat svg { width: 18px; height: 18px; }
.hnt__feed-cta-handle {
  font-family: var(--f-display); font-size: 22px;
  letter-spacing: -0.01em;
}
.hnt__feed-cta-arrow {
  font-size: 18px;
  color: var(--gold);
}

.hnt__feed-embed {
  width: 100%;
}
.hnt__feed-embed .tiktok-embed {
  margin-left: 0 !important;
  margin-right: auto !important;
}
.ttk {
  position: relative;
}
.ttk__link {
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--light-on-night);
}
.ttk__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--on-night-1);
  border-radius: 6px;
}
.ttk__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease, ease), filter .3s;
  filter: saturate(.95);
}
.ttk__link:hover .ttk__media img {
  transform: scale(1.06);
  filter: saturate(1.1);
}
.ttk__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0) 40%, rgba(14,22,51,.8) 100%);
  pointer-events: none;
}

.ttk__play {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(14,22,51,.75);
  backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--light-on-night);
  z-index: 2;
  border: 1px solid var(--on-night-15);
  transition: background .25s, transform .25s;
}
.ttk__play svg { width: 12px; height: 12px; margin-left: 1px; }
.ttk__link:hover .ttk__play {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.1);
}

.ttk__handle {
  position: absolute; bottom: 10px; left: 12px;
  z-index: 2;
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--light-on-night);
  background: rgba(14,22,51,.55);
  backdrop-filter: blur(6px);
  padding: 4px 8px;
  border-radius: 3px;
}

.ttk__meta {
  padding: 12px 4px 4px;
}
.ttk__cap {
  display: block;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--on-night-7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s;
}
.ttk__link:hover .ttk__cap { color: var(--light-on-night); }

.hnt__feed-note {
  margin-top: 28px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-night-5);
  text-align: center;
}

/* ----- HNT YOUTUBE VIDEOS ----- */
.hnt__videos {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 110px;
}
.hnt__videos-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
  padding-bottom: 28px;
  background: var(--line-dark-subtle-r) bottom / 100% 1px no-repeat;
}
.hnt__videos-title-block {
  display: flex; flex-direction: column;
}
.hnt__videos-tag {
  display: inline-block;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(186,154,66,.45);
  border-radius: 3px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.hnt__videos-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--light-on-night);
}
.hnt__videos-title em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hnt__videos-desc {
  font-size: 15px; line-height: 1.55;
  color: var(--on-night-7);
  max-width: 540px;
}
.hnt__videos-link {
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none;
  align-self: flex-end;
  transition: color .25s;
}
.hnt__videos-link-handle {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-night-55);
  transition: color .25s;
}
.hnt__videos-link-arrow {
  font-size: 22px;
  color: var(--gold);
  transition: transform .25s var(--ease);
  display: block;
}
.hnt__videos-link:hover .hnt__videos-link-handle { color: var(--light-on-night); }
.hnt__videos-link:hover .hnt__videos-link-arrow { transform: translate(3px, -3px); }
.hnt__videos-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hnt-vcard {
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
}
.hnt-vcard__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--on-night-1);
  border-radius: 6px;
}
.hnt-vcard__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
  filter: brightness(.85);
}
.hnt-vcard:hover .hnt-vcard__thumb img {
  transform: scale(1.05);
  filter: brightness(1);
}
.hnt-vcard__meta { padding: 2px 0; }
.hnt-vcard__date {
  display: block;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.hnt-vcard__title {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--light-on-night);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s;
}
.hnt-vcard:hover .hnt-vcard__title { color: var(--gold); }
.hnt-vcard--skeleton .hnt-vcard__thumb {
  background: var(--on-night-1);
  animation: shimmer 1.6s ease-in-out infinite;
}
.hnt-vcard--skeleton::after {
  content: '';
  display: block;
  height: 32px;
  border-radius: 4px;
  background: var(--on-night-1);
  animation: shimmer 1.6s ease-in-out infinite .2s;
}

/* ----- SOCIAL HANDLES ----- */
.hnt__social {
  background: var(--line-dark) top / 100% 1px no-repeat;
  padding-top: 50px;
}
.hnt__social-label {
  display: flex; align-items: center; gap: 20px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-night-55);
  margin-bottom: 28px;
}
.hnt__social-line {
  flex: 1; height: 1px; background: var(--on-night-15);
}
.hnt__social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--on-night-15);
  border-bottom: 1px solid var(--on-night-15);
}
.hnt-sm {
  position: relative;
  padding: 28px 24px;
  border-right: 1px solid var(--on-night-15);
  text-decoration: none;
  color: var(--light-on-night);
  display: flex; flex-direction: column; gap: 8px;
  transition: background .3s, padding .3s var(--ease, ease);
}
.hnt-sm:last-child { border-right: 0; }
.hnt-sm:hover { background: rgba(186,154,66,.06); }
.hnt-sm__plat {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.hnt-sm__handle {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hnt-sm__stat {
  font-size: 12px;
  color: var(--on-night-55);
  margin-top: auto;
  padding-top: 8px;
}
.hnt-sm__arrow {
  position: absolute; top: 28px; right: 24px;
  font-size: 14px; color: var(--gold);
  opacity: 0.4;
  transition: opacity .25s, transform .25s;
}
.hnt-sm:hover .hnt-sm__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1100px) {
  .hnt__head { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .hnt-hero { grid-template-columns: 1fr; }
  .hnt-hero__media { min-height: 380px; }
  .hnt-hero__body { border-left: 0; border-top: 1px solid var(--on-night-15); padding: 36px 28px; }

  .hnt__feed-head { grid-template-columns: 1fr; gap: 32px; }
  .hnt__feed-grid { grid-template-columns: repeat(3, 1fr); }
  .hnt__social-grid { grid-template-columns: repeat(2, 1fr); }
  .hnt-sm:nth-child(2) { border-right: 0; }
  .hnt-sm:nth-child(1), .hnt-sm:nth-child(2) {
    border-bottom: 1px solid var(--on-night-15);
  }
}
@media (max-width: 700px) {
  .hnt { padding: 100px var(--pad-l) 90px; }
  .hnt__bgmark {
    flex-direction: column;
    gap: 0;
    font-size: clamp(72px, 20vw, 120px);
    white-space: nowrap;
    line-height: 0.9;
  }
  .hnt-hero__date { font-size: 48px; }
  .hnt-hero__theme { font-size: clamp(56px, 16vw, 84px); }
  .hnt-hero__body { padding: 28px 22px; }
  .hnt-hero__meta li { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .hnt-arc {
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .hnt-arc__title { font-size: 32px; }
  .hnt-arc__title em { display: block; margin: 4px 0 0; font-size: 14px; }
  .hnt__feed-body { grid-template-columns: 1fr; }
  .hnt__videos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .hnt__feed-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hnt__social-grid {
    grid-template-columns: 1fr;
    border-top: 0;
    border-bottom: 0;
    background: none;
  }
  .hnt-sm { border-right: 0; border-bottom: 0; }
  .hnt-sm::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--line-dark-r);
  }
  .hnt-sm:first-child::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--line-dark-r);
  }
}


/* ============== HNT REVISIONS ============== */

/* head: 2-col with left stack (label + logo + heading), right is sub paragraph */
.hnt__head { align-items: start; }
.hnt__head-left {
  display: flex; flex-direction: column;
  gap: 24px;
}
.hnt__brand {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.hnt__head .display {
  margin-top: 0;
  font-size: clamp(48px, 6.8vw, 110px);
}
.hnt__sub { padding-bottom: 0; padding-top: 8px; }

/* Subtler bg wordmark */
.hnt__bgmark {
  opacity: 0.35;
  font-size: clamp(150px, 22vw, 340px);
}

/* Smaller, softer sub-headings (NOT bold-feeling) */
.hnt-arc__title {
  font-size: clamp(28px, 3.2vw, 46px) !important;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.hnt__feed-title h3 {
  font-size: clamp(28px, 3.4vw, 46px) !important;
  letter-spacing: -0.005em;
  font-weight: 400;
  color: var(--on-night-7);
}
.hnt__feed-title h3 em {
  color: inherit;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* hero date: simplified (single day, no dash) */
.hnt-hero__date {
  display: flex; align-items: flex-end; gap: 14px;
  margin-bottom: 22px;
}
.hnt-hero__date-d {
  font-family: var(--f-display);
  font-size: clamp(64px, 6.5vw, 96px);
  line-height: 0.85;
  color: var(--light-on-night);
  letter-spacing: -0.04em;
}
.hnt-hero__date-stack {
  display: flex; flex-direction: column;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  padding-bottom: 12px;
}

.hnt-hero__theme {
  font-size: clamp(72px, 9vw, 130px);
}
.hnt-hero__tagline {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -8px;
  margin-bottom: 36px;
}

/* ============== TIKTOK FEED (empty slot placeholders) ============== */
.hnt__feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.ttk {
  display: flex; flex-direction: column;
  gap: 10px;
}
.ttk__slot {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(244,239,222,0.02) 0px,
      rgba(244,239,222,0.02) 8px,
      rgba(244,239,222,0.04) 8px,
      rgba(244,239,222,0.04) 16px
    );
  border: 1px solid var(--on-night-15);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.ttk__slot:hover {
  border-color: var(--gold);
}

.ttk__link {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-night-55);
  text-decoration: none;
  align-self: flex-start;
  transition: color .25s;
}
.ttk__link::after {
  content: "↗\FE0E";
  color: var(--gold);
}
.ttk__link:hover { color: var(--light-on-night); }

/* ============== SOCIAL ICONS ============== */
.hnt-sm {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  grid-template-rows: auto auto auto;
  align-items: start;
  column-gap: 14px;
  row-gap: 4px;
  padding: 26px 24px;
}
.hnt-sm__icon {
  grid-row: 1 / span 3;
  grid-column: 1;
  align-self: start;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: var(--gold);
  margin-top: 2px;
}
.hnt-sm__icon svg { width: 22px; height: 22px; }
.hnt-sm__plat {
  grid-column: 2;
  grid-row: 1;
}
.hnt-sm__handle {
  grid-column: 2 / span 2;
  grid-row: 2;
}
.hnt-sm__stat {
  grid-column: 2 / span 2;
  grid-row: 3;
  padding-top: 6px;
}
.hnt-sm__arrow {
  position: static;
  grid-column: 3;
  grid-row: 1;
}

@media (max-width: 700px) {
  .hnt__head-left { gap: 18px; }
  .hnt__brand { width: 180px; }
  .hnt__feed-grid { grid-template-columns: repeat(2, 1fr); }
  .ttk__slot { aspect-ratio: 9 / 16; }
  .hnt-sm { grid-template-columns: 28px 1fr auto; padding: 22px 20px; }
}


/* ============== HNT MOMENTS (KKR documentation strip) ============== */
.hnt__moments {
  margin-top: -50px;
  margin-bottom: 110px;
}
.hnt__moments-head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 18px;
}
.hnt__moments-tag {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-night-55);
  flex-shrink: 0;
}
.hnt__moments-rule {
  flex: 1; height: 1px; background: var(--on-night-15);
}
.hnt__moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hnt-mm {
  margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.hnt-mm__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--on-night-1);
  border-radius: 4px;
  position: relative;
}
.hnt-mm__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease, ease);
}
.hnt-mm:hover .hnt-mm__img img { transform: scale(1.04); }
.hnt-mm figcaption {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.hnt-mm__no {
  color: var(--gold);
  font-weight: 500;
}
.hnt-mm__cap {
  color: var(--on-night-7);
}

@media (max-width: 900px) {
  .hnt__moments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .hnt__moments-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}


/* ============== HNT GLASS LABEL (unified, matches photostrip caption) ============== */
.hnt-glass-cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(186,154,66,0.32);
  border-radius: 100px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 4px 14px rgba(0,0,0,0.25);
  color: var(--light-on-night);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
}
.hnt-glass-cap > span {
  color: var(--gold);
  font-weight: 600;
}

/* hero badge — re-skinned as glass, drop the old dot */
.hnt-hero__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  bottom: auto;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 100%) !important;
  border-color: rgba(186,154,66,0.32) !important;
}
.hnt-hero__badge::before { display: none; }



/* moments: figcaption now lives inside the image wrapper */
.hnt__moments { margin-bottom: 100px; }
.hnt-mm__img { position: relative; }
.hnt-mm__cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(186,154,66,0.32);
  border-radius: 100px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 4px 14px rgba(0,0,0,0.25);
  color: var(--light-on-night);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: absolute;
  left: 12px; bottom: 10px;
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s var(--ease, ease), transform .4s var(--ease, ease);
}
.hnt-mm__cap > span { color: var(--gold); font-weight: 600; }
.hnt-mm:hover .hnt-mm__cap { opacity: 1; transform: translateY(0); }

/* TikTok feed: clean grid, no per-card links */
.hnt__feed-head { grid-template-columns: 1fr; }
.ttk { display: block; }

.hnt__moments-tag {
  margin-bottom: 22px;
  margin-top: 0;
}


/* ============== HNT R3 — gradient cards, fade-right separators, label cleanup ============== */

/* ---- Plain section-label style for "Momen yang direkam" (NOT on a photo, no glass) ---- */
.hnt__moments-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-night-55);
  margin-bottom: 22px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hnt__moments-tag > span { color: var(--gold); }

/* ---- Hero body: ibadah-style gradient + gold left strip ---- */
.hnt-hero__body {
  background: linear-gradient(135deg, #0e1633 0%, #1a2040 60%, #1e1a0f 100%);
  position: relative;
}
.hnt-hero__body::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  z-index: 1;
}

/* meta separators: fade RIGHT only (left solid) */
.hnt-hero__meta {
  background:
    var(--line-dark-subtle-r) top / 100% 1px no-repeat,
    var(--line-dark-subtle-r) bottom / 100% 1px no-repeat;
}
.hnt-hero__meta li {
  background: var(--line-dark-subtle-r) bottom / 100% 1px no-repeat;
}
.hnt-hero__meta li:last-child { background: none; }

/* Tonton ulang CTA: simpler one-line layout (no subtext meta) */
.hnt-hero__cta { gap: 16px; }
.hnt-hero__cta-label {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.15;
  flex: 1;
}



/* ---- Archive: drop the right-side rule; items fade RIGHT only ---- */
.hnt__archive-head {
  gap: 12px;
  margin-bottom: 0;
}
.hnt__archive-rule { display: none; }
.hnt__archive-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hnt__archive-tag > span { color: var(--gold); }

.hnt__archive-list {
  background:
    var(--line-dark-r) top / 100% 1px no-repeat,
    var(--line-dark-r) bottom / 100% 1px no-repeat;
}
.hnt-arc {
  background: var(--line-dark-subtle-r) bottom / 100% 1px no-repeat;
}
.hnt-arc:last-child { background: none; }

/* ---- Social label: no right rule, no top redundant border ---- */
.hnt__social-label {
  margin-bottom: 22px;
  gap: 12px;
}
.hnt__social-num { color: var(--gold); }
.hnt__social-line { display: none; }

/* Social grid: top + bottom rules fade BOTH sides (centered) */
.hnt__social-grid {
  border-top: 0;
  border-bottom: 0;
  background:
    var(--line-dark) top / 100% 1px no-repeat,
    var(--line-dark) bottom / 100% 1px no-repeat;
}


/* ============== HNT R4 — pill labels, no separator lines, hero hover zoom ============== */

/* All three section labels (moments / archive / social) → small gold-bordered pill,
   same vibe as the "Setiap hari" tag */
.hnt__moments-tag,
.hnt__archive-tag,
.hnt__social-label > span {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 11px;
  border: 1px solid rgba(186,154,66,0.45);
  border-radius: 3px;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  gap: 0;
}

.hnt__moments-tag { margin-bottom: 22px; }
.hnt__archive-head { margin-bottom: 0; }
.hnt__social-label {
  margin-bottom: 22px;
  display: block;
}

/* Remove line UNDER feed head (above tiktok grid) */
.hnt__feed-head {
  background: none;
  padding-bottom: 0;
  margin-bottom: 36px;
}

/* Remove line ABOVE social section */
.hnt__social {
  background: none;
  padding-top: 0;
  margin-top: 50px;
}

/* Hero photo: zoom-in on hover like the other photos */
.hnt-hero__media {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.hnt-hero__media img {
  transition: transform .6s var(--ease, ease);
}
.hnt-hero__media:hover img {
  transform: scale(1.04);
}


/* ============== HNT R5 — refine caps, arsip CTA, RESTART weight ============== */

/* Archive label spacing — push pill away from the list rules */
.hnt__archive-head { margin-bottom: 20px; }

/* Hero RESTART title — lighten the visual weight */
.hnt-hero__theme {
  font-weight: 300 !important;
  font-size: clamp(56px, 6.5vw, 96px) !important;
  letter-spacing: 0.18em !important;
  line-height: 0.95;
}

/* Archive CTA: icon-only square button (YouTube glyph) */
.hnt-arc__cta {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 50% !important;
  border: 1px solid var(--on-night-15);
  background: rgba(244,239,222,0.02);
  color: var(--on-night-7);
  text-decoration: none;
  flex-shrink: 0;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.hnt-arc__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: scale(1.06);
}
.hnt-arc__cta svg { width: 18px; height: 18px; display: block; }




/* HnT head kicker — don't stretch to container width */
.hnt__head-kicker { align-self: flex-start; }

/* Titles in feed: pure white, not grey */
.hnt__feed-title h3 {
  color: var(--light-on-night) !important;
}
