/* ============================================================
   2AM CREW — Urban Chrome, refined
   dropshot_media3 — hand-crafted, no framework
   ============================================================ */

:root {
  --bg:          #080808;
  --surface:     #101010;
  --surface-hi:  #151515;
  --line:        #1E1E1E;
  --line-soft:   rgba(255,255,255,0.06);
  --text:        #F0F0F0;
  --text-dim:    #888;
  --text-mute:   #666;
  --text-faint:  #333;
  --text-ghost:  #2A2A2A;

  --chrome:      linear-gradient(180deg, #FFFFFF 0%, #C0C0C0 40%, #707070 100%);
  --chrome-h:    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  --chrome-soft: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);

  --font-head:   'Barlow Condensed', sans-serif;
  --font-mono:   'Space Mono', monospace;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-chrome: cubic-bezier(0.2, 0.8, 0.2, 1);

  --max:         1600px;
  --gutter:      1.5rem;
  --gutter-lg:   2.5rem;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--text);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
  min-height: 100vh;
}
img, svg, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
ul { list-style: none; }

::selection { background: #fff; color: var(--bg); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-faint); }

/* ---------- GRAIN ---------- */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ---------- UTILITIES ---------- */
.chrome-text {
  background: var(--chrome);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 768px) { .container { padding-inline: var(--gutter-lg); } }
.chrome-sep {
  max-width: var(--max);
  margin-inline: auto;
  height: 1px;
  background: var(--chrome-h);
}

/* ---------- SCROLL PROGRESS ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--chrome);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 10000;
  pointer-events: none;
  will-change: transform;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor-ready .cursor-dot,
.cursor-ready .cursor-ring { opacity: 1; }
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--chrome);
  border-radius: 50%;
  margin: -3px 0 0 -3px;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  margin: -18px 0 0 -18px;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.cursor-hover .cursor-ring {
  border-color: rgba(255,255,255,0.55);
}

/* Hide OS cursor whenever custom cursor is active. Native cursor stays
   in form fields (text I-beam) so input is still usable. */
body.cursor-ready,
body.cursor-ready * { cursor: none; }
body.cursor-ready input,
body.cursor-ready textarea,
body.cursor-ready [contenteditable="true"] { cursor: text; }

/* Hide custom cursor when hovering iframes (Vimeo etc.) so the iframe's
   own cursor shows through without our dot+ring being frozen mid-flight. */
body.cursor-over-iframe .cursor-dot,
body.cursor-over-iframe .cursor-ring { opacity: 0; }

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body.cursor-ready,
  body.cursor-ready * { cursor: auto; }
}

/* ---------- NAV ---------- */
#nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(8, 8, 8, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
          backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}
