/* ══════════════════════════════════════════════
   VASEBIT — styles.css
   ══════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────── */
:root {
  /* Core palette */
  --forest:   #06120f;       /* deep background */
  --forest2:  #0c1e19;       /* secondary dark */
  --forest3:  #112920;       /* card dark */
  --brass:    #c8862a;       /* primary accent */
  --brass2:   #e0aa55;       /* highlight */
  --cream:    #f4f0e8;       /* light bg */
  --cream2:   #e8e2d6;       /* secondary light */
  --ink:      #1a1a18;       /* text on light */
  --fog:      rgba(244,240,232,.55);
  --fog2:     rgba(244,240,232,.35);
  --muted:    rgba(244,240,232,.45);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  /* Spacing */
  --section-px: clamp(32px, 8vw, 120px);
  --section-py: 120px;
}

/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }

/* ── Custom Cursor ─────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--brass);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,134,42,.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  will-change: left, top;
}
body:has(a:hover) .cursor { width: 14px; height: 14px; background: var(--brass2); }
body:has(a:hover) .cursor-ring { width: 52px; height: 52px; }
@media (pointer: coarse) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ── Progress Bar ──────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--brass), var(--brass2));
  z-index: 10000;
  pointer-events: none;
  transition: width .05s linear;
}

/* ── Scroll Reveal ─────────────────────────── */
.reveal-item, .reveal-cinema {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .95s cubic-bezier(.16,1,.3,1),
              transform .95s cubic-bezier(.16,1,.3,1);
}
.reveal-item.visible, .reveal-cinema.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-float {
  opacity: 0;
  animation: floatIn 1s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section Helpers ────────────────────────── */
.section-light { background: var(--cream); color: var(--ink); }
.section-dark  { background: var(--forest2); }

/* ── Shared Typography ─────────────────────── */
.display-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
}
.display-heading em { font-style: italic; color: var(--brass); }
.display-heading.light { color: var(--cream); }
.display-heading.light em { color: var(--brass2); }

.tag-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  display: block;
}
.tag-label.dark  { color: #9a6e22; }
.tag-label.light { color: var(--brass2); }

.section-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fog);
  max-width: 560px;
  margin-top: 20px;
}

/* ── Buttons ────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--brass);
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 40px;
  text-decoration: none;
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--brass2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  border: 1px solid rgba(200,134,42,.4);
  color: var(--brass);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 40px;
  text-decoration: none;
  transition: border-color .3s, color .3s, transform .2s;
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass2); transform: translateY(-2px); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  border: 1px solid rgba(244,240,232,.35);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 40px;
  text-decoration: none;
  transition: border-color .3s, background .3s, transform .2s;
  margin-top: 32px;
}
.btn-outline-light:hover { border-color: var(--cream); background: rgba(244,240,232,.08); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 40px;
  text-decoration: none;
  transition: background .3s, color .3s, transform .2s;
}
.btn-secondary:hover { background: var(--brass); color: var(--forest); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px var(--section-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .4s, padding .4s;
}
#nav.scrolled {
  background: rgba(6,18,15,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px var(--section-px);
  border-bottom: 1px solid rgba(200,134,42,.12);
}
.nav-logo img {
  height: 24px;
  filter: brightness(0) invert(1);
  transition: opacity .3s;
}
.nav-logo:hover img { opacity: .75; }
.nav-links {
  display: flex; gap: 32px;
  list-style: none; align-items: center;
}
.nav-links a {
  color: var(--fog2);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .1em;
  font-weight: 500;
  transition: color .3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  color: var(--brass) !important;
  border: 1px solid rgba(200,134,42,.4);
  padding: 8px 20px;
  border-radius: 40px;
  transition: background .3s, color .3s !important;
}
.nav-cta:hover { background: var(--brass) !important; color: var(--forest) !important; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(12,30,25,.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200,134,42,.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(200,134,42,.3);
  border-radius: 40px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--brass2);
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: floatIn 1s ease .3s forwards;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 170px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.02em;
  opacity: 0;
  animation: floatIn 1.4s cubic-bezier(.16,1,.3,1) .5s forwards;
}
.ht-line { display: block; }
.ht-italic { font-style: italic; color: var(--brass2); }
.hero-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--muted);
  margin-top: 36px;
  text-transform: uppercase;
  opacity: 0;
  animation: floatIn 1s ease 1s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  opacity: 0;
  animation: floatIn 1s ease 1.2s forwards;
}
.scroll-cue {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  opacity: 0;
  animation: floatIn 1s ease 1.8s forwards;
}
.scroll-cue span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--muted);
  text-transform: uppercase;
}
.scroll-wheel {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(200,134,42,.4);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.scroll-wheel-dot {
  width: 4px; height: 4px;
  background: var(--brass);
  border-radius: 50%;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}
.hero-stats {
  position: absolute;
  bottom: 48px; right: var(--section-px);
  display: flex; flex-direction: column;
  gap: 24px; align-items: flex-end;
}
.h-stat {
  text-align: right;
}
.h-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--brass2);
  line-height: 1;
}
.h-stat span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   BRAND INTRO
═══════════════════════════════════════════════ */
#scene-intro {
  overflow: hidden;
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: var(--section-py) var(--section-px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.intro-right p {
  font-size: 17px;
  line-height: 1.85;
  color: #555;
}
.text-divider {
  width: 40px; height: 1.5px;
  background: var(--brass);
  margin: 28px 0;
  opacity: .5;
}

/* Marquee */
.marquee-outer {
  overflow: hidden;
  border-top: 1px solid rgba(26,26,24,.1);
  padding: 28px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-style: italic;
  color: var(--ink);
  opacity: .35;
  padding: 0 12px;
}
.marquee-track .mdot {
  font-style: normal;
  color: var(--brass);
  opacity: .6;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   STUDIO CINEMA
═══════════════════════════════════════════════ */
.studio-cinema {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cinema-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 1.8s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.cinema-bg.entered { transform: scale(1.0); }
.cinema-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(6,18,15,.9) 40%, rgba(6,18,15,.35) 100%);
}
.cinema-text {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 0 0 0 var(--section-px);
}
.cinema-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--fog);
  margin-top: 24px;
  max-width: 460px;
}

