/* ═══════════════════════════════════════════════════════════
   PINK BEACH INDONESIA — LUXURY STYLESHEET v2.0
   Theme: Pink · White · Orange · Elegant · Premium
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --pink:        #F4A7B9;
  --pink-deep:   #E8728A;
  --pink-light:  #FDE8EE;
  --pink-pale:   #FFF5F8;
  --orange:      #F97316;
  --orange-soft: #FB923C;
  --orange-pale: #FFF7ED;
  --cream:       #FFFBF5;
  --white:       #FFFFFF;
  --ink:         #1A0A0F;
  --ink-soft:    #4A2030;
  --muted:       #9D7080;
  --border:      rgba(244,167,185,0.25);
  --border-soft: rgba(244,167,185,0.12);
  --gold:        #D4956A;
  --gold-light:  #F0C898;

  --shadow-sm:   0 2px 12px rgba(232,114,138,0.10);
  --shadow-md:   0 8px 40px rgba(232,114,138,0.15);
  --shadow-lg:   0 20px 80px rgba(232,114,138,0.18);
  --shadow-card: 0 4px 24px rgba(26,10,15,0.07);

  --radius-sm:   0.5rem;
  --radius-md:   1rem;
  --radius-lg:   1.75rem;
  --radius-xl:   2.5rem;
  --radius-full: 9999px;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans:       0.35s var(--ease-smooth);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pink-pale); }
::-webkit-scrollbar-thumb { background: var(--pink-deep); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
}
.display-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
}
.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
}

/* ── Utility ── */
.section-py   { padding: 6rem 0; }
.section-py-sm{ padding: 4rem 0; }
.bg-pink-pale { background: var(--pink-pale); }
.bg-cream     { background: var(--cream); }
.bg-ink       { background: var(--ink); }
.text-pink    { color: var(--pink-deep); }
.text-orange  { color: var(--orange); }

/* ══════════════════════════════════════
   PRELOADER
══════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
#preloader.exit {
  opacity: 0; transform: scale(1.04); pointer-events: none;
}
.pl-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
}
.pl-logo em { color: var(--pink); font-style: italic; }
.pl-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: -1.5rem;
}
.pl-bar-wrap {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px; overflow: hidden;
}
.pl-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transition: width 0.08s linear;
}
.pl-pct {
  font-size: 0.65rem; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.25); text-align: center;
}
.pl-dots {
  display: flex; gap: 0.4rem; margin-top: 0.5rem;
}
.pl-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--pink);
  animation: pl-pulse 1.4s ease-in-out infinite;
}
.pl-dot:nth-child(2) { animation-delay: 0.2s; background: var(--orange-soft); }
.pl-dot:nth-child(3) { animation-delay: 0.4s; background: var(--gold); }
@keyframes pl-pulse {
  0%,100% { opacity: 0.2; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.3); }
}

/* ══════════════════════════════════════
   PAGE TRANSITION
══════════════════════════════════════ */
#page-transition {
  position: fixed; inset: 0; z-index: 9999999;
  background: #0a0406;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
#page-transition.fade-in  { opacity: 1; pointer-events: all; }
#page-transition.fade-out { opacity: 0; pointer-events: none; }

/* ══════════════════════════════════════
   CURSOR  — GPU-accelerated, ringan
══════════════════════════════════════ */
*, *::before, *::after { cursor: none !important; }

/* Dot — ikuti mouse langsung, pakai transform */
#cur-dot {
  position: fixed; pointer-events: none; z-index: 999999;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.15s var(--ease-bounce),
              height 0.15s var(--ease-bounce),
              background 0.2s, opacity 0.2s;
}

/* Ring — lagging di belakang dot (lerp di JS) */
#cur-ring {
  position: fixed; pointer-events: none; z-index: 999998;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--pink-deep);
  transform: translate(-50%, -50%);
  will-change: transform;
  /* hanya transisi size & warna, BUKAN posisi (posisi dihandle JS) */
  transition: width 0.35s var(--ease-smooth),
              height 0.35s var(--ease-smooth),
              border-color 0.3s,
              background 0.3s,
              opacity 0.25s;
}

