/* =====================================================
   TOBURT STUDIOS — Where Storytellers Build Worlds Together
   Black / gold cinematic identity. Human-led creative studio.
   ===================================================== */
:root {
  --ink:        #050608;
  --night:      #0a0c12;
  --char:       #14171f;
  --bone:       #efe6d6;
  --bone-dim:   #b8ad99;
  --mute:       #6a6557;

  --gold:       #d6a85a;
  --gold-bright:#f4cf86;
  --gold-deep:  #8a6128;
  --amber:      #f0a85a;
  --blue:       #5c87b8;

  --wordmark: "Italiana", "Cormorant Garamond", serif;
  --display:  "Cinzel", "Italiana", serif;
  --serif:    "Cormorant Garamond", "Times New Roman", serif;
  --script:   "Italianno", "Cormorant Garamond", cursive;
  --sans:     "Manrope", system-ui, sans-serif;

  --maxw: 1480px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ink); color: var(--bone); }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 101;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* shared eyebrow */
.eyebrow {
  font-size: 10px; letter-spacing: 0.6em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 16px;
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 38px; height: 1px; background: var(--gold); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(0.2,0.8,0.2,1), transform 1s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 44px;
  transition: background 0.6s, backdrop-filter 0.6s, border 0.6s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,6,8,0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(214,168,90,0.15);
  padding: 13px 44px;
}
.nav-brand { display: flex; align-items: center; gap: 13px; }
.nav-brand img { width: 30px; height: 30px; object-fit: contain; }
.nav-brand .nm {
  font-family: var(--wordmark); font-size: 17px; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--bone); line-height: 1;
}
.nav-brand .nm small { display: block; font-size: 7.5px; letter-spacing: 0.5em; color: var(--gold); margin-top: 3px; }
.nav-links {
  display: flex; gap: 36px;
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bone-dim);
}
.nav-links a { transition: color 0.35s; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta {
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bone);
  border: 1px solid rgba(214,168,90,0.4);
  padding: 10px 18px; border-radius: 999px;
  transition: all 0.4s;
}
.nav-cta:hover {
  background: linear-gradient(180deg, rgba(244,207,134,0.18), rgba(214,168,90,0.06));
  border-color: var(--gold-bright); color: var(--gold-bright);
  box-shadow: 0 0 30px rgba(214,168,90,0.2);
}

/* === BUTTONS === */
.btn {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 2px; border: none;
  transition: all 0.5s cubic-bezier(0.2,0.8,0.2,1);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-primary {
  background: linear-gradient(180deg, #f4cf86, #d6a85a 60%, #8a6128);
  color: #1a0d04; font-weight: 500;
  box-shadow: 0 0 0 1px rgba(244,207,134,0.5), 0 10px 40px rgba(214,168,90,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(244,207,134,0.8), 0 20px 60px rgba(214,168,90,0.45); }
.btn-ghost { background: transparent; color: var(--bone); border: 1px solid rgba(239,230,214,0.3); }
.btn-ghost::before { content: "▸"; color: var(--gold); }
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(214,168,90,0.06); }

/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; width: 100%; background: var(--ink); overflow: hidden; }
.hero-art {
  position: relative; width: 100%;
  aspect-ratio: 1672 / 941;
  background: #050608; max-height: 100vh; min-height: 520px; overflow: hidden;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; pointer-events: none; }
.hero-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 112%, rgba(5,6,8,0.8), transparent 55%),
    linear-gradient(180deg, transparent 74%, rgba(5,6,8,1) 100%);
}
.hero-flare {
  position: absolute; pointer-events: none; width: 360px; height: 360px;
  top: 20%; left: 15%;
  background: radial-gradient(circle, rgba(244,207,134,0.16), transparent 60%);
  filter: blur(6px); animation: flareDrift 14s ease-in-out infinite alternate;
  z-index: 2; mix-blend-mode: screen;
}
@keyframes flareDrift { 0% { transform: translate(0,0) scale(1); opacity: 0.6; } 100% { transform: translate(40px,-20px) scale(1.15); opacity: 1; } }
.hero-comet {
  position: absolute; top: 12%; right: -10%; width: 280px; height: 1px;
  background: linear-gradient(90deg, rgba(255,240,200,0) 0%, rgba(255,240,200,0.9) 80%, rgba(255,240,200,0) 100%);
  transform: rotate(-18deg); box-shadow: 0 0 14px rgba(255,240,200,0.6);
  animation: cometSweep 16s ease-in-out infinite; z-index: 3;
}
@keyframes cometSweep {
  0%,70% { opacity: 0; transform: rotate(-18deg) translateX(120px); }
  78% { opacity: 1; } 88% { opacity: 1; }
  95%,100% { opacity: 0; transform: rotate(-18deg) translateX(-320px); }
}
.dust { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.dust span {
  position: absolute; bottom: -20px; width: 2px; height: 2px; border-radius: 50%;
  background: rgba(244,207,134,0.55); box-shadow: 0 0 6px rgba(244,207,134,0.45);
  animation: rise linear infinite;
}
@keyframes rise { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-110vh) translateX(20px); opacity: 0; } }

