/* ============================================
   DJ SINATRA — $1M NIGHTLIFE AESTHETIC
   Luxury / Cinematic / Editorial
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #F5F5F5;
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

::selection {
  background: #C9A24A;
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: preloaderFadeIn 0.8s ease forwards;
}

.preloader__line {
  width: 60px;
  height: 1px;
  background: #C9A24A;
  margin: 20px auto 0;
  transform: scaleX(0);
  animation: preloaderLine 1.2s ease 0.3s forwards;
}

@keyframes preloaderFadeIn {
  to { opacity: 1; }
}

@keyframes preloaderLine {
  to { transform: scaleX(1); }
}

/* ============================================
   FILM GRAIN OVERLAY
   ============================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   CURSOR GLOW (desktop)
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  will-change: transform;
}

.cursor-glow.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* --- TYPOGRAPHY --- */
.section__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A24A;
  margin-bottom: 56px;
  position: relative;
  display: inline-block;
}

.section__label::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 1px;
  background: #C9A24A;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #C9A24A;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn span,
.btn {
  position: relative;
  z-index: 1;
}

.btn--primary {
  background: #F5F5F5;
  color: #000;
  border-color: #F5F5F5;
}

.btn--primary:hover {
  border-color: #C9A24A;
  color: #000;
}

.btn--ghost {
  background: transparent;
  color: #F5F5F5;
  border-color: rgba(245, 245, 245, 0.2);
}

.btn--ghost:hover {
  border-color: #C9A24A;
  color: #000;
}

.btn--large {
  padding: 22px 56px;
  font-size: 13px;
}

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(201, 162, 74, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 245, 245, 0.025) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(201, 162, 74, 0.05) 0%, transparent 40%),
    #000;
  z-index: 0;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__ambient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(201, 162, 74, 0.015) 60deg,
    transparent 120deg,
    rgba(201, 162, 74, 0.01) 240deg,
    transparent 360deg
  );
  animation: ambientRotate 30s linear infinite;
}

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

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.006) 2px,
    rgba(255, 255, 255, 0.006) 4px
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero__title-wrap {
  overflow: hidden;
  padding-bottom: 4px;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 13vw, 160px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
}

.hero__title.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 1.8vw, 14px);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
  margin-bottom: 8px;
}

.hero__tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C9A24A;
  margin-bottom: 56px;
}

.hero__fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.hero__fade-up.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.3);
}

.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 162, 74, 0.5), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   MARQUEE TICKER
   ============================================ */
.ticker {
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 245, 245, 0.05);
  border-bottom: 1px solid rgba(245, 245, 245, 0.05);
  position: relative;
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}

.ticker__item {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.25);
  padding: 0 16px;
}

.ticker__sep {
  color: #C9A24A;
  opacity: 0.3;
  padding: 0 8px;
  font-size: 10px;
  display: flex;
  align-items: center;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: 120px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 245, 245, 0.06), transparent);
}

/* ============================================
   BIOGRAPHY
   ============================================ */
.biography__content {
  max-width: 740px;
}

.biography__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 36px) !important;
  line-height: 1.4 !important;
  color: #F5F5F5 !important;
  font-weight: 300;
  margin-bottom: 40px !important;
}

.biography__content p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 24px;
}

.biography__content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   PRESS / AS SEEN WITH
   ============================================ */
.press__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: flex-start;
}

.press__item {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(245, 245, 245, 0.3);
  padding: 16px 0;
  transition: color 0.5s ease;
  width: 100%;
  border-bottom: 1px solid rgba(245, 245, 245, 0.06);
}

.press__item:hover {
  color: rgba(245, 245, 245, 0.7);
}

/* ============================================
   HIGHLIGHTS
   ============================================ */
.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(245, 245, 245, 0.06);
}

.highlights__item {
  background: #000;
  padding: 36px 28px;
  display: flex;
  align-items: baseline;
  gap: 24px;
  transition: all 0.5s ease;
  position: relative;
}

.highlights__item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #C9A24A;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlights__item:hover {
  background: #080808;
  padding-left: 40px;
}

.highlights__item:hover::after {
  width: 3px;
}

.highlights__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  color: #C9A24A;
  flex-shrink: 0;
  min-width: 24px;
}

.highlights__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
/* ============================================
   INSTAGRAM CTA
   ============================================ */
.instagram-cta {
  padding: 180px 0;
}

.instagram-cta__inner {
  text-align: center;
}

.instagram-cta__icon {
  color: rgba(245, 245, 245, 0.3);
  margin-bottom: 32px;
}

.instagram-cta__icon svg {
  display: inline-block;
}

.instagram-cta__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #F5F5F5;
}

.instagram-cta__text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(245, 245, 245, 0.45);
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

/* ============================================
   SOCIAL CTA
   ============================================ */
.social {
  padding: 160px 0;
}

.social__inner {
  text-align: center;
}

.social__pretext {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.35);
  margin-bottom: 24px;
}

.social__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 48px;
  line-height: 1.05;
  color: #F5F5F5;
}

/* ============================================
   BOOKINGS
   ============================================ */
.bookings__content {
  max-width: 560px;
}

.bookings__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bookings__text {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.bookings__email {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #F5F5F5;
  border-bottom: 1px solid rgba(245, 245, 245, 0.15);
  padding-bottom: 6px;
  transition: border-color 0.4s ease, color 0.4s ease;
}

.bookings__email:hover {
  color: #C9A24A;
  border-color: #C9A24A;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 245, 245, 0.06), transparent);
}

.footer__inner {
  text-align: center;
}

.footer__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer__locations {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(245, 245, 245, 0.3);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer__links {
  margin-bottom: 32px;
}

.footer__links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.4);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #C9A24A;
}

.footer__copy {
  font-size: 10px;
  color: rgba(245, 245, 245, 0.15);
  letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE — TABLET+
   ============================================ */
@media (min-width: 600px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .highlights__grid {
    grid-template-columns: 1fr 1fr;
  }

  .instagram__placeholder-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section {
    padding: 160px 0;
  }

  .press__grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .press__item {
    width: auto;
    padding: 16px 32px 16px 0;
    border-bottom: none;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP
   ============================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 56px;
  }

  .highlights__item {
    padding: 44px 40px;
  }

  .section {
    padding: 200px 0;
  }

  .social {
    padding: 220px 0;
  }

  .instagram__placeholder-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .press__item {
    font-size: 52px;
    padding: 20px 48px 20px 0;
  }
}
