*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #f2ede6;
  --gray-900: #ede8e0;
  --gray-800: #e4dfd6;
  --gray-700: #d0cbc4;
  --gray-500: #9a9690;
  --gray-400: #6e6a64;
  --gray-300: #4a4742;
  --gray-200: #2a2724;
  --white:    #111009;
  --border:   #d8d3cc;
  --accent:   #111009;
  --accent-dim: rgba(17,16,9,0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: crosshair;
}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: multiply;
  transition: width 0.2s, height 0.2s;
}

/* No custom cursor / crosshair on touch devices */
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
  body { cursor: auto; }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(242,237,230,0.96);
  backdrop-filter: blur(16px);
  padding: 16px 48px;
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.nav-eq {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 14px;
}

.nav-eq span {
  display: block;
  width: 3px;
  background: var(--white);
  border-radius: 1px;
  animation: eqBounce 1.2s ease-in-out infinite;
}

.nav-eq span:nth-child(1) { height: 5px;  animation-delay: 0s;    animation-duration: 1.1s; }
.nav-eq span:nth-child(2) { height: 10px; animation-delay: 0.2s;  animation-duration: 0.9s; }
.nav-eq span:nth-child(3) { height: 7px;  animation-delay: 0.1s;  animation-duration: 1.3s; }
.nav-eq span:nth-child(4) { height: 12px; animation-delay: 0.3s;  animation-duration: 1.0s; }
.nav-eq span:nth-child(5) { height: 4px;  animation-delay: 0.15s; animation-duration: 1.2s; }

@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
  50%       { transform: scaleY(1);   opacity: 1;   }
}

nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }

nav ul a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--white); }

.nav-hire {
  padding: 9px 20px !important;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}

.nav-hire:hover {
  background: var(--accent) !important;
  color: var(--black) !important;
  border-color: var(--accent) !important;
}

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 14px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px 8px;
  text-align: center;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-eyebrow::before {
  display: none;
}

/* Big static studio name */
.hero-studio-wrap {
  position: relative;
  display: block;
  padding: 48px 0 12px;
  text-align: center;
  width: 100%;
}

.hero-studio-inner {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
}

.hero-studio-inner::before,
.hero-studio-inner::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

.hero-studio-inner::before {
  top: 0; left: 0;
  border-top: 1.5px solid var(--white);
  border-left: 1.5px solid var(--white);
}

.hero-studio-inner::after {
  top: 0; right: 0;
  border-top: 1.5px solid var(--white);
  border-right: 1.5px solid var(--white);
}

.corner-bl, .corner-br {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

.corner-bl {
  bottom: 0; left: 0;
  border-bottom: 1.5px solid var(--white);
  border-left: 1.5px solid var(--white);
}

.corner-br {
  bottom: 0; right: 0;
  border-bottom: 1.5px solid var(--white);
  border-right: 1.5px solid var(--white);
}

.hero-studio {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 11.5vw, 200px);
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.88;
  margin-bottom: 0px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.25s forwards;
  /* Stretch text to fill full width */
  display: block;
  width: 100%;
}

.hero-studio .studio-dot {
  color: var(--white);
  opacity: 1;
  font-size: 0.3em;
  vertical-align: middle;
  position: relative;
  top: 0em;
  margin: 0 0.1em;
}

/* The kinetic line, this IS the hero */
.hero-kinetic {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 48px;
  margin-top: 4px;
  height: clamp(62px, 10.5vw, 144px);
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.4s ease 0.6s forwards;
}

.kinetic-word {
  position: absolute;
  top: 0; left: 0;
  display: block;
  transform: translateY(110%);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
  opacity: 0;
  white-space: nowrap;
}

.kinetic-word.active {
  transform: translateY(0);
  opacity: 1;
}

.kinetic-word.exit {
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.7,0,1,1), opacity 0.3s ease;
}

/* Bottom row */
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.0s forwards;
  text-align: left;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.75;
  max-width: 380px;
}

.hero-tagline strong { color: var(--white); font-weight: 400; }