.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-mark {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-mute);
  margin-top: -2px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--chrome);
  transition: width 0.4s var(--ease-chrome);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 0.65rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--bg);
  background: var(--chrome);
  background-size: 100% 220%;
  background-position: 0 0;
  transition: background-position 0.55s var(--ease-chrome);
}
.nav-cta:hover { background-position: 0 100%; }
.nav-toggle {
  display: inline-flex;
  padding: 0.5rem;
  color: var(--text);
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

/* Mobile menu */
#mobile-menu {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.96);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  padding: 0.5rem;
  color: var(--text);
}
.mobile-links {
  display: flex; flex-direction: column; gap: 2rem; text-align: center;
}
.mobile-link {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 2.5rem;
  text-transform: uppercase;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  border: 0;
  opacity: 0.22;
}
.hero-fallback { display: none; position: absolute; inset: 0; z-index: 0; }
.hero-fallback img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
@media (max-width: 767px) {
  .hero-video-wrap { display: none; }
  .hero-fallback { display: block; }
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--bg) 0%, rgba(8,8,8,0.4) 40%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 4rem;
}
@media (min-width: 768px) {
  .hero-content { padding: 0 var(--gutter-lg) 6rem; }
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.82;
  font-size: clamp(4rem, 18vw, 20rem);
  font-feature-settings: "kern" 1, "ss01" 1;
  letter-spacing: -0.008em;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: block;
}
.hero-title .line-2 > span { padding-left: 12%; }
@media (max-width: 640px) {
  .hero-title .line-2 > span { padding-left: 8%; }
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .hero-meta { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 2rem; }
}
.hero-claim {
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  color: var(--text-dim);
  max-width: 40ch;
  line-height: 1.55;
  text-wrap: balance;
}
.hero-claim br { display: none; }
@media (min-width: 768px) { .hero-claim br { display: inline; } }
.hero-coords {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: #404040;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.hero-coords .aw { display: block; }
@media (min-width: 768px) { .hero-coords .aw { display: inline; } }

/* Page-load choreography */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes clipUp {
  from { clip-path: inset(100% 0 0 0); opacity: 0; }
  to   { clip-path: inset(0 0 0 0); opacity: 1; }
}
.hero-title .line > span { animation: clipUp 1s var(--ease-chrome) both; }
.hero-title .line-1 > span { animation-delay: 0.15s; }
.hero-title .line-2 > span { animation-delay: 0.42s; }
.hero-claim   { animation: riseIn 0.9s var(--ease-chrome) 0.9s both; }
.hero-coords  { animation: riseIn 0.9s var(--ease-chrome) 1.05s both; }

/* ---------- TICKER ---------- */
.ticker {
  border-block: 1px solid var(--line);
  padding: 1rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: tickerSlide 28s linear infinite;
}
.ticker:hover .ticker-track { animation-duration: 55s; }
@keyframes tickerSlide {
  to { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-ghost);
  padding: 0 2rem;
}
.ticker-sep { color: var(--text-faint); }

/* ---------- SECTION SHELL ---------- */
.section {
  padding-block: 5rem;
}
@media (min-width: 768px) { .section { padding-block: 8rem; } }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.9;
  text-wrap: balance;
  font-feature-settings: "kern" 1, "ss01" 1;
  letter-spacing: -0.005em;
}
.more {
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-mute);
  transition: color 0.25s ease;
  white-space: nowrap;
}
@media (min-width: 768px) { .more { display: inline-flex; } }
.more:hover { color: var(--text); }
.more svg { transition: transform 0.4s var(--ease-chrome); }
.more:hover svg { transform: translateX(6px); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-chrome), transform 0.9s var(--ease-chrome);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- WORK GRID ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) { .work-grid { gap: 0.75rem; } }
.work-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}
.work-card::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, var(--bg) 0%, transparent 68%);
  z-index: 1;
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.95s var(--ease-chrome), opacity 0.45s ease;
}
.work-card:hover img { transform: scale(1.045); opacity: 1; }
.work-card .caption {
  position: absolute; left: 0; bottom: 0;
  padding: 1.25rem;
  z-index: 2;
  transform: translateY(3px);
  transition: transform 0.5s var(--ease-chrome);
}
@media (min-width: 768px) { .work-card .caption { padding: 2rem; } }
.work-card:hover .caption { transform: translateY(0); }
.work-card h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  line-height: 1;
  letter-spacing: -0.005em;
}
.work-card .meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-top: 0.4rem;
}
.work-card.primary  { grid-column: span 12; aspect-ratio: 3/2; }
.work-card.portrait { grid-column: span 6;  aspect-ratio: 3/4; }
.work-card.square   { grid-column: span 6;  aspect-ratio: 1/1; }
.work-card.offset   { display: none; }
@media (min-width: 768px) {
  .work-card.primary  { grid-column: span 7; }
  .work-card.portrait { grid-column: span 5; }
  .work-card.offset   { display: block; grid-column: span 5; aspect-ratio: 3/4; margin-top: -8rem; }
  .work-card.square   { grid-column: span 5; }
}

/* Video grid 2x2 */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  /* Chrome cursor stays visible over Vimeo previews permanently.
     Cross-origin iframes can't have their native cursor suppressed
     from the parent, so we keep pointer-events off and route clicks
     on the wrapper to Vimeo via postMessage for play/pause toggle.
     Trade-off: volume/scrub/fullscreen UI are not reachable here. */
  pointer-events: none;
}
.video-frame { cursor: pointer; }
.video-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dim);
  letter-spacing: 0.005em;
}

/* Vibes */
.vibes-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 0.75rem;
}
.vibes-head h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.4vw, 1.875rem);
}
.vibes-head .where {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-faint);
}
.vibes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) { .vibes-grid { grid-template-columns: repeat(2, 1fr); } }
.vibes-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
}
.vibes-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vibes-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.vibes-card.playing .vibes-play { opacity: 0; }

/* Munich easter egg */
.munich {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
  padding-right: 0.25rem;
}
.munich span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-ghost);
  letter-spacing: 0.1em;
}

