/* ==========================================================================
   INTERACTIONS & MOTION LAYER - LANDING PAGE 2026 TRUST
   --------------------------------------------------------------------------
   File ini sengaja diberi prefix "z-" supaya di-load paling akhir oleh
   <x-albums.2026_trust.styles /> (File::files() mengurutkan berdasarkan nama),
   jadi seluruh aturan di sini berada di atas main.css + responsive-*.css.

   Aturan main: layer ini hanya MENAMBAH gerak & interaksi. Tidak ada properti
   layout (width/padding/margin/grid) milik desain lama yang ditimpa.

   Semua initial-state yang menyembunyikan konten dikunci di balik .has-motion
   (ditambahkan oleh JS). Tanpa JS, halaman tampil apa adanya seperti semula.
   ========================================================================== */

:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --accent-color: #d4cba8;
}

/* ==========================================================================
   1. PRELOADER
   ========================================================================== */
.site-preloader {
  display: none;
}
.has-motion .site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(17, 65, 49, 0.35), transparent 60%),
    #020806;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s var(--ease-out-expo), visibility 0.7s;
}
.has-motion:not(.is-loaded) body {
  overflow: hidden;
}
.has-motion.is-loaded .site-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transform: translateY(0);
  transition: transform 0.7s var(--ease-out-expo);
}
.has-motion.is-loaded .site-preloader-inner {
  transform: translateY(-18px);
}
.site-preloader-logo {
  width: 118px;
  max-width: 40vw;
  opacity: 0;
  animation: preloaderLogoIn 0.9s var(--ease-out-expo) 0.05s forwards;
}
.site-preloader-bar {
  position: relative;
  width: 168px;
  max-width: 46vw;
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(179, 174, 155, 0.18);
}
.site-preloader-bar span {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(179, 174, 155, 0.35), var(--accent-color));
  transition: transform 0.45s var(--ease-out-expo);
}
.site-preloader-text {
  font-family: 'HelveticaBold', 'Helvetica', sans-serif;
  font-size: 10px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: rgba(218, 211, 190, 0.55);
  animation: preloaderTextPulse 2s ease-in-out infinite;
}
@keyframes preloaderLogoIn {
  from { opacity: 0; transform: translateY(14px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes preloaderTextPulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.9; }
}

/* ==========================================================================
   2. SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 950;
  pointer-events: none;
  background: rgba(179, 174, 155, 0.08);
}
.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(112, 84, 68, 0.9), rgba(179, 174, 155, 1), var(--accent-color));
  box-shadow: 0 0 14px rgba(212, 203, 168, 0.45);
}

/* ==========================================================================
   3. SECTION DOT NAVIGATION
   ========================================================================== */
.section-nav {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-50%) translateX(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), visibility 0.5s;
}
.section-nav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.section-nav-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}
.section-nav-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(179, 174, 155, 0.55);
  background: transparent;
  transition: transform 0.35s var(--ease-out-back), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.section-nav-dot:hover::after {
  transform: scale(1.35);
  border-color: var(--accent-color);
}
.section-nav-dot.is-active::after {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.45);
  box-shadow: 0 0 0 4px rgba(212, 203, 168, 0.15);
}
.section-nav-dot span {
  margin-right: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: 'HelveticaBold', 'Helvetica', sans-serif;
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: rgba(2, 8, 6, 0.82);
  border: 1px solid rgba(179, 174, 155, 0.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out-expo);
}
.section-nav-dot:hover span,
.section-nav-dot:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .section-nav { display: none; }
}

/* ==========================================================================
   4. HERO - ENTRANCE CHOREOGRAPHY
   ========================================================================== */
