:root {
  --black: #05050c;
  --dark-2: #08080f;
  --dark-3: #0c0c18;
  --near-black: #03030a;
  --violet: #6b5cf6;
  --teal: #3ecfb2;
  --coral: #e8855a;
  --pink: #ec6fa0;
  --muted: #888898;
  --border: #141428;
  --text: #f0f0f8;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
}

p {
  margin: 0;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  font-family: var(--font-body);
  font-weight: 600;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(5, 5, 12, 0.6);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--violet);
}

/* ============ NAV DROPDOWN ============ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--violet);
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  right: 0;
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: rgba(8, 8, 15, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 5px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(107, 92, 246, 0.14);
  color: var(--violet);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.btn-filled {
  background: var(--violet);
  color: #ffffff;
}

.btn-filled:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--violet);
}

.btn-small {
  padding: 9px 18px;
  font-size: 12px;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 680px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-content .eyebrow {
  display: block;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero h1 em {
  font-style: italic;
  color: var(--violet);
}

.hero .sub {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scroll-indicator.visible {
  opacity: 1;
}

/* Says what scrolling DOES, at a size that reads. It was 10px muted grey and
   easy to miss entirely — on pages whose whole interaction is scroll-to-rotate,
   missing it means missing the point of the page. All five scroll-driven 3D
   pages share this, so they all get it. */
.scroll-indicator span {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
}

.scroll-indicator .line {
  width: 2px;
  height: 40px;
  background: linear-gradient(var(--text), transparent);
  position: relative;
  overflow: hidden;
  opacity: 0.75;
}

/* a travelling pulse, so it reads as an instruction to move rather than a mark */
.scroll-indicator .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -60%;
  width: 100%;
  height: 60%;
  background: var(--violet);
  animation: scrollCue 1.9s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { top: -60%; }
  100% { top: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator .line::after { animation: none; opacity: 0; }
}

/* ============ CREDENTIAL BAR ============ */

.credential-bar {
  display: flex;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.credential-bar > div {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  border-left: 0.5px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.credential-bar > div:first-child {
  border-left: none;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-violet {
  background: var(--violet);
}

.dot-teal {
  background: var(--teal);
}

.dot-coral {
  background: var(--coral);
}

.dot-pink {
  background: var(--pink);
}

/* ============ FEATURED BJORK ============ */

.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.featured-text {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin: 16px 0 24px;
}

.pull-quote {
  border-left: 2px solid var(--violet);
  padding-left: 20px;
  font-style: italic;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 28px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.pill {
  font-size: 11px;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.link-row a {
  font-size: 13px;
  color: var(--violet);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.link-row a:hover {
  border-color: var(--violet);
}

.featured-visual {
  position: relative;
  overflow: hidden;
}

.featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.featured-visual:hover img {
  opacity: 0.95;
  transform: scale(1.03);
}

.visual-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 5, 12, 0.7) 0%, rgba(5, 5, 12, 0) 55%);
  pointer-events: none;
}

.splat-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(5, 5, 12, 0.6);
  backdrop-filter: blur(8px);
}

.parallax-asset {
  will-change: transform;
  transform-style: preserve-3d;
}

/* ============ SECTION HEADERS ============ */

.section-header {
  padding: 100px 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin-top: 16px;
}

/* ============ WORK GRID ============ */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.work-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.work-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.work-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  opacity: 0.85;
}

.work-card:hover .thumb img {
  opacity: 1;
  transform: scale(1.05);
}

.thumb-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 12, 0.85) 0%, rgba(5, 5, 12, 0) 50%);
  pointer-events: none;
}

.work-card .info {
  padding: 24px 28px 32px;
}

.work-card .info .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.work-card .info h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.work-card .info p {
  font-size: 13px;
  color: var(--muted);
}

.view-all-wrap {
  text-align: center;
  padding: 56px 40px 120px;
}

/* ============ WHAT WE DO ============ */

.what-we-do {
  background: var(--dark-3);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 120px;
}