.hero-cta { display: flex; gap: 12px; flex-shrink: 0; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

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

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover { transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: #2a2724; }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--gray-500); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ── TICKER ── */
.img-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  padding: 80px 180px 4px;
  position: relative;
  z-index: 1;
  flex: 1;
  height: 100%;
}

.img-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  max-height: 100%;
}

.img-col-inner {
  flex: 1;
  border: 1px solid var(--border);
  transition: transform 0.4s ease;
  display: grid;
  grid-template-columns: 1fr 72px;
  overflow: hidden;
  position: relative;
}

.img-col-photo {
  height: 100%;
  transition: transform 0.6s ease;
  overflow: hidden;

  background-size: cover !important;
  background-position: center center !important;
}

.img-col:hover .img-col-photo {
  background-size: cover !important;
}



.img-col-bar {
  background: #111009;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.img-col:hover .img-col-inner {
  transform: translateY(-4px);
}

.img-col-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.8vw, 38px);
  letter-spacing: 0.15em;
  color: #f2ede6;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  user-select: none;
  white-space: nowrap;
}

.ticker-wrap { overflow: hidden; background: var(--white); padding: 13px 0; }

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--black);
  padding: 0 28px;
}

.ticker-sep { color: var(--gray-500); padding: 0 4px; }

/* ── SECTION SHARED ── */
.sec-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-label::after { content: ''; width: 20px; height: 1px; background: var(--accent); }

.sec-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 56px;
}

/* ── SERVICES ── */
#services {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.services-intro {
  max-width: 560px;
  margin-bottom: 72px;
}

.services-intro p {
  font-size: 17px;
  color: var(--gray-200);
  line-height: 1.85;
}

.services-intro p strong { color: var(--white); font-weight: 400; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--black);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.service-card:hover { background: var(--gray-900); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.service-desc {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gray-600, #333);
  flex-shrink: 0;
}

/* ── WORK ── */
#work {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.work-intro {
  margin-bottom: 56px;
}

.work-sub {
  font-size: 17px;
  color: var(--gray-200);
  line-height: 1.8;
  max-width: 480px;
}

/* Work categories */
.work-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.work-tab {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  user-select: none;
}

.work-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.work-tab:hover { color: var(--gray-200); }

.work-panel { display: none; }
.work-panel.active { display: block; }

/* Spotify embeds */
.spotify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  align-items: start;
}

.spotify-embed {
  border-radius: 0 !important;
  overflow: hidden;
}

.spotify-embed iframe {
  width: 100%;
  border-radius: 0;
  display: block;
}

.spotify-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Credit list */
.credit-list { border-top: 1px solid var(--border); }

.credit-row {
  display: grid;
  grid-template-columns: 48px 1fr 180px 48px;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left 0.2s;
}

.credit-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}

.credit-row:hover { padding-left: 14px; }
.credit-row:hover::before { transform: scaleY(1); }

.credit-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
}

.credit-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
}

.credit-role {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: right;
}

.credit-year {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray-500);
  text-align: right;
}

/* Game panel */
.game-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.game-panel-info {}

.game-panel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 20px;
}

.game-panel-desc {
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 24px;
}

.game-panel-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 28px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.meta-key {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.meta-val {
  font-size: 15px;
  color: var(--white);
}

/* ── BRAND LOGO ── */
.brand-logo-thumb {
  width: 152px;
  height: 152px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gray-900);
  overflow: hidden;
}

.brand-logo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CUSTOM AUDIO PLAYER ── */
.audio-player {
  background: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  width: 100%;
  border-radius: 12px;
}

.audio-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.audio-play-btn:hover { transform: scale(1.08); }

.audio-play-btn svg { width: 13px; height: 13px; fill: var(--white); }

.audio-player-body {
  flex: 1;
  min-width: 0;
}

.audio-player-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.audio-seek {
  width: 100%;
  height: 3px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(242,237,230,0.18);
  outline: none;
  cursor: pointer;
  display: block;
  margin-bottom: 8px;
}