/* Services strip */
.studio-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200,134,42,.12);
}
.service-item {
  padding: 52px 36px;
  border-right: 1px solid rgba(200,134,42,.1);
  transition: background .4s;
}
.service-item:last-child { border-right: none; }
.service-item:hover { background: rgba(200,134,42,.04); }
.service-icon {
  width: 40px; height: 40px;
  color: var(--brass);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.service-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fog);
}

/* Locations */
.locations-section {
  padding: var(--section-py) var(--section-px);
}
.section-header {
  margin-bottom: 56px;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.loc-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream2);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(26,26,24,.15); }
.loc-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.loc-img-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  filter: saturate(.8);
}
.loc-card:hover .loc-img-wrap img { transform: scale(1.06); }
.loc-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}
.loc-city {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: .02em;
}
.loc-country {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
  font-family: var(--font-mono);
}
.loc-code {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--brass);
  background: rgba(200,134,42,.1);
  padding: 4px 8px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   ARTISTS LABEL — SPLIT
═══════════════════════════════════════════════ */
#scene-label { overflow: hidden; }
.label-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.label-dark {
  background: var(--forest);
  padding: var(--section-py) var(--section-px);
  display: flex; flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid rgba(200,134,42,.08);
}
.label-caption {
  font-size: 17px;
  line-height: 1.8;
  color: var(--fog);
  margin-top: 28px;
  max-width: 420px;
}
.label-light {
  background: var(--cream);
  padding: var(--section-py) clamp(32px,5vw,80px);
  display: flex; flex-direction: column;
  justify-content: flex-start;
  gap: 48px;
}
.label-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream2);
  border-radius: 8px;
  overflow: hidden;
}
.label-stat {
  background: var(--cream);
  padding: 28px 24px;
  transition: background .3s;
}
.label-stat:hover { background: var(--cream2); }
.label-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brass);
  margin-bottom: 4px;
}
.label-stat span {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}
.label-features { display: flex; flex-direction: column; }
.feat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,26,24,.08);
  cursor: default;
  transition: padding-left .3s;
}
.feat-row:first-child { border-top: 1px solid rgba(26,26,24,.08); }
.feat-row:hover { padding-left: 6px; }
.feat-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brass);
  letter-spacing: .1em;
  min-width: 24px;
}
.feat-text { font-size: 14px; color: var(--ink); font-weight: 600; flex: 1; }
.feat-arrow { color: var(--brass); opacity: 0; transition: opacity .3s; }
.feat-row:hover .feat-arrow { opacity: 1; }

