/* ==========================================================================
   INSOMNIA — Mentalist Aathi | Base stylesheet (mobile-first)
   Design tokens → Reset → Layout primitives → Components → Sections
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #050505;
  --bg-secondary: #101010;
  --bg-elevated: #161616;
  --gold: #D4AF37;
  --gold-highlight: #FFD700;
  --white: #FFFFFF;
  --text-secondary: #BEBEBE;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --line: rgba(255,255,255,0.08);
  --line-gold: rgba(212,175,55,0.35);

  --font: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Cinzel', Georgia, 'Times New Roman', serif;

  --container: 1240px;
  --container-narrow: 760px;
  --gutter: 20px;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 40px rgba(0,0,0,0.45);
  --shadow-gold: 0 10px 34px rgba(212,175,55,0.22);
  --shadow-whatsapp: 0 10px 28px rgba(37,211,102,0.28);

  --ease: cubic-bezier(0.16, 0.8, 0.24, 1);
  --dur-fast: 0.22s;
  --dur-med: 0.5s;
  --dur-slow: 0.9s;

  --scrollbar-w: 0px; /* set by script.js to the real scrollbar width, so right:0 drawers stay flush on desktop browsers with classic (non-overlay) scrollbars */
  --nav-h: 68px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --floating-cta-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.01em; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.icon { width: 1em; height: 1em; fill: currentColor; display: inline-block; vertical-align: -0.14em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #000;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold-highlight);
  outline-offset: 3px;
}

[id] { scroll-margin-top: var(--nav-h); }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; margin-inline: auto; }

.section-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 640px;
  margin-bottom: 40px;
}
.section-lead.center { text-align: center; margin-inline: auto; }

.artist__emphasis {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-highlight);
}

section { position: relative; padding-block: 88px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn .icon { font-size: 1.2em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--whatsapp { background: var(--whatsapp); color: #04220f; box-shadow: var(--shadow-whatsapp); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 14px 34px rgba(37,211,102,0.38); }

.btn--gold { background: linear-gradient(135deg, var(--gold-highlight), var(--gold)); color: #191204; box-shadow: var(--shadow-gold); }
.btn--gold:hover { box-shadow: 0 14px 34px rgba(212,175,55,0.4); }

.btn--outline-gold { background: rgba(255,255,255,0.04); color: var(--gold-highlight); border-color: var(--line-gold); backdrop-filter: blur(6px); }
.btn--outline-gold:hover { background: rgba(212,175,55,0.1); }

.btn--ghost { background: rgba(255,255,255,0.06); color: var(--white); border-color: var(--line); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

.btn--lg { min-height: 58px; padding: 16px 32px; font-size: 1.05rem; }
.btn--sm { min-height: 42px; padding: 10px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

.ripple { -webkit-tap-highlight-color: transparent; }
.ripple .ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: scale(0);
  animation: rippleAnim 0.6s var(--ease);
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(2.6); opacity: 0; } }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
}
.chip .icon { color: var(--gold-highlight); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-reveal-delay="1"] { transition-delay: 0.08s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.16s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.24s; }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__mark { text-align: center; }
.preloader__word {
  display: block;
  font-size: clamp(1.8rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-highlight) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 1.8s linear infinite, fontCycle 1.4s linear 1 both;
}
@keyframes shimmer { to { background-position: -200% center; } }
@keyframes fontCycle {
  0%   { font-family: 'Cinzel', serif; font-style: normal; font-weight: 900; letter-spacing: 0.12em; }
  14%  { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 400; letter-spacing: 0.02em; }
  28%  { font-family: 'Courier New', monospace; font-style: normal; font-weight: 700; letter-spacing: 0.05em; }
  42%  { font-family: 'Raleway', sans-serif; font-style: normal; font-weight: 300; letter-spacing: 0.35em; }
  57%  { font-family: Impact, 'Arial Narrow', sans-serif; font-style: normal; font-weight: 400; letter-spacing: 0.02em; }
  71%  { font-family: 'Brush Script MT', cursive; font-style: normal; font-weight: 400; letter-spacing: 0; }
  85%  { font-family: 'Raleway', sans-serif; font-style: normal; font-weight: 700; letter-spacing: 0.2em; }
  100% { font-family: 'Cinzel', serif; font-style: normal; font-weight: 700; letter-spacing: 0.12em; }
}
.preloader__bar { display: block; width: 160px; height: 2px; background: rgba(255,255,255,0.12); margin: 22px auto 0; border-radius: 2px; overflow: hidden; }
.preloader__bar-fill { display: block; height: 100%; width: 0%; background: var(--gold-highlight); transition: width 0.3s var(--ease); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), backdrop-filter var(--dur-med) var(--ease);
}
.navbar.is-scrolled {
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--line);
}
.navbar__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo img {
  height: 32px;
  width: auto;
}
.navbar__nav { display: none; }
.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__cta { display: none; }
.navbar__burger {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1.3rem;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: var(--scrollbar-w);
  width: min(86%, 360px);
  height: 100dvh;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--line);
  z-index: 700;
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease);
  display: flex;
  flex-direction: column;
  padding: 20px 24px calc(24px + var(--safe-b));
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-menu__logo { height: 28px; width: auto; }
.mobile-menu__close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line);
  color: var(--white); display: flex; align-items: center; justify-content: center;
}
.mobile-menu__links { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
.mobile-menu__links a {
  display: block;
  padding: 14px 4px;
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__cta { display: flex; flex-direction: column; gap: 12px; padding-top: 22px; }
.mobile-menu__backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  z-index: 650;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med) var(--ease);
}
.mobile-menu__backdrop.is-open { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media picture img, .hero__media > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
@media (min-width: 900px) {
  .hero__media picture img, .hero__media > img { object-position: 80% 15%; }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.15) 22%, rgba(5,5,5,0.55) 58%, var(--bg) 92%),
    linear-gradient(90deg, rgba(5,5,5,0.35) 0%, transparent 30%, transparent 70%, rgba(5,5,5,0.35) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero__particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold-highlight);
  border-radius: 50%;
  opacity: 0.5;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 24px) var(--gutter) 56px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}
