/* =====================================================
   spainpaharganj — Premium Animations System
   ===================================================== */

/* ─────────────────────────────────────────
   1. PAGE LOAD PROGRESS BAR
───────────────────────────────────────── */
.page-load-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-rose-gold-dark), var(--color-rose-gold), var(--color-rose-gold-dark));
  z-index: 99999;
  transition: width 0.3s ease, opacity 0.5s ease;
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.7);
  will-change: width;
}

/* ─────────────────────────────────────────
   2. CUSTOM CURSOR
───────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-rose-gold);
  z-index: 9999;
  transition: width 0.15s ease, height 0.15s ease, background 0.15s ease;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(197, 168, 128, 0.6);
  background: transparent;
  z-index: 9998;
  transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.25s ease,
              background 0.25s ease,
              opacity 0.25s ease;
}

.cursor-ring.is-hovering {
  width: 60px;
  height: 60px;
  border-color: var(--color-rose-gold);
  background: rgba(197, 168, 128, 0.07);
}

.cursor-dot.is-hovering {
  width: 6px;
  height: 6px;
  background: var(--color-rose-gold-dark);
}

/* Hide native cursor when custom cursor is active (JS adds class to body) */
body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor [role="button"] {
  cursor: none !important;
}

/* ─────────────────────────────────────────
   3. LOGO ANIMATIONS
───────────────────────────────────────── */

/* Shimmer sweep — header only */
.site-header .logo-main {
  background: linear-gradient(
    90deg,
    var(--color-brown-dark)      0%,
    var(--color-brown-dark)      20%,
    var(--color-rose-gold-dark)  42%,
    var(--color-rose-gold)       50%,
    var(--color-rose-gold-dark)  58%,
    var(--color-brown-dark)      80%,
    var(--color-brown-dark)      100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: logo-shimmer 6s ease-in-out infinite;
}

@keyframes logo-shimmer {
  0%   { background-position:  160% center; }
  50%  { background-position: -60%  center; }
  100% { background-position:  160% center; }
}

/* Sub-text breathe */
.site-header .logo-sub {
  animation: logo-sub-breathe 3.5s ease-in-out infinite alternate;
}

@keyframes logo-sub-breathe {
  0%   { opacity: 0.55; letter-spacing: 0.25em; }
  100% { opacity: 1;    letter-spacing: 0.32em; }
}

/* Footer logo override — no shimmer on dark bg */
.footer-brand .logo-main {
  background: none !important;
  -webkit-text-fill-color: var(--color-warm-white) !important;
  color: var(--color-warm-white) !important;
  animation: none !important;
}
.footer-brand .logo-sub {
  animation: none !important;
}

/* Letter wave — JS wraps each char in .logo-letter */
.logo-letter {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─────────────────────────────────────────
   4. HERO AMBIENT ORBS
───────────────────────────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 2;
}

.hero-orb-1 {
  width: clamp(260px, 36vw, 520px);
  height: clamp(260px, 36vw, 520px);
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  animation: orb-drift 15s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: clamp(180px, 24vw, 360px);
  height: clamp(180px, 24vw, 360px);
  background: radial-gradient(circle, rgba(143, 168, 155, 0.16) 0%, transparent 70%);
  bottom: 80px;
  left: 8%;
  animation: orb-drift 20s ease-in-out infinite alternate-reverse;
  animation-delay: -7s;
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(45px, -45px) scale(1.18); }
}

/* ─────────────────────────────────────────
   5. HERO FLOATING PARTICLES
───────────────────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.6);
  animation: particle-rise linear infinite;
}

@keyframes particle-rise {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 0.4; }
  100% { transform: translateY(-80px) rotate(600deg); opacity: 0; }
}

/* ─────────────────────────────────────────
   6. HERO DECORATIVE SVG ELEMENTS
───────────────────────────────────────── */
.hero-deco-svg {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.14;
}

/* Rotating lotus mandala */
.hero-deco-lotus {
  right: 4%;
  top: 6%;
  width: clamp(200px, 28vw, 420px);
  animation: lotus-rotate 48s linear infinite;
}