.wwd-card {
  padding: 40px;
}

.wwd-card.middle {
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
}

.wwd-card .num {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.wwd-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.wwd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}

.tag {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid;
}

.tag-violet {
  color: var(--violet);
  border-color: rgba(107, 92, 246, 0.4);
}

.tag-teal {
  color: var(--teal);
  border-color: rgba(62, 207, 178, 0.4);
}

.tag-coral {
  color: var(--coral);
  border-color: rgba(232, 133, 90, 0.4);
}

.wwd-card .go-link {
  font-size: 13px;
  color: var(--text);
}

.wwd-card.violet-link .go-link {
  color: var(--violet);
}

.wwd-card.teal-link .go-link {
  color: var(--teal);
}

.wwd-card.coral-link .go-link {
  color: var(--coral);
}

/* ============ SERVICES ============ */

.services {
  background: var(--dark-2);
  padding-bottom: 120px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--dark-2);
  padding: 44px;
}

.service-card.coming-soon {
  border: 1px dashed var(--border);
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .num {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-card .output {
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

/* ============ TECH TICKER ============ */

.ticker {
  background: var(--near-black);
  overflow: hidden;
  padding: 28px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-track span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
  padding: 0 24px;
  white-space: nowrap;
  border-right: 0.5px solid var(--border);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ FOUNDER ============ */

.founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.founder-visual {
  overflow: hidden;
}

.founder-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-text {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin: 16px 0 28px;
}

.founder-text h2 em {
  font-style: italic;
  color: var(--violet);
}

.founder-text p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.founder-ctas {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

/* ============ ARTIST CTA ============ */

.artist-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid var(--border);
}

.artist-cta-text {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artist-cta-text h2 {
  font-style: italic;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  margin: 20px 0 24px;
  line-height: 1.3;
}

.artist-cta-text p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.artist-cta-text .email {
  color: var(--violet);
  font-size: 14px;
}

.artist-cta-form {
  padding: 100px 60px;
  border-left: 0.5px solid var(--border);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--violet);
}

.field textarea {
  resize: vertical;
  min-height: 70px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 16px;
}

/* ============ FINAL CTA ============ */

.final-cta {
  background: var(--dark-3);
  text-align: center;
  padding: 120px 40px;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 40px;
  letter-spacing: -0.01em;
}

.final-cta-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ============ FOOTER ============ */

footer {
  background: var(--near-black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 48px;
}

.footer-brand img {
  height: 30px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.footer-coords {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  opacity: 0.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--violet);
}

.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

/* ============ RESPONSIVE ============ */

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

  .credential-bar {
    flex-direction: column;
  }

  .credential-bar > div {
    border-left: none;
    border-top: 0.5px solid var(--border);
  }

  .credential-bar > div:first-child {
    border-top: none;
  }

  .featured,
  .founder,
  .artist-cta {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    min-height: 320px;
    order: -1;
  }

  .founder-visual {
    min-height: 320px;
  }

  .featured-text,
  .founder-text,
  .artist-cta-text,
  .artist-cta-form {
    padding: 56px 24px;
  }

  .artist-cta-form {
    border-left: none;
    border-top: 0.5px solid var(--border);
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 80px;
  }

  .wwd-card.middle {
    border-left: none;
    border-right: none;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .section-header,
  .view-all-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ============ SUB-PAGE HERO (artists / work / what-we-do) ============ */

.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 24px 80px;
  text-align: center;
}

.page-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-hero .sub {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 16px;
  color: var(--muted);
}

/* ============ STAT CHIPS (artists.html) ============ */

.stat-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.stat-chip {
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text);
}

/* ============ CLIP PLACEHOLDERS ============ */

.clip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 1px;
}

.clip-placeholder {
  background: var(--dark-2);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.clip-placeholder span:not(.asset-badge) {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ FOMO / DASHED PLACEHOLDER CARDS ============ */

.work-card.fomo {
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  opacity: 0.5;
}

.work-card.fomo span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ============ FILTER BAR (work.html) ============ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 40px 56px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.filter-btn:hover {
  color: var(--text);
}

.filter-btn.active {
  border-color: var(--violet);
  color: var(--violet);
}

/* ============ FULL-WIDTH FEATURED CARD (work.html) ============ */

.featured-full {
  max-width: 1200px;
  margin: 0 auto 1px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border: 0.5px solid var(--border);
}

.featured-full img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.featured-full .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 12, 0.92) 0%, rgba(5, 5, 12, 0.2) 60%);
}

.featured-full .info {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.featured-full .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.featured-full h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.featured-full p {
  font-size: 14px;
  color: var(--muted);
}

/* ============ WORK ROWS ============ */

.work-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto 1px;
}

.work-row-2 .work-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

/* ============ PROCESS STRIP ============ */

.process-strip {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 40px;
  border-top: 0.5px solid var(--border);
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process-step .step-num {
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.process-arrow {
  display: flex;
  align-items: center;
  color: var(--border);
  font-size: 20px;
  padding-top: 28px;
}

/* ============ ALTERNATING OFFERING SECTIONS (what-we-do.html) ============ */

.offering {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-top: 0.5px solid var(--border);
}

.offering.reverse .offering-visual {
  order: 2;
}

.offering-visual {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}

.offering-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.offering-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offering-text .num {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.offering-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 12px;
}

.offering-text .offering-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.spec-table {
  border-top: 0.5px solid var(--border);
}

.spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
}

.spec-row .spec-label {
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.spec-row .spec-value {
  font-size: 13px;
  color: var(--text);
}

/* ============ ARTIST OFFERINGS GRID (artists.html) ============ */

.artist-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.artist-offer-card {
  background: var(--black);
  padding: 44px;
}

.artist-offer-card .num {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.artist-offer-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.artist-offer-card p {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .clip-row {
    grid-template-columns: 1fr;
  }

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

  .filter-bar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .featured-full .info {
    padding: 24px;
  }

  .process-strip {
    flex-direction: column;
    gap: 32px;
    padding: 56px 24px;
  }

  .process-arrow {
    display: none;
  }

  .offering,
  .offering.reverse {
    grid-template-columns: 1fr;
  }

  .offering.reverse .offering-visual {
    order: -1;
  }

  .offering-visual {
    min-height: 260px;
  }

  .offering-text {
    padding: 56px 24px;
  }

  .artist-offer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ MISSING ASSET PLACEHOLDERS (dev aid — remove before launch) ============ */

.asset-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 28px;
  padding: 6px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(57, 255, 20, 0.06) 0px,
      rgba(57, 255, 20, 0.06) 10px,
      transparent 10px,
      transparent 20px
    ),
    var(--dark-2);
  border: 1px dashed rgba(57, 255, 20, 0.45);
}

.asset-badge {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #39ff14;
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.65);
  white-space: nowrap;
}

.asset-placeholder.md .asset-badge {
  font-size: 14px;
}

.asset-placeholder.lg .asset-badge {
  font-size: 22px;
  letter-spacing: 0.12em;
}

/* ============ EMBED FRAME (project detail pages) ============ */

.embed-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 0;
}

.embed-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  border: 0.5px solid var(--border);
  background: var(--dark-2);
}

.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.embed-caption a {
  color: var(--violet);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.embed-caption a:hover {
  border-color: var(--violet);
}

/* ============ ARTICLE BODY (project detail pages) ============ */

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 40px;
}

.article-body > .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.article-body h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  margin-bottom: 28px;
}

