/* ============================================================
   AJAY RAMOS — Premium Nightlife Brand Website
   v5 — teal + magenta dual palette, mobile optimized
   ajayramos.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --black:       #000000;
  --bg:          #080808;
  --surface-1:   #0f0f0f;
  --surface-2:   #161616;
  --surface-3:   #1e1e1e;
  --surface-4:   #262626;
  --gold:        #00C4CC;
  --gold-light:  #4DE8F0;
  --gold-dim:    rgba(0,196,204,0.10);
  --gold-border: rgba(0,196,204,0.28);
  --red:         #E91E8C;
  --red-glow:    rgba(233,30,140,0.15);
  --orange:      #FF6600;
  --orange-dim:  rgba(255,102,0,0.12);
  --white:       #ffffff;
  --text-1:      #f0f0f0;
  --text-2:      #999999;
  --text-3:      #555555;

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:  'Montserrat', sans-serif;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t:        all 0.35s var(--ease);

  --shadow-gold: 0 0 50px rgba(0,196,204,0.12), 0 0 100px rgba(0,196,204,0.04);
  --shadow-red:  0 0 50px rgba(233,30,140,0.15), 0 0 100px rgba(233,30,140,0.05);
  --gradient:    linear-gradient(135deg, var(--gold) 0%, var(--red) 100%);
  --gradient-r:  linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--surface-1); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::selection { background: var(--gold); color: var(--black); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container      { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }

.section    { padding: 110px 0; position: relative; }
.section-sm { padding: 70px 0; position: relative; }

.gold-line        { width: 50px; height: 2px; background: var(--gradient); margin: 1.2rem 0; }
.gold-line.center { margin: 1.2rem auto; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 12rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.serif-lg {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.gold { color: var(--gold); }
.muted { color: var(--text-2); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gradient);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gradient-r);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0,196,204,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline-gold:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: var(--t);
}

.nav.scrolled {
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,196,204,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
}
.nav-logo img {
  background: transparent !important;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 8px rgba(0,196,204,0.15));
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-book {
  background: var(--gradient) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.4rem;
  font-weight: 700 !important;
}
.nav-book:hover { background: var(--gradient-r) !important; }
.nav-book::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.99);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: var(--text-2);
  transition: var(--t);
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

#bokeh-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(0,0,0,0.88) 0%,
    rgba(233,30,140,0.07) 55%,
    rgba(0,0,0,0.92) 100%
  );
  z-index: 2;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 0 2rem;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
  margin-bottom: 1.2rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 17vw, 16rem);
  line-height: 0.82;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero-name .outline-text {
  -webkit-text-stroke: 1px rgba(255,255,255,0.35);
  color: transparent;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(0.72rem, 1.6vw, 0.95rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-rule {
  width: 55px; height: 1px;
  background: var(--gradient);
  margin: 1.8rem 0;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.85s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.05s forwards;
}

.hero-logo-display {
  width: min(480px, 75vw);
  height: auto;
  display: block;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px rgba(233,30,140,0.35)) drop-shadow(0 0 80px rgba(0,196,204,0.25));
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  opacity: 0.45;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.8s forwards;
}
.hero-scroll-hint p {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.6rem;
}
.scroll-line {
  width: 1px; height: 45px;
  background: linear-gradient(to bottom, var(--red), transparent);
  margin: 0 auto;
  animation: pulseDown 2.2s ease-in-out infinite;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--surface-1);
  border-top:    1px solid rgba(0,196,204,0.08);
  border-bottom: 1px solid rgba(0,196,204,0.08);
}

.stats-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 2.2rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.stat-lbl {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.4rem;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-hdr { margin-bottom: 3.5rem; }
.section-hdr.center { text-align: center; }

/* ============================================================
   FEATURED VIDEO
   ============================================================ */
.video-section { background: var(--black); }

.video-featured {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surface-1);
  overflow: hidden;
}
.video-featured iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-label {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.video-grid-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
  background: var(--surface-2);
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
}
.yt-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  filter: brightness(0.7);
}
.yt-thumb:hover img { transform: scale(1.07); filter: brightness(0.9); }

