/* ============================================================
   Light Up Media — Public Site CSS
   Dark cinematic | Ember #ff4500 | Gold #d4af37 | Bone #f5f2ec
   GSAP + ScrollTrigger powered
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --charcoal:    #0d0d0d;
  --surface:     #111111;
  --surface2:    #161616;
  --surface3:    #1a1a1a;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(212,175,55,0.2);
  --ember:       #ff4500;
  --ember-light: #ff6a1f;
  --ember-dim:   rgba(255,69,0,0.06);
  --fire:        #ff6b1a;
  --flame:       #ff3d00;
  --gold:        #d4af37;
  --gold-light:  #e8c84a;
  --gold-dim:    rgba(212,175,55,0.08);
  --bone:        #f5f2ec;
  --white:       #f5f2ec;
  --white-dim:   rgba(245,242,236,0.65);
  --white-ghost: rgba(245,242,236,0.04);
  --ash:         #666660;
  --ash-light:   #888880;
  --font-display:'Bebas Neue', sans-serif;
  --font-sans:   'Montserrat', sans-serif;
  --font-body:   'Poppins', sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; cursor: none; }
@media (max-width: 640px) {
  body { cursor: auto; }
  button, input, textarea, select { cursor: auto; }
}

/* ── Custom Cursor ───────────────────────────────────────── */
.lum-cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              background 0.3s ease,
              opacity 0.3s ease;
  mix-blend-mode: normal;
}
.lum-cursor.hovering {
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid var(--ember);
  mix-blend-mode: normal;
}
.lum-cursor.hovering-img {
  width: 80px; height: 80px;
  background: rgba(255,69,0,0.15);
  border: 1px solid rgba(255,69,0,0.4);
}
.lum-cursor-trail {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,69,0,0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out);
}
@media (max-width: 640px) {
  .lum-cursor, .lum-cursor-trail { display: none; }
}

/* ── Smooth Scroll Progress Bar ──────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Navigation ──────────────────────────────────────────── */
.lum-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.5s var(--ease-out),
              background 0.5s ease,
              border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.lum-nav.scrolled,
.lum-nav.nav-solid {
  padding: 16px 60px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.lum-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-flame { width: 24px; height: 28px; flex-shrink: 0; }
.nav-brand-flame svg { width: 100%; height: 100%; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--white);
}
.nav-brand-name em { font-style: normal; color: var(--ember); }
.nav-brand-sub {
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ash-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--ember);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-portal-btn {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.nav-portal-btn:hover { color: var(--white); }
.nav-cta-btn {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--ember);
  padding: 12px 24px;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--ember-light); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile {
  display: none;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.nav-mobile.open { max-height: 600px; }
.nav-mobile ul { list-style: none; padding: 24px 60px 0; }
.nav-mobile ul li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { color: var(--ember); }
.nav-mobile-actions {
  display: flex;
  gap: 12px;
  padding: 24px 60px;
}
.nav-mobile-portal, .nav-mobile-cta {
  flex: 1;
  text-align: center;
  padding: 14px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-mobile-portal {
  background: var(--surface2);
  color: var(--white);
  border: 1px solid var(--border);
}
.nav-mobile-cta { background: var(--ember); color: var(--black); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--ember);
  padding: 16px 32px;
  border: none;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover { background: var(--ember-light); transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary.fire { background: var(--flame); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  background: none;
  border: none;
  padding: 16px 0;
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}
.btn-ghost i, .btn-ghost svg {
  transition: transform 0.3s var(--ease-out);
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover i, .btn-ghost:hover svg { transform: translateX(6px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 32px;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  cursor: none;
}
.btn-outline:hover {
  border-color: var(--ember);
  background: var(--ember-dim);
  transform: translateY(-2px);
}

/* ── Section primitives ───────────────────────────────────── */
.lum-section {
  padding: 120px 60px;
  max-width: 1440px;
  margin: 0 auto;
}
.lum-section-full {
  padding: 120px 0;
}
.lum-section-full .section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--ember);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}
.section-title em { font-style: normal; color: var(--ember); }
.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,242,236,0.2);
}

/* ── Reveal animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── Hero entrance ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.7; }
}
@keyframes particle-rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.7; }
  80%  { opacity: 0.2; }
  100% { transform: translateY(-100vh) translateX(var(--drift)) scale(0.2); opacity: 0; }
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-anim-1 { opacity: 0; animation: fadeUp 1s var(--ease-out) 0.2s forwards; }
.hero-anim-2 { opacity: 0; animation: fadeUp 1s var(--ease-out) 0.4s forwards; }
.hero-anim-3 { opacity: 0; animation: fadeUp 1s var(--ease-out) 0.6s forwards; }
.hero-anim-4 { opacity: 0; animation: fadeUp 1s var(--ease-out) 0.8s forwards; }
.hero-anim-5 { opacity: 0; animation: fadeUp 1s var(--ease-out) 1.0s forwards; }
.hero-anim-visual { opacity: 0; animation: fadeIn 1.4s ease 0.6s forwards; }
.float-a { animation: float-a 5s ease-in-out infinite; }
.float-b { animation: float-b 6s ease-in-out 1s infinite; }

/* ── Hero ─────────────────────────────────────────────────── */
.lum-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 50%, rgba(255,107,26,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 85% 90%, rgba(212,175,55,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(255,69,0,0.04) 0%, transparent 60%),
    var(--black);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.fire-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.fire-particle {
  position: absolute;
  bottom: -20px;
  border-radius: 50% 50% 30% 30%;
  animation: particle-rise linear infinite;
  opacity: 0;
  filter: blur(1px);
}
.hero-inner {
  position: relative;
  z-index: 10;
  padding: 160px 60px 100px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--ember);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 10.5vw, 148px);
  line-height: 0.88;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-title .ember { color: var(--ember); }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,69,0,0.4);
}