.audio-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
}

.audio-seek::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--black);
  border: none;
  cursor: pointer;
}

.audio-times {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}

/* ── ABOUT ── */
#about {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 0;
  filter: grayscale(20%) contrast(1.05);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: filter 0.4s ease;
}

.about-portrait img:hover { filter: grayscale(0%) contrast(1); }

.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 36px;
}

.about-heading .muted { color: var(--white); }

.about-body p {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-body p strong { color: var(--white); font-weight: 400; }

.about-callout {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 2px solid var(--white);
  background: var(--gray-800);
}

.about-callout p {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
}

.stats-col {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  align-self: start;
}

.stat-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.stat-item:last-child { border-bottom: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.stat-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ── CONTACT ── */
#contact {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  background: var(--gray-900);
}

.contact-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9.5vw, 126px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 72px;
}

.contact-heading .ghost {
  color: var(--white);
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left-intro {
  font-size: 17px;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 400px;
}

.c-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--gray-200);
  font-size: 17px;
  transition: color 0.2s, padding-left 0.2s;
  position: relative;
}

.c-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.25s;
}

.c-link:first-child { border-top: 1px solid var(--border); }
.c-link:hover { color: var(--white); padding-left: 12px; }
.c-link:hover::before { transform: scaleY(1); }

.c-link-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.c-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.c-arrow { color: var(--gray-400); font-size: 14px; transition: transform 0.2s, color 0.2s; }
.c-link:hover .c-arrow { transform: translate(3px,-3px); color: var(--white); }

/* Form */
.contact-form { display: flex; flex-direction: column; }

.form-field {
  border-bottom: 1px solid var(--border);
  padding: 16px 0 14px;
  transition: border-color 0.2s;
}

.form-field:first-child { border-top: 1px solid var(--border); }
.form-field:focus-within { border-color: var(--white); }

.f-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.f-input, .f-textarea, .f-select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  appearance: none;
  caret-color: var(--white);
}

.f-input::placeholder, .f-textarea::placeholder { color: var(--gray-500); }
.f-textarea { resize: none; height: 72px; }

.f-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' fill='none' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.f-select option { background: #ede8e0; color: #111009; }
.form-submit { margin-top: 28px; }

.form-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-900);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gray-500);
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal { to { transform: translateY(0); } }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav, nav.scrolled { padding: 18px 24px; }
  nav ul { gap: 20px; }
  .nav-hire { display: none; }
  #hero { min-height: auto; justify-content: flex-start; }
  .hero-scroll-hint { display: none; }
  .img-columns {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 150px;
    gap: 12px;
    padding: 64px 24px 0;
    height: auto;
    flex: 0 0 auto;
  }
  .hero-content { padding: 0 24px 48px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  #services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  #work { padding: 80px 24px; }
  .work-intro { grid-template-columns: 1fr; gap: 20px; }
  .spotify-grid { grid-template-columns: 1fr; }
  .credit-row { grid-template-columns: 36px 1fr auto; }
  .credit-year { display: none; }
  .game-panel-grid { grid-template-columns: 1fr; }
  #about { padding: 80px 24px; grid-template-columns: 1fr; gap: 48px; }
  .stats-col { padding-top: 32px; }
  #contact { padding: 80px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-heading { margin-bottom: 48px; }
  footer { flex-direction: column; gap: 10px; padding: 20px 24px; text-align: center; }
}

@media (max-width: 580px) {
  .nav-toggle { display: flex; }
  nav ul {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    background: rgba(242,237,230,0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  nav.menu-open ul { opacity: 1; visibility: visible; transform: translateY(0); }
  nav ul li { width: 100%; }
  nav ul a { display: block; padding: 14px 22px; font-size: 13px; }
  .nav-hire {
    display: block !important;
    border: none !important;
    padding: 14px 22px !important;
    color: var(--gray-400) !important;
  }
  .nav-hire:hover { background: none !important; color: var(--white) !important; }
  .work-tabs { overflow-x: auto; }
}