.yt-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 48px; height: 48px;
  background: rgba(0,196,204,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.yt-thumb:hover .play-btn {
  background: var(--gold);
  transform: scale(1.1);
}
.play-btn svg { width: 18px; height: 18px; fill: var(--black); margin-left: 3px; }

.yt-thumb-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.yt-thumb-title {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   MUSIC SECTION
   ============================================================ */
.music-section {
  background: var(--surface-1);
  position: relative;
  overflow: hidden;
}
.music-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,196,204,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.music-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sc-embed {
  border: 1px solid var(--gold-border);
  overflow: hidden;
  background: var(--surface-2);
}
.sc-embed iframe { display: block; }

.music-text .display-md { margin: 0.8rem 0 1rem; }

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.genre-tag {
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: var(--t);
}
.genre-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--black);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top:    1px solid rgba(0,196,204,0.06);
  border-bottom: 1px solid rgba(0,196,204,0.06);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 2rem;
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-item.hi { color: var(--gold); }
.marquee-sep { color: rgba(0,196,204,0.3); padding: 0 0.5rem; font-size: 0.5rem; align-self: center; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--bg); }

.about-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 7rem;
  align-items: center;
}

.about-visual { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%) contrast(1.05);
}
.about-frame {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 65%; aspect-ratio: 1;
  border: 2px solid var(--gold-border);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  top: 20px; left: -20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  white-space: nowrap;
}

.about-content .display-md { margin: 0.8rem 0 1.5rem; line-height: 0.95; }

.about-bio {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text-2);
  margin-bottom: 2.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-stat-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.about-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-2);
  margin-top: 0.2rem;
  line-height: 1.3;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--surface-1); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--surface-2);
}

.service-card {
  background: var(--surface-1);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { outline: 1px solid rgba(233,30,140,0.4);  background: var(--surface-2); }

.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
  letter-spacing: 0;
}
.service-icon { font-size: 2.2rem; margin-bottom: 1.5rem; }
.service-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.service-link {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease);
}
.service-link:hover { gap: 0.9rem; }

/* ============================================================
   CITIES
   ============================================================ */
.cities-section { background: var(--bg); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--surface-1);
}
.city-card {
  background: var(--surface-1);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.35s var(--ease);
}
.city-card:hover { background: var(--surface-2); }
.city-card:hover .city-nm { color: var(--gold); }

.city-nm {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.city-sub {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.3rem;
}

/* ============================================================
   PROOF
   ============================================================ */
.proof-section {
  background: var(--surface-1);
  overflow: hidden;
}
.proof-section::before {
  content: '"';
  position: absolute;
  top: -3rem; right: 2rem;
  font-family: var(--font-serif);
  font-size: 22rem;
  color: rgba(0,196,204,0.025);
  pointer-events: none;
  line-height: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--surface-2);
}
.proof-card {
  background: var(--surface-1);
  padding: 2.8rem;
  transition: background 0.35s var(--ease);
}
.proof-card:hover { background: var(--surface-2); }

.proof-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.05em;
}
.proof-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 0.8rem;
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking-cta {
  background: var(--black);
  text-align: center;
  padding: 140px 0;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at 30% 50%, var(--gold-dim) 0%, transparent 55%), radial-gradient(ellipse at 70% 50%, var(--red-glow) 0%, transparent 55%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-2);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SOCIALS
   ============================================================ */
.socials-section {
  background: var(--surface-1);
  padding: 80px 0;
}