/* Flip text */
.flip-container {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 3px;
  height: clamp(22px, 3vw, 36px);
  overflow: hidden;
  margin-bottom: 32px;
}
.flip-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.8s var(--ease-in-out);
}
.flip-word {
  color: var(--fire);
  display: flex;
  align-items: center;
  height: clamp(22px, 3vw, 36px);
  white-space: nowrap;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
}
.hero-card-main {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero-card-img {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #1a1208 0%, #2d1f00 40%, #1a0a00 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.5s ease, transform 0.8s var(--ease-out);
}
.hero-card-main:hover .hero-card-img img { opacity: 0.9; transform: scale(1.04); }
.hero-card-img-text {
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(212,175,55,0.18);
  letter-spacing: 8px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 60px rgba(255,69,0,0.3);
}
.hero-card-fire {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(255,61,0,0.4) 0%, rgba(255,107,26,0.15) 50%, transparent 100%);
}
.hero-card-body {
  padding: 20px 22px;
  border-top: 1px solid var(--border);
}
.hero-card-tag {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 4px;
}
.hero-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
}
.hero-float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 20px;
}
.hero-float-card.a { left: 0; top: 60px; width: 180px; }
.hero-float-card.b { left: 20px; bottom: 60px; width: 170px; border-color: var(--border-gold); }
.hfc-label {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash-light);
  margin-bottom: 4px;
}
.hfc-val {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--ember);
}

/* ── Marquee ──────────────────────────────────────────────── */
.lum-marquee {
  overflow: hidden;
  padding: 20px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.lum-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ash-light);
  padding: 0 40px;
  white-space: nowrap;
  transition: color 0.3s;
  position: relative;
}
.marquee-item::after {
  content: '✦';
  position: absolute;
  right: -2px;
  color: var(--ember);
  font-size: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.marquee-item:hover { color: var(--ember); }

/* ── Services ─────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════
   SERVICE SCROLL-STACK
══════════════════════════════════════════════════════════ */
.svc-stack {
  position: relative;
  background: var(--black);
}

/* Each panel is full viewport height, stacks via sticky */
.svc-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--black);
  will-change: transform;
}

/* Left copy side */
.svc-panel__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
  z-index: 2;
  border-right: 1px solid var(--border);
}
.svc-panel__left::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--ember), transparent);
  opacity: 0.4;
}
.svc-panel__eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ash-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-panel__eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--ember);
  flex-shrink: 0;
}
.svc-panel__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 100px);
  letter-spacing: 2px;
  line-height: 0.9;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.svc-panel__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 44px;
}
.svc-panel__cta {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  width: fit-content;
}
.svc-panel__cta:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--white);
}

