/* ============================================
   C.J. GUERRERO — FILM PORTFOLIO
   Design System: Cinematic Noir
   ============================================ */

:root,
[data-theme='dark'] {
  /* Surfaces — deep charcoal / black */
  --color-bg: #0a0908;
  --color-surface: #121110;
  --color-surface-2: #171514;
  --color-surface-offset: #1c1a18;
  --color-surface-offset-2: #232120;
  --color-surface-dynamic: #2a2725;
  --color-divider: #262422;
  --color-border: #35322f;

  /* Text — bone white / ash */
  --color-text: #ede8e0;
  --color-text-muted: #a39b8f;
  --color-text-faint: #6b6459;
  --color-text-inverse: #100d0b;

  /* Accent — blood crimson */
  --color-accent: #b8232f;
  --color-accent-hover: #d42d3a;
  --color-accent-active: #8f1a24;
  --color-accent-highlight: #3a1a1c;

  /* Secondary accent — amber ember (for highlights, In Darkness) */
  --color-ember: #c9862f;
  --color-ember-hover: #e29c3f;
  --color-ember-highlight: #3a2a17;

  /* Success / warning kept minimal, muted */
  --color-success: #5c8a4a;
  --color-warning: #c9862f;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.625rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — near-black, deep */
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.4);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.5);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.6);
  --shadow-glow: 0 0 40px oklch(0.45 0.15 25 / 0.25);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Clash Display', 'Georgia', serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

/* LIGHT MODE — muted paper / charcoal, same crimson accent darkened for contrast */
[data-theme='light'] {
  --color-bg: #f3efe8;
  --color-surface: #faf7f2;
  --color-surface-2: #ffffff;
  --color-surface-offset: #ece6dc;
  --color-surface-offset-2: #e3dcd0;
  --color-surface-dynamic: #d8cfc0;
  --color-divider: #ddd4c5;
  --color-border: #cbc0ac;

  --color-text: #1c1815;
  --color-text-muted: #5c5449;
  --color-text-faint: #948a7a;
  --color-text-inverse: #f3efe8;

  --color-accent: #9c1c26;
  --color-accent-hover: #7d151d;
  --color-accent-active: #611015;
  --color-accent-highlight: #ecd6d6;

  --color-ember: #97621f;
  --color-ember-hover: #7c5015;
  --color-ember-highlight: #ecdec4;

  --color-success: #3f6a30;
  --color-warning: #97621f;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 60 / 0.08);
  --shadow-md: 0 8px 20px oklch(0.2 0.02 60 / 0.1);
  --shadow-lg: 0 20px 44px oklch(0.2 0.02 60 / 0.14);
  --shadow-glow: 0 0 40px oklch(0.45 0.15 25 / 0.12);
}

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6.5vw, 7.25rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ============================================
   GLOBAL ELEMENTS
   ============================================ */

body {
  overflow-x: hidden;
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.container--narrow {
  max-width: var(--content-default);
}

section {
  position: relative;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--color-accent);
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.section-lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-10);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-border) l c h / 0.6);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header--hidden {
  transform: translateY(-100%);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  width: 34px;
  height: 34px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand__name span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--color-text-faint);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

.nav__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-1);
}

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

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-interactive);
}

.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-text-faint);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--primary:active {
  background: var(--color-accent-active);
  transform: translateY(0);
}

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

.btn--ghost:hover {
  border-color: var(--color-text-faint);
  background: var(--color-surface-offset);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

.header .btn--primary {
  display: none;
}

@media (min-width: 700px) {
  .header .btn--primary {
    display: inline-flex;
  }
}

.menu-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-text);
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-2) var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-bg);
}

.mobile-nav.is-open {
  display: flex;
}

@media (min-width: 900px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav__link {
  padding: var(--space-3) 0;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-base);
  border-bottom: 1px solid var(--color-divider);
}

.mobile-nav__link:last-child {
  border-bottom: none;
}

.mobile-nav__link:hover {
  color: var(--color-text);
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--space-20);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(from var(--color-bg) l c h / 0.55) 0%, oklch(from var(--color-bg) l c h / 0.75) 45%, var(--color-bg) 96%),
    linear-gradient(90deg, var(--color-bg) 0%, oklch(from var(--color-bg) l c h / 0.35) 35%, transparent 65%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: oklch(from var(--color-bg) l c h / 0.4);
}

.hero__kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
}