/* ═══════════════════════════════════════════════
   ARTISTS
═══════════════════════════════════════════════ */
#scene-artists { padding: var(--section-py) var(--section-px); }
.artists-inner { max-width: 1400px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px;
}
.artist-card {
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.artist-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.artist-img-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .7s ease;
  filter: brightness(.9) saturate(.75);
}
.artist-card:hover .artist-img-wrap img { transform: scale(1.05); }
.artist-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,18,15,.85) 0%, rgba(6,18,15,.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding-bottom: 28px;
  opacity: 0;
  transition: opacity .4s ease;
}
.artist-card:hover .artist-overlay { opacity: 1; }
.artist-pill {
  display: inline-flex;
  align-items: center; gap: 6px;
  padding: 9px 18px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .2s;
}
.artist-pill:hover { transform: scale(1.05); }
.artist-pill.spotify { background: #1DB954; color: #000; }
.artist-pill.web { border: 1px solid rgba(244,240,232,.5); color: var(--cream); }
.artist-meta { margin-top: 18px; }
.artist-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .01em;
}
.artist-sub-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ═══════════════════════════════════════════════
   CAREERS
═══════════════════════════════════════════════ */
#scene-careers { padding: var(--section-py) var(--section-px); }
.careers-inner { max-width: 1400px; margin: 0 auto; }
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 0;
}
.career-card {
  background: var(--cream2);
  border-radius: 10px;
  padding: 40px 36px;
  display: flex; flex-direction: column;
  gap: 24px;
  border: 1.5px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.career-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26,26,24,.1);
}
.career-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--brass);
}
.career-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.career-body p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}
.career-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 18px;
}
.career-tags span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(200,134,42,.1);
  color: var(--brass);
  border: 1px solid rgba(200,134,42,.2);
}
.career-apply {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  font-weight: 400;
  margin-top: auto;
  transition: gap .25s, color .25s;
}
.career-apply:hover { gap: 14px; color: var(--ink); }
.careers-footer {
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(26,26,24,.1);
}
.careers-footer p { font-size: 17px; color: #555; }

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-quote-block {
  padding: var(--section-py) var(--section-px);
  max-width: 1100px;
  margin: 0 auto;
}
blockquote {
  position: relative;
  padding-left: 40px;
}
.bq-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.6;
  color: var(--brass);
  opacity: .25;
  position: absolute;
  top: -10px; left: -12px;
  pointer-events: none;
}
blockquote p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--fog);
  max-width: 900px;
}
blockquote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--brass);
  font-style: normal;
  text-transform: uppercase;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(200,134,42,.1);
}
.pillar {
  padding: 60px var(--section-px);
  border-right: 1px solid rgba(200,134,42,.08);
  transition: background .4s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(200,134,42,.025); }
.pillar-head {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 12px 0 16px;
}
.pillar p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fog);
}
.pillar-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--brass);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s;
}
.pillar-link:hover { color: var(--brass2); }