.article-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.article-body .pull-quote {
  margin: 40px 0;
}

.article-body .pills {
  margin: 8px 0 32px;
}

.article-body .link-row {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .embed-section {
    padding: 48px 20px 0;
  }
  .article-body {
    padding: 64px 20px;
  }
}

/* ============ WIDE ARTICLE (Spatial Engineering) ============
   This page is an enterprise sales page, not a legal page, and the shared
   720px / 15px treatment read as an eye chart on a desktop monitor. It runs
   its body copy at the embed's own width so the text lines up with the video
   frame above it, at a size an engineering director can read without leaning in.

   Size was only half the problem: body copy inherits --muted (#888898), which
   on the near-black ground is dim enough that enlarging it alone still read as
   grey mush. This page lifts the body to a brighter grey and leaves --muted
   alone for everything else.

   Deliberately scoped rather than changing .article-body itself: that class is
   shared by 16 pages including privacy, terms and contact, where a 1200px
   measure would make things worse, not better. */

.article-wide {
  max-width: 1200px;
}

.article-wide p {
  font-size: 20px;
  line-height: 1.7;
  color: #cfcfdc;
  margin-bottom: 30px;
  /* the measure is wide by design here; cap it so a very large monitor does
     not stretch a single line past what the eye can track back */
  max-width: 78ch;
}

