/* ============================================================
   PUNCHROLLER MUSIC — Cinematic Noir Design System
   Stockholm, Sweden
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Palette */
  --noir-black: #080808;
  --noir-deep: #0c0c0c;
  --noir-surface: #121212;
  --noir-elevated: #1a1a1a;
  --noir-border: #2a2a2a;

  /* Monochrome */
  --warm-white: #ffffff;
  --warm-muted: #777777;
  --warm-accent: #ffffff;
  --warm-accent-dim: #555555;
  --warm-accent-glow: #ffffff;
  --warm-red: #555555;

  /* Typography scale (brutalist) */
  --fs-display: clamp(5rem, 14vw, 14rem);
  --fs-headline: clamp(3rem, 8vw, 8rem);
  --fs-title: clamp(2rem, 4vw, 4.5rem);
  --fs-subtitle: clamp(1.2rem, 2vw, 2rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.15rem);
  --fs-caption: clamp(0.7rem, 0.85vw, 0.85rem);
  --fs-micro: 0.65rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-slow: 1.2s;
  --duration-med: 0.7s;
  --duration-fast: 0.35s;

  /* Layout */
  --nav-height: 5rem;
  --container-max: 1400px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--noir-black);
  color: var(--warm-white);
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  background: var(--noir-black);
  color: var(--warm-white);
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--warm-accent);
  color: var(--noir-black);
}

/* --- Film Grain Overlay --- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: overlay;
}

.grain-overlay::before {
  content: '';
  position: absolute;
  top: -200%;
  left: -200%;
  width: 500%;
  height: 500%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grain-drift 8s steps(10) infinite;
}

@keyframes grain-drift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -15%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 10%); }
  80% { transform: translate(3%, -20%); }
  90% { transform: translate(-10%, 5%); }
}

/* --- Warm Radial Gradient Ambient Light --- */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(255, 255, 255, 0.01) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 255, 255, 0.005) 0%, transparent 80%);
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--noir-black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 96px;
  height: 96px;
  animation: preloader-pulse 1.5s ease-in-out infinite;
  filter: grayscale(0.2);
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--warm-accent);
  margin-top: 2rem;
  transform-origin: left;
  animation: preloader-line-grow 1.5s var(--ease-out-expo) infinite;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes preloader-line-grow {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background var(--duration-med) ease, backdrop-filter var(--duration-med) ease;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  transition: transform var(--duration-fast) var(--ease-out-expo);
}

.nav-logo:hover img {
  transform: rotate(-8deg) scale(1.05);
}

.nav-logo-text {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.202rem;
  letter-spacing: 0.2em;
  color: var(--warm-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: clamp(0.8rem, 1.04vw, 1.04rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  transition: color var(--duration-fast) ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--warm-accent);
  transition: width var(--duration-fast) var(--ease-out-expo);
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--warm-white);
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-height) var(--gutter) var(--space-lg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 60%),
    var(--noir-black);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Circles Container */
.hero-circles {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(var(--space-lg) * 1.75);
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03), transparent 70%);
  opacity: 0;
  animation: hero-circles-in 2s var(--ease-out-expo) 0.3s forwards;
}

.hero-circle-1 {
  width: clamp(140px, 17vw, 220px);
  height: clamp(140px, 17vw, 220px);
  border-color: rgba(255, 255, 255, 0.1);
  animation: hero-circles-in 2s var(--ease-out-expo) 0.3s forwards, hero-circle-pulse-1 2.5s ease-in-out 2.3s infinite;
}

.hero-circle-2 {
  width: clamp(175px, 21vw, 275px);
  height: clamp(175px, 21vw, 275px);
  border-color: rgba(255, 255, 255, 0.06);
  animation: hero-circles-in 2s var(--ease-out-expo) 0.5s forwards, hero-circle-pulse-2 3.5s ease-in-out 2.5s infinite;
}

.hero-circle-3 {
  width: clamp(210px, 25vw, 330px);
  height: clamp(210px, 25vw, 330px);
  border-color: rgba(255, 255, 255, 0.03);
  animation: hero-circles-in 2s var(--ease-out-expo) 0.7s forwards, hero-circle-pulse-3 4.5s ease-in-out 2.7s infinite;
}

@keyframes hero-circles-in {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-circle-pulse-1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.7; }
}

@keyframes hero-circle-pulse-2 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.6; }
}

@keyframes hero-circle-pulse-3 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: clamp(115px, 15.3vw, 178px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.1));
  opacity: 0;
  transform: scale(0.8);
  animation: hero-logo-in 1.5s var(--ease-out-expo) 0.5s forwards;
}

@keyframes hero-logo-in {
  to { opacity: 1; transform: scale(1); }
}

.hero-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: var(--fs-display);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: text-reveal-up 1.2s var(--ease-out-expo) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.8s; }
.hero-title .line:nth-child(2) { animation-delay: 1.0s; }