/* ── State: hover interaktif ── */
#cur-ring.hover {
  width: 52px; height: 52px;
  border-color: var(--orange-soft);
  background: rgba(249,115,22,0.07);
}
#cur-dot.hover {
  width: 5px; height: 5px;
  background: var(--orange-soft);
}

/* ── State: hover di image / card (ring jadi besar + blur) ── */
#cur-ring.hover-img {
  width: 70px; height: 70px;
  border-color: rgba(244,167,185,0.6);
  background: rgba(244,167,185,0.06);
}
#cur-dot.hover-img {
  width: 6px; height: 6px;
  background: var(--pink);
}

/* ── State: click flash ── */
#cur-ring.click {
  width: 22px; height: 22px;
  background: rgba(232,114,138,0.22);
  border-color: var(--pink-deep);
  transition: width 0.08s, height 0.08s, background 0.08s;
}
#cur-dot.click {
  width: 12px; height: 12px;
  background: var(--pink-deep);
  transition: width 0.08s, height 0.08s;
}

/* ── State: input/textarea saja (bar teks) ── */
#cur-ring.text-mode {
  width: 2px; height: 22px;
  border-radius: 2px;
  background: var(--pink-deep);
  border-color: transparent;
  transition: width 0.12s, height 0.12s, border-radius 0.12s, background 0.12s;
}
#cur-dot.text-mode {
  opacity: 0;
  width: 0; height: 0;
}

/* ── Label tooltip di samping cursor ── */
#cur-label {
  position: fixed; pointer-events: none; z-index: 999997;
  top: 0; left: 0;
  font-size: 0.63rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: white;
  background: var(--ink);
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translate(18px, -28px) scale(0.7);
  transition: opacity 0.2s, transform 0.25s var(--ease-bounce);
  will-change: transform;
}
#cur-label.show {
  opacity: 1;
  transform: translate(18px, -28px) scale(1);
}

/* ── Trail dots (dibuat via JS) ── */
.cur-trail {
  mix-blend-mode: screen;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar-lux {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  padding: 1.5rem 0;
  transition: var(--trans);
}
.navbar-lux.scrolled {
  background: rgba(255,251,245,0.96);
  backdrop-filter: blur(16px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--trans);
}
.navbar-lux.scrolled .nav-brand { color: var(--ink); }
.nav-brand span { color: var(--pink); font-style: italic; }
.navbar-lux.scrolled .nav-brand span { color: var(--pink-deep); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--trans);
  position: relative;
}
.navbar-lux.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px;
  left: 50%; right: 50%;
  height: 1.5px; background: var(--pink-deep);
  transition: left 0.3s var(--ease-smooth), right 0.3s var(--ease-smooth);
  border-radius: 1px;
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 1rem; right: 1rem; }
.nav-links a:hover { color: white; }
.navbar-lux.scrolled .nav-links a:hover { color: var(--pink-deep); }
.nav-links a.active { color: white; font-weight: 500; }
.navbar-lux.scrolled .nav-links a.active { color: var(--pink-deep); }

.nav-cta {
  background: linear-gradient(135deg, var(--pink-deep), var(--orange));
  color: white !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 16px rgba(232,114,138,0.35);
  transition: var(--trans) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,114,138,0.45) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: white; border-radius: 1px;
  transition: var(--trans);
}
.navbar-lux.scrolled .nav-toggle span { background: var(--ink); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1800&q=85') center/cover;
  opacity: 0.35;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,10,15,0.75) 0%,
    rgba(232,114,138,0.15) 50%,
    rgba(249,115,22,0.08) 100%
  );
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 8rem 2rem 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(244,167,185,0.4);
  background: rgba(244,167,185,0.08);
  backdrop-filter: blur(6px);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 2rem;
  animation: fade-up 0.8s var(--ease-smooth) 0.2s both;
}
.hero-badge i { color: var(--pink); font-size: 0.85rem; }
.hero-title {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  animation: fade-up 0.9s var(--ease-smooth) 0.35s both;
}
.hero-title em { color: var(--pink); font-style: italic; }
.hero-title .line2 { display: block; }
.hero-title .line2 em { color: var(--orange-soft); }
.hero-desc {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fade-up 0.9s var(--ease-smooth) 0.5s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fade-up 0.9s var(--ease-smooth) 0.65s both;
  margin-bottom: 4rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange) 100%);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 28px rgba(232,114,138,0.45);
  transition: var(--trans);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232,114,138,0.55);
  color: white;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 400;
  transition: var(--trans);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--pink);
  color: white;
  background: rgba(244,167,185,0.1);
}
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fade-up 0.9s var(--ease-smooth) 0.8s both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 500;
  color: var(--pink-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(1.15); opacity: 1; }
}

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.features-strip {
  background: var(--ink);
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(244,167,185,0.12);
}
.features-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.feat-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0 2rem;
  font-size: 0.83rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.feat-pill i { color: var(--pink); font-size: 1rem; }
