/* ============================================================
   SWING SHOW · styles.css
   Plain CSS, no build step. Just upload to your webroot.
   ============================================================ */

:root {
  --ink: #050505;
  --ink-soft: #0a0a0a;
  --ember: #ff5b1f;
  --gold: #f8c14b;
  --crimson: #e0214a;
  --magenta: #ff2bd6;
  --white-65: rgba(255, 255, 255, 0.65);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-08: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: #f5f5f5;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: rgba(255, 91, 31, 0.35); color: #fff; }

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 9999px;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: screen;
}
.cursor-dot {
  width: 8px; height: 8px; background: #ffe7b3;
  box-shadow: 0 0 18px rgba(255, 91, 31, 0.9), 0 0 60px rgba(255, 91, 31, 0.55);
}
.cursor-ring {
  width: 46px; height: 46px;
  border: 1px solid rgba(255, 200, 120, 0.7);
  box-shadow: inset 0 0 14px rgba(255, 91, 31, 0.3), 0 0 28px rgba(255, 91, 31, 0.25);
}
body.has-custom-cursor, body.has-custom-cursor * { cursor: none !important; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff5b1f, #e0214a);
  border-radius: 999px;
}

/* Cinematic gradient text */
.text-gradient-ember {
  background: linear-gradient(100deg, #ffe7b3 0%, #f8c14b 25%, #ff5b1f 55%, #e0214a 80%, #ff2bd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
}

/* Noise overlay */
.noise-layer { position: relative; }
.noise-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Glass */
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 60%, rgba(255,255,255,0.04));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-strong {
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02) 60%, rgba(255,255,255,0.05));
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}
.dot-pulse {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  animation: pulseGlow 4s ease-in-out infinite;
}
.dot-pulse.ember   { background: var(--ember);   box-shadow: 0 0 16px var(--ember); }
.dot-pulse.gold    { background: var(--gold);    box-shadow: 0 0 16px var(--gold); }
.dot-pulse.crimson { background: var(--crimson); box-shadow: 0 0 16px var(--crimson); }
.dot-pulse.magenta { background: var(--magenta); box-shadow: 0 0 16px var(--magenta); }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: none;
  overflow: hidden;
  transition: box-shadow .5s ease;
  isolation: isolate;
}
.btn-primary { background: #fff; color: var(--ink); }
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ember), var(--crimson), var(--magenta));
  transform: translateX(-100%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  z-index: -1;
}
.btn-primary:hover { box-shadow: 0 0 60px rgba(255,91,31,0.45), 0 0 120px rgba(255,91,31,0.18); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: #fff; }
.btn-primary svg { transition: transform .4s ease; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  color: rgba(255,255,255,0.9);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 60%, rgba(255,255,255,0.04));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover { color: #fff; box-shadow: 0 0 60px rgba(248,193,75,0.4), 0 0 140px rgba(248,193,75,0.18); }
.btn-ghost svg { color: var(--gold); transition: transform .4s ease; }
.btn-ghost:hover svg { transform: scale(1.1); }

/* Animated underline link */
.link { position: relative; transition: color .3s; color: rgba(255,255,255,0.78); }
.link:hover { color: #fff; }
.link::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--ember), var(--gold), var(--magenta));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s cubic-bezier(.6,.01,.05,.95);
}
.link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; inset: 0 0 auto 0;
  z-index: 80;
  padding: 24px 0;
  transition: padding .5s, background-color .5s, backdrop-filter .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
}
.brand-mark::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 999px;
  background: linear-gradient(45deg, var(--ember), var(--crimson), var(--magenta));
  filter: blur(6px);
  opacity: .9;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 2px;
  border-radius: 999px;
  background: var(--ink);
}
.brand-mark span {
  position: relative;
  font-family: "Anton", Impact, sans-serif;
  font-size: 16px; color: #fff;
}
.brand-name {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.18em;
  font-size: 20px;
}
.brand-name .dot { color: var(--ember); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  transition: background-color .3s;
}
.nav-cta:hover { background: var(--gold); }
.nav-cta span { color: var(--ember); }

