/* ============================================
   style.css — Public Portfolio Styles
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:    #C9A96E;      /* vibrant feminine blue */
  --rose-lt: #E8D5B0;      /* soft icy blue */
  --blush:   #2A1A20;      /* deep blue-black */
  --petal:   #0C080A;      /* rich black */
  --nude:    #1A0F14;      /* dark navy cards */
  --white:   #FFF8F2;      /* clean white */
  --ink:     #F2EAE1;      /* soft blue-white text */
  --muted:   #A08878;      /* muted cool blue */
  --border:  #2E1A22;      /* elegant navy border */
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--petal); color: var(--ink); min-height: 100vh; opacity: 0; transition: opacity 0.4s ease; }
body.ready { opacity: 1; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 60px;
}
.nav-logo { font-family: var(--serif); font-size: 1.2rem; color: var(--rose); text-decoration: none; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--rose); }

/* ── Hero ── */
.hero {
  background: #110A0E; border-bottom: 1px solid var(--border);
  padding: 4rem 2rem 3.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%); pointer-events: none; }
.hero::after  { content: ''; position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%); opacity: 0.5; pointer-events: none; }

.avatar-wrap { position: relative; display: inline-block; margin-bottom: 1.5rem; }
.avatar { width: 110px; height: 110px; border-radius: 50%; background: var(--nude); border: 3px solid var(--rose-lt); display: flex; align-items: center; justify-content: center; overflow: hidden; margin: 0 auto; font-size: 2.5rem; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.online-dot { position: absolute; bottom: 6px; right: 6px; width: 14px; height: 14px; border-radius: 50%; background: #4CAF80; border: 2px solid #110A0E; }

.hero-tag { display: inline-block; background: rgba(201,169,110,0.12); color: var(--rose); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; border: 1px solid var(--rose-lt); margin-bottom: 1rem; }
.hero h1 { font-family: var(--serif); font-size: 3rem; font-weight: 500; font-style: italic; color: var(--white); line-height: 1.1; margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.hero p { font-size: 1rem; color: var(--muted); max-width: 380px; margin: 0 auto 1.75rem; line-height: 1.7; }

/* ── Socials ── */
.socials { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.soc-btn { display: flex; align-items: center; gap: 7px; padding: 8px 18px; border-radius: 30px; border: 1.5px solid var(--border); background: var(--nude); color: var(--ink); font-size: 0.82rem; font-weight: 500; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.soc-btn:hover { border-color: var(--rose); color: var(--rose); background: rgba(201,169,110,0.1); }
.soc-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Section layout ── */
.section { padding: 3.5rem 2rem; max-width: 900px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 0.5rem; }
.section-head h2 { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; color: var(--white); }

/* ── Gallery ── */
#gallery { background: #0C080A; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media(max-width:600px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }

.thumb { aspect-ratio: 1; border-radius: 12px; background: var(--nude); border: 1px solid var(--border); overflow: hidden; cursor: pointer; display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.2s; }
.thumb:hover { transform: scale(1.03); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-placeholder { font-size: 2rem; color: var(--rose-lt); }
.thumb-badge { position: absolute; bottom: 8px; right: 8px; background: rgba(201,169,110,0.85); color: var(--white); font-size: 0.68rem; font-weight: 500; padding: 2px 8px; border-radius: 10px; }
.video-badge { background: rgba(13,13,13,0.85); left: 8px; right: auto; }
.thumb:has(.video-badge)::before { content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 1.6rem; color: rgba(255,255,255,0.9); text-shadow: 0 2px 8px rgba(0,0,0,0.4); pointer-events: none; z-index: 1; }

/* ── Lightbox ── */
/* ── Fullscreen Lightbox ── */
.lightbox-overlay { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(12,8,10,0.97); flex-direction: column; align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lb-close-btn { position: fixed; top: 16px; right: 16px; z-index: 102; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; backdrop-filter: blur(4px); }
.lb-close-btn:hover { background: var(--rose); border-color: var(--rose); }
.lb-img { width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lb-img img { max-width: 100vw; max-height: 100vh; width: auto; height: auto; object-fit: contain; display: block; }
.lb-img video { max-width: 100vw; max-height: 100vh; object-fit: contain; }
.lb-placeholder-emoji { font-size: 5rem; }
.lb-social-prompt { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(12,8,10,0.88)); padding: 2rem 1.5rem 1.25rem; text-align: center; z-index: 101; }
.lb-social-prompt p { font-family: var(--serif); font-size: 0.95rem; color: var(--rose-lt); margin-bottom: 0.75rem; }

/* ── Pricing ── */
#pricing { background: #110A0E; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.price-card { background: var(--nude); border-radius: 16px; border: 1px solid var(--border); padding: 1.75rem 1.5rem; text-align: center; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,169,110,0.15); }
.price-card.featured { border-color: var(--rose); border-width: 2px; }
.featured-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--rose); color: var(--white); font-size: 0.7rem; font-weight: 500; padding: 3px 14px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; }
.price-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.price-card h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--white); margin-bottom: 0.4rem; }
.price-amount { font-size: 2rem; font-weight: 500; color: var(--rose); margin-bottom: 0.25rem; }
.price-unit { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.25rem; }
.price-features { list-style: none; margin-bottom: 1.5rem; }
.price-features li { font-size: 0.85rem; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.price-features li:last-child { border-bottom: none; }
.check { color: var(--rose); }
.price-btn { display: block; width: 100%; padding: 10px; border-radius: 30px; background: rgba(201,169,110,0.12); color: var(--rose); border: 1.5px solid var(--rose-lt); font-size: 0.85rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.price-btn:hover, .price-card.featured .price-btn { background: var(--rose); color: var(--white); border-color: var(--rose); }

/* ── About ── */
#about { background: #0C080A; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media(max-width:640px) { .about-inner { grid-template-columns: 1fr; gap: 1.5rem; } }
.about-img { aspect-ratio: 4/5; border-radius: 18px; background: var(--nude); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: var(--serif); font-size: 1.8rem; color: var(--white); margin-bottom: 1rem; }
.about-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.stat-row { display: flex; gap: 2rem; margin-top: 1.5rem; }
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2rem; color: var(--rose); font-weight: 600; }
.stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Contact ── */
#contact { background: #0C080A; }
#contact .section-eyebrow { color: var(--rose-lt); }
#contact .section-head h2 { color: var(--white); }
.contact-socials { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.contact-soc { display: flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 30px; border: 1px solid var(--border); background: var(--nude); color: var(--ink); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.contact-soc:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.contact-soc svg { width: 16px; height: 16px; }
.footer-note { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.25); padding-top: 2rem; border-top: 1px solid var(--border); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media(prefers-reduced-motion:reduce) { .reveal { opacity: 1; transform: none; } }


/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

@media (max-width: 768px) {

  /* Nav */
  nav {
    padding: 0 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-links a {
    font-size: 0.75rem;
  }

  /* Hero */
  .hero {
    padding: 2.5rem 1rem 2rem;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .socials {
    gap: 8px;
  }
  .soc-btn {
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  /* Section */
  .section {
    padding: 2.5rem 1rem;
  }
  .section-head h2 {
    font-size: 1.5rem;
  }

  /* Gallery — 2 columns on mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Lightbox */
  .lightbox {
    max-width: 100%;
    border-radius: 12px;
  }
  .lb-bar {
    padding: 0.75rem 1rem;
  }

  /* Pricing — single column on mobile */
  .price-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* About — stack vertically */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-img {
    aspect-ratio: 3/2;
    max-height: 260px;
  }
  .about-text h2 {
    font-size: 1.5rem;
  }
  .stat-row {
    gap: 1.5rem;
  }
  .stat-num {
    font-size: 1.6rem;
  }

  /* Contact */
  .contact-socials {
    gap: 8px;
  }
  .contact-soc {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .nav-links {
    gap: 0.6rem;
  }
  .soc-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}


/* ============================================
   BOOKING MODAL
   ============================================ */

#bookingModal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: rgba(5, 7, 13, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.booking-card {
  background: #1A0F14;
  border-radius: 20px;
  max-width: 360px;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.booking-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--nude);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.booking-close:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.booking-emoji {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.booking-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.booking-card > p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.booking-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: #0C080A;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  text-align: left;
}

.booking-link:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.booking-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .booking-card {
    padding: 1.5rem 1rem 1rem;
    max-width: 100%;
  }
  .booking-card h3 { font-size: 1.1rem; }
  .booking-link { font-size: 0.8rem; padding: 9px 14px; }
}


/* ============================================
   NEW FEATURES CSS
   ============================================ */

/* ── Scroll Progress Bar ── */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, #C9A96E, #E8D5B0);
  z-index: 9999; width: 0%; transition: width 0.1s;
  box-shadow: 0 0 8px rgba(201,169,110,0.6);
}

/* ── Custom Cursor ── */
#cursorDot {
  position: fixed; top: -6px; left: -6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #C9A96E; pointer-events: none;
  z-index: 9998; transition: transform 0.05s;
}
#cursorGlow {
  position: fixed; top: -20px; left: -20px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,0.5);
  pointer-events: none; z-index: 9997;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
#cursorGlow.hovering {
  width: 60px; height: 60px; top: -30px; left: -30px;
  border-color: rgba(201,169,110,0.9);
  background: rgba(201,169,110,0.06);
}
#cursorDot.clicking { transform: translate(var(--x), var(--y)) scale(0.6); }

/* ── View Counter ── */
.view-counter {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; color: var(--muted);
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 1.25rem;
}

/* ── Typing Cursor ── */
.typing-cursor {
  display: inline-block; color: var(--rose);
  animation: blink 0.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Gallery PIN Lock ── */
.gallery-lock-card {
  grid-column: span 2; background: var(--nude);
  border: 1.5px dashed var(--border); border-radius: 14px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 2rem; text-align: center;
  gap: 8px;
}
.lock-icon-big { font-size: 2.5rem; }
.lock-text { font-family: var(--serif); font-size: 1.1rem; color: var(--white); }
.lock-sub { font-size: 0.82rem; color: var(--muted); }
.lock-input-row { display: flex; gap: 8px; margin-top: 4px; }
.lock-input-row input {
  padding: 9px 14px; border-radius: 30px;
  border: 1px solid var(--border); background: #0C080A;
  color: var(--white); font-family: var(--sans); font-size: 0.85rem;
  outline: none; text-align: center; width: 120px;
}
.lock-input-row input:focus { border-color: var(--rose); }
.lock-input-row button {
  padding: 9px 18px; border-radius: 30px;
  background: var(--rose); color: var(--white);
  border: none; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; font-family: var(--sans);
  transition: opacity 0.2s;
}
.lock-input-row button:hover { opacity: 0.85; }
.lock-error { font-size: 0.78rem; color: #ff6b6b; min-height: 16px; }

/* ── Testimonials ── */
#reviews { background: #110A0E; }
.testimonials-wrap {
  display: flex; align-items: center; gap: 12px; position: relative;
}
.testimonials-viewport {
  flex: 1; overflow: hidden; border-radius: 16px;
}
.testimonials-track {
  display: flex; transition: transform 0.4s ease;
}
.testimonial-card {
  min-width: 100%; padding: 2rem 2.5rem;
  background: var(--nude); border-radius: 16px;
  border: 1px solid var(--border); text-align: center;
}
.testimonial-stars { color: #C9A96E; font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-text {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--white); line-height: 1.7; margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.t-arrow {
  background: var(--nude); border: 1px solid var(--border);
  color: var(--ink); width: 40px; height: 40px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; flex-shrink: 0;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.t-arrow:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }
.t-dots { display: flex; gap: 6px; justify-content: center; margin-top: 1.25rem; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all 0.2s;
}
.t-dot.active { background: var(--rose); width: 22px; border-radius: 4px; }

/* ── Floating WhatsApp ── */
#floatingWA {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
#floatingWA:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
#floatingWA svg { width: 26px; height: 26px; }

/* ── Music Player ── */
#musicPlayer {
  position: fixed; bottom: 90px; right: 24px; z-index: 500;
}
#musicBtn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 30px;
  background: rgba(26,15,20,0.92); border: 1px solid var(--border);
  color: var(--ink); font-size: 0.8rem; font-family: var(--sans);
  cursor: pointer; backdrop-filter: blur(8px);
  transition: all 0.2s; white-space: nowrap;
}
#musicBtn:hover { border-color: var(--rose); color: var(--rose); }


/* ── Thumb blur effect ── */
.thumb-blurred .thumb-img-blur,
.thumb-blurred video {
  filter: blur(8px) brightness(0.7);
  transition: filter 0.3s ease;
}
.thumb-blurred::after {
  content: '👁 Tap to reveal';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(0,0,0,0.5);
  padding: 5px 10px;
  border-radius: 20px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}
.thumb-locked {
  filter: blur(10px) brightness(0.5);
  pointer-events: none;
}

/* ── Fix floating WhatsApp ── */
#floatingWA {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 400 !important;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
#floatingWA:hover { transform: scale(1.1); }

/* ── Fix music player position ── */
#musicPlayer {
  position: fixed !important;
  bottom: 88px !important;
  right: 20px !important;
  z-index: 400 !important;
}


/* ============================================
   SPLASH SCREEN
   ============================================ */

#splashScreen {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--petal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#splashScreen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-inner {
  text-align: center;
  padding: 2rem;
}

.splash-logo {
  font-size: 2.5rem;
  color: var(--rose);
  margin-bottom: 1rem;
  animation: splashPulse 1.5s ease-in-out infinite;
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.7; }
}

.splash-name {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.splash-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.splash-bar {
  width: 160px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.splash-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #C9A96E, #E8D5B0);
  border-radius: 2px;
  animation: splashLoad 1.8s ease forwards;
}

@keyframes splashLoad {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}


/* ── Announcement Banner ── */
#announcementBanner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: linear-gradient(90deg, #C9A96E, #E8D5B0);
  color: #0C080A; padding: 10px 50px 10px 1rem;
  text-align: center; font-size: 0.85rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; line-height: 1.4;
}
#announcementBanner.show { display: flex; }
#bannerClose {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.15); border: none; color: #0C080A;
  width: 24px; height: 24px; border-radius: 50%; font-size: 0.75rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s;
}
#bannerClose:hover { background: rgba(0,0,0,0.3); }
/* Push nav down when banner is visible */
body.banner-visible nav { top: 41px; }
body.banner-visible #splashScreen { padding-top: 41px; }