.feat-sep { color: rgba(249,115,22,0.3); font-size: 0.55rem; }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s var(--ease-smooth),
              transform 0.8s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   SECTION INTRO / ABOUT PANEL
══════════════════════════════════════ */
.intro-img-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.intro-img-wrap:hover img { transform: scale(1.04); }
.intro-img-badge {
  position: absolute; bottom: 1.75rem; left: 1.75rem;
  background: rgba(26,10,15,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244,167,185,0.25);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: white;
}
.intro-img-badge .big { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--pink); line-height: 1; }
.intro-img-badge .sm  { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; margin-top: 2px; }

.fact-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.fact-row:last-child { border-bottom: none; }
.fact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--pink-pale), var(--orange-pale));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.15rem;
}
.fact-row h6 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--ink); }
.fact-row p  { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════
   STATS COUNTER SECTION
══════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--ink) 0%, #2D0A14 100%);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(244,167,185,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(249,115,22,0.06) 0%, transparent 60%);
}
.stat-card {
  text-align: center; position: relative; z-index: 1;
  padding: 2rem 1rem;
}
.stat-card::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(244,167,185,0.15);
}
.stat-card:last-child::after { display: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  background: linear-gradient(135deg, var(--pink-light), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   GALLERY GRID
══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.g-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--ink);
  box-shadow: var(--shadow-card);
}
.g-card img {
  width: 100%; height: 100%;
  min-height: 220px; object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
  display: block;
}
.g-card:hover img { transform: scale(1.08); }
.g-card.tall { grid-row: span 2; }
.g-card.wide { grid-column: span 2; }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,15,0.88) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s ease;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.g-card:hover .g-overlay { opacity: 1; }
.g-overlay h6 { color: white; font-size: 1rem; margin: 0 0 0.2rem; }
.g-overlay span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.g-overlay .g-icon {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem;
  transform: scale(0); transition: transform 0.3s var(--ease-bounce);
}
.g-card:hover .g-icon { transform: scale(1); }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
#lightbox {
  position: fixed; inset: 0; z-index: 99990;
  background: rgba(10,4,8,0.96);
  backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
#lightbox.active { display: flex; animation: lb-in 0.3s var(--ease-smooth); }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
#lb-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  object-fit: contain;
}
#lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: var(--trans);
}
#lb-close:hover { background: rgba(232,114,138,0.3); border-color: var(--pink); }
#lb-caption {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.88rem;
  text-align: center; letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   HIGHLIGHT CARDS
══════════════════════════════════════ */
.hl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--trans);
  height: 100%;
  position: relative; overflow: hidden;
}
.hl-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.hl-card:hover::before { transform: scaleX(1); }
.hl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.hl-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--pink-pale), var(--orange-pale));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  transition: var(--trans);
}
.hl-card:hover .hl-icon {
  background: linear-gradient(135deg, var(--pink-deep), var(--orange));
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(232,114,138,0.35);
}
.hl-card h5 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.hl-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(244,167,185,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--trans);
}
.testi-card:hover {
  background: rgba(244,167,185,0.06);
  border-color: rgba(244,167,185,0.3);
  transform: translateY(-4px);
}
.testi-stars { color: var(--orange-soft); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.8); line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 0.95rem;
  flex-shrink: 0;
}
.testi-name  { color: white; font-size: 0.92rem; font-weight: 500; margin: 0; }
.testi-from  { color: rgba(255,255,255,0.35); font-size: 0.75rem; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange) 100%);
  padding: 6rem 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -30%; left: -8%;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section h2 { color: white; }