/* ---------- SERVICES ---------- */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) { .services { grid-template-columns: 1fr 1fr; } }
.service {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.5s ease;
}
@media (min-width: 768px) { .service { padding: 3rem; } }
.service:hover { border-color: rgba(255,255,255,0.15); }
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--chrome-soft);
}
.service .bg-num {
  position: absolute;
  top: 0.5rem; right: 1.25rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(10rem, 18vw, 16rem);
  line-height: 0.9;
  color: rgba(255,255,255,0.022);
  pointer-events: none;
  user-select: none;
}
.service-icon {
  width: 3.5rem; height: 3.5rem;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  margin-bottom: 2rem;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}
.service:hover .service-icon { border-color: var(--text-mute); }
.service h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.05;
  text-wrap: balance;
  margin-bottom: 1rem;
  font-feature-settings: "kern" 1, "ss01" 1;
}
.service p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 2rem;
  text-wrap: pretty;
}
.service ul { margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.service li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}
.service li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--text-mute);
  border-radius: 50%;
  flex-shrink: 0;
}
.service .author {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.who {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text);
  display: block;
  line-height: 1.3;
}
.role {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #404040;
}

/* ---------- STATS ---------- */
.stats-head {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 3rem;
  text-wrap: balance;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 2rem;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) { .stat { padding: 2.5rem; } }
@media (max-width: 767px) {
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (min-width: 768px) {
  .stat + .stat { border-left: 1px solid var(--line); }
}
.stat .num {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-feature-settings: "kern" 1, "ss01" 1;
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-mute);
}

/* ---------- ARTISTS ---------- */
.artists-head {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 3rem;
  text-wrap: balance;
  font-feature-settings: "kern" 1, "ss01" 1;
}
.artists {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 48rem;
  margin-inline: auto;
}
@media (min-width: 768px) { .artists { grid-template-columns: 1fr 1fr; } }
.artist {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
@media (min-width: 768px) {
  .artist:nth-child(odd) { padding-right: 3rem; border-right: 1px solid rgba(255,255,255,0.06); }
  .artist:nth-child(even) { padding-left: 3rem; }
}
.artist-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.02em;
  color: var(--text);
  transition: letter-spacing 0.5s var(--ease-chrome), color 0.3s ease;
  cursor: default;
  user-select: none;
}
.artist:hover .artist-name {
  letter-spacing: 0.055em;
  color: #C0C0C0;
}

/* ---------- TEAM ---------- */
.team-head {
  text-align: center;
  margin-bottom: 4rem;
}
.team-head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 0.95;
  text-wrap: balance;
  font-feature-settings: "kern" 1, "ss01" 1;
}
.team-head p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 40rem;
  margin: 1.5rem auto 0;
  line-height: 1.7;
  text-wrap: pretty;
}
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 48rem;
  margin-inline: auto;
}
@media (min-width: 768px) { .team { grid-template-columns: 1fr 1fr; } }
.member {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 2rem;
  transition: border-color 0.4s ease;
}
@media (min-width: 768px) { .member { padding: 2.5rem; } }
.member:hover { border-color: rgba(255,255,255,0.12); }
.member .avatar-lg {
  width: 4rem; height: 4rem;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 1.5rem;
  transition: border-color 0.3s ease;
}
.member:hover .avatar-lg { border-color: var(--text-mute); }
.member h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.member .role-lg {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-mute);
  display: block;
  margin-bottom: 1rem;
}
.member p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  line-height: 1.65;
  text-wrap: pretty;
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  padding-block: 6rem;
}
@media (min-width: 768px) { .cta { padding-block: 10rem; } }
.cta h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(3rem, 12vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.008em;
  margin-bottom: 2rem;
  text-wrap: balance;
  font-feature-settings: "kern" 1, "ss01" 1;
}
.cta p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 34rem;
  margin: 0 auto 3rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--bg);
  background: var(--chrome);
  background-size: 100% 220%;
  background-position: 0 0;
  transition: background-position 0.6s var(--ease-chrome), gap 0.4s ease;
}
.cta-btn:hover { background-position: 0 100%; gap: 1.2rem; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 2rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }
.footer-logo .logo-mark { font-size: 1.1rem; }
.footer-logo .logo-sub { font-size: 7px; }
.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  transition: color 0.25s ease;
}
.footer-contact:hover { color: var(--text); }
.socials {
  display: flex;
  gap: 1rem;
}
.social {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.social:hover { color: var(--text); border-color: var(--text-mute); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a { transition: color 0.25s ease; }
.footer-legal a:hover { color: var(--text-dim); }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .ticker-track { animation: none !important; }
  .hero-title .line > span,
  .hero-claim,
  .hero-coords { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}