/* Right image side */
.svc-panel__right {
  position: relative;
  overflow: hidden;
}
.svc-panel__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s var(--ease-out);
  transform: scale(1.05);
}
.svc-panel:hover .svc-panel__img {
  transform: scale(1.08);
}
.svc-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.1) 60%,
    transparent 100%
  );
}

/* Final CTA panel */
.svc-panel--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border-top: 1px solid var(--border);
  height: 80vh;
  position: sticky;
  top: 0;
}
.svc-cta-inner {
  text-align: center;
  max-width: 600px;
  padding: 40px;
}
.svc-cta-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
}
.svc-cta-title em {
  font-style: normal;
  color: var(--ember);
}

/* Progress indicator dots */
.svc-stack::after {
  content: '';
  display: none; /* JS-inserted dots instead */
}

/* ── Mobile: stack vertically ───────────────────────────── */
@media (max-width: 900px) {
  .svc-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto 50vw;
    height: auto;
    position: relative;
    border-bottom: 1px solid var(--border);
  }
  .svc-panel__left {
    padding: 60px 32px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .svc-panel__right {
    height: 50vw;
    min-height: 280px;
  }
  .svc-panel--cta { height: auto; padding: 80px 32px; }
}

/* ── Service stack progress dots ──────────────────────────── */
.svc-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.in-services .svc-dots { opacity: 1; }
.svc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}
.svc-dot--active {
  background: var(--ember);
  transform: scale(1.6);
}

/* ── Stats ────────────────────────────────────────────────── */
.stats-section {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(60px, 7vw, 96px);
  letter-spacing: 2px;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--ember), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash-light);
}

/* ── Talent Section ───────────────────────────────────────── */
.talent-section {
  padding: 140px 0;
  background: var(--black);
  overflow: hidden;
}
.talent-header {
  padding: 0 60px;
  max-width: 1440px;
  margin: 0 auto 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
.talent-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
  cursor: none;
}
.talent-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
  filter: grayscale(20%);
}
.talent-card:hover .talent-card-img {
  transform: scale(1.08);
  filter: grayscale(0%);
}
.talent-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
  transition: opacity 0.4s ease;
}
.talent-card-overlay-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,69,0,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.talent-card:hover .talent-card-overlay-hover { opacity: 1; }
.talent-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out);
}
.talent-card:hover .talent-card-body { transform: translateY(0); }
.talent-card-cat {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 4px;
}
.talent-card-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 2px;
}
.talent-card-handle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--white-dim);
  margin-bottom: 12px;
}
.talent-card-followers {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-letter-spacing: 2px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s var(--ease-out) 0.1s;
}
.talent-card:hover .talent-card-followers { opacity: 1; transform: translateY(0); }
/* Image placeholder for talent without photos */
.talent-card-placeholder {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, #1a0a00 50%, var(--surface2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.talent-card-placeholder-text {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(255,69,0,0.08);
  letter-spacing: 4px;
}

/* ── Image Upload / Media Areas ───────────────────────────── */
.media-upload-zone {
  border: 1px dashed var(--border-gold);
  background: var(--gold-dim);
  padding: 40px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
  cursor: none;
  position: relative;
}
.media-upload-zone:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.12);
}
.media-upload-zone.drag-over {
  border-color: var(--ember);
  background: var(--ember-dim);
}
.upload-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}
.upload-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash-light);
  margin-bottom: 6px;
}
.upload-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--ash);
}
.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%; height: 100%;
}

/* ── Photo Grid ───────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 4px;
}
.photo-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  cursor: none;
}
.photo-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.photo-grid-item:hover img { transform: scale(1.06); }
.photo-grid-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.photo-grid-item:hover .photo-grid-item-overlay { opacity: 1; }

/* ── Horizontal scroll work section (Baunfire-style) ─────── */
.work-section {
  padding: 140px 0;
  background: var(--black);
  overflow: hidden;
}
.work-header {
  padding: 0 60px;
  max-width: 1440px;
  margin: 0 auto 60px;
}
.work-scroll-container {
  overflow-x: auto;
  padding: 20px 60px 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.work-scroll-container::-webkit-scrollbar { display: none; }
.work-scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
}
.work-card {
  width: 480px;
  flex-shrink: 0;
  cursor: none;
  position: relative;
}
.work-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.work-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: grayscale(20%);
}
.work-card:hover .work-card-img img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.work-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card-body {
  padding: 24px 0 0;
}
.work-card-cat {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 6px;
}
.work-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  transition: color 0.3s;
}
.work-card:hover .work-card-title { color: var(--ember); }

