/* ============================================
   SARA CELEBRITY — DESIGN TOKENS
   ============================================ */
:root {
  --ink: #0a0a0c;
  --ink-soft: #131316;
  --ink-card: #17171b;
  --paper: #f3f0e8;
  --paper-dim: #b9b6ad;
  --gold: #f2b705;
  --gold-deep: #c9890a;
  --pink: #e91e8c;
  --blue: #4a6cf7;

  --display: 'Anton', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --body: 'Inter', sans-serif;

  --container: 1240px;
  --edge: clamp(20px, 5vw, 64px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   SHARED ELEMENTS
   ============================================ */
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  display: block;
}

.eyebrow--light {
  color: var(--gold);
}

.eyebrow--center {
  text-align: center;
}

.section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  text-transform: uppercase;
  line-height: 0.98;
  color: var(--paper);
}

.section-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hl {
  background: linear-gradient(100deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-icon {
  flex-shrink: 0;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(242, 183, 5, 0.5);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(243, 240, 232, 0.35);
}

.btn--ghost:hover {
  border-color: var(--paper);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  animation: pulse 1.1s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px var(--edge);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow .3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  padding: 12px var(--edge);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.nav-logo-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:not(.nav-cta) {
  opacity: 0.85;
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
  opacity: 1;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  color: var(--paper) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1 !important;
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

.nav-toggle {
  display: none;
}

.mobile-sidebar {
  display: none;
}
/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.55) 0%, rgba(10, 10, 12, 0.35) 35%, rgba(10, 10, 12, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 10, 12, 0.75) 0%, rgba(10, 10, 12, 0.25) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--edge);
  max-width: 880px;
  margin-top: 40px;
}

.hero-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.96;
  margin: 0.4rem 0 1.4rem;
}

.hero-title .line {
  display: block;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--paper-dim);
  max-width: 540px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: var(--gold);
  overflow: hidden;
  padding: 0.6rem 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}

.marquee-track span {
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 0 1rem;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--ink-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--edge);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--paper-dim);
  line-height: 1.4;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
}

.services-grid {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding: 2rem var(--edge);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.services-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  background: var(--ink-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: scale(1.1);
  border-color: rgba(242, 183, 5, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(242, 183, 5, 0.3);
  z-index: 10;
}

.service-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-tag {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.5);
}

.service-card h3 {
  font-family: var(--body);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--paper-dim);
  line-height: 1.55;
}

.service-extra {
  font-size: 0.85rem !important;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 0;
}

.service-card:hover .service-extra {
  opacity: 1;
  max-height: 200px;
  margin-top: 1rem;
}

/* ============================================
   IMMERSIVE SCATTER SECTIONS
   ============================================ */
.immersive-section {
  position: relative;
  min-height: 120vh;
  background: #060608;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.immersive-work {
  margin-top: -6rem;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(74, 108, 247, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(233, 30, 140, 0.05) 0%, transparent 55%),
    #060608;
}

.immersive-artists {
  background:
    radial-gradient(ellipse at 60% 30%, rgba(242, 183, 5, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(74, 108, 247, 0.04) 0%, transparent 50%),
    #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ---- Centered headline ---- */
@keyframes floatGlow {
  0%, 100% {
    transform: scale(1) translateY(0);
    text-shadow: 0 0 10px rgba(242, 183, 5, 0), 0 0 20px rgba(74, 108, 247, 0);
  }
  50% {
    transform: scale(1.01) translateY(-6px);
    text-shadow: 0 10px 20px rgba(242, 183, 5, 0.15), 0 -10px 25px rgba(74, 108, 247, 0.15);
  }
}

.immersive-headline {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 var(--edge);
  pointer-events: none;
  animation: floatGlow 5s ease-in-out infinite;
}

.immersive-headline--top {
  position: absolute;
  top: clamp(6rem, 8vh, 8rem);
  animation: none; /* No float for the roster headline */
}

.immersive-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.96;
  color: var(--paper);
  letter-spacing: 0.01em;
}

/* ---- Scattered media cards ---- */
.scatter-card {
  position: absolute;
  z-index: 5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.4s ease, scale 0.4s ease;
  will-change: transform, scale;
  scale: 1;
}

.scatter-card a {
  display: block;
  width: 100%;
  height: 100%;
}

.scatter-card:hover {
  box-shadow: 0 16px 60px rgba(242, 183, 5, 0.2), 0 0 0 1px rgba(242, 183, 5, 0.15);
  z-index: 9999;
  scale: 1.3;
}

/* Sizes */
.scatter-card--lg {
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 4/5;
}

.scatter-card--md {
  width: clamp(170px, 17vw, 250px);
  aspect-ratio: 3/4;
}

.scatter-card--sm {
  width: clamp(130px, 13vw, 190px);
  aspect-ratio: 3/4;
}

/* ============================================
   ROSTER SECTION (GRID)
   ============================================ */
.roster-section {
  padding: 6rem var(--edge);
  background: #060608;
}

.roster-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  justify-items: center;
}