/* =====================================================
   STATEMENT — hero headline band
   ===================================================== */
.statement {
  position: relative; background: var(--ink);
  padding: clamp(70px,10vw,150px) 44px clamp(64px,8vw,120px);
  text-align: center; overflow: hidden;
}
.statement::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(70% 90% at 50% 0%, rgba(214,168,90,0.1), transparent 60%); }
.statement-inner { position: relative; max-width: 1180px; margin: 0 auto; }
.statement-mark { width: 58px; height: 58px; object-fit: contain; margin: 0 auto clamp(20px,3vw,30px); filter: drop-shadow(0 0 18px rgba(214,168,90,0.45)); }
.statement-eyebrow { display: inline-block; font-size: clamp(9px,1.4vw,11px); letter-spacing: 0.55em; text-transform: uppercase; color: var(--gold); margin-bottom: clamp(20px,3vw,32px); }
.statement-h1 {
  font-family: var(--wordmark); font-weight: 400;
  font-size: clamp(38px,7vw,118px); line-height: 0.94; letter-spacing: 0.03em;
  color: var(--bone); margin: 0; text-transform: uppercase; text-wrap: balance;
}
.statement-h1 .em {
  display: block;
  background: linear-gradient(180deg, #f7e0b0 0%, #d6a85a 55%, #8a6128 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 30px rgba(214,168,90,0.3));
}
.statement-sub {
  margin: clamp(26px,3.5vw,40px) auto 0; font-family: var(--serif); font-style: italic;
  font-size: clamp(17px,2vw,25px); color: var(--bone-dim); letter-spacing: 0.01em;
  max-width: 780px; line-height: 1.45; text-wrap: balance;
}
.statement-ctas { margin-top: clamp(34px,4.5vw,50px); display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

/* =====================================================
   THE COLLECTIVE
   ===================================================== */
.collective {
  position: relative;
  background: radial-gradient(80% 90% at 82% 8%, rgba(90,135,184,0.07), transparent 60%), var(--night);
  border-top: 1px solid rgba(214,168,90,0.1);
  padding: clamp(90px,11vw,170px) 44px clamp(80px,9vw,130px); overflow: hidden;
}
.collective-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px,6vw,96px); align-items: center;
}
.collective h2 {
  font-family: var(--wordmark); font-weight: 400;
  font-size: clamp(40px,5vw,76px); line-height: 0.98; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--bone); margin: 26px 0 0;
}
.collective .lead {
  font-family: var(--serif); font-style: italic; font-size: clamp(19px,1.9vw,27px);
  line-height: 1.4; color: var(--gold-bright); margin: 26px 0 0; max-width: 540px;
}
.collective .body { color: var(--bone-dim); font-size: 16px; line-height: 1.85; margin: 24px 0 0; max-width: 520px; }
.collective .kick { margin-top: 30px; display: flex; flex-direction: column; gap: 11px; }
.collective .kick span { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--bone); display: flex; align-items: center; gap: 14px; }
.collective .kick span::before { content: ""; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }
.collective .kick b { color: var(--gold); font-weight: 500; }