.nav-burger {
  display: none;
  background: none; border: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block;
  height: 2px; width: 22px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  max-height: 0;
  overflow: hidden;
  margin: 0 24px;
  border-radius: 16px;
  display: flex; flex-direction: column;
  transition: max-height .5s ease, margin-top .5s ease, padding .5s ease;
}
.nav-mobile.open {
  max-height: 500px;
  margin-top: 12px;
  padding: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 60%, rgba(255,255,255,0.04));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile a {
  padding: 12px;
  font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.8);
}
.nav-mobile-cta {
  margin-top: 6px;
  text-align: center;
  background: #fff; color: var(--ink) !important;
  border-radius: 999px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.4), rgba(5,5,5,0.55) 60%, var(--ink));
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(255,91,31,0.55) 0%, rgba(224,33,74,0.25) 35%, rgba(5,5,5,0) 70%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

/* Light beams */
.beams { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.beam {
  position: absolute;
  top: -10%;
  width: 300px; height: 140%;
  filter: blur(40px);
  transform-origin: top center;
  mix-blend-mode: screen;
  opacity: .7;
  pointer-events: none;
}
.beam-left {
  left: 18%;
  transform: rotate(-8deg);
  background: linear-gradient(180deg, rgba(255,91,31,0) 0%, rgba(255,91,31,0.55) 15%, rgba(248,193,75,0.4) 45%, rgba(255,43,214,0.15) 80%, rgba(255,43,214,0) 100%);
}
.beam-right {
  right: 18%;
  transform: rotate(8deg);
  background: linear-gradient(180deg, rgba(255,43,214,0) 0%, rgba(255,43,214,0.5) 15%, rgba(248,193,75,0.35) 45%, rgba(255,91,31,0.15) 80%, rgba(255,91,31,0) 100%);
}

/* Particles */
.particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 999px;
  filter: blur(.5px);
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .hero-content { padding: 0 48px; } }
@media (min-width: 1024px) { .hero-content { padding: 0 80px; } }

.hero-title {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.02em;
  font-size: 18vw;
  margin: 24px 0 0;
}
@media (min-width: 768px)  { .hero-title { font-size: 14vw; } }
@media (min-width: 1024px) { .hero-title { font-size: 11vw; } }
@media (min-width: 1440px) { .hero-title { font-size: 10rem; } }

.hero-subtitle {
  margin-top: 24px; max-width: 640px;
  color: var(--white-65);
  line-height: 1.6;
  font-size: 16px;
}
.hero-subtitle strong { color: rgba(255,255,255,0.95); font-weight: 500; }
@media (min-width: 768px) { .hero-subtitle { font-size: 18px; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 20px; } }