@keyframes text-reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero-divider {
  display: none;
}

@keyframes divider-in {
  to { opacity: 1; transform: scaleX(1); }
}

.hero-subtitle {
  font-size: var(--fs-caption);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--warm-muted);
  opacity: 0;
  animation: fade-in 1s ease 1.6s forwards;
}

@keyframes fade-in {
  to { opacity: 1; }
}

.hero-scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-in 1s ease 2.2s forwards;
}

.hero-scroll-cue span {
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-muted);
}

.hero-scroll-cue .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--warm-accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Section: Statement / Editorial --- */
.section {
  position: relative;
  padding: var(--space-2xl) var(--gutter);
  z-index: 1;
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* --- Statement Section --- */
.statement {
  text-align: center;
  padding: var(--space-2xl) var(--gutter);
}

.statement-label {
  font-size: var(--fs-micro);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm-accent);
  margin-bottom: var(--space-md);
  display: block;
}

.statement-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--fs-title);
  line-height: 1.2;
  font-weight: 400;
  color: var(--warm-white);
  max-width: 900px;
  margin: 0 auto;
}

.statement-text em {
  font-style: italic;
  color: var(--warm-accent);
}

/* --- Horizontal Rule --- */
/* Instagram feed wrapper — hides Elfsight free badge */
.feed-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: var(--fs-title);
  line-height: 1;
  padding: 4rem var(--gutter) 4rem;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.instagram-feed-wrap {
  position: relative;
  overflow: hidden;
  background: var(--noir-black);
}
.instagram-feed-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: var(--noir-black);
  z-index: 100;
  pointer-events: none;
}

.noir-hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--noir-border) 20%,
    var(--warm-accent-dim) 50%,
    var(--noir-border) 80%,
    transparent
  );
  max-width: 600px;
  margin: 0 auto;
}

/* --- Roster / Client Grid --- */
.roster {
  padding: var(--space-xl) var(--gutter) var(--space-2xl);
  background: var(--noir-black);
}

.roster-header {
  text-align: center;
  margin-bottom: calc(var(--space-xl) * 0.5);
}

.roster-label {
  font-size: var(--fs-micro);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.roster-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: var(--fs-headline);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  max-width: var(--container-max);
  margin: 0 auto;
}

.roster-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--noir-surface);
}

.roster-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.6) contrast(1.1);
  transition: all var(--duration-slow) var(--ease-out-expo);
  transform: scale(1.05);
}

.roster-card:hover .roster-card-image {
  filter: grayscale(20%) brightness(0.9) contrast(1.05);
  transform: scale(1);
}

.roster-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.3) 40%,
    transparent 70%
  );
  z-index: 1;
  transition: background var(--duration-slow) var(--ease-out-expo);
}

.roster-card:hover .roster-card-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.9) 0%,
    rgba(8, 8, 8, 0.15) 50%,
    transparent 80%
  );
}

.roster-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  z-index: 2;
}

.roster-card-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  transform: translateY(10px);
  transition: transform var(--duration-med) var(--ease-out-expo);
}

.roster-card:hover .roster-card-name {
  transform: translateY(0);
}

.roster-card-genre {
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-accent);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-med) var(--ease-out-expo) 0.1s;
}

.roster-card:hover .roster-card-genre {
  opacity: 1;
  transform: translateY(0);
}

.roster-card-arrow {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all var(--duration-med) var(--ease-out-expo);
}

.roster-card:hover .roster-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.roster-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--warm-white);
  fill: none;
  stroke-width: 1.5;
}

/* --- About / Manifesto Section --- */
.manifesto {
  padding: calc(var(--space-2xl) * 0.5) var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
}

.manifesto-left {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-lg));
}

.manifesto-number {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 0.85;
  color: var(--noir-elevated);
  letter-spacing: -0.03em;
}

.manifesto-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: var(--fs-title);
  line-height: 1;
  margin-top: var(--space-sm);
}

.manifesto-right p {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--warm-muted);
  margin-bottom: var(--space-md);
}

.manifesto-right p:first-child {
  font-size: var(--fs-subtitle);
  line-height: 1.5;
  color: var(--warm-white);
}

/* --- Footer --- */
.footer {
  padding: var(--space-xl) var(--gutter) var(--space-lg);
  border-top: 1px solid var(--noir-border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  opacity: 0.6;
}

.footer-brand-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

.footer-brand-location {
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-muted);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  transition: color var(--duration-fast) ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  font-size: calc(var(--fs-caption) * 0.975);
  color: var(--warm-muted);
  opacity: 0.7;
  text-align: right;
  margin-top: var(--space-sm);
}


/* --- Nav Icons --- */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 2rem;
}

.nav-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-muted);
  transition: color var(--duration-fast) ease;
  line-height: 0;
}

.nav-icon-link:hover {
  color: var(--warm-white);
}