.roster-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  will-change: transform;
}

.roster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.roster-card:hover {
  box-shadow: 0 16px 60px rgba(242, 183, 5, 0.2), 0 0 0 1px rgba(242, 183, 5, 0.15);
  transform: translateY(-10px);
}

.roster-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 980px) {
  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .roster-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.scatter-card img,
.scatter-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.scatter-card:hover img,
.scatter-card:hover video {
  transform: scale(1.05);
}

/* Label overlay */
.scatter-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 65%);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.35;
}

.scatter-label small {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.72rem;
}

/* Placeholder for artists without photos */
.scatter-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #13131a 0%, #1a1a24 50%, #111118 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scatter-placeholder span {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  color: var(--gold);
  opacity: 0.25;
  letter-spacing: 0.06em;
}

/* Bottom note */
.immersive-note {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--paper-dim);
  font-size: 0.88rem;
  text-align: center;
  max-width: 600px;
  padding: 0 var(--edge);
}

.immersive-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================
   CASE STUDY
   ============================================ */
.case-study {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ink-soft);
}

.case-study-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.case-study-carousel-container {
  position: relative;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border-top: 4px solid var(--gold);
  aspect-ratio: 4 / 3;
}

.case-study-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  border-radius: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.carousel-nav:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav svg {
  width: 22px;
  height: 22px;
}

.carousel-prev {
  left: 1.5rem;
}

.carousel-next {
  right: 1.5rem;
}