/* Contact band */
.contact-band {
  background: rgba(200,134,42,.06);
  border-top: 1px solid rgba(200,134,42,.1);
  border-bottom: 1px solid rgba(200,134,42,.1);
  padding: 56px var(--section-px);
}
.contact-band-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-col { flex: 1; }
.contact-col a {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--cream);
  text-decoration: none;
  font-weight: 400;
  display: block;
  margin-top: 8px;
  transition: color .3s;
}
.contact-col a:hover { color: var(--brass2); }
.contact-divider {
  width: 1px; height: 60px;
  background: rgba(200,134,42,.2);
  margin: 0 clamp(24px, 4vw, 60px);
}

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
#scene-pricing { padding: var(--section-py) var(--section-px); }
.pricing-inner { max-width: 1000px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.pricing-card {
  border-radius: 12px;
  padding: 40px 36px;
  border: 1.5px solid rgba(26,26,24,.12);
  background: #fff;
  display: flex; flex-direction: column;
  gap: 32px;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.pricing-card:hover { box-shadow: 0 20px 48px rgba(26,26,24,.1); transform: translateY(-4px); }
.pricing-card-featured {
  border-color: var(--brass);
  background: var(--forest);
  color: var(--cream);
}
.pricing-card-featured:hover { box-shadow: 0 20px 48px rgba(200,134,42,.18); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: var(--forest);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; padding: 5px 18px; border-radius: 40px;
  white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--ink); }
.pricing-card-featured .plan-name { color: var(--cream); }
.plan-tagline-sub {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin-top: 4px;
}
.plan-tagline { font-size: 14px; line-height: 1.6; color: #666; margin-top: 8px; }
.pricing-card-featured .plan-tagline { color: var(--fog); }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-top: 16px; }
.price-amount { font-family: var(--font-display); font-size: 52px; font-weight: 400; line-height: 1; color: var(--ink); }
.pricing-card-featured .price-amount { color: var(--brass2); }
.price-period { font-family: var(--font-mono); font-size: 13px; color: #999; letter-spacing: .05em; }
.pricing-card-featured .price-period { color: var(--fog); }
.plan-note { font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--brass); margin-top: 6px; }
.plan-features { list-style: none; display: flex; flex-direction: column; flex: 1; }
.plan-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; padding: 11px 0;
  border-bottom: 1px solid rgba(26,26,24,.07);
  color: #444;
}
.pricing-card-featured .plan-features li { border-bottom-color: rgba(200,134,42,.1); color: var(--fog); }
.plan-features li:last-child { border-bottom: none; }
.feat-yes::before {
  content: ''; display: block; width: 16px; height: 16px; min-width: 16px;
  border-radius: 50%; background: rgba(200,134,42,.15);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23c8862a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.feat-no::before {
  content: ''; display: block; width: 16px; height: 16px; min-width: 16px;
  border-radius: 50%; background: rgba(26,26,24,.07);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' r='1.5' fill='%23aaa'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.feat-no { color: #aaa !important; }
.feat-star::before {
  content: ''; display: block; width: 16px; height: 16px; min-width: 16px;
  border-radius: 50%; background: rgba(200,134,42,.2);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 1l1.12 2.27L8.5 3.64l-1.75 1.7.41 2.41L5 6.5 2.84 7.75l.41-2.41L1.5 3.64l2.38-.37L5 1z' fill='%23c8862a'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.feat-detail { font-family: var(--font-mono); font-size: 10px; color: #aaa; letter-spacing: .08em; margin-left: 4px; }
.pricing-card-featured .feat-detail { color: rgba(244,240,232,.4); }
.plan-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 40px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  text-decoration: none; transition: background .3s, color .3s, transform .2s; margin-top: auto;
}
.plan-btn:hover { transform: translateY(-2px); }
.plan-btn-outline { border: 1.5px solid rgba(26,26,24,.2); color: var(--ink); }
.plan-btn-outline:hover { border-color: var(--brass); color: var(--brass); }
.plan-btn-primary { background: var(--brass); color: var(--forest); }
.plan-btn-primary:hover { background: var(--brass2); }
.pricing-footnote {
  margin-top: 36px; font-family: var(--font-mono); font-size: 11px;
  line-height: 1.8; color: #999; letter-spacing: .04em;
  max-width: 740px; padding-top: 24px;
  border-top: 1px solid rgba(26,26,24,.08);
}
.pricing-footnote sup { color: var(--brass); font-size: 9px; }
label-stat sup { color: var(--brass); font-size: 11px; vertical-align: super; }
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#footer { background: var(--forest); border-top: 1px solid rgba(200,134,42,.1); }
.footer-top {
  padding: 72px var(--section-px) 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  width: auto; height: 22px;
  filter: brightness(0) invert(1);
  opacity: .45;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: rgba(244,240,232,.35);
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}
.footer-nav a {
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(244,240,232,.3);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .3s;
}
.footer-nav a:hover { color: var(--brass); }
.footer-bottom {
  padding: 28px var(--section-px);
  border-top: 1px solid rgba(200,134,42,.07);
  text-align: center;
}
.footer-legal {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: rgba(244,240,232,.18);
  line-height: 1.9;
  max-width: 780px;
  margin: 0 auto 12px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(244,240,232,.14);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .studio-services { grid-template-columns: repeat(2,1fr); }
  .locations-grid  { grid-template-columns: repeat(2,1fr); }
  .label-split     { grid-template-columns: 1fr; min-height: auto; }
  .label-dark, .label-light { padding: 72px var(--section-px); }
  .about-pillars   { grid-template-columns: 1fr; }
  .pillar          { border-right: none; border-bottom: 1px solid rgba(200,134,42,.08); }
}
@media (max-width: 900px) {
  :root { --section-py: 80px; }
  .nav-links { display: none; flex-direction: column; gap: 24px; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6,18,15,.97); padding: 32px var(--section-px); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .careers-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .contact-band-inner { flex-wrap: wrap; gap: 32px; }
  .contact-divider { display: none; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .hero-stats { display: none; }
}
@media (max-width: 620px) {
  .artists-grid { grid-template-columns: 1fr; }
  .studio-services { grid-template-columns: 1fr; }
  .label-stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .careers-footer { flex-direction: column; align-items: flex-start; }
}