/* ── CTA Section ──────────────────────────────────────────── */
.lum-cta {
  position: relative;
  padding: 160px 60px;
  overflow: hidden;
  text-align: center;
  background: var(--black);
}
.lum-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,69,0,0.08) 0%, transparent 70%),
    var(--black);
}
.lum-cta-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--ember));
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cta-title em { font-style: normal; color: var(--ember); }
.cta-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Footer ───────────────────────────────────────────────── */
.lum-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo em { font-style: normal; color: var(--ember); }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  color: var(--ash-light);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-location {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash-light);
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.2s;
}
.footer-social-link:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: var(--ember-dim);
  transform: translateY(-2px);
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--ash-light);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom-bar { border-top: 1px solid var(--border); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ash);
}
.footer-bottom-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  color: rgba(212,175,55,0.25);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--white-dim); }

/* ── Forms (public) ───────────────────────────────────────── */
.lum-form-field { display: flex; flex-direction: column; margin-bottom: 20px; }
.lum-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash-light);
  display: block;
  margin-bottom: 8px;
}
.lum-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.lum-input:focus {
  border-color: var(--ember);
  background: var(--surface2);
}
.lum-input::placeholder { color: var(--ash); }
.lum-input option { background: var(--charcoal); }
textarea.lum-input { resize: vertical; min-height: 120px; }

/* ── Page Hero (non-home pages) ───────────────────────────── */
.page-hero {
  padding: 160px 60px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.page-hero-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.page-hero-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--ember);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}
.page-hero-title em { font-style: normal; color: var(--ember); }
.page-hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.85;
  max-width: 560px;
}

/* ── Horizontal rule ──────────────────────────────────────── */
.lum-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Badges / Tags ────────────────────────────────────────── */
.lum-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ember-dim);
  border: 1px solid rgba(255,69,0,0.2);
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
}
.lum-badge-gold {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  color: var(--gold);
}

/* ── GSAP Split Text helpers ──────────────────────────────── */
.split-char {
  display: inline-block;
  overflow: hidden;
}
.split-char-inner {
  display: inline-block;
  transform: translateY(100%);
}
.split-word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.25em;
}

/* ── Pinned section (GSAP ScrollTrigger) ─────────────────── */
.pin-section {
  position: relative;
  min-height: 100vh;
}
.pin-section-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Noise overlay ────────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--ember); border-radius: 2px; }

/* ── Page transition overlay ──────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--ember);
  z-index: 99999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .talent-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-inner   { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  .lum-nav       { padding: 20px 32px; }
  .lum-nav.scrolled { padding: 14px 32px; }
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile    { display: block; }
  .hero-inner    { grid-template-columns: 1fr; gap: 60px; padding: 140px 32px 80px; }
  .hero-visual   { display: none; }
  .lum-section   { padding: 80px 32px; }
  .lum-section-full .section-inner { padding: 0 32px; }
  .page-hero     { padding: 140px 32px 60px; }
  .work-header   { padding: 0 32px; }
  .work-scroll-container { padding: 20px 32px 40px; }
  .talent-header { padding: 0 32px; }
  .talent-grid   { padding: 0 32px; }
  .lum-cta       { padding: 120px 32px; }
  .stats-section { padding: 80px 32px; }
}
@media (max-width: 768px) {
  .talent-grid   { grid-template-columns: repeat(2, 1fr); }
  .work-card     { width: 320px; }
  .hero-title    { font-size: clamp(64px, 16vw, 100px); }
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions   { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .talent-grid   { grid-template-columns: 1fr; }
  .stats-inner   { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lum-nav       { padding: 16px 20px; }
  .nav-mobile ul { padding: 16px 24px 0; }
  .nav-mobile-actions { padding: 16px 24px; }
}

/* ══════════════════════════════════════════════════════════
   OVERHAUL ADDITIONS — Grand Master Pass
══════════════════════════════════════════════════════════ */