.cta-section p  { color: rgba(255,255,255,0.75); }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: white;
  color: var(--pink-deep);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  color: var(--ink);
}
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white; background: transparent;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  transition: var(--trans);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white; color: white;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, var(--ink) 0%, #3D0E1F 100%);
  padding: 9rem 0 5rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1439130490301-25e322d88054?w=1200') center/cover;
  opacity: 0.1;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(232,114,138,0.12) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; }
.page-hero p  { color: rgba(255,255,255,0.5); font-size: 1rem; margin-top: 0.75rem; }
.breadcrumb-lux {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.breadcrumb-lux a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb-lux a:hover { color: var(--pink-light); }
.breadcrumb-lux .sep { color: rgba(255,255,255,0.2); font-size: 0.65rem; }
.breadcrumb-lux .cur { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--ink-soft); margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.form-control, .form-select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem; font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  transition: var(--trans);
  outline: none;
  appearance: none;
}
.form-control:focus, .form-select:focus {
  border-color: var(--pink-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,114,138,0.12);
  transform: translateY(-1px);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--pink-deep), var(--orange));
  color: white; border: none;
  padding: 1rem 2rem; border-radius: var(--radius-full);
  font-size: 1rem; font-weight: 500;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.03em;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  box-shadow: 0 6px 28px rgba(232,114,138,0.4);
  transition: var(--trans);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,114,138,0.5);
}
.btn-submit.loading { opacity: 0.75; pointer-events: none; }
.btn-submit.loading::after {
  content: '';
  display: inline-block;
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.alert-ok {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  color: #065f46;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
  animation: fade-up 0.5s var(--ease-smooth);
}
.alert-err {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #991b1b;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
  animation: fade-up 0.5s var(--ease-smooth);
}
.info-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  transition: var(--trans);
}
.info-item:hover {
  border-color: var(--border);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.info-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-deep), var(--orange));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.05rem;
}
.info-item h6 { font-size: 0.75rem; color: var(--muted); margin: 0 0 0.2rem; font-weight: 400; font-family: 'Jost'; }
.info-item p  { margin: 0; font-size: 0.9rem; font-weight: 500; color: var(--ink); }

/* ══════════════════════════════════════
   BUKU TAMU
══════════════════════════════════════ */
.guest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--trans);
}
.guest-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(232,114,138,0.3);
  transform: translateY(-3px);
}
.guest-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.guest-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-deep), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 1rem;
}
.guest-name { font-weight: 600; font-size: 0.95rem; margin: 0; }
.guest-meta { font-size: 0.75rem; color: var(--muted); }
.guest-stars { color: var(--orange); font-size: 0.8rem; margin-bottom: 0.6rem; }
.guest-msg   { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.about-grid img { border-radius: var(--radius-md); width: 100%; height: 200px; object-fit: cover; }
.about-grid .wide { grid-column: span 2; height: 260px; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--pink-deep), var(--orange));
}
.tl-item { position: relative; margin-bottom: 1.75rem; }
.tl-item::before {
  content: ''; position: absolute;
  left: -1.7rem; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); border: 2px solid white;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
}
.tl-item h6 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.tl-item p  { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ══════════════════════════════════════
   GALLERY PAGE (full)
══════════════════════════════════════ */
.gp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
}
.gp-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink); position: relative;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.gp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-smooth); }
.gp-card:hover img { transform: scale(1.07); }
.gp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,15,0.85), transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gp-card:hover .gp-overlay { opacity: 1; }
.gp-overlay h6  { color: white; margin: 0 0 0.2rem; }
.gp-overlay span{ color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  border: 1.5px solid var(--border);
  background: transparent; color: var(--muted);
  padding: 0.5rem 1.25rem; border-radius: var(--radius-full);
  font-size: 0.85rem; font-family: 'Jost', sans-serif;
  transition: var(--trans);
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--pink-deep), var(--orange));
  border-color: transparent; color: white;
  box-shadow: 0 4px 16px rgba(232,114,138,0.35);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-lux {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(244,167,185,0.1);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem; color: white; font-weight: 400;
  display: block; margin-bottom: 0.75rem;
}
.footer-brand-name em { color: var(--pink); }
.footer-desc { font-size: 0.88rem; line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.social-wrap { display: flex; gap: 0.65rem; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.95rem;
  transition: var(--trans);
}
.soc-btn:hover {
  background: linear-gradient(135deg, var(--pink-deep), var(--orange));
  border-color: transparent; color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232,114,138,0.35);
}
.footer-heading {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  font-weight: 600; margin-bottom: 1.25rem; font-family: 'Jost';
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  transition: color 0.25s; display: flex; align-items: center; gap: 0.35rem;
}
.footer-links a:hover { color: var(--pink-light); padding-left: 3px; }
.footer-links a i { font-size: 0.6rem; color: var(--orange); }
.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem; line-height: 1.5;
}
.footer-contact-list i { color: var(--pink); margin-top: 2px; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,0.07); margin: 3rem 0 1.5rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); margin: 0; }

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 5rem; right: 2rem; z-index: 8000;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--orange));
  color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(232,114,138,0.45);
  opacity: 0; transform: translateY(20px);
  transition: var(--trans);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232,114,138,0.55); }