.hero-cta {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 16px;
}
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.55);
}
.scroll-hint i {
  display: block;
  height: 40px; width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), var(--ember), transparent);
}
.hero-bottom-fade {
  position: absolute; inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  background: var(--ink);
}
@media (min-width: 768px) { .marquee { padding: 32px 0; } }
.marquee-fade-l, .marquee-fade-r {
  position: absolute; inset-block: 0; width: 100px;
  z-index: 10; pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-list {
  display: flex; align-items: center; gap: 48px;
  padding-right: 48px;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 32px;
}
@media (min-width: 768px) { .marquee-list { font-size: 56px; } }
.marquee-list li {
  display: inline-flex; align-items: center; gap: 48px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.marquee-list li span { color: var(--ember); }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}
@media (min-width: 768px) { .section { padding: 160px 0; } }
.section-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-head {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .section-head { margin-bottom: 96px; } }
.display {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-size: 12vw;
  margin: 20px 0 0;
}
@media (min-width: 768px)  { .display { font-size: 7vw; } }
@media (min-width: 1024px) { .display { font-size: 6rem; } }

.lead {
  margin-top: 24px;
  max-width: 560px;
  color: var(--white-65);
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 768px) { .lead { font-size: 18px; } }

/* Aurora background */
.bg-aurora {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 20% 30%, rgba(255,91,31,0.25), transparent 60%),
    radial-gradient(50% 60% at 80% 20%, rgba(248,193,75,0.22), transparent 60%),
    radial-gradient(60% 60% at 60% 80%, rgba(255,43,214,0.18), transparent 60%),
    radial-gradient(40% 40% at 10% 80%, rgba(224,33,74,0.22), transparent 60%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease infinite;
  opacity: .5;
}
.opacity-30 { opacity: .3; }
.opacity-40 { opacity: .4; }
.opacity-50 { opacity: .5; }

.amber-spot {
  position: absolute;
  width: 920px; height: 420px;
  border-radius: 999px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(248,193,75,0.6) 0%, rgba(255,91,31,0.2) 45%, rgba(5,5,5,0) 75%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
}
.amber-spot.top-center { top: -160px; left: 50%; transform: translateX(-50%); }
.amber-spot.top-wide { top: -80px; left: 50%; width: 1000px; height: 440px; transform: translateX(-50%); }
.amber-spot.right { top: 25%; right: -100px; width: 420px; height: 420px; opacity: .4; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  perspective: 1200px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.service-card {
  position: relative;
  transform-style: preserve-3d;
}
.card-glow {
  position: absolute; inset: -4px;
  border-radius: 28px;
  filter: blur(32px);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-card .card-inner {
  position: relative;
  height: 100%;
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s cubic-bezier(.16,1,.3,1);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 60%, rgba(255,255,255,0.04));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
@media (min-width: 768px) { .service-card .card-inner { padding: 36px; } }
.service-card .card-inner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 10%, rgba(255,200,120,0.18), transparent 60%);
  opacity: 0.3;
  pointer-events: none;
}
.card-icon {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  color: var(--ink);
  transform: translateZ(40px);
  box-shadow: 0 0 60px rgba(255,91,31,0.45), 0 0 120px rgba(255,91,31,0.18);
}
.service-card h3 {
  margin: 28px 0 0;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 32px; line-height: 1.05;
  transform: translateZ(20px);
}
@media (min-width: 768px) { .service-card h3 { font-size: 36px; } }
.service-card p {
  margin: 12px 0 0;
  color: var(--white-65);
  font-size: 15px; line-height: 1.6;
  transform: translateZ(10px);
}
.card-more {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
  transition: color .3s;
}
.card-more i { transition: transform .3s; font-style: normal; }
.service-card:hover .card-more { color: #fff; }
.service-card:hover .card-more i { transform: translateX(4px); }

/* Accent gradients (icons + glows) */
.accent-ember-crimson   { background: linear-gradient(45deg, var(--ember), var(--crimson)); }
.accent-gold-ember      { background: linear-gradient(45deg, var(--gold), var(--ember)); }
.accent-crimson-magenta { background: linear-gradient(45deg, var(--crimson), var(--magenta)); }
.accent-magenta-ember   { background: linear-gradient(45deg, var(--magenta), var(--ember)); }
.accent-ember-gold      { background: linear-gradient(45deg, var(--ember), var(--gold)); }
.accent-gold-magenta    { background: linear-gradient(45deg, var(--gold), var(--magenta)); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }
}
.about-text .display { color: #fff; }
.about-text .display .word {
  display: inline-block; overflow: hidden; margin-right: 12px;
}
.about-text .display .word > span {
  display: inline-block; transform: translateY(110%);
}
.about-text .lead strong { color: #fff; font-weight: 500; }
.sub { margin-top: 16px; max-width: 560px; color: var(--white-55); font-size: 16px; line-height: 1.6; }

.stats {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .stats { gap: 24px; } }
.stat-card {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 60%, rgba(255,255,255,0.04));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s cubic-bezier(.16,1,.3,1);
}
@media (min-width: 768px) { .stat-card { padding: 28px; } }
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(255,91,31,0.45), 0 0 120px rgba(255,91,31,0.18);
}
.stat-num {
  font-family: "Anton", Impact, sans-serif;
  font-size: 44px; line-height: 1;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .stat-num { font-size: 56px; } }
.stat-card p {
  margin: 12px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.65);
}
@media (min-width: 768px) { .stat-card p { font-size: 12px; } }