.has-motion .hero-top img,
.has-motion .hero-description,
.has-motion .event-card,
.has-motion .hero-actions,
.has-motion .hero-quote {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.has-motion .hero-top img {
  transform: translate3d(0, -18px, 0);
}
.has-motion.is-loaded .hero-top img,
.has-motion.is-loaded .hero-description,
.has-motion.is-loaded .event-card,
.has-motion.is-loaded .hero-actions,
.has-motion.is-loaded .hero-quote {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.has-motion.is-loaded .hero-top img      { transition-delay: 0.15s; }
.has-motion.is-loaded .hero-description  { transition-delay: 0.85s; }
.has-motion.is-loaded .event-card        { transition-delay: 0.98s; }
.has-motion.is-loaded .hero-actions      { transition-delay: 1.10s; }
.has-motion.is-loaded .hero-quote        { transition-delay: 1.22s; }

/* Headline dianimasikan per-image, JANGAN pernah lewat .live-worship.
   Container yang punya transform akan membuat stacking context baru dan
   merusak mix-blend-mode: difference layer headline terhadap video. */
.has-motion .live-worship img {
  --enter-y: 30px;
  --enter-s: 0.965;
  opacity: 0;
  transform:
    translate3d(
      calc(var(--px, 0px) * var(--parallax-ratio, 0.45)),
      calc(var(--py, 0px) * var(--parallax-ratio, 0.45) + var(--enter-y)),
      0
    )
    scale(var(--enter-s));
  transition:
    opacity 1s var(--ease-out-expo),
    transform 1.05s var(--ease-out-expo);
}
.has-motion.is-loaded .live-worship img {
  --enter-y: 0px;
  --enter-s: 1;
  opacity: 1;
}
/* :not(.is-hero-ready) WAJIB. Tanpa itu delay stagger ini (specificity 0,4,1)
   menang atas rule pointer-follow di bawah (0,3,1), dan setiap gerak kursor
   tertahan 0.30s-0.70s dulu sebelum jalan -> efeknya terasa tidak berfungsi. */
.has-motion.is-loaded:not(.is-hero-ready) .live-worship img:nth-child(1) { transition-delay: 0.30s; }
.has-motion.is-loaded:not(.is-hero-ready) .live-worship img:nth-child(2) { transition-delay: 0.38s; }
.has-motion.is-loaded:not(.is-hero-ready) .live-worship img:nth-child(3) { transition-delay: 0.46s; }
.has-motion.is-loaded:not(.is-hero-ready) .live-worship img:nth-child(4) { transition-delay: 0.54s; }
.has-motion.is-loaded:not(.is-hero-ready) .live-worship img:nth-child(5) { transition-delay: 0.62s; }
.has-motion.is-loaded:not(.is-hero-ready) .live-worship img:nth-child(6) { transition-delay: 0.70s; }

/* Parallax per-layer (depth) DIMATIKAN. Seluruh headline sekarang bergerak
   sebagai satu blok utuh mengikuti arah kursor, model yang sama dengan
   .hero-description -- hanya amplitudonya yang beda karena beda ukuran blok. */
.live-worship img {
  /* Naikkan/turunkan angka ini saja untuk mengatur seberapa jauh headline
     mengikuti kursor. 1 = geser penuh MAX_SHIFT (16px) dari JS.
     0.45 (samaan .hero-description) terlalu halus untuk blok selebar ini. */
  --parallax-ratio: 1;
}

/* Setelah entrance selesai, transisi dipercepat supaya gerak terasa
   mengikuti kursor (trailing lerp), bukan tertinggal satu detik. */
.has-motion.is-hero-ready .live-worship img {
  transition: transform 0.6s var(--ease-out-expo), opacity 0.4s ease;
  transition-delay: 0s;
  transform: translate3d(
    calc(var(--px, 0px) * var(--parallax-ratio, 0.45)),
    calc(var(--py, 0px) * var(--parallax-ratio, 0.45)),
    0
  );
}

/* Parallax lembut untuk blok konten hero lain. */
.has-motion.is-hero-ready .hero-description,
.has-motion.is-hero-ready .event-card,
.has-motion.is-hero-ready .hero-actions {
  transition: transform 0.6s var(--ease-out-expo), opacity 0.4s ease;
  transition-delay: 0s;
}
.has-motion.is-hero-ready .hero-description {
  --parallax-ratio: 0.45;
  transform: translate3d(
    calc(var(--px, 0px) * var(--parallax-ratio, 0.45)),
    calc(var(--py, 0px) * var(--parallax-ratio, 0.45)),
    0
  );
}
.has-motion.is-hero-ready .event-card {
  transform: translate3d(calc(var(--px, 0px) * 0.30), calc(var(--py, 0px) * 0.30), 0);
}
.has-motion.is-hero-ready .hero-actions {
  transform: translate3d(calc(var(--px, 0px) * 0.22), calc(var(--py, 0px) * 0.22), 0);
}

/* Video hero ikut bergeser saat halaman di-scroll (depth). */
.has-motion .hero-video {
  transform: scale(1.04) translate3d(0, var(--hero-shift, 0px), 0);
  will-change: transform;
}

/* Simbol quote jadi penanda scroll yang hidup. */
/*.has-motion .quote-symbol {
  animation: quoteFloat 3.4s ease-in-out infinite;
  text-shadow: 0 0 18px rgba(212, 203, 168, 0.45);
}*/
/*@keyframes quoteFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.85; }
  50%      { transform: translateY(7px) rotate(180deg); opacity: 1; }
}*/

.has-motion .quote-symbol {
  animation: quoteGlow 2.8s ease-in-out infinite;
  text-shadow: 0 0 18px rgba(212, 203, 168, 0.45);
}
@keyframes quoteGlow {
  0%, 100% {
    opacity: 0.7;
    text-shadow: 0 0 10px rgba(212, 203, 168, 0.25);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 28px rgba(212, 203, 168, 0.7);
  }
}

/* ==========================================================================
   5. SCROLL REVEAL
   ========================================================================== */
.has-motion [data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0s);
}
.has-motion [data-reveal="fade-up"]    { transform: translate3d(0, 42px, 0); }
.has-motion [data-reveal="fade-down"]  { transform: translate3d(0, -32px, 0); }
.has-motion [data-reveal="fade-left"]  { transform: translate3d(-44px, 0, 0); }
.has-motion [data-reveal="fade-right"] { transform: translate3d(44px, 0, 0); }
.has-motion [data-reveal="zoom"]       { transform: scale(0.94); }
.has-motion [data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

/* ==========================================================================
   6. TICKET CARDS - HOVER / POINTER SPOTLIGHT
   ========================================================================== */
.ticket-item {
  position: relative;
  transition: transform 0.5s var(--ease-out-expo);
}
.ticket-item::before {
  content: "";
  position: absolute;
  inset: -12px -20px;
  z-index: 0;
  border-radius: 30px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(212, 203, 168, 0.16),
    rgba(212, 203, 168, 0.04) 45%,
    transparent 72%
  );
  transition: opacity 0.4s ease;
}
.ticket-item > * {
  position: relative;
  z-index: 1;
}
.ticket-item .ticket-border-tray {
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}
.ticket-item .ticket-zone img {
  transform-origin: left center;
  transition: transform 0.5s var(--ease-out-back), filter 0.45s ease;
}
.ticket-item .price-amount,
.ticket-item .price-currency {
  transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.5s var(--ease-out-expo);
}
.ticket-item .ticket-description {
  opacity: 0.82;
  transition: color 0.4s ease, opacity 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ticket-item:hover {
    transform: translate3d(0, -6px, 0);
  }
  .ticket-item:hover::before {
    opacity: 1;
  }
  .ticket-item:hover .ticket-border-tray {
    border-color: rgba(212, 203, 168, 0.95);
    box-shadow: 0 12px 26px -18px rgba(212, 203, 168, 0.8);
  }
  .ticket-item:hover .ticket-zone img {
    transform: scale(1.07);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
  }
  .ticket-item:hover .price-amount {
    color: #e8e1c6;
    text-shadow: 0 0 22px rgba(212, 203, 168, 0.4);
    transform: translate3d(4px, 0, 0);
  }
  .ticket-item:hover .ticket-description {
    opacity: 1;
  }
  .festival-tickets .ticket-item:hover .price-amount {
    color: #fff;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.45);
  }
}

/* Angka harga saat dihitung naik: kunci lebar digit biar layout tidak goyang. */
.price-amount {
  font-variant-numeric: tabular-nums;
}

/* Kartu besar lain ikut merespons hover. */
.seating-card,
.important-card,
.register-card,
.zone-note {
  transition: transform 0.55s var(--ease-out-expo), box-shadow 0.55s ease;
}
@media (hover: hover) and (pointer: fine) {
  .seating-card:hover,
  .important-card:hover,
  .register-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 26px 50px -28px rgba(0, 0, 0, 0.85);
  }
  .zone-note:hover {
    transform: translate3d(0, -3px, 0);
  }
}