@media (max-width: 1024px) {
  .hero-deco-lotus {
    opacity: 0.07;
    width: clamp(140px, 22vw, 280px);
  }
}

@keyframes lotus-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Floating leaves */
.hero-deco-leaf-1 {
  left: 3%;
  bottom: 22%;
  width: 70px;
  opacity: 0.16;
  animation: leaf-sway 9s ease-in-out infinite;
}

.hero-deco-leaf-2 {
  left: 48%;
  top: 14%;
  width: 44px;
  opacity: 0.10;
  animation: leaf-sway 13s ease-in-out infinite reverse;
  animation-delay: -4s;
}

@keyframes leaf-sway {
  0%, 100% { transform: translate(0, 0) rotate(-14deg); }
  33%       { transform: translate(12px, -20px) rotate(8deg); }
  66%       { transform: translate(-7px, -10px) rotate(-5deg); }
}

/* ─────────────────────────────────────────
   7. HERO PRETITLE ANIMATED BADGE
───────────────────────────────────────── */
.hero-pretitle {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  padding: 6px 18px 6px 12px !important;
  background: rgba(197, 168, 128, 0.18);
  border: 1px solid rgba(197, 168, 128, 0.42);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: badge-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.hero-pretitle::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-rose-gold);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.65) translateY(-14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0   rgba(197,168,128,0.55); }
  50%       { transform: scale(1.5); box-shadow: 0 0 0 7px rgba(197,168,128,0); }
}

/* ─────────────────────────────────────────
   8. SVG WAVE DIVIDERS
───────────────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ─────────────────────────────────────────
   9. STATS / ACHIEVEMENT SECTION
───────────────────────────────────────── */
.stats-section {
  padding: 3.5rem 0;
  background: var(--color-brown-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 90% at 15% 50%, rgba(197,168,128,0.10) 0%, transparent 100%),
    radial-gradient(ellipse 55% 90% at 85% 50%, rgba(143,168,155,0.08) 0%, transparent 100%);
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(197, 168, 128, 0.15);
}

.stat-item:last-child { border-right: none; }

@media (max-width: 639px) {
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(197, 168, 128, 0.15); }
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--color-rose-gold);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
}