.article-wide h2 {
  font-size: clamp(28px, 3.1vw, 38px);
  margin-bottom: 34px;
}

/* the eyebrow was 10px -- a genuine eye chart at arm's length */
.article-wide > .eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
}

.article-wide .pull-quote {
  font-size: 22px;
  line-height: 1.45;
  padding-left: 30px;
  border-left-width: 3px;
  margin: 48px 0;
  max-width: 78ch;
}

.article-wide .rhythm-list {
  gap: 18px;
  margin: 16px 0 38px;
}

.article-wide .rhythm-list .row {
  font-size: 20px;
}

.article-wide .link-row {
  font-size: 19px;
}

.article-wide .link-row a {
  padding: 4px 0;
}

@media (max-width: 900px) {
  .article-wide p,
  .article-wide .rhythm-list .row {
    font-size: 18px;
  }
  .article-wide .pull-quote {
    font-size: 19px;
  }
  .article-wide > .eyebrow {
    font-size: 13px;
  }
}

/* The remaining small type on Spatial Engineering. .spin-hero-text and
   .embed-caption are shared with Bjork, Transfix and Grace Cathedral, so these
   are scoped to this page rather than restyling those too. */

.page-engineering .spin-hero-text .sub {
  font-size: 20px;
  line-height: 1.7;
  max-width: 620px;
  color: #cfcfdc;
}

.page-engineering .spin-hero-text .eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
}

.page-engineering .embed-caption {
  font-size: 15px;
}

.page-engineering .scroll-indicator span {
  font-size: 13px;
}

@media (max-width: 900px) {
  .page-engineering .spin-hero-text .sub {
    font-size: 17px;
  }
}

/* ============ 3D SPIN STAGE (project detail pages) ============ */

.spin-stage {
  position: relative;
  height: 350vh;
}

.spin-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.spin-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.spin-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(5, 5, 12, 0) 40%, rgba(5, 5, 12, 0.9) 100%),
    linear-gradient(180deg, rgba(5, 5, 12, 0.55) 0%, rgba(5, 5, 12, 0) 20%, rgba(5, 5, 12, 0) 78%, rgba(5, 5, 12, 0.8) 100%);
}

.spin-hero-text {
  position: absolute;
  top: 14vh;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.spin-hero-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.spin-hero-text .eyebrow {
  display: block;
  margin-bottom: 20px;
}

.spin-hero-text h1 {
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.spin-hero-text h1 em {
  font-style: italic;
  color: var(--violet);
}

.spin-hero-text .sub {
  margin: 24px auto 0;
  max-width: 480px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.spin-loading {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: opacity 0.6s ease;
}

.spin-loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.spin-sticky .scroll-indicator {
  z-index: 2;
}

/* ============ SPIN STAGE PLACEHOLDER (no asset yet) ============ */

.spin-placeholder-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.spin-placeholder-badge .caption {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ============ RHYTHM LIST (short parallel-structure lines) ============ */

.rhythm-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px 0 32px;
}

.rhythm-list .row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