.about-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 60%, rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.about-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.about-fade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--ink), rgba(5,5,5,0.2) 50%, transparent);
}
.about-caption {
  position: absolute; inset: auto 24px 24px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.cap-eyebrow {
  margin: 0;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.6);
}
.cap-title {
  margin: 4px 0 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: 28px; text-transform: uppercase;
}
.play {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: #fff; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================================
   GALLERY (horizontal scroll)
   ============================================================ */
.gallery {
  position: relative;
  height: 100vh; width: 100%;
  overflow: hidden;
  background: var(--ink);
}
.gallery-pill {
  position: absolute; top: 40px; left: 24px;
  z-index: 30; pointer-events: none;
}
@media (min-width: 768px) {
  .gallery-pill { top: 56px; left: 48px; }
}
.gallery-track {
  display: flex;
  height: 100%; width: max-content;
  will-change: transform;
}
.slide {
  position: relative;
  flex: 0 0 100vw;
  height: 100vh;
  overflow: hidden;
}
.slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.slide-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.4), rgba(5,5,5,0.4), rgba(5,5,5,0.85));
}
.slide-overlay-2 {
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 50%, transparent 30%, rgba(5,5,5,0.7) 85%);
}
.slide-content {
  position: relative; z-index: 10;
  height: 100%; width: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
@media (min-width: 768px)  { .slide-content { padding: 64px; } }
@media (min-width: 1024px) { .slide-content { padding: 96px; } }
.slide-meta {
  margin: 0 0 16px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.7);
}
.slide-meta span { font-family: ui-monospace, monospace; color: rgba(255,255,255,0.6); }
.slide-meta i { display: inline-block; width: 48px; height: 1px; background: rgba(255,255,255,0.4); }
.slide-title {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.01em;
  font-size: 18vw;
}
@media (min-width: 768px)  { .slide-title { font-size: 14vw; } }
@media (min-width: 1024px) { .slide-title { font-size: 12vw; } }

.gallery-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 30;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience-list {
  display: flex; flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) { .experience-list { gap: 40px; } }
.exp-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .exp-block {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    align-items: stretch;
  }
  .exp-block.reverse .exp-media { order: 2; }
  .exp-block.reverse .exp-copy  { order: 1; }
}
.exp-media { position: relative; }
.exp-frame {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 60%, rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) { .exp-frame { aspect-ratio: 16/9; } }
.exp-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform, filter;
}
.exp-mask {
  position: absolute; inset: 0;
  transform-origin: right;
  z-index: 5;
}
.exp-frame-fade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--ink), rgba(5,5,5,0.1) 50%, transparent);
  z-index: 6;
  pointer-events: none;
}
.exp-hover-glow {
  position: absolute; inset: -8px;
  border-radius: 28px;
  filter: blur(40px);
  opacity: 0;
  transition: opacity .7s;
  pointer-events: none;
}
.exp-block:hover .exp-hover-glow { opacity: 0.4; }

.exp-copy {
  display: flex; flex-direction: column; justify-content: center;
}
.exp-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.55);
}
.overflow-hidden { overflow: hidden; }
.exp-title {
  margin: 12px 0 0;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 14vw;
  line-height: 0.9;
  letter-spacing: -0.01em;
}
@media (min-width: 768px)  { .exp-title { font-size: 5.5vw; } }
@media (min-width: 1024px) { .exp-title { font-size: 4.5rem; } }
.exp-desc {
  margin: 20px 0 0;
  max-width: 440px;
  color: var(--white-65);
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 768px) { .exp-desc { font-size: 18px; } }