/* globe / node map */
.globe-wrap { position: relative; width: 100%; }
.globe-wrap svg { width: 100%; height: auto; display: block; overflow: visible; }
.node-ring { fill: none; stroke: var(--gold); stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: nodePulse 3s ease-out infinite; }
@keyframes nodePulse { 0% { transform: scale(0.5); opacity: 0.9; } 100% { transform: scale(2.4); opacity: 0; } }
.arc {
  fill: none; stroke: url(#arcGrad); stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: 7 700; animation: arcFlow 5s linear infinite;
  filter: drop-shadow(0 0 4px rgba(244,207,134,0.5));
}
@keyframes arcFlow { to { stroke-dashoffset: -707; } }
.node-label { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; fill: var(--bone); }
.node-role { font-size: 8px; letter-spacing: 0.1em; fill: var(--gold); }

/* creator city strip */
.cities {
  max-width: var(--maxw); margin: clamp(56px,7vw,86px) auto 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: rgba(214,168,90,0.14); border: 1px solid rgba(214,168,90,0.14);
}
.city { background: var(--night); padding: 24px 22px; transition: background 0.4s; }
.city:hover { background: rgba(214,168,90,0.05); }
.city .role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone); font-weight: 500; }
.city .place { margin-top: 8px; font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.city .place::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); }

/* =====================================================
   THE OPEN DOOR — Hollywood isn't the only way in
   ===================================================== */
.open { background: var(--ink); border-top: 1px solid rgba(214,168,90,0.1); padding: clamp(90px,11vw,160px) 44px; }
.open-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px,6vw,96px); align-items: start; }
.open-lead h2 { font-family: var(--wordmark); font-weight: 400; font-size: clamp(40px,5vw,82px); line-height: 1.0; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bone); margin: 26px 0 0; }
.open-body .big { font-family: var(--serif); font-style: italic; font-size: clamp(20px,2vw,28px); line-height: 1.45; color: var(--bone-dim); margin: 6px 0 0; max-width: 640px; }
.open-body .small { font-family: var(--wordmark); font-size: clamp(22px,2.2vw,32px); letter-spacing: 0.03em; color: var(--gold-bright); margin: 30px 0 0; }
.open-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 0; }
.open-list li { display: flex; align-items: baseline; gap: 18px; padding: 18px 0; border-top: 1px solid rgba(214,168,90,0.12); font-size: 16px; color: var(--bone); letter-spacing: 0.01em; }
.open-list li:last-child { border-bottom: 1px solid rgba(214,168,90,0.12); }
.open-list .n { font-family: var(--wordmark); font-size: 13px; letter-spacing: 0.22em; color: var(--gold); flex-shrink: 0; min-width: 28px; }

/* =====================================================
   OUR WORLDS
   ===================================================== */
