*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-primary, #0a0a0a); color: var(--text-primary, #e8e0d0); font-family: 'DM Sans', 'Inter', sans-serif; }

.font-playfair { font-family: 'Cormorant Garamond', 'Playfair Display', serif; }
.gold-text {
  background: linear-gradient(135deg, #d4af37 0%, #f5d76e 50%, #d4af37 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

#header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, backdrop-filter .3s; }
#header.scrolled { background: var(--nav-scrolled-bg, rgba(10,10,10,.92)); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(212,175,55,.12); }
.nav-link { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 300; color: var(--text-nav, rgba(232,224,208,.6)); transition: color .2s; text-decoration: none; }
.nav-link:hover { color: #d4af37; }
.hdr-cta {
  align-items: center; gap: 8px;
  padding: 10px 22px; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  border: 1px solid #d4af37; color: #d4af37; border-radius: 2px; text-decoration: none;
  transition: background .2s, color .2s;
}
.hdr-cta:hover { background: #d4af37; color: #000; }

.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(212,175,55,.6); }
.label-dot { width: 6px; height: 6px; background: #d4af37; border-radius: 999px; }
.divider-gold { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, #d4af37, transparent); margin: 0 auto 20px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.pkg-hero {
  position: relative; min-height: 78vh;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: flex-end;
  padding: 120px 24px 80px;
}
.pkg-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,.95) 100%); }
.pkg-hero-inner { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; }
.back-link { display: inline-block; margin-bottom: 22px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(212,175,55,.65); text-decoration: none; transition: color .2s; }
.back-link:hover { color: #d4af37; }
.pkg-pill {
  display: inline-block; font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: #d4af37; padding: 6px 14px;
  border: 1px solid rgba(212,175,55,.5); border-radius: 999px;
  margin-bottom: 22px;
}

.info-bar { background: var(--bg-secondary, #0d0d0c); border-top: 1px solid var(--card-border, rgba(212,175,55,.1)); border-bottom: 1px solid var(--card-border, rgba(212,175,55,.1)); padding: 26px 0; }
.info-item { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.info-lbl { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted, rgba(232,224,208,.45)); }
.info-val { font-family: 'Cormorant Garamond', 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--text-primary, #fff); }
.info-val.gold { color: #d4af37; }
.info-val small { font-size: .65rem; font-family: 'DM Sans', 'Inter', sans-serif; color: var(--text-muted, rgba(232,224,208,.5)); margin-left: 4px; }

.timeline { display: flex; flex-direction: column; gap: 22px; }
.day {
  display: flex; gap: 24px; align-items: stretch;
  background: var(--bg-card, rgba(20,20,20,.55));
  border: 1px solid var(--card-border, rgba(212,175,55,.15));
  border-radius: 4px; padding: 28px;
  transition: border-color .25s;
}
.day:hover { border-color: rgba(212,175,55,.5); }
.day-num {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: #d4af37; flex-shrink: 0; min-width: 70px;
  line-height: 1;
}
.day-title { font-family: 'Cormorant Garamond', 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--text-primary, #fff); margin-bottom: 14px; }
.day-list { list-style: none; }
.day-list li { font-size: .9rem; color: var(--text-secondary, rgba(232,224,208,.72)); line-height: 1.65; margin-bottom: 8px; padding-left: 20px; position: relative; }
.day-list li::before { content: '✦'; position: absolute; left: 0; color: #d4af37; }

.inc { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--bg-card, rgba(20,20,20,.55)); border: 1px solid var(--card-border, rgba(212,175,55,.12)); border-radius: 4px; }
.inc-i { color: #d4af37; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.inc b { display: block; color: var(--text-primary, #fff); font-weight: 600; font-size: .95rem; margin-bottom: 4px; }
.inc p { color: var(--text-secondary, rgba(232,224,208,.6)); font-size: .82rem; line-height: 1.5; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: 4px; transition: transform .4s ease, opacity .3s; }
.gallery img:hover { transform: scale(1.03); }

.cta-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 38px; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f5d76e); color: #000;
  border-radius: 2px; text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.cta-gold:hover { box-shadow: 0 8px 28px rgba(212,175,55,.35); transform: translateY(-2px); }

.mobile-nav { position: fixed; inset: 0; background: var(--mobile-nav-bg, rgba(10,10,10,.97)); z-index: 200; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-nav.open { display: flex; }
.mobile-link { color: var(--text-primary, #e8e0d0); font-size: 1.05rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; transition: color .2s; }
.mobile-link:hover { color: #d4af37; }

.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s; text-decoration: none;
}
.float-wa:hover { transform: scale(1.08); }

@media (max-width: 640px) {
  .day { flex-direction: column; gap: 12px; padding: 22px; }
  .day-num { font-size: 2rem; }
  .gallery img { height: 220px; }
}