/* ── Enquiry Form ── */
#enquiry { background: #110A0E; border-top: 1px solid var(--border); }

.enquiry-form {
  max-width: 560px;
  margin: 0 auto;
}

.field-wrap {
  margin-bottom: 12px;
}

.field-wrap input,
.field-wrap textarea,
.field-wrap select {
  width: 100%;
  padding: 12px 16px;
  background: var(--nude);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.field-wrap input::placeholder,
.field-wrap textarea::placeholder { color: var(--muted); }
.field-wrap input:focus,
.field-wrap textarea:focus,
.field-wrap select:focus { border-color: var(--rose); }

.field-wrap select option { background: var(--nude); }

.enq-submit {
  width: 100%;
  padding: 13px;
  background: var(--rose);
  color: var(--petal);
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}
.enq-submit:hover { opacity: 0.85; }
.enq-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.enq-status {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 10px;
  min-height: 20px;
}


/* ── Stories Bar ── */
.stories-bar {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: nowrap; overflow-x: auto; padding: 0 1rem 1.5rem;
  scrollbar-width: none; margin-bottom: 0.5rem;
}
.stories-bar::-webkit-scrollbar { display: none; }

.story-circle {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; cursor: pointer; flex-shrink: 0;
}

.story-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-lt));
  padding: 2.5px; transition: transform 0.2s;
}
.story-ring:hover { transform: scale(1.08); }
.story-ring img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--petal);
}
.story-video-thumb {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--nude); border: 2px solid var(--petal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--rose);
}
.story-circle.seen .story-ring {
  background: var(--border);
}
.story-label {
  font-size: 0.68rem; color: var(--muted);
  text-align: center; max-width: 64px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ── Stories Viewer ── */
#storiesViewer {
  position: fixed; inset: 0; z-index: 500;
  background: #000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

.sv-progress {
  position: absolute; top: 12px; left: 12px; right: 12px;
  display: flex; gap: 4px; z-index: 2;
}
.sv-prog-bar {
  flex: 1; height: 3px; background: rgba(255,255,255,0.3);
  border-radius: 2px; overflow: hidden;
}
.sv-prog-fill { height: 100%; background: var(--white); width: 0%; }
.sv-prog-fill.done { width: 100%; }
.sv-prog-fill.active { animation: progFill 5s linear forwards; }
@keyframes progFill { from { width: 0%; } to { width: 100%; } }

.sv-close {
  position: absolute; top: 20px; right: 16px; z-index: 3;
  background: rgba(255,255,255,0.15); border: none;
  color: #fff; width: 36px; height: 36px; border-radius: 50%;
  font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.sv-media { width: 100%; display: flex; align-items: center; justify-content: center; }

.sv-caption {
  position: absolute; bottom: 2rem; left: 1rem; right: 1rem;
  text-align: center; color: var(--white);
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.sv-tap-left, .sv-tap-right {
  position: absolute; top: 0; bottom: 0; width: 40%;
  z-index: 1; cursor: pointer;
}
.sv-tap-left  { left: 0; }
.sv-tap-right { right: 0; }


/* ── Countdown Timer ── */
.countdown-wrap {
  margin-top: 1.5rem;
  text-align: center;
}
.countdown-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem;
}
.countdown-boxes {
  display: flex; gap: 8px; justify-content: center; align-items: center;
}
.countdown-box {
  background: var(--nude); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px; min-width: 58px;
  text-align: center;
}
.countdown-box span {
  display: block; font-family: var(--serif);
  font-size: 1.8rem; font-weight: 600; color: var(--rose); line-height: 1;
}
.countdown-box small {
  font-size: 0.62rem; color: var(--muted); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 3px; display: block;
}
.countdown-sep {
  font-size: 1.5rem; color: var(--rose); font-weight: 600; margin-bottom: 12px;
}

/* ── Booking modal WhatsApp primary button ── */
.booking-wa-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: 30px;
  background: #25D366; color: #fff;
  font-size: 0.92rem; font-weight: 600;
  text-decoration: none; margin-bottom: 12px;
  transition: opacity 0.2s;
}
.booking-wa-primary:hover { opacity: 0.88; }

.booking-divider {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.booking-divider::before,
.booking-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.booking-divider span { font-size: 0.72rem; color: var(--muted); white-space: nowrap; }


/* ── Instagram-style story ring on avatar ── */
.avatar-wrap.has-story .avatar {
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.avatar-wrap.has-story::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-lt), var(--rose));
  z-index: 0;
  animation: storyPulse 2s ease-in-out infinite;
}

.avatar-wrap.has-story .avatar {
  position: relative;
  z-index: 1;
  border: 3px solid var(--petal);
}

.avatar-wrap.has-story:hover::before {
  animation: none;
  background: linear-gradient(135deg, var(--rose-lt), var(--rose));
}

@keyframes storyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.75; transform: scale(1.04); }
}

/* Hide old stories bar */
.stories-bar { display: none !important; }


/* ── Avatar Story Ring ── */
.avatar-wrap.has-story {
  padding: 3px;
  background: linear-gradient(135deg, #C9A96E, #E8D5B0, #C9A96E);
  border-radius: 50%;
}

.avatar-wrap.has-story .avatar {
  border: 2px solid var(--petal);
}

.avatar-wrap.stories-seen {
  background: var(--border);
}

/* Hide old stories bar */
.stories-bar { display: none !important; }

/* Story count badge */
.story-count-badge {
  position: absolute;
  bottom: 2px; right: 2px;
  background: var(--rose);
  color: var(--petal);
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--petal);
  z-index: 2;
}