/* ============================================================
   CTA / Contact form
   ============================================================ */
.cta-inner { max-width: 1100px; margin: 0 auto; }
.cta-head { text-align: center; }
.cta-head .display { margin-top: 20px; }
.cta-head .lead { margin: 24px auto 0; }

.cta-form {
  position: relative;
  margin: 56px auto 0;
  max-width: 768px;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 0 60px rgba(255,91,31,0.45), 0 0 120px rgba(255,91,31,0.18);
}
@media (min-width: 768px) {
  .cta-form { margin-top: 80px; padding: 40px; }
}
.form-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-grid .full { grid-column: 1 / -1; }
}
.cta-form label {
  display: block;
}
.cta-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--white-55);
}
.input-glow {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  color: #fff;
  font-family: inherit; font-size: 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  outline: none;
  transition: border-color .3s, box-shadow .4s, background .4s;
  resize: none;
}
.input-glow::placeholder { color: rgba(255,255,255,0.35); }
.input-glow:focus {
  border-color: rgba(255,91,31,0.7);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(255,91,31,0.15), 0 0 30px rgba(255,91,31,0.35);
}
select.input-glow { appearance: none; }
select.input-glow option { background: var(--ink); }

.form-footer {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 768px) {
  .form-footer { flex-direction: row; align-items: center; justify-content: space-between; }
}
.form-note {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.form-status {
  margin: 16px 0 0;
  font-size: 13px;
  text-align: right;
  color: var(--white-65);
  min-height: 1.2em;
}
.form-status.success { color: var(--gold); }
.form-status.error { color: var(--crimson); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 96px 0 40px;
}
.section-divider {
  position: absolute; inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,91,31,0.4), rgba(248,193,75,0.4), rgba(255,43,214,0.4), transparent);
}
.footer-glow {
  position: absolute; bottom: -128px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 420px;
  background: radial-gradient(60% 60% at 50% 50%, rgba(255,91,31,0.55), rgba(224,33,74,0.25) 35%, transparent 70%);
  filter: blur(60px);
  opacity: .4;
}
.footer-inner {
  position: relative; max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
}
.foot-brand p {
  margin: 20px 0 0;
  max-width: 440px;
  color: var(--white-65);
  line-height: 1.6;
}
.socials {
  margin-top: 28px;
  display: flex; gap: 12px;
}
.socials a {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 60%, rgba(255,255,255,0.04));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .6s cubic-bezier(.16,1,.3,1), color .3s, box-shadow .6s;
}
.socials a:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(255,91,31,0.45), 0 0 120px rgba(255,91,31,0.18);
}
.foot-title {
  margin: 0 0 20px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em;
  color: var(--white-55);
}
.foot-col ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col ul a { font-size: 15px; }
.foot-contact { display: flex; flex-direction: column; gap: 16px; }
.foot-contact li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 15px; }
.foot-contact .ic { display: inline-flex; width: 18px; }
.foot-contact .ic.ember   { color: var(--ember); }
.foot-contact .ic.gold    { color: var(--gold); }
.foot-contact .ic.magenta { color: var(--magenta); }

.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-bottom p {
  margin: 0;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .ember { color: var(--ember); }
.footer-watermark {
  pointer-events: none;
  user-select: none;
  text-align: center;
  margin: 48px 0 0;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.04em;
  font-size: 28vw;
  color: rgba(255,255,255,0.04);
}
@media (min-width: 768px) { .footer-watermark { font-size: 22vw; } }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: .55; filter: blur(0px); }
  50%      { opacity: .95; filter: blur(2px); }
}