.worlds { background: var(--ink); padding: clamp(90px,11vw,160px) 44px clamp(70px,8vw,120px); }
.worlds-head { max-width: var(--maxw); margin: 0 auto 58px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.worlds-head h2 { font-family: var(--wordmark); font-weight: 400; font-size: clamp(44px,5.5vw,86px); line-height: 1.0; letter-spacing: 0.05em; color: var(--bone); margin: 18px 0 0; text-transform: uppercase; }
.worlds-head .meta { text-align: right; max-width: 360px; font-family: var(--serif); font-style: italic; color: var(--bone-dim); font-size: 18px; line-height: 1.5; }
.slate { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 34px; }

.card {
  position: relative; display: block; cursor: pointer; isolation: isolate;
  aspect-ratio: 1024 / 1536; background: #07080b; border-radius: 3px; overflow: hidden;
  transition: transform 0.85s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.85s cubic-bezier(0.2,0.8,0.2,1);
  box-shadow: 0 26px 56px -22px rgba(0,0,0,0.85), 0 0 0 1px rgba(244,207,134,0.07), 0 0 50px -12px rgba(214,168,90,0.12);
}
.card-img { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 1.8s cubic-bezier(0.2,0.8,0.2,1), filter 0.8s; transform: scale(1.03); }
.card-scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(5,6,8,0) 36%, rgba(5,6,8,0.6) 68%, rgba(5,6,8,0.95) 100%); }
.card::before { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; border-radius: inherit; border: 1px solid rgba(244,207,134,0.16); box-shadow: inset 0 1px 0 rgba(255,240,210,0.07); transition: border-color 0.6s, box-shadow 0.6s; }
.card:hover { transform: translateY(-14px) scale(1.015); box-shadow: 0 50px 90px -22px rgba(0,0,0,0.92), 0 0 0 1px rgba(244,207,134,0.42), 0 0 110px -10px rgba(244,207,134,0.34); z-index: 5; }
.card:hover .card-img img { transform: scale(1.08); filter: brightness(1.08) saturate(1.05); }
.card:hover::before { border-color: rgba(244,207,134,0.55); box-shadow: inset 0 1px 0 rgba(255,240,210,0.2), inset 0 0 60px rgba(244,207,134,0.08); }

.chip { position: absolute; top: 16px; left: 16px; z-index: 5; font-size: 8.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--bone); background: rgba(5,6,8,0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(244,207,134,0.32); padding: 7px 11px; border-radius: 2px; }
.chip.soon { color: var(--gold-bright); border-color: rgba(244,207,134,0.5); }

.card-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; padding: 22px 22px 24px; }
.card-fmt { font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.card-title { font-family: var(--wordmark); font-weight: 400; font-size: clamp(24px,2vw,33px); line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bone); margin: 0; }
.card-title .sub { color: var(--gold-bright); font-size: 0.66em; letter-spacing: 0.08em; }
.card-log { margin: 0; color: var(--bone-dim); font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.35; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.2,0.8,0.2,1), opacity 0.5s, margin 0.5s; }
.card:hover .card-log { max-height: 96px; opacity: 1; margin-top: 12px; }

/* =====================================================
   HOW WE CREATE
   ===================================================== */
.process { background: var(--night); border-top: 1px solid rgba(214,168,90,0.1); padding: clamp(90px,11vw,160px) 44px; }
.process-head { max-width: var(--maxw); margin: 0 auto 64px; text-align: center; }
.process-head h2 { font-family: var(--wordmark); font-weight: 400; font-size: clamp(40px,5.2vw,84px); line-height: 1.04; letter-spacing: 0.05em; color: var(--bone); margin: 22px auto 0; text-transform: uppercase; }
.process-head .sub { font-family: var(--serif); font-style: italic; font-size: clamp(18px,1.8vw,24px); color: var(--bone-dim); max-width: 720px; margin: clamp(26px,3vw,38px) auto 0; line-height: 1.5; }
.process-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(214,168,90,0.14); border: 1px solid rgba(214,168,90,0.14); }
.pcard { background: var(--ink); padding: 40px 32px 44px; position: relative; transition: background 0.5s; min-height: 320px; display: flex; flex-direction: column; }
.pcard:hover { background: rgba(214,168,90,0.04); }
.pcard .num { font-family: var(--wordmark); font-size: 14px; letter-spacing: 0.3em; color: var(--gold); }
.pcard h3 { font-family: var(--wordmark); font-weight: 400; font-size: 27px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--bone); margin: 28px 0 0; line-height: 1.05; }
.pcard p { color: var(--bone-dim); font-size: 15px; line-height: 1.7; margin: 16px 0 0; }
.pcard .roles { margin-top: auto; padding-top: 22px; font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border-top: 1px solid rgba(214,168,90,0.12); }