.socials-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--t);
}
.social-pill:hover {
  border-color: var(--gold-border);
  background: var(--gold-dim);
  transform: translateY(-3px);
}
.social-pill svg { width: 20px; height: 20px; }
.social-pill-name {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.3s;
}
.social-pill:hover .social-pill-name { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(0,196,204,0.08);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 0.83rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-email {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  transition: color 0.3s;
}
.footer-email:hover { color: var(--gold-light); }

.footer-col-title {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-3);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--text-1); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-3);
}
.footer-curry {
  font-size: 0.72rem;
  color: var(--text-3);
  transition: color 0.3s;
}
.footer-curry:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black);
  border-bottom: 1px solid rgba(0,196,204,0.07);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(233,30,140,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 0.55rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--t);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--surface-3);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select option { background: var(--surface-2); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-success {
  display: none;
  background: rgba(0,196,204,0.1);
  border: 1px solid var(--gold-border);
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
}
.form-success.show { display: block; }
.form-success p {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ============================================================
   MIXES PAGE
   ============================================================ */
.mixes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--surface-2);
  margin-bottom: 2px;
}
.mix-card {
  background: var(--surface-1);
  padding: 2.5rem;
  border-bottom: 2px solid transparent;
  transition: var(--t);
}
.mix-card:hover { background: var(--surface-2); border-bottom-color: var(--gold); }
.mix-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.mix-card-meta {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.mix-card iframe { display: block; }

/* ============================================================
   MEDIA PAGE
   ============================================================ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--surface-2);
}
.media-item {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
}
.media-item.wide { aspect-ratio: 16/9; grid-column: span 2; }
.media-item iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.media-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  filter: brightness(0.75);
}
.media-item:hover img { transform: scale(1.05); filter: brightness(0.95); }

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 2px; }
.event-row {
  background: var(--surface-1);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  border-left: 3px solid transparent;
  transition: var(--t);
}
.event-row:hover { background: var(--surface-2); border-left-color: var(--gold); }

.event-date-block {
  text-align: center;
  min-width: 70px;
}
.event-day {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}
.event-month {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
}

.event-details { flex: 1; }
.event-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.event-venue {
  font-size: 0.82rem;
  color: var(--text-2);
}

.event-status-badge {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border: 1px solid;
}
.event-status-badge.upcoming { border-color: var(--gold); color: var(--gold); }
.event-status-badge.private { border-color: var(--text-3); color: var(--text-3); }

/* ============================================================
   WEDDINGS PAGE
   ============================================================ */
.wedding-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.6);
  display: block;
}
.wedding-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--surface-2);
}
.wedding-pkg {
  background: var(--surface-1);
  padding: 3rem 2.5rem;
  transition: background 0.35s var(--ease);
}
.wedding-pkg:hover { background: var(--surface-2); }
.wedding-pkg.featured {
  background: var(--surface-2);
  border-top: 2px solid var(--gold);
}
.pkg-tier {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pkg-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.pkg-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pkg-features li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pkg-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulseDown {
  0%, 100% { opacity: 0.25; transform: scaleY(0.7); }
  50%       { opacity: 1;    transform: scaleY(1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-layout      { grid-template-columns: 1fr; gap: 4rem; }
  .about-layout .about-visual { max-width: 420px; }
  .about-badge       { left: 0; }
  .music-layout      { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .wedding-pkg-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .section { padding: 70px 0; }
  .container { padding: 0 1.2rem; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  .hero-name { font-size: clamp(4rem, 20vw, 8rem); }
  .hero-cta  { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-inner { display: grid; grid-template-columns: repeat(2, 1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .stat-item:nth-child(even) { border-right: none; }

  /* Grids */
  .services-grid     { grid-template-columns: 1fr; }
  .cities-grid       { grid-template-columns: repeat(2, 1fr); }
  .proof-grid        { grid-template-columns: 1fr 1fr; }
  .video-grid-sub    { grid-template-columns: 1fr 1fr; }
  .mixes-grid        { grid-template-columns: 1fr; }
  .media-grid        { grid-template-columns: 1fr 1fr; }
  .media-item.wide   { grid-column: span 2; }
  .wedding-pkg-grid  { grid-template-columns: 1fr; }

  /* About */
  .about-stats { grid-template-columns: repeat(3, 1fr); }

  /* Events */
  .event-row  { flex-wrap: wrap; gap: 1.5rem; }

  /* Booking CTA */
  .booking-cta { padding: 90px 0; }
  .cta-btns    { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .proof-grid     { grid-template-columns: 1fr; }
  .cities-grid    { grid-template-columns: 1fr 1fr; }
  .media-grid     { grid-template-columns: 1fr; }
  .media-item.wide { grid-column: span 1; aspect-ratio: 16/9; }
  .socials-row    { gap: 1rem; }
  .social-pill    { padding: 0.8rem 1.4rem; }
}

/* ============================================================
   MAGENTA ACCENT ENHANCEMENTS
   ============================================================ */

/* Scrollbar thumb uses gradient */
::-webkit-scrollbar-thumb {
  background: var(--gradient);
}

/* Stats strip — alternate number colors for visual variety */
.stat-item:nth-child(even) .stat-num { color: var(--red); }

/* Section divider — alternating gold-line styles */
.gold-line.magenta { background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%); }

/* Marquee separators get the full gradient */
.marquee-sep {
  color: var(--red);
  opacity: 0.5;
}
/* Alternate hi items: some teal, some magenta */
.marquee-item.hi:nth-child(6n) { color: var(--red); }

/* Nav underline hovers: alternate teal / magenta by position */
.nav-links li:nth-child(even) a::after { background: var(--red); }

/* Mobile nav active link glow */
.mobile-nav a:hover {
  color: var(--white);
  text-shadow: 0 0 20px rgba(233,30,140,0.5);
}

/* Service cards: gradient bottom border on hover */
.service-card::after { background: var(--gradient); }

/* Genre tags: magenta hover variant */
.genre-tag:nth-child(3n):hover { border-color: var(--red); color: var(--red); }
.genre-tag:nth-child(5n):hover { border-color: var(--red); color: var(--red); }

/* About section decorative frame — magenta tint */
.about-frame { border-color: rgba(233,30,140,0.2); }
/* About badge — gradient background */
.about-badge { background: var(--gradient); color: var(--black); }

/* Cities hover — alternate magenta */
.city-card:nth-child(even):hover .city-nm { color: var(--red); }

/* Proof numbers — alternate */
.proof-card:nth-child(even) .proof-num { color: var(--red); }

/* Social pill hover — alternate magenta */
.social-pill:nth-child(even):hover {
  border-color: rgba(233,30,140,0.4);
  background: rgba(233,30,140,0.08);
}
.social-pill:nth-child(even):hover .social-pill-name { color: var(--red); }

/* Footer top border — gradient */
.footer { border-top: 1px solid transparent; border-image: var(--gradient) 1; }

/* Section dividers — subtle magenta radial glow on left */
.section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--red-glow), transparent 40%);
  pointer-events: none;
}

/* Booking CTA deeper glow */
.booking-cta::before {
  background: radial-gradient(ellipse at 25% 50%, rgba(0,196,204,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 75% 50%, rgba(233,30,140,0.12) 0%, transparent 50%);
}

/* Mix card hover — alternating accent */
.mix-card:nth-child(odd):hover   { border-bottom-color: var(--gold); }
.mix-card:nth-child(even):hover  { border-bottom-color: var(--red); }

/* Event row hover — alternating accent */
.event-row:nth-child(even):hover { border-left-color: var(--red); }

/* Form focus — alternate magenta */
.form-row .form-group:nth-child(even) .form-input:focus,
.form-row .form-group:nth-child(even) .form-select:focus {
  border-color: var(--red);
}

/* Page hero glow: add teal right side */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,196,204,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Stat number glow on hover */
.stat-item:hover .stat-num {
  text-shadow: 0 0 20px currentColor;
}

/* Latest mix card — special styling handled inline but support class */
.mix-card-latest {
  background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
  border: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.mix-card-latest::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
}
.mix-card-latest:hover {
  border-color: rgba(233,30,140,0.4);
  box-shadow: 0 0 40px rgba(233,30,140,0.08);
}

/* ============================================================
   COMPREHENSIVE MOBILE OPTIMIZATION (v5)
   ============================================================ */

/* Support safe-area insets for notched phones */
@supports (padding: max(0px)) {
  .nav { padding-left: max(1.2rem, env(safe-area-inset-left)); padding-right: max(1.2rem, env(safe-area-inset-right)); }
  body { padding-bottom: env(safe-area-inset-bottom); }
}

@media (max-width: 768px) {
  /* ---- Hero ---- */
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero-content { padding: 0 1.2rem; }
  .hero-logo-display {
    width: min(320px, 72vw);
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 25px rgba(233,30,140,0.3)) drop-shadow(0 0 50px rgba(0,196,204,0.2));
  }
  .hero-tagline { font-size: 0.95rem; }
  .hero-cta .btn { min-height: 48px; font-size: 0.68rem; padding: 0.85rem 1.6rem; }
  .hero-bg-photo { object-position: 65% top; }

  /* ---- Page hero (inner pages) ---- */
  .page-hero { padding: 110px 0 60px; }
  .display-lg { font-size: clamp(2.6rem, 11vw, 5rem); }
  .display-md { font-size: clamp(1.8rem, 6vw, 3rem); }

  /* ---- Section spacing ---- */
  .section    { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .section-hdr { margin-bottom: 2rem; }

  /* ---- Mixes ---- */
  .mix-card { padding: 1.6rem; }
  .mix-card-title { font-size: 1.4rem; }

  /* ---- Media ---- */
  .media-item { aspect-ratio: 4/3; }
  .media-item.wide { aspect-ratio: 16/9; }

  /* ---- Calendar iframe (events page) ---- */
  #gcal-iframe { height: 440px !important; }

  /* ---- About ---- */
  .about-bio { font-size: 0.9rem; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
  .about-stat-val { font-size: 2rem; }

  /* ---- Services ---- */
  .service-card { padding: 2rem 1.5rem; }
  .service-title { font-size: 1.8rem; }

  /* ---- Wedding packages ---- */
  .wedding-pkg { padding: 2rem 1.5rem; }

  /* ---- Booking CTA ---- */
  .cta-title { font-size: clamp(2.8rem, 10vw, 5rem); }

  /* ---- Stats ---- */
  .stat-num { font-size: 2.5rem; }

  /* ---- Proof section ---- */
  .proof-card { padding: 2rem; }
  .proof-num { font-size: 3rem; }

  /* ---- Footer ---- */
  .footer { padding: 50px 0 20px; }

  /* ---- Mobile nav font size ---- */
  .mobile-nav a { font-size: 2.4rem; }

  /* ---- Forms ---- */
  .form-input, .form-select, .form-textarea { font-size: 16px; /* prevent iOS zoom */ }
  .btn { min-height: 44px; }
}

@media (max-width: 480px) {
  /* ---- Tighter hero ---- */
  .hero-logo-display { width: min(260px, 78vw); }
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.2em; }

  /* ---- Stats 1 column for tiny screens ---- */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  /* ---- Mixes page full width ---- */
  .mixes-grid { grid-template-columns: 1fr; }

  /* ---- Calendar height on small phones ---- */
  #gcal-iframe { height: 360px !important; }

  /* ---- Social pills wrap better ---- */
  .social-pill { width: 100%; justify-content: center; }
  .socials-row  { flex-direction: column; align-items: stretch; }

  /* ---- CTA buttons full width ---- */
  .cta-btns .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* ---- Booking CTA ---- */
  .booking-cta { padding: 70px 0; }
}

/* ============================================================
   WEDDINGS PAGE MOBILE (v6)
   ============================================================ */
@media (max-width: 768px) {
  /* Hero overlay padding */
  .wedding-hero-inner {
    padding: 0 1.5rem !important;
  }
  .wedding-hero-inner h1 {
    font-size: clamp(2rem, 9vw, 4rem) !important;
    line-height: 0.92 !important;
  }
  .wedding-hero-inner p {
    font-size: 0.85rem !important;
    max-width: 100% !important;
  }

  /* Intro + Curry sections: collapse to 1 col */
  .wedding-intro-grid,
  .wedding-curry-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .wedding-intro-grid > div:last-child {
    display: none;
  }

  /* Event types: 2 col on mobile */
  .wedding-events-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* How booking works box */
  .wedding-steps-box {
    padding: 2rem 1.5rem !important;
  }

  /* CTA button text: allow wrapping, prevent overflow */
  .booking-cta .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    padding: 0.9rem 1.5rem;
    max-width: 300px;
    word-break: break-word;
  }
}

/* ============================================================

/* ============================================================
   FINAL HERO POSITIONING OVERRIDE — DESKTOP + MOBILE
   This must stay at the very bottom of style.css
   ============================================================ */

/* Desktop: move subject far right and slightly up */
.hero-bg-photo {
  object-fit: cover !important;
  object-position: 82% 28% !important;
  transform: scale(1.05) !important;
  opacity: 0.72 !important;
  filter: brightness(0.72) saturate(1.12) contrast(1.05) !important;
}

/* Keep desktop content on left, but photo moves behind it */
.hero-content {
  position: relative;
  z-index: 4;
}

/* Mobile only */
@media (max-width: 768px) {
  .hero {
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  /* Mobile: keep city line where it is */
  .hero-eyebrow {
    margin-top: 0 !important;
    transform: none !important;
  }

  /* Mobile: move background subject up/right so face/arm are visible */
  .hero-bg-photo {
    object-position: 72% 16% !important;
    transform: scale(1.20) !important;
    opacity: 0.70 !important;
    filter: brightness(0.70) saturate(1.15) contrast(1.06) !important;
  }

  /* Mobile: lower only the large center Ajay Ramos logo */
  .hero-logo-display {
    width: min(86vw, 400px) !important;
    margin-top: 5.25rem !important;
    margin-bottom: 1.15rem !important;
    transform: none !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .hero-content {
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    transform: translateY(-1.5rem) !important;
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
  }

  .hero-tagline {
    text-align: center !important;
    width: 100% !important;
    max-width: 92vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,0.9) !important;
  }

  .hero-rule {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-cta {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
    margin-top: 1.2rem !important;
  }

  .hero-cta .btn-gold {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  .hero-cta .btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 58px !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .hero-bg-photo {
    object-position: 74% 12% !important;
    transform: scale(1.24) !important;
  }

  .hero-logo-display {
    margin-top: 5.75rem !important;
    width: 88vw !important;
  }
}

/* ============================================================
   STICKY AUDIO PLAYER
   ============================================================ */
.sticky-audio-player {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3000;
  width: min(92vw, 420px);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1rem;
  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(0,196,204,0.35);
  box-shadow:
    0 0 22px rgba(0,196,204,0.18),
    0 0 28px rgba(233,30,140,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.audio-toggle {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: var(--gradient);
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.audio-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.audio-label {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.audio-title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 768px) {
  .sticky-audio-player {
    bottom: 14px;
    width: calc(100vw - 28px);
  }
}

/* ============================================================
   FINAL MOBILE HERO FIX — NO CENTER LOGO
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    height: 100svh !important;
    min-height: 100svh !important;
    padding: 0 !important;
    overflow: hidden !important;
    align-items: center !important;
  }

  /* Put Ajay/body back in the middle */
  .hero-bg-photo {
    object-fit: cover !important;
    object-position: 50% 34% !important;
    transform: scale(1.08) !important;
    opacity: 0.72 !important;
    filter: brightness(0.68) saturate(1.1) contrast(1.05) !important;
  }

  /* Center the content cleanly */
  .hero-content {
    width: 100% !important;
    height: 100svh !important;
    padding: 0 1.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    transform: translateY(-0.5rem) !important;
  }

  /* Keep city line at top area */
  .hero-eyebrow {
    position: absolute !important;
    top: 5.4rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    padding: 0 4.5rem !important;
    margin: 0 !important;
    text-align: center !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.28em !important;
    line-height: 1.4 !important;
    color: var(--gold) !important;
    white-space: normal !important;
    z-index: 6 !important;
  }

  /* REMOVE big middle logo on mobile */
  .hero-logo-display {
    display: none !important;
  }

  .hero-tagline {
    margin: 42vh auto 0.65rem !important;
    width: 100% !important;
    max-width: 92vw !important;
    text-align: center !important;
    font-family: var(--font-accent) !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.24em !important;
    line-height: 1.55 !important;
    color: rgba(255,255,255,0.96) !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.95) !important;
  }

  /* Remove annoying divider line */
  .hero-rule {
    display: none !important;
  }

  /* Bring buttons closer to tagline */
  .hero-cta {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
    margin: 0.9rem auto 0 !important;
  }

  .hero-cta .btn {
    width: 100% !important;
    min-height: 58px !important;
    padding: 0.9rem 0.6rem !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.17em !important;
  }

  .hero-cta .btn-gold {
    grid-column: 1 / -1 !important;
    min-height: 66px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.22em !important;
  }

  .hero-scroll-hint {
    bottom: 5.7rem !important;
  }
}

@media (max-width: 480px) {
  .hero-bg-photo {
    object-position: 50% 32% !important;
    transform: scale(1.1) !important;
  }

  .hero-tagline {
    margin-top: 43vh !important;
  }
}