/* ── Hero — real photo BG ─────────────────────────────────── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform;
}
.hero-bg-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(10,10,10,0.88) 0%,  rgba(10,10,10,0.60) 50%, rgba(10,10,10,0.20) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.40) 0%,  transparent 40%, rgba(10,10,10,0.95) 100%);
}

/* Hero card — real photo */
.hero-card-img {
  background-size: cover;
  background-position: center;
}

/* Hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 48px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.3);
}
.hero-scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(255,69,0,0.6), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { width: 60px; opacity: 0.6; }
  50%       { width: 100px; opacity: 1; }
}

/* ── Service panel upgrades ────────────────────────────────── */
.svc-panel__num {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 40px;
  right: 40px;
  letter-spacing: 2px;
  pointer-events: none;
  user-select: none;
}
.svc-panel__corner-label {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.svc-cta-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ── Proof / Fan section ───────────────────────────────────── */
.proof-section {
  padding: 140px 0 100px;
  background: var(--black);
  overflow: hidden;
}
.proof-header {
  padding: 0 60px;
  max-width: 1440px;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.proof-fan {
  position: relative;
  height: 600px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
.proof-fan-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s ease, z-index 0s;
  cursor: none;
}
.proof-fan-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
  filter: grayscale(15%);
}
.proof-fan-card:hover { box-shadow: 0 60px 100px rgba(255,69,0,0.2); z-index: 10; }
.proof-fan-card:hover img { transform: scale(1.06); filter: grayscale(0%); }
.proof-fan-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.proof-fan-card:hover .proof-fan-label { opacity: 1; }

/* Card positions — fan layout */
.proof-fan-card--1 {
  width: 340px; height: 460px;
  left: 60px; top: 60px;
  transform: rotate(-6deg);
  z-index: 1;
}
.proof-fan-card--1:hover { transform: rotate(-2deg) translateY(-20px) scale(1.03); }
.proof-fan-card--2 {
  width: 300px; height: 400px;
  left: 280px; top: 30px;
  transform: rotate(-2deg);
  z-index: 2;
}
.proof-fan-card--2:hover { transform: rotate(1deg) translateY(-20px) scale(1.03); }
.proof-fan-card--3 {
  width: 380px; height: 500px;
  left: calc(50% - 190px); top: 20px;
  transform: rotate(1deg);
  z-index: 3;
}
.proof-fan-card--3:hover { transform: rotate(0deg) translateY(-24px) scale(1.03); }
.proof-fan-card--4 {
  width: 300px; height: 420px;
  right: 280px; top: 40px;
  transform: rotate(3deg);
  z-index: 2;
}
.proof-fan-card--4:hover { transform: rotate(6deg) translateY(-20px) scale(1.03); }
.proof-fan-card--5 {
  width: 320px; height: 440px;
  right: 60px; top: 70px;
  transform: rotate(7deg);
  z-index: 1;
}
.proof-fan-card--5:hover { transform: rotate(10deg) translateY(-20px) scale(1.03); }

/* Mobile fan: just a horizontal scroll strip */
@media (max-width: 900px) {
  .proof-fan {
    height: auto;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 32px 32px;
    scrollbar-width: none;
  }
  .proof-fan::-webkit-scrollbar { display: none; }
  .proof-fan-card {
    position: relative;
    flex-shrink: 0;
    width: 260px; height: 360px;
    transform: none !important;
    top: auto; left: auto; right: auto; bottom: auto;
  }
  .proof-fan-card:hover { transform: translateY(-8px) !important; }
  .proof-fan-label { opacity: 1; }
  .proof-header { padding: 0 32px; flex-direction: column; gap: 24px; align-items: flex-start; }
}

/* ── Brand strip — full bleed product shot ─────────────────── */
.brand-strip {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.brand-strip-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  will-change: transform;
}
.brand-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.72);
}
.brand-strip-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-strip-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 110px);
  letter-spacing: 4px;
  color: var(--white);
  line-height: 0.9;
}
.brand-strip-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  letter-spacing: 2px;
  margin-top: 16px;
}

/* ── Section title outline variant ────────────────────────── */
.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,69,0,0.35);
}