.hero__title {
  font-size: clamp(2.8rem, 15vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold-highlight) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.hero__tagline {
  font-size: clamp(1.1rem, 4.4vw, 1.5rem);
  font-weight: 600;
  color: var(--gold-highlight);
  margin-bottom: 16px;
}
.hero__desc {
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 0.98rem;
}
.hero__desc strong { color: var(--white); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }

.hero__scroll-cue {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--white);
  opacity: 0.75;
}
.hero__scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero__scroll-mouse span {
  width: 4px; height: 8px;
  background: var(--gold-highlight);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(8px); opacity: 0; } }

/* ==========================================================================
   RECOGNITION — infinite horizontal ticker
   ========================================================================== */
.recognition {
  padding-block: 32px 28px;
  background: var(--bg-secondary);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.recognition__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 18px;
}

/* Ticker wrapper — clips the scrolling content */
.ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* soft fade masks on left & right edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* The scrolling track — wide enough to hold 2× the content */
.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover */
.ticker:hover .ticker__track { animation-play-state: paused; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

.ticker__item {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  padding-inline: 28px;
}

.ticker__sep {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ==========================================================================
   EXPERIENCE — feature cards
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
.feature-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-gold);
}
.feature-card__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  color: var(--gold-highlight);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.94rem; }

