:root {
  --bg: #090910;
  --panel: #10111a;
  --panel-soft: #141626;
  --text: #f5f3ee;
  --muted: #b7b3ab;
  --gold: #e8c67a;
  --violet: #835dff;
  --cyan: #54d6ff;
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; width: 100%; }
body {
  position: relative;
  isolation: isolate;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: transparent;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/assets/images/nyc-nightlife-skyline.JPG');
  background-repeat: no-repeat;
  /* Keep the top of the source image visible when cover-cropping */
  background-position: center top;
  background-size: cover;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.80) 48%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(1200px 600px at 10% -10%, rgba(34, 24, 56, 0.34) 0%, transparent 60%),
    radial-gradient(1100px 500px at 90% -20%, rgba(15, 46, 64, 0.24) 0%, transparent 55%);
  z-index: -1;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 0;
}

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  opacity: 0.07;
  background-image: radial-gradient(circle at 20% 20%, #fff 0.5px, transparent 0.5px);
  background-size: 4px 4px;
}

.aurora {
  position: fixed; width: 45vw; height: 45vw; border-radius: 50%; filter: blur(70px);
  opacity: 0.25; z-index: -1; pointer-events: none;
}
.aurora-a { background: #9b72ff; top: -15vw; left: -10vw; }
.aurora-b { background: #36c9ff; right: -12vw; top: -18vw; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(9,9,16,0.82), rgba(9,9,16,0.5));
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: 0.03em;
}
.brand span { color: var(--gold); }

.nav { display: flex; gap: 22px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--text); }