.process-note { max-width: var(--maxw); margin: 56px auto 0; text-align: center; font-family: var(--serif); font-style: italic; font-size: clamp(20px,2.2vw,30px); line-height: 1.45; color: var(--bone); }
.process-note b { color: var(--gold-bright); font-style: normal; font-weight: 400; }

/* =====================================================
   PEOPLE — creator spotlights
   ===================================================== */
.people { background: var(--ink); padding: clamp(90px,11vw,160px) 44px; }
.people-head { max-width: var(--maxw); margin: 0 auto 58px; text-align: center; }
.people-head h2 { font-family: var(--wordmark); font-weight: 400; font-size: clamp(40px,5.2vw,84px); line-height: 1.04; letter-spacing: 0.05em; color: var(--bone); margin: 22px auto 0; text-transform: uppercase; }
.people-head .sub { font-family: var(--serif); font-style: italic; font-size: clamp(18px,1.8vw,24px); color: var(--bone-dim); max-width: 700px; margin: clamp(26px,3vw,38px) auto 0; line-height: 1.5; }
.people-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.person { position: relative; display: block; border: 1px solid rgba(214,168,90,0.14); border-radius: 3px; overflow: hidden; background: var(--night); aspect-ratio: 3 / 4; transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.6s, border-color 0.6s; }
.person:hover { transform: translateY(-8px); border-color: rgba(244,207,134,0.4); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8), 0 0 60px -14px rgba(244,207,134,0.25); }
.person .portrait { position: absolute; inset: 0; background: linear-gradient(180deg, #181b22, #0a0c12); display: grid; place-items: center; }
.person .portrait::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 30%, rgba(214,168,90,0.12), transparent 65%); }
.person .mono { font-family: var(--wordmark); font-size: clamp(50px,5vw,78px); letter-spacing: 0.05em; color: rgba(214,168,90,0.32); }
.person .pscrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,6,8,0.92) 100%); }
.person .pmeta { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; }
.person .prole { font-family: var(--wordmark); font-weight: 400; font-size: clamp(26px,2.4vw,38px); letter-spacing: 0.04em; text-transform: uppercase; color: var(--bone); line-height: 1.0; }
.person .pdesc { margin-top: 12px; font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.35; color: var(--bone-dim); max-width: 280px; }
.person.storyteller .portrait { background: linear-gradient(180deg, rgba(214,168,90,0.14), #0a0c12); }
.person.storyteller .mono { color: rgba(244,207,134,0.55); }
.person.storyteller .prole { color: var(--gold-bright); }

/* =====================================================
   JOIN THE COLLECTIVE
   ===================================================== */
.join { position: relative; background: radial-gradient(90% 120% at 50% 0%, rgba(214,168,90,0.1), transparent 55%), var(--night); border-top: 1px solid rgba(214,168,90,0.1); padding: clamp(100px,12vw,180px) 44px; overflow: hidden; }
.join-inner { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; }
.join h2 { font-family: var(--wordmark); font-weight: 400; font-size: clamp(44px,6.4vw,108px); line-height: 0.94; letter-spacing: 0.05em; color: var(--bone); margin: 24px auto 0; text-transform: uppercase; }
.join .sub { font-family: var(--serif); font-style: italic; font-size: clamp(18px,2vw,27px); color: var(--bone-dim); max-width: 760px; margin: 26px auto 0; line-height: 1.5; }
.join-roles { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 44px auto 0; max-width: 900px; }
.join-roles span { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bone-dim); border: 1px solid rgba(214,168,90,0.22); border-radius: 999px; padding: 9px 16px; transition: all 0.4s; }
.join-roles span:hover { color: var(--gold-bright); border-color: var(--gold-bright); background: rgba(214,168,90,0.06); }
.join-cta { margin-top: 48px; }

/* =====================================================
   FOOTER
   ===================================================== */
.foot { background: var(--ink); border-top: 1px solid rgba(214,168,90,0.14); padding: clamp(70px,8vw,110px) 44px 40px; }
.foot-top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; align-items: start; }
.foot-brand { display: flex; flex-direction: column; gap: 18px; }
.foot-brand .row { display: flex; align-items: center; gap: 14px; }
.foot-brand img { width: 40px; height: 40px; object-fit: contain; }
.foot-brand .nm { font-family: var(--wordmark); font-size: 22px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--bone); line-height: 1; }
.foot-brand .nm small { display: block; font-size: 8px; letter-spacing: 0.5em; color: var(--gold); margin-top: 4px; }
.foot-brand .tag { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--bone-dim); max-width: 360px; line-height: 1.4; }
.foot-col h4 { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; }
.foot-col a { display: block; color: var(--bone-dim); font-size: 13px; letter-spacing: 0.06em; padding: 7px 0; transition: color 0.3s; }
.foot-col a:hover { color: var(--gold-bright); }
.foot-bottom { max-width: var(--maxw); margin: clamp(50px,6vw,80px) auto 0; padding-top: 28px; border-top: 1px solid rgba(214,168,90,0.1); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); }