.hero__title {
  font-size: var(--text-hero);
  line-height: 0.98;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.hero__title em {
  font-style: normal;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  max-width: 46ch;
  margin-bottom: var(--space-8);
}

.hero__roles {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.role-chip {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-5);
  z-index: 2;
  display: none;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 700px) {
  .hero__scroll {
    display: flex;
  }
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-text-faint), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================
   MARQUEE / CREDIBILITY STRIP
   ============================================ */

.marquee {
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface);
  padding-block: var(--space-5);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: var(--space-12);
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
}

.marquee__item {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.marquee__item b {
  color: var(--color-text);
  font-weight: 500;
}

.marquee__item small {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.about__grid {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-20);
  }
}

.about__copy p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-5);
}

.about__copy p strong {
  color: var(--color-text);
  font-weight: 600;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.stat-card {
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: var(--color-surface);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-1);
}

.stat-card__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-lg);
}

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

.about__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(0 0 0 / 0.65) 100%);
}

.about__visual-caption {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  z-index: 2;
  color: #fff;
}

.about__visual-caption .eyebrow {
  color: var(--color-ember);
  margin-bottom: var(--space-2);
}

.about__visual-caption p {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.85);
  max-width: none;
}

.approach-list {
  margin-top: var(--space-10);
  display: grid;
  gap: var(--space-4);
}

.approach-item {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-top: 1px solid var(--color-divider);
}

.approach-item:first-child {
  border-top: none;
}

.approach-item__num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-accent);
  flex-shrink: 0;
  width: 2rem;
}

.approach-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 0;
}

/* ============================================
   IN DARKNESS FEATURE
   ============================================ */

.feature {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  position: relative;
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  overflow: hidden;
}

.feature__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.feature__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-surface) 8%, oklch(from var(--color-surface) l c h / 0.9) 42%, oklch(from var(--color-surface) l c h / 0.55) 70%, oklch(from var(--color-surface) l c h / 0.75) 100%);
}

[data-theme='light'] .feature__bg::after {
  background: linear-gradient(90deg, var(--color-surface) 12%, oklch(from var(--color-surface) l c h / 0.94) 42%, oklch(from var(--color-surface) l c h / 0.75) 70%, oklch(from var(--color-surface) l c h / 0.85) 100%);
}

.feature__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.feature__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ember);
  border: 1px solid oklch(from var(--color-ember) l c h / 0.4);
  background: var(--color-ember-highlight);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  font-weight: 600;
}

.feature__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}

.feature__logline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  font-style: normal;
  border-left: 2px solid var(--color-accent);
  padding-left: var(--space-5);
  margin-bottom: var(--space-6);
}

.feature__desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.feature__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
}

.feature__meta dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-1);
}

.feature__meta dd {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 600;
}

.feature__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   CREDITS REEL
   ============================================ */

.reel {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.reel__filters {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.filter-btn {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-weight: 600;
}

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

.filter-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.reel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--space-5);
}

.credit-card {
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition:
    transform var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive);
}

.credit-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.credit-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.credit-card__format {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-faint);
}

.credit-card__year {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  flex-shrink: 0;
}

.credit-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}

.credit-card__role {
  display: inline-flex;
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-highlight);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}

.credit-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex-grow: 1;
}

.credit-card__link {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-3);
  margin-top: auto;
}

.credit-card__link:hover {
  color: var(--color-accent);
}

.credit-card[hidden] {
  display: none;
}

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

.services {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-6);
}

.service-card {
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  background: var(--color-surface-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--color-accent);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex-grow: 1;
}

/* ============================================
   SYNYSTER FILMS
   ============================================ */

.studio {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  position: relative;
  overflow: hidden;
}

.studio__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.studio__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, oklch(from var(--color-bg) l c h / 0.85) 30%, oklch(from var(--color-bg) l c h / 0.92) 100%);
}

.studio__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.studio__logo {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.studio .eyebrow {
  justify-content: center;
}

.studio__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}

.studio__desc {
  color: var(--color-text-muted);
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.studio__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.studio__tags .role-chip {
  border-color: var(--color-divider);
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.contact__grid {
  display: grid;
  gap: var(--space-10);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  padding: clamp(var(--space-8), 5vw, var(--space-16));
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.contact__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}

.contact__desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.availability {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 600;
}

.availability .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 10px var(--color-success);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.contact__hire-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-surface-2);
}

.contact-link:hover {
  border-color: var(--color-accent);
  transform: translateX(2px);
}

.contact-link__icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-link__label {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  display: block;
}

.contact-link__value {
  font-size: var(--text-sm);
  font-weight: 600;
}

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

.footer {
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-10);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

@media (min-width: 700px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social a {
  color: var(--color-text-faint);
}

.footer__social a:hover {
  color: var(--color-accent);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  z-index: 200;
}

.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}
