/* ============================================================
   FRANK PHOTOGRAPHY — LUXURY UPGRADE CSS
   Extends style.css with premium enhancements
   ============================================================ */

/* NOISE TEXTURE OVERLAY */
.noise-overlay::after {
  content: '';
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
}

/* CURSOR GLOW */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* LUXURY HERO VIDEO */
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.45;
}

/* LIGHTBOX */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.97);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,0.4);
  background: none; color: var(--gold);
  font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-close:hover { background: rgba(201,169,110,0.1); border-color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid rgba(201,169,110,0.3);
  background: rgba(0,0,0,0.5); color: var(--gold);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(201,169,110,0.15); border-color: var(--gold); }
.lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.lightbox-counter {
  position: absolute; top: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.52rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}

/* AVAILABILITY BADGE */
.avail-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.52rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: #4CAF50; padding: 0.4rem 1rem;
  border: 1px solid rgba(76,175,80,0.3);
  background: rgba(76,175,80,0.05);
}
.avail-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #4CAF50;
  animation: availPulse 2s infinite;
}
@keyframes availPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.4); }
}

/* PULL QUOTE */
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  text-align: center;
  padding: 4rem;
  position: relative;
  line-height: 1.6;
}
.pull-quote::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold); opacity: 0.5;
  margin: 0 auto 2rem;
}
.pull-quote::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold); opacity: 0.5;
  margin: 2rem auto 0;
}

/* LUXURY BADGE ROW */
.luxury-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
  padding: 2rem 4rem;
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.luxury-badge {
  text-align: center;
}
.luxury-badge-num {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  display: block;
}
.luxury-badge-label {
  font-size: 0.5rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 0.3rem; display: block;
}
.luxury-badge-divider {
  width: 1px; height: 40px;
  background: rgba(201,169,110,0.15);
}

/* PACKAGE CARDS */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.08);
}
.pkg-card {
  background: var(--dark2);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.4s;
}
.pkg-card.featured {
  background: #141008;
  border: 1px solid rgba(201,169,110,0.3);
  margin: -1px;
}
.pkg-card:hover { background: #141414; }
.pkg-badge {
  display: inline-block;
  font-size: 0.45rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 0.25rem 0.7rem; margin-bottom: 1rem;
}
.pkg-name {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 300;
  color: var(--off-white); margin-bottom: 0.3rem;
}
.pkg-sub { font-size: 0.6rem; color: var(--muted); margin-bottom: 1.5rem; }
.pkg-price {
  font-family: var(--serif);
  font-size: 2.5rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.pkg-price-unit {
  font-size: 0.55rem; letter-spacing: 0.2em;
  color: var(--muted); display: block; margin: 0.3rem 0 1.5rem;
}
.pkg-divider {
  width: 100%; height: 1px;
  background: rgba(201,169,110,0.1);
  margin: 1.5rem 0;
}
.pkg-features { list-style: none; margin-bottom: 2rem; }
.pkg-features li {
  font-size: 0.65rem; color: var(--muted-light);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.06);
  display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5;
}
.pkg-features li::before {
  content: '✓'; color: var(--gold); opacity: 0.7;
  font-size: 0.6rem; flex-shrink: 0; margin-top: 0.1rem;
}

/* EXIT INTENT POPUP */
.exit-popup {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.85);
  display: none; align-items: center; justify-content: center;
}
.exit-popup.show { display: flex; }
.exit-popup-inner {
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 4rem; max-width: 540px; width: 90%;
  position: relative; text-align: center;
}
.exit-popup-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,169,110,0.1));
}
.exit-popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--muted);
  font-size: 1.2rem; cursor: pointer;
}

/* STICKY NAV CTA */
.nav-sticky-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-sticky-cta:hover { background: var(--gold-light); }

/* INCOME BADGE */
.service-income {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.5rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,169,110,0.25);
  padding: 0.3rem 0.8rem; margin-top: 1rem;
}

/* STEP CARDS */
.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.08);
}
.step-card {
  background: var(--dark2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.step-card:hover { background: #141414; }
.step-card-num {
  font-family: var(--serif);
  font-size: 4rem; font-weight: 300;
  color: rgba(201,169,110,0.1);
  line-height: 1; margin-bottom: 1.2rem;
}
.step-card-title {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 400;
  color: var(--off-white); margin-bottom: 0.6rem;
}
.step-card-body {
  font-size: 0.65rem; color: var(--muted); line-height: 1.9;
}
.step-card-tag {
  font-size: 0.48rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7; margin-bottom: 0.6rem;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .step-cards { grid-template-columns: 1fr; }
  .luxury-badges { gap: 1.5rem; padding: 2rem; }
  .luxury-badge-divider { display: none; }
  .pull-quote { padding: 3rem 2rem; }
}