/* ─────────────────────────────────────────
   10. SCROLL REVEAL SYSTEM
───────────────────────────────────────── */
.reveal-target {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.75s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-target.is-revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   11. BUTTON RIPPLE
───────────────────────────────────────── */
.btn { position: relative; overflow: hidden; }

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-expand 0.65s linear;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

@keyframes ripple-expand {
  to { transform: scale(4.5); opacity: 0; }
}

/* ─────────────────────────────────────────
   12. NAV LINK STAGGER ENTRANCE
───────────────────────────────────────── */
@keyframes nav-slide-in {
  from { opacity: 0; transform: translateY(-9px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-menu li { animation: nav-slide-in 0.55s ease both; }
.nav-menu li:nth-child(1) { animation-delay: 0.05s; }
.nav-menu li:nth-child(2) { animation-delay: 0.12s; }
.nav-menu li:nth-child(3) { animation-delay: 0.19s; }
.nav-menu li:nth-child(4) { animation-delay: 0.26s; }
.nav-menu li:nth-child(5) { animation-delay: 0.33s; }
.nav-menu li:nth-child(6) { animation-delay: 0.40s; }
.nav-menu li:nth-child(7) { animation-delay: 0.47s; }
.nav-menu li:nth-child(8) { animation-delay: 0.54s; }

/* ─────────────────────────────────────────
   13. SECTION PRETITLE DECORATIVE LINES
───────────────────────────────────────── */
.section-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-pretitle::before,
.section-pretitle::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* ─────────────────────────────────────────
   14. SERVICE CARD SHINE EFFECT
───────────────────────────────────────── */
.service-card {
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
  border-radius: inherit;
}

.service-card:hover::after { opacity: 1; }

/* ─────────────────────────────────────────
   15. FEATURED PACKAGE CARD GLOW
───────────────────────────────────────── */
.package-card.featured {
  animation: featured-pulse 3s ease-in-out infinite alternate;
}

@keyframes featured-pulse {
  0%   { box-shadow: 0 0 20px rgba(197,168,128,0.12), 0 10px 30px rgba(92,77,68,0.06); }
  100% { box-shadow: 0 0 55px rgba(197,168,128,0.30), 0 15px 40px rgba(92,77,68,0.10); }
}

/* ─────────────────────────────────────────
   16. TESTIMONIAL CARD DECORATIVE QUOTE
───────────────────────────────────────── */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  right: 16px;
  font-family: var(--font-serif);
  font-size: 9rem;
  color: var(--color-rose-gold-light);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.testimonial-quote { position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   17. MOSAIC GALLERY — STAR HOVER ICON
───────────────────────────────────────── */
.mosaic-item::before {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  z-index: 10;
  transform: scale(0) rotate(-20deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}

.mosaic-item:hover::before {
  transform: scale(1) rotate(0deg);
}

/* ─────────────────────────────────────────
   18. SCROLL INDICATOR (hero bottom)
───────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  animation: hint-fade 2s ease 2s both;
}

@keyframes hint-fade {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-scroll-hint .scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(197,168,128,0.5);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-hint .scroll-mouse::after {
  content: '';
  width: 4px;
  height: 7px;
  background: var(--color-rose-gold);
  border-radius: 2px;
  animation: mouse-scroll 1.6s ease-in-out infinite;
}

@keyframes mouse-scroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(10px); opacity: 0; }
}

/* ─────────────────────────────────────────
   19. TREATMENT PILL SHIMMER BORDER
───────────────────────────────────────── */
.treatment-pill {
  position: relative;
}

.treatment-pill:hover {
  border-color: var(--color-rose-gold) !important;
}

/* ─────────────────────────────────────────
   20. HERO TITLE STAGGER ANIMATION
───────────────────────────────────────── */
.hero-title {
  animation: hero-title-in 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s both;
}

.hero-desc {
  animation: hero-title-in 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s both;
}

.hero-btns {
  animation: hero-title-in 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.8s both;
}

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────
   PREMIUM NAVBAR
───────────────────────────────────────────────────── */

/* ── Top accent bar ── */
.nav-top-bar {
  background: var(--color-brown-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 2rem;
  border-bottom: 1px solid rgba(197,168,128,0.12);
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  overflow: hidden;
  max-height: 40px;
}

.nav-top-text {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-top-phone {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  color: var(--color-rose-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-top-phone:hover {
  color: var(--color-rose-gold-dark);
}

/* Hide top bar when scrolled */
.site-header.scrolled .nav-top-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* ── Main header container ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  background: rgba(20, 13, 9, 0.0);
}

/* Scrolled: glass morphism */
.site-header.scrolled {
  background: rgba(20, 13, 9, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(197,168,128,0.14), 0 8px 32px rgba(0,0,0,0.25);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0.6rem;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  transition: transform 0.4s ease;
}

.logo:hover .logo-img {
  transform: scale(1.06);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* ── Desktop nav ── */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav { display: block; }
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  position: relative;
}

.nav-link-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
  transition: color 0.25s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link:hover .nav-link-label,
.nav-link.active .nav-link-label {
  color: var(--color-warm-white);
}

/* Animated dot indicator */
.nav-link-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-rose-gold);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
  opacity: 0;
  margin-top: 1px;
}

.nav-link:hover .nav-link-dot,
.nav-link.active .nav-link-dot {
  transform: scale(1);
  opacity: 1;
}

/* Extended underline on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-rose-gold), transparent);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Nav badges */
.nav-link-badge {
  position: absolute;
  top: 2px;
  right: 0px;
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(197,168,128,0.20);
  color: var(--color-rose-gold);
  border: 1px solid rgba(197,168,128,0.35);
  padding: 1px 5px;
  border-radius: 999px;
  line-height: 1.4;
  pointer-events: none;
}

.nav-badge-hot {
  background: rgba(220, 80, 60, 0.18);
  color: #e8845a;
  border-color: rgba(220, 80, 60, 0.3);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,80,60,0.3); }
  50%       { box-shadow: 0 0 0 4px rgba(220,80,60,0); }
}

/* ── Nav right actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Phone pill */
.nav-phone-pill {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(197,168,128,0.28);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.nav-phone-pill:hover {
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
  background: rgba(197,168,128,0.06);
}

@media (min-width: 1024px) {
  .nav-phone-pill { display: flex; }
}

/* Book CTA button with shimmer */
.nav-book-btn {
  display: none;
  position: relative;
  overflow: hidden;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.4rem;
  background: var(--color-rose-gold-dark);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(197,168,128,0.30);
}

.nav-book-btn:hover {
  background: var(--color-rose-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197,168,128,0.45);
}

.nav-book-shimmer {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.28),
    transparent
  );
  transform: skewX(-20deg);
  animation: shimmer-sweep 3.5s ease-in-out infinite;
}

@keyframes shimmer-sweep {
  0%   { left: -60%; }
  40%, 100% { left: 130%; }
}

@media (min-width: 900px) {
  .nav-book-btn { display: inline-flex; }
}

/* ── Animated Hamburger ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: rgba(197,168,128,0.10);
  border: 1px solid rgba(197,168,128,0.22);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-hamburger:hover {
  background: rgba(197,168,128,0.18);
  border-color: rgba(197,168,128,0.40);
}

@media (min-width: 1200px) {
  .nav-hamburger { display: none; }
}

.ham-line {
  display: block;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.80);
  transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1),
              opacity   0.25s ease,
              width     0.35s ease;
  transform-origin: center;
}

.ham-top { width: 22px; }
.ham-mid { width: 16px; }
.ham-bot { width: 22px; }

/* Open state: → X */
.nav-hamburger.is-open .ham-top {
  transform: translateY(6.5px) rotate(45deg);
  width: 22px;
}
.nav-hamburger.is-open .ham-mid {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-open .ham-bot {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 22px;
}

/* ── Full-screen mobile menu ── */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--color-brown-dark);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  clip-path: circle(0% at calc(100% - 60px) 60px);
  transition:
    clip-path  0.65s cubic-bezier(0.77, 0, 0.175, 1),
    opacity    0.3s ease,
    visibility 0s   linear 0.65s;
}

.fullscreen-menu.is-open {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  clip-path: circle(150% at calc(100% - 60px) 60px);
  transition:
    clip-path  0.65s cubic-bezier(0.77, 0, 0.175, 1),
    opacity    0.2s ease;
}

/* Ambient SVG background art */
.fsm-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}

.fsm-bg-art svg {
  width: 100%;
  height: 100%;
}

/* Close button */
.fsm-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(197,168,128,0.25);
  background: rgba(197,168,128,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.fsm-close:hover {
  background: rgba(197,168,128,0.18);
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
  transform: rotate(90deg);
}

/* Inner layout */
.fsm-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 5rem 2rem 2rem;
  max-width: 640px;
}

@media (min-width: 640px) {
  .fsm-inner { padding: 5rem 4rem 3rem; }
}

/* Logo inside menu */
.fsm-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.fsm-logo .logo-main {
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--color-warm-white);
}

.fsm-logo .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* Nav list */
.fsm-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(197,168,128,0.12);
}

.fsm-nav-item {
  border-bottom: 1px solid rgba(197,168,128,0.10);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              opacity   0.5s ease;
}

/* Stagger animation when menu opens */
.fullscreen-menu.is-open .fsm-nav-item:nth-child(1) { transition-delay: 0.12s; transform: none; opacity: 1; }
.fullscreen-menu.is-open .fsm-nav-item:nth-child(2) { transition-delay: 0.18s; transform: none; opacity: 1; }
.fullscreen-menu.is-open .fsm-nav-item:nth-child(3) { transition-delay: 0.24s; transform: none; opacity: 1; }
.fullscreen-menu.is-open .fsm-nav-item:nth-child(4) { transition-delay: 0.30s; transform: none; opacity: 1; }
.fullscreen-menu.is-open .fsm-nav-item:nth-child(5) { transition-delay: 0.36s; transform: none; opacity: 1; }
.fullscreen-menu.is-open .fsm-nav-item:nth-child(6) { transition-delay: 0.42s; transform: none; opacity: 1; }
.fullscreen-menu.is-open .fsm-nav-item:nth-child(7) { transition-delay: 0.48s; transform: none; opacity: 1; }
.fullscreen-menu.is-open .fsm-nav-item:nth-child(8) { transition-delay: 0.54s; transform: none; opacity: 1; }

.fsm-nav-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.fsm-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: var(--color-rose-gold);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.fsm-nav-link:hover::after { width: 100%; }

.fsm-link-num {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(197,168,128,0.50);
  min-width: 24px;
  flex-shrink: 0;
}

.fsm-link-text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5.5vw, 2.8rem);
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  line-height: 1;
  transition: color 0.25s ease;
  letter-spacing: -0.01em;
}