.btn {
  border-radius: 999px; padding: 12px 20px; text-decoration: none; font-weight: 700;
  transition: .25s ease;
}
.btn-nav { background: #1b1f31; color: var(--text); border: 1px solid var(--line); }
.btn-nav:hover { border-color: rgba(232,198,122,.7); }
.btn-gold { background: linear-gradient(135deg, #d8ae5a, #f3dba2); color: #17120a; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,198,122,.24); }
.btn-ghost { color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); }

.hero {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(60px, 14vw, 140px) 22px 56px;
  background: transparent;
  border-radius: 16px;
}
.kicker { color: #8ce6ff; letter-spacing: .14em; font-size: .78rem; font-weight: 700; }
.hero h1 {
  margin: 12px 0 16px; line-height: 1.02;
  font-size: clamp(2.1rem, 8vw, 5.4rem);
  font-family: 'Playfair Display', serif;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-copy { max-width: 760px; color: #d8d4cc; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.pulse-stats {
  margin-top: 30px; display: grid; grid-template-columns: repeat(3, minmax(130px, 1fr)); gap: 12px;
}
.pulse-stats article {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line); border-radius: 14px; padding: 16px;
}
.pulse-stats strong { display:block; font-size:1.2rem; color: var(--gold); }
.pulse-stats span { color: var(--muted); font-size:.9rem; }

.marquee {
  overflow: hidden; white-space: nowrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.track {
  display: flex;
  width: max-content;
  padding: 16px 0;
  animation: slide 28s linear infinite;
}
.track-group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.track-group a {
  margin-right: 12px;
  color: #cfcbc3;
  text-decoration: none;
  font-weight: 700;
}
.track-group a:hover { color: var(--gold); }
.track-group span {
  margin-right: 18px;
  color: #cfcbc3;
  font-weight: 600;
}
@keyframes slide { from { transform: translateX(0);} to {transform: translateX(-50%);} }

.section { max-width: 1100px; margin: 0 auto; padding: 76px 22px; }
.section-head p, .eyebrow { color: var(--cyan); font-weight: 700; letter-spacing: .12em; font-size: .74rem; text-transform: uppercase; }
.section h2 { margin: 8px 0 24px; font-size: clamp(1.6rem, 4vw, 2.8rem); font-family: 'Playfair Display', serif; }
.muted { color: var(--muted); }

.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.card {
  padding: 24px; border-radius: 16px; background: var(--panel); border: 1px solid var(--line);
}
.card h3 { margin: 0 0 12px; }
.card p { color: #ccc8c0; margin: 0 0 16px; }
.card a { color: var(--gold); text-decoration: none; font-weight: 700; }
.glow { box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 10px 30px rgba(0,0,0,.25); }

.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: stretch; }
.bullets { padding-left: 20px; color: #d8d3cc; }
.bullets li { margin-bottom: 8px; }
.district-panel {
  background: linear-gradient(165deg, #16172a, #0e1423);
  border: 1px solid rgba(84,214,255,.24);
  border-radius: 16px; padding: 24px;
}
.district-panel h3 { margin-top: 0; }
.district-panel ol { color: #d8d4cd; padding-left: 20px; }
.district-panel a { color: var(--cyan); text-decoration: none; font-weight: 700; }

.strategy .card { background: var(--panel-soft); }

.concierge {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(131,93,255,.16), rgba(84,214,255,.1));
}
.concierge-form {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.concierge-form input {
  flex: 1; min-width: 220px;
  background: #0f1020; color: var(--text); border: 1px solid var(--line);
  border-radius: 999px; padding: 14px 16px; outline: none;
}
.concierge-form button {
  border: none; border-radius: 999px; padding: 14px 18px; font-weight: 800;
  background: linear-gradient(135deg, #d8ae5a, #f3dba2);
}

.footer {
  max-width: 1100px; margin: 30px auto 60px;
  border-top: 1px solid var(--line); padding: 24px 22px 0;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer p { color: var(--muted); }
.links { display: flex; gap: 14px; flex-wrap: wrap; align-content: flex-start; }
.links a { color: #d3d0c8; text-decoration: none; }
.links a:hover { color: var(--gold); }

@media (max-width: 920px) {
  body::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.86) 48%, rgba(0, 0, 0, 0.92) 100%),
      radial-gradient(1000px 500px at 10% -10%, rgba(34, 24, 56, 0.28) 0%, transparent 60%),
      radial-gradient(900px 450px at 90% -20%, rgba(15, 46, 64, 0.2) 0%, transparent 55%);
  }
  .nav { display: none; }
  .cards-3, .split, .concierge { grid-template-columns: 1fr; }
  .topbar { gap: 8px; }
}


/* PREMIUM_NAV_V2_START */
.site-header--premium {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(9,11,20,.88), rgba(9,11,20,.72));
  border-bottom: 1px solid rgba(212,175,55,.25);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.site-header--premium .header-container {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header--premium .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1;
}
.site-header--premium .brand-icon { font-size: 14px; filter: drop-shadow(0 0 6px rgba(212,175,55,.35)); }
.site-header--premium .brand-name { color: #f3efe7; font-size: 1.22rem; }
.site-header--premium .brand-name--gold { color: #d4af37; }
.site-header--premium .brand-tagline { margin-left: 8px; font-size: .74rem; color: #b8b6b0; letter-spacing: .25px; }
.site-header--premium .nav-desktop {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.site-header--premium .nav-desktop > a,
.site-header--premium .dropdown-toggle {
  color: #efece5;
  background: none;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  padding: 6px 2px;
  position: relative;
  cursor: pointer;
}
.site-header--premium .nav-desktop > a::after,
.site-header--premium .dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 2px;
  background: #d4af37;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.site-header--premium .nav-desktop > a:hover::after,
.site-header--premium .dropdown-toggle:hover::after,
.site-header--premium .dropdown-toggle.active::after,
.site-header--premium .nav-desktop > a.active::after { transform: scaleX(1); }
.site-header--premium .nav-desktop > a.active { color: #fff; }
.site-header--premium .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 38px;
  padding: 9px 16px !important;
  border-radius: 999px;
  border: 1px solid rgba(255,216,115,.78);
  background: linear-gradient(180deg, rgba(13,18,30,.94) 0%, rgba(9,14,24,.96) 100%);
  color: #ffd86d !important;
  -webkit-text-fill-color: #ffd86d;
  font-weight: 800;
  letter-spacing: .01em;
  text-shadow: 0 0 8px rgba(255,216,109,.26);
  box-shadow: inset 0 0 0 1px rgba(255,216,115,.18), 0 0 0 1px rgba(212,175,55,.24), 0 8px 20px rgba(212,175,55,.22), 0 0 20px rgba(212,175,55,.28);
  opacity: 1;
}
.site-header--premium .cta-btn:hover {
  color: #ffe8a4 !important;
  -webkit-text-fill-color: #ffe8a4;
  border-color: rgba(255,227,147,.95);
  box-shadow: inset 0 0 0 1px rgba(255,227,147,.26), 0 0 0 1px rgba(212,175,55,.34), 0 10px 24px rgba(212,175,55,.3), 0 0 24px rgba(212,175,55,.4);
  transform: translateY(-1px);
}
.site-header--premium .cta-btn:focus-visible {
  outline: 2px solid #ffe18b;
  outline-offset: 2px;
}
.site-header--premium .cta-btn::after { display:none !important; }
.site-header--premium .cta-btn {
  animation: navCtaPulse 3.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes navCtaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0 0 0 1px rgba(255,216,115,.18), 0 0 0 1px rgba(212,175,55,.24), 0 8px 20px rgba(212,175,55,.22), 0 0 20px rgba(212,175,55,.28);
  }
  50% {
    transform: scale(1.03);
    box-shadow: inset 0 0 0 1px rgba(255,227,147,.28), 0 0 0 1px rgba(212,175,55,.38), 0 10px 24px rgba(212,175,55,.34), 0 0 28px rgba(212,175,55,.48);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header--premium .cta-btn {
    animation: none;
    transform: none;
  }
}

.site-header--premium .has-dropdown { position: relative; }
.site-header--premium .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: rgba(12,14,24,.96);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 30px rgba(0,0,0,.3);
  display: none;
}
.site-header--premium .dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: #ece8df;
  text-decoration: none;
  font-size: .94rem;
}
.site-header--premium .dropdown-menu a:hover { background: rgba(212,175,55,.12); color: #fff; }
.site-header--premium .has-dropdown.open .dropdown-menu { display: block; }

.site-header--premium .nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.site-header--premium .nav-toggle span {
  width: 18px;
  height: 2px;
  background: #efece5;
  display: block;
}
.site-header--premium .nav-mobile {
  display: none;
  border-top: 1px solid rgba(212,175,55,.2);
  background: rgba(7,9,17,.98);
  padding: 10px 14px 14px;
}
.site-header--premium .nav-mobile a,
.site-header--premium .mobile-accordion-toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  color: #ece8df;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: .97rem;
}
.site-header--premium .nav-mobile a:hover,
.site-header--premium .mobile-accordion-toggle:hover { background: rgba(212,175,55,.1); }
.site-header--premium .mobile-accordion { padding-left: 10px; }
.site-header--premium .mobile-accordion a { font-size: .92rem; color: #cfcac2; }
.site-header--premium .nav-mobile .cta-btn {
  margin-bottom: 8px;
  display: block;
  text-align: center;
  color: #16100a !important;
}

.site-header--premium a:focus-visible,
.site-header--premium button:focus-visible {
  outline: 2px solid #f2cf65;
  outline-offset: 2px;
  border-radius: 8px;
}

@media (max-width: 920px) {
  .site-header--premium .header-container { min-height: 64px; }
  .site-header--premium .brand-tagline { display: none; }
  .site-header--premium .nav-desktop { display: none; }
  .site-header--premium .nav-toggle { display: inline-flex; }
  .site-header--premium .nav-mobile[hidden] { display: none; }
  .site-header--premium .nav-mobile:not([hidden]) { display: block; }
}
/* PREMIUM_NAV_V2_END */