.nav-icon-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-icon-link .disco-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.5;
  transition: opacity var(--duration-fast) ease;
}

.nav-icon-link:hover .disco-icon {
  opacity: 1;
}

/* Hide nav-icons on mobile */
@media (max-width: 768px) {
  .nav-icons { display: none; }
}

/* --- Contact Section --- */
.contact-section {
  border-top: 1px solid var(--noir-border);
}

.contact-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-xl) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: var(--fs-title);
  line-height: 1;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-email {
  font-size: var(--fs-subtitle);
  color: var(--warm-white);
  font-family: 'Playfair Display', Georgia, serif;
  transition: opacity var(--duration-fast) ease;
}

.contact-email:hover {
  opacity: 0.7;
}

.contact-disco {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-muted);
  transition: color var(--duration-fast) ease;
}

.contact-disco:hover {
  color: var(--warm-white);
}

.contact-disco img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(0.5);
  transition: filter var(--duration-fast) ease;
}

.contact-disco:hover img {
  filter: brightness(0) invert(0.8);
}

/* --- Client Social Links --- */
.client-hero-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  opacity: 0;
  animation: fade-in 1s ease 1.5s forwards;
}

.client-hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--warm-muted);
  transition: all var(--duration-fast) ease;
}

.client-hero-social a:hover {
  color: var(--warm-white);
  border-color: var(--warm-white);
}

.client-hero-social svg {
  width: 18px;
  height: 18px;
}

/* --- Spotify Embed --- */
.client-spotify-embed {
  margin-bottom: var(--space-xl);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-med) var(--ease-out-expo),
              transform var(--duration-med) var(--ease-out-expo);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* Parallax data attribute driven */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* --- Client Page Styles --- */
.client-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.client-hero-image-wrap {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
}

.client-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.45) contrast(1.15);
}

.client-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(to top, var(--noir-black) 0%, rgba(8, 8, 8, 0.6) 30%, transparent 60%),
    linear-gradient(to bottom, rgba(8, 8, 8, 0.4) 0%, transparent 20%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.client-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--gutter) var(--space-lg);
  width: 100%;
}

.client-hero-label {
  font-size: var(--fs-micro);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm-accent);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fade-in 1s ease 0.5s forwards;
}

.client-hero-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: var(--fs-display);
  line-height: 0.85;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(60px);
  animation: text-reveal-up 1.2s var(--ease-out-expo) 0.7s forwards;
}

.client-hero-meta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  opacity: 0;
  animation: fade-in 1s ease 1.2s forwards;
}

.client-hero-meta-item {
  font-size: var(--fs-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-muted);
}

.client-hero-meta-item span {
  color: var(--warm-white);
}

/* --- Client Body --- */
.client-body {
  padding: calc(var(--space-xl) * 0.5) var(--gutter);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.client-section {
  margin-bottom: var(--space-xl);
}

.client-section-label {
  font-size: var(--fs-micro);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm-accent);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.client-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--noir-border);
}

.client-bio {
  font-size: var(--fs-subtitle);
  line-height: 1.5;
  color: var(--warm-white);
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: var(--space-md);
}

.client-text {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--warm-muted);
  margin-bottom: var(--space-md);
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--noir-border);
  border-bottom: 1px solid var(--noir-border);
}

.client-stat {
  text-align: center;
}

.client-stat-value {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--warm-white);
}

.client-stat-label {
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-muted);
  margin-top: 0.5rem;
}

/* Pullquote */
.pullquote {
  padding: var(--space-lg) 0;
  margin: var(--space-lg) 0;
  border-left: 2px solid var(--warm-accent);
  padding-left: var(--space-md);
}

.pullquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--fs-subtitle);
  font-style: italic;
  line-height: 1.5;
  color: var(--warm-white);
}

.pullquote cite {
  display: block;
  font-style: normal;
  font-size: var(--fs-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-muted);
  margin-top: var(--space-sm);
}

/* --- Back Link --- */
.back-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: calc(var(--fs-caption) * 1.05);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-md) 0;
  transition: color var(--duration-fast) ease;
}

.back-link:hover {
  color: var(--warm-accent);
}

.back-link svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform var(--duration-fast) var(--ease-out-expo);
}

.back-link:hover svg {
  transform: translateX(-4px);
}

/* --- Page Transition --- */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--noir-black);
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* --- Marquee / Ticker --- */
.marquee-wrap {
  overflow: hidden;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--noir-border);
  border-bottom: 1px solid var(--noir-border);
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-item {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 var(--space-xl);
  flex-shrink: 0;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  transition: color var(--duration-fast) ease;
}

.marquee-sep {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-sep::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .manifesto {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .manifesto-left {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--duration-med) var(--ease-out-expo);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .nav-toggle {
    display: flex;
  }

  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-email {
    word-break: break-all;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .footer-copy {
    text-align: left;
  }

  .client-hero-meta {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: -0.01em;
  }
}