.fsm-nav-link:hover .fsm-link-text {
  color: var(--color-rose-gold);
}

.fsm-link-arrow {
  margin-left: auto;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.fsm-nav-link:hover .fsm-link-arrow {
  color: var(--color-rose-gold);
  transform: translate(4px, -4px);
}

/* Footer bar */
.fsm-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197,168,128,0.12);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s;
}

.fullscreen-menu.is-open .fsm-footer {
  opacity: 1;
  transform: none;
}

.fsm-contact {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.fsm-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.fsm-contact-item:hover { color: var(--color-rose-gold); }

.fsm-socials {
  display: flex;
  gap: 0.75rem;
  margin-left: auto;
}

.fsm-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(197,168,128,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.fsm-social-link:hover {
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
  background: rgba(197,168,128,0.08);
}

.fsm-book-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.9rem 2rem;
  background: var(--color-rose-gold-dark);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 24px rgba(197,168,128,0.25);
}

.fsm-book-btn:hover {
  background: var(--color-rose-gold);
  transform: translateY(-2px);
}

/* ── Overlay ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,7,5,0.6);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}

.overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ─────────────────────────────────────────────────────
   VIDEO SHOWCASE SECTION — TRIPTYCH
───────────────────────────────────────────────────── */
.video-showcase-section {
  padding: 5rem 0 4rem;
  background: var(--color-brown-dark);
  position: relative;
  overflow: hidden;
}

.video-showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(197,168,128,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.video-showcase-section .section-title {
  color: var(--color-warm-white);
}

.video-showcase-section .section-pretitle {
  color: var(--color-rose-gold);
}

/* ── Triptych grid ── */
.video-triptych {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .video-triptych {
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 3px;
    align-items: stretch;
  }
}

/* ── Each video cell ── */
.video-cell {
  position: relative;
  overflow: hidden;
  background: #0a0705;
  min-height: 320px;
  cursor: pointer;
}

@media (min-width: 700px) {
  .video-cell         { min-height: 460px; }
  .video-cell-featured { min-height: 560px; }
}

/* Video element fills cell */
.video-cell-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1),
              opacity   0.4s ease;
}