/* ==========================================================================
   7. BUTTON MICRO-INTERACTIONS
   ========================================================================== */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(var(--mag-x, 0px), calc(var(--mag-y, 0px) - var(--lift, 0px)), 0);
  transition:
    transform 0.45s var(--ease-out-expo),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 55%;
  z-index: -1;
  pointer-events: none;
  transform: skewX(-22deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 203, 168, 0.22),
    transparent
  );
  transition: left 0.75s var(--ease-out-expo);
}
.btn:hover {
  --lift: 3px;
  border-color: rgba(212, 203, 168, 0.85);
  box-shadow: 0 16px 34px -20px rgba(212, 203, 168, 0.9);
}
.btn:hover::after {
  left: 125%;
}
.btn:active {
  --lift: 0px;
  transform: translate3d(var(--mag-x, 0px), 1px, 0) scale(0.98);
}
.btn img {
  transition: transform 0.45s var(--ease-out-expo), filter 0.4s ease;
}
.btn:hover img {
  transform: scale(1.04);
  filter: brightness(1.15);
}
.btn:focus-visible,
.section-nav-dot:focus-visible,
.back-to-top:focus-visible,
.sticky-cta-btn:focus-visible {
  outline: 2px solid rgba(212, 203, 168, 0.85);
  outline-offset: 3px;
}