.section-cta { display: flex; justify-content: center; }
.section-cta--row { gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   ARTIST
   ========================================================================== */
.artist { background: var(--bg-secondary); }
.artist__grid { display: grid; grid-template-columns: 1fr; gap: 46px; align-items: center; margin-bottom: 90px; }
.artist__media { position: relative; max-width: 380px; margin-inline: auto; }
.artist__photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-soft);
}
.artist__photo-float {
  position: absolute;
  width: 42%;
  bottom: -10%; right: -10%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--bg-secondary);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-med) var(--ease);
}
.artist__media:hover .artist__photo-float { transform: translateY(-8px) rotate(-2deg); }
.artist__content p { color: var(--text-secondary); margin-bottom: 14px; }
.check-list { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 22px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.check-list .icon { color: var(--gold-highlight); flex-shrink: 0; }

.why-attend { padding-top: 90px; border-top: 1px solid var(--line); }
.why-attend__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.pillar {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
}
.pillar__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  color: var(--gold-highlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.masonry {
  columns: 2 200px;
  column-gap: 12px;
}
.masonry__item {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  border: none;
  padding: 0;
  background: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  break-inside: avoid;
  position: relative;
  cursor: zoom-in;
}
.masonry__item img { width: 100%; height: auto; transition: transform var(--dur-med) var(--ease); }
.masonry__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.masonry__item:hover img { transform: scale(1.06); }
.masonry__item:hover::after { opacity: 1; }

/* ==========================================================================
   VIDEO PLAYER
   ========================================================================== */
.video-player {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-soft);
  background: #000;
}
.video-player__poster, .video-player video { width: 100%; height: 100%; object-fit: cover; }
.video-player__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(212,175,55,0.92);
  color: #191204;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 0 0 12px rgba(212,175,55,0.16);
  animation: pulseSoft 2.4s ease-in-out infinite;
}
.video-player.is-playing .video-player__play,
.video-player.is-playing .video-player__poster { display: none; }
@keyframes pulseSoft { 0%,100% { box-shadow: 0 0 0 12px rgba(212,175,55,0.16); } 50% { box-shadow: 0 0 0 20px rgba(212,175,55,0.06); } }

/* ==========================================================================
   EVENT DETAILS
   ========================================================================== */
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.detail-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
}
.detail-card__icon { font-size: 1.6rem; color: var(--gold-highlight); margin-bottom: 10px; }
.detail-card h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 6px; }
.detail-card p { font-weight: 700; font-size: 1.02rem; margin-bottom: 6px; }
.detail-card__note { font-size: 0.76rem; color: var(--text-secondary); }

.map-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 320px; }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.6) invert(0.92) contrast(0.9); }
.map-card__overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.72);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; text-align: center; padding: 24px;
}
.map-card__overlay p { max-width: 320px; color: var(--text-secondary); font-weight: 600; }

/* ==========================================================================
   BOOKING PROCESS
   ========================================================================== */
.steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; counter-reset: step; }
.steps__item {
  position: relative;
  padding: 28px 24px 28px 74px;
  border-left: 2px dashed var(--line-gold);
  margin-left: 24px;
}
.steps__item:last-child { border-left-color: transparent; }
.steps__number {
  position: absolute; left: -25px; top: 24px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-highlight), var(--gold));
  color: #191204;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
}
.steps__icon { display: none; }
.steps__item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.steps__item p { color: var(--text-secondary); font-size: 0.94rem; }

/* ==========================================================================
   FAQ / ACCORDION
   ========================================================================== */
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 20px 4px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.accordion__chevron { color: var(--gold-highlight); flex-shrink: 0; transition: transform var(--dur-fast) var(--ease); }
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease);
}
.accordion__panel p { padding: 0 4px 20px; color: var(--text-secondary); }

/* ==========================================================================
   PARTNER (AN FOCUS)
   ========================================================================== */
.partner { background: var(--bg-secondary); }
.partner__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.partner__logo-card {
  padding: 36px 24px;
  display: flex; align-items: center; justify-content: center;
}
.partner__logo-card img { width: 100%; max-width: 320px; height: auto; }
.partner__content p { color: var(--text-secondary); margin-bottom: 14px; }
.badge-list { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
.badge-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.badge-list .icon { color: var(--gold-highlight); }

/* ==========================================================================
   URGENCY
   ========================================================================== */
.urgency { overflow: hidden; }
.urgency__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.16), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,0.1), transparent 55%),
    var(--bg);
  animation: bgDrift 12s ease-in-out infinite alternate;
}
@keyframes bgDrift { from { background-position: 0 0; } to { background-position: 30px 30px; } }
.urgency__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.urgency__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--line-gold);
  color: var(--gold-highlight);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.urgency__dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5050; animation: dotPulse 1.4s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta { padding-block: 110px; overflow: hidden; }