/* === AMBIENT AUDIO TOGGLE === */
.ambient-toggle {
  position: fixed; bottom: 28px; left: 28px; z-index: 80;
  display: inline-flex; align-items: center; gap: 14px; padding: 10px 16px 10px 12px;
  background: rgba(5,6,8,0.55); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(244,207,134,0.22); border-radius: 999px; color: var(--bone-dim);
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; transition: all 0.5s; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.ambient-toggle:hover { color: var(--bone); border-color: rgba(244,207,134,0.5); box-shadow: 0 10px 50px rgba(244,207,134,0.18); }
.ambient-toggle .eq { display: inline-flex; align-items: end; gap: 2px; height: 16px; }
.ambient-toggle .eq i { display: block; width: 2px; height: 4px; background: var(--gold); border-radius: 1px; opacity: 0.6; transition: height 0.3s, opacity 0.3s; }
.ambient-toggle[data-on="true"] { color: var(--bone); border-color: rgba(244,207,134,0.55); box-shadow: 0 10px 50px rgba(244,207,134,0.22); }
.ambient-toggle[data-on="true"] .eq i { opacity: 1; animation: eqBounce 1.4s ease-in-out infinite; }
.ambient-toggle[data-on="true"] .eq i:nth-child(2) { animation-delay: 0.2s; }
.ambient-toggle[data-on="true"] .eq i:nth-child(3) { animation-delay: 0.4s; }
.ambient-toggle[data-on="true"] .eq i:nth-child(4) { animation-delay: 0.6s; }
@keyframes eqBounce { 0%,100% { height: 4px; } 50% { height: 14px; } }

/* === RESPONSIVE === */
@media (max-width: 1180px) {
  .collective-inner { grid-template-columns: 1fr; gap: 56px; }
  .open-inner { grid-template-columns: 1fr; gap: 36px; }
  .globe-wrap { max-width: 620px; margin: 0 auto; }
  .people-grid { grid-template-columns: repeat(3, 1fr); }
  .cities { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1040px) {
  .nav-links { display: none; }
}
@media (max-width: 900px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 11px 22px; }
  .nav-links { display: none; }
  .statement { padding: 64px 24px 60px; }
  .collective, .worlds, .process, .people, .open { padding-left: 24px; padding-right: 24px; }
  .worlds-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .worlds-head .meta { text-align: left; }
  .slate { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .nav-cta { padding: 9px 15px; font-size: 9.5px; letter-spacing: 0.2em; }
  .hero-art { min-height: 320px; }
  .statement { padding: 52px 22px 52px; }
  .statement-h1 { font-size: clamp(30px,11vw,46px); }
  .statement-ctas { flex-direction: column; align-items: stretch; }
  .statement-ctas .btn { width: 100%; }
  .collective h2 { font-size: clamp(34px,9vw,46px); }
  .cities { grid-template-columns: repeat(2, 1fr); }
  .slate { grid-template-columns: 1fr; gap: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr; }
  .ambient-toggle { bottom: 18px; left: 18px; }
  .join-cta .btn { width: 100%; }
}