.video-cell:hover .video-cell-player {
  transform: scale(1.05);
}

/* Dark cinematic overlay */
.video-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 7, 5, 0.88) 0%,
    rgba(10, 7, 5, 0.35) 55%,
    rgba(10, 7, 5, 0.10) 100%
  );
  transition: background 0.4s ease;
  z-index: 1;
}

.video-cell:hover .video-cell-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 7, 5, 0.92) 0%,
    rgba(10, 7, 5, 0.50) 60%,
    rgba(10, 7, 5, 0.15) 100%
  );
}

/* Text info block */
.video-cell-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.75rem 1.5rem;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-cell-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  background: rgba(197,168,128,0.16);
  border: 1px solid rgba(197,168,128,0.30);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.video-cell-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-warm-white);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.video-cell-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.video-cell:hover .video-cell-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Controls: play/pause + mute */
.video-cell-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.video-cell:hover .video-cell-controls {
  opacity: 1;
  transform: translateY(0);
}

.vd-playpause,
.vd-mute {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.50);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vd-playpause:hover,
.vd-mute:hover {
  background: rgba(197,168,128,0.30);
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
}

/* Featured cell accent border */
.video-cell-featured {
  box-shadow: 0 0 0 2px rgba(197,168,128,0.35);
  z-index: 1;
}

.video-cell-featured .video-cell-tag {
  background: rgba(197,168,128,0.25);
  color: #f0d5a0;
  border-color: rgba(197,168,128,0.50);
}