/* Ripple saat tombol diklik. */
.btn-ripple {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(212, 203, 168, 0.45), transparent 65%);
  pointer-events: none;
  animation: btnRipple 0.65s var(--ease-out-expo) forwards;
}
@keyframes btnRipple {
  to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Tombol berbasis gambar (Register Now / WhatsApp Us) ikut magnetic. */
.register-heading,
.register-whatsapp {
  transform: translate3d(var(--mag-x, 0px), var(--mag-y, 0px), 0) scale(var(--btn-scale, 1));
  transition: transform 0.45s var(--ease-out-expo), filter 0.4s ease;
}
.register-heading:hover,
.register-whatsapp:hover {
  --btn-scale: 1.04;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

/* ==========================================================================
   8. STICKY CTA + COUNTDOWN
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 940;
  width: max-content;
  max-width: calc(100% - 32px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(150%);
  transition: transform 0.6s var(--ease-out-expo), opacity 0.45s ease, visibility 0.6s;
}
.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 11px 14px 11px 24px;
  border-radius: 999px;
  border: 1px solid rgba(179, 174, 155, 0.28);
  background: rgba(4, 12, 9, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.9);
}
.sticky-cta-count {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sticky-cta-label {
  font-family: 'HelveticaBold', 'Helvetica', sans-serif;
  font-size: 8px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(218, 211, 190, 0.6);
}
.sticky-cta-timer {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--text-color);
}
.cta-unit {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.cta-unit b {
  min-width: 22px;
  font-family: 'HelveticaBold', 'Helvetica', sans-serif;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
  color: var(--accent-color);
}
.cta-unit i {
  font-style: normal;
  font-size: 8px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(218, 211, 190, 0.5);
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'HelveticaBold', 'Helvetica', sans-serif;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0b1410;
  background: linear-gradient(120deg, #ded6b8, #b3ae9b 55%, #cdc4a4);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, filter 0.4s ease;
}
.sticky-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 14px 28px -14px rgba(212, 203, 168, 0.9);
}
.sticky-cta-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-expo);
}
.sticky-cta-btn:hover svg {
  transform: translateX(3px);
}
.sticky-cta-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  color: rgba(218, 211, 190, 0.55);
  background: rgba(255, 255, 255, 0.06);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.sticky-cta-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
}
@media (max-width: 640px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 14px;
    width: auto;
    max-width: none;
    transform: translateX(0) translateY(150%);
  }
  .sticky-cta.is-visible {
    transform: translateX(0) translateY(0);
  }
  .sticky-cta-inner {
    gap: 12px;
    padding: 9px 10px 9px 16px;
    justify-content: space-between;
  }
  .sticky-cta-label { font-size: 7px; letter-spacing: 1.6px; }
  .sticky-cta-timer { gap: 7px; }
  .cta-unit b { min-width: 18px; font-size: 14px; }
  .cta-unit i { font-size: 7px; }
  .sticky-cta-btn { padding: 9px 15px; font-size: 9px; letter-spacing: 1.2px; }
}
@media (max-width: 400px) {
  .cta-unit-seconds { display: none; }
  .sticky-cta-btn-label { display: none; }
}

/* ==========================================================================
   9. BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 945;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--accent-color);
  border: 1px solid rgba(179, 174, 155, 0.3);
  background: rgba(4, 12, 9, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition:
    opacity 0.45s ease,
    visibility 0.45s,
    transform 0.45s var(--ease-out-back),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  border-color: rgba(212, 203, 168, 0.9);
  box-shadow: 0 14px 30px -16px rgba(212, 203, 168, 0.9);
}
.back-to-top svg {
  width: 15px;
  height: 15px;
  transition: transform 0.4s var(--ease-out-back);
}
.back-to-top:hover svg {
  transform: translateY(-3px);
}
@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 78px;
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   10. TERMS MODAL - POLISH
   ========================================================================== */
.terms-modal-dialog {
  transform: translateY(24px) scale(0.985);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
}
.terms-modal.is-open .terms-modal-dialog {
  transform: translateY(0) scale(1);
}
.terms-modal-close {
  border-radius: 999px;
  transition: opacity 0.25s ease, transform 0.35s var(--ease-out-back);
}
.terms-modal-close:hover {
  transform: scale(1.08);
}
.has-motion .terms-modal-list li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}
.has-motion .terms-modal.is-open .terms-modal-list li {
  opacity: 1;
  transform: translateY(0);
}
.has-motion .terms-modal.is-open .terms-modal-list li:nth-child(1) { transition-delay: 0.12s; }
.has-motion .terms-modal.is-open .terms-modal-list li:nth-child(2) { transition-delay: 0.19s; }
.has-motion .terms-modal.is-open .terms-modal-list li:nth-child(3) { transition-delay: 0.26s; }
.has-motion .terms-modal.is-open .terms-modal-list li:nth-child(4) { transition-delay: 0.33s; }
.has-motion .terms-modal-title img {
  opacity: 0;
  transform: translateY(-10px);
  transition: transform 0.6s var(--ease-out-expo), opacity 0.5s ease;
}
.has-motion .terms-modal.is-open .terms-modal-title img {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   11. REDUCED MOTION - matikan gerak, konten tetap tampil penuh
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .has-motion .hero-top img,
  .has-motion .hero-description,
  .has-motion .event-card,
  .has-motion .hero-actions,
  .has-motion .hero-quote,
  .has-motion .live-worship img,
  .has-motion [data-reveal],
  .has-motion .terms-modal-list li,
  .has-motion .terms-modal-title img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .has-motion .hero-video {
    transform: none;
  }
  .has-motion .quote-symbol,
  .site-preloader-logo,
  .site-preloader-text {
    animation: none;
  }
  .btn,
  .ticket-item,
  .seating-card,
  .important-card,
  .register-card,
  .zone-note,
  .register-heading,
  .register-whatsapp {
    transition: none !important;
    transform: none !important;
  }
}