/* ══════════════════════════════════════
   WHATSAPP FLOATING
══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 8000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--trans);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.08); }
}
.wa-tooltip {
  position: absolute; right: 66px; top: 50%;
  transform: translateY(-50%);
  background: var(--ink); color: white;
  font-size: 0.78rem; padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════
   ADMIN
══════════════════════════════════════ */
.admin-sidebar { background: var(--ink); min-height: 100vh; padding: 1.5rem 0; }
.admin-brand { padding: 1rem 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1rem; }
.admin-brand span { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; font-weight: 500; }
.admin-brand em { color: var(--pink); }
.admin-nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.9rem;
  text-decoration: none; transition: var(--trans);
}
.admin-nav-link:hover, .admin-nav-link.active {
  color: white; background: rgba(232,114,138,0.12);
  border-right: 3px solid var(--pink-deep);
}
.admin-nav-link i { font-size: 1.05rem; }
.admin-main { background: #f8f5f6; min-height: 100vh; }
.stat-widget {
  background: white; border-radius: var(--radius-md);
  padding: 1.5rem; border-left: 4px solid var(--pink-deep);
  box-shadow: var(--shadow-card);
}
.stat-widget.orange { border-left-color: var(--orange); }
.stat-widget.gold   { border-left-color: var(--gold); }
.stat-widget h3 { font-size: 2rem; color: var(--ink); margin: 0; }
.stat-widget p  { font-size: 0.82rem; color: var(--muted); margin: 0; }
.admin-table { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.admin-table th { background: #fdf5f7; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 500; border: none; padding: 1rem 1.25rem; }
.admin-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid #faf0f3; font-size: 0.9rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════
   BADGE / TAG
══════════════════════════════════════ */
.badge-pink   { background: var(--pink-pale); color: var(--pink-deep); font-size: 0.73rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-full); font-weight: 500; }
.badge-orange { background: var(--orange-pale); color: var(--orange); font-size: 0.73rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-full); font-weight: 500; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 0; background: rgba(26,10,15,0.97); backdrop-filter: blur(16px); justify-content: center; align-items: center; gap: 1.5rem; z-index: 8999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; color: white !important; }
  .nav-links a.nav-cta { background: linear-gradient(135deg, var(--pink-deep), var(--orange)); color: white !important; padding: 0.7rem 2rem !important; border-radius: var(--radius-full) !important; }
  .nav-toggle { display: flex; z-index: 9001; position: relative; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .tall { grid-row: span 1; }
  .gallery-grid .wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .hero-stats { gap: 2rem; }
  .section-py { padding: 4rem 0; }
  .stat-card::after { display: none; }
  .about-grid .wide { height: 180px; }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-stats > div { min-width: 40%; }
  .contact-card { padding: 1.75rem; }
  .wa-float { bottom: 1.5rem; right: 1.5rem; }
  .back-top { bottom: 4.5rem; right: 1.5rem; }
}