.case-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.case-body {
  color: var(--paper-dim);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.case-credit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* (Roster styles now handled by .immersive-section and .scatter-card above) */

/* ============================================
   PARTNERS
   ============================================ */
.partners {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.partners .eyebrow {
  font-size: 1.6rem;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 2rem;
  transform: translateY(-10px);
}

.partners-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  margin-top: 2rem;
  animation: scroll-left 28s linear infinite;
}

.track-2 {
  display: none;
}

.partners-track span {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  color: var(--paper-dim);
  opacity: 0.5;
  padding: 0 2rem;
  letter-spacing: 0.02em;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ink-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.contact-sub {
  color: var(--paper-dim);
  font-size: 1.02rem;
  margin-bottom: 2rem;
  max-width: 420px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-direct a:hover {
  color: var(--gold);
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #25D366;
  font-size: 1.1rem;
}

.contact-whatsapp svg {
  flex-shrink: 0;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

@media (max-width: 720px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
}

.contact-form {
  background: var(--ink-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--paper);
  font-family: var(--body);
  font-size: 0.92rem;
  resize: vertical;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--paper-dim);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form .btn {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.contact-form .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(255, 193, 7, 0.4);
}

.form-note {
  font-size: 0.85rem;
  color: var(--gold);
  min-height: 1.2em;
}

/* ============================================
   SPOTLIGHT QUOTE
   ============================================ */
.spotlight-quote {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3); /* 70% transparent / greyish white */
  padding: 0 var(--edge);
  margin-top: 3rem; /* Even spacing from contact */
  margin-bottom: 3rem; /* Even spacing to footer */
  text-shadow: none; /* Removed heavy shadow to match transparent style */
  position: relative;
  z-index: 10;
  line-height: 1.2;
}

/* ============================================
   FOOTER — PREMIUM
   ============================================ */
.footer {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) var(--edge) 2rem;
  background: var(--ink);
  overflow: hidden;
}

.footer-card {
  max-width: var(--container);
  margin: 0 auto;
  background: #0a0a0c;
  border-radius: 40px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col--center {
  align-items: center;
  text-align: center;
}

.footer-main-logo {
  position: relative;
  top: -140px;
  width: 380px;
  height: auto;
  margin-bottom: -160px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  pointer-events: none;
}

.footer-brand-title {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--paper);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  transform: translateY(-15px);
}

.footer-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn--instagram {
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
  color: #fff !important;
  border-color: transparent;
}

.btn--instagram:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-contact-links, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-links a, .footer-links a {
  color: var(--paper-dim);
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-contact-links a:hover, .footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: var(--container);
  margin: 2rem auto 0;
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--paper-dim);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .services-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-study-inner {
    grid-template-columns: 1fr;
  }

  .case-study-carousel-container {
    order: -1;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .footer-card {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 60px 40px;
    text-align: center;
  }
  
  .footer-col {
    align-items: center;
  }
  
  .footer-col--center {
    order: -1;
  }

  /* Immersive sections: reduce height */
  .immersive-section {
    min-height: 100vh;
  }

  .scatter-card--lg {
    width: clamp(180px, 26vw, 260px);
  }

  .scatter-card--md {
    width: clamp(150px, 22vw, 210px);
  }

  .scatter-card--sm {
    width: clamp(110px, 16vw, 160px);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--paper);
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(12px);
    padding: 1.5rem var(--edge);
    gap: 1.2rem;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .services-grid,
  .services-grid--five {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .footer-card {
    padding: 50px 20px 30px;
  }
  
  .footer-main-logo {
    width: 260px;
    top: -110px;
    margin-bottom: -120px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Immersive mobile: stack cards instead of scatter */
  .immersive-section {
    min-height: auto;
    padding: 3rem 0 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .immersive-headline {
    position: relative;
    padding: 2rem var(--edge) 1.5rem;
  }

  .immersive-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .scatter-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 80vw !important;
    max-width: 320px;
  }

  .immersive-note {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 1rem;
  }
}

/* ============================================
   STRICT MOBILE OVERRIDES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Global Overflow Fix */
  html, body {
    overflow-x: hidden !important;
  }
  
  section, header, footer, .contact {
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  /* Header & Nav */
  .nav-inner {
    justify-content: space-between !important;
  }
  .nav-logo {
    margin: 0 !important;
  }
  .nav-links {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--paper);
    cursor: pointer;
    padding: 0;
  }
  
  /* Mobile Sidebar */
  .mobile-sidebar {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    box-sizing: border-box;
  }
  
  .mobile-sidebar.active {
    right: 0;
  }
  
  .mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  
  .mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mobile-links a {
    color: var(--paper);
    font-family: var(--serif);
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0.9;
  }
  
  /* Marquee Fix */
  .partners .eyebrow {
    margin-bottom: 15px !important;
  }

  .partners {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  .marquee-track, .partners-track {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
  }
  
  .marquee-track span, .partners-track span {
    font-size: 22px !important;
    font-weight: bold !important;
  }

  .marquee-track, .track-1 {
    animation: scroll-left 40s linear infinite !important;
  }
  
  .track-2 {
    display: flex !important;
    animation: scroll-left 40s linear infinite reverse !important;
  }
  
  .hero-media {
    width: 100% !important;
    border-radius: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 15px !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    text-align: center;
    box-sizing: border-box;
  }
  
  /* Override GSAP / Scattered Layouts */
  .immersive-section {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    align-items: start !important;
    padding-bottom: 40px !important;
    margin-top: 0 !important;
  }
  
  .immersive-artists {
    padding-top: 10px !important;
    margin-top: -50px !important;
  }
  
  .immersive-headline {
    grid-column: 1 / -1 !important;
    position: relative !important;
    top: 0 !important;
    transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 30px !important;
  }
  
  .scatter-card {
    position: relative !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 0 !important;
    aspect-ratio: 3/4 !important;
  }
  
  /* Stacking & Forms */
  .services-grid, .contact-inner {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .form-row {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .contact-form input, .contact-form textarea, .contact-form .btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Footer */
  .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 40px !important;
  }
  
  .footer-col {
    width: 100% !important;
    align-items: center !important;
  }
  
  .footer-actions {
    flex-direction: column !important;
    width: 100% !important;
  }
  
  .footer-actions .btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}