.final-cta__media { position: absolute; inset: 0; z-index: 0; }
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(0.8); }
.final-cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(5,5,5,0.75) 40%, var(--bg) 100%); }
.final-cta__inner { position: relative; z-index: 1; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--line); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
.footer__logo { font-weight: 800; font-size: 1.4rem; letter-spacing: 0.1em; color: var(--gold-highlight); }
.footer__brand p { color: var(--text-secondary); margin: 14px 0 18px; font-size: 0.92rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.footer__social a:hover { background: var(--gold); color: #000; transform: translateY(-3px); }
.footer__col h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--text-secondary); display: inline-flex; align-items: center; gap: 8px; font-size: 0.94rem; }
.footer__col a:hover { color: var(--white); }
.footer__partner-logo { width: 100%; max-width: 200px; height: auto; margin-bottom: 10px; }
.footer__partner-note { color: var(--text-secondary); font-size: 0.86rem; }
.footer__bottom { border-top: 1px solid var(--line); padding-block: 22px; }
.footer__bottom-inner p { color: var(--text-secondary); font-size: 0.82rem; text-align: center; }

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */
.floating-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  display: flex;
  padding: 10px 12px calc(10px + var(--safe-b));
  gap: 10px;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform var(--dur-med) var(--ease);
}
.floating-cta.is-visible { transform: translateY(0); }
.floating-cta__btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}
.floating-cta__btn--whatsapp { background: var(--whatsapp); color: #04220f; box-shadow: var(--shadow-whatsapp); }
.floating-cta__btn--call { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid var(--line-gold); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(2,2,2,0.96);
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med) var(--ease);
  padding: 24px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { max-width: 92vw; max-height: 84vh; text-align: center; }
.lightbox__figure img { max-width: 92vw; max-height: 76vh; width: auto; margin-inline: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.lightbox__figure figcaption { color: var(--text-secondary); margin-top: 14px; font-size: 0.9rem; }
.lightbox__close {
  position: absolute; top: 18px; right: 18px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: calc(var(--floating-cta-h) + var(--safe-b) + 16px);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(212,175,55,0.9);
  color: #191204;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  z-index: 380;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast) var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   PRE-BOOKING FORM SECTION (MODAL)
   ========================================================================== */
.prebook {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(2, 2, 2, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med) var(--ease);
  overflow-y: auto;
  padding: 40px 16px;
}

.prebook.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.prebook .container {
  max-width: 600px;
  width: 100%;
  margin: auto;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--dur-med) var(--ease);
}

.prebook.is-open .container {
  transform: translateY(0) scale(1);
}

.prebook__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  z-index: 10;
}
.prebook__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.prebook-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.prebook-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity var(--dur-med) var(--ease);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.98rem;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-highlight);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Custom select styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 46px; /* Space for custom chevron */
}

/* Fix dropdown menu background color in dark theme browsers */
.select-wrapper select option {
  background-color: var(--bg-secondary);
  color: var(--white);
}

.select-chevron {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gold-highlight);
  font-size: 1.1rem;
  transition: transform var(--dur-fast) var(--ease);
}

/* Error states */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ff5050;
  box-shadow: 0 0 10px rgba(255, 80, 80, 0.2);
}

.error-message {
  font-size: 0.78rem;
  color: #ff5050;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  display: none;
}

.form-group.has-error .error-message {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Submit button with loading spinner */
#submitBtn {
  position: relative;
  margin-top: 10px;
}

#submitBtn.is-loading span {
  opacity: 0;
}

.spinner {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  margin-top: -12px;
  border: 3px solid rgba(25, 18, 4, 0.2);
  border-top-color: #191204;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#submitBtn.is-loading .spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Thanks Note Success State */
.thanks-note {
  text-align: center;
  padding: 40px 10px;
  animation: fadeIn var(--dur-med) var(--ease) forwards;
}

.thanks-note__icon {
  width: 72px;
  height: 72px;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid var(--whatsapp);
  color: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.thanks-note h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-highlight);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.thanks-note__message {
  font-size: 1.1rem;
  color: var(--white);
  max-width: 580px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.thanks-note__message strong {
  color: var(--gold-highlight);
}

.thanks-note__sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.thanks-note__sub span {
  color: var(--white);
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

