/* ==========================================================================
   TOKENS
   ========================================================================== */
:root {
  --ink:        #161A1F;
  --ink-soft:   rgba(22, 26, 31, 0.64);
  --ink-faint:  rgba(22, 26, 31, 0.38);
  --paper:      #F7F5F1;
  --paper-dim:  #EFEBE3;
  --line:       rgba(22, 26, 31, 0.14);

  --audio:      #93BFD9;
  --audio-deep: #5C8CAE;
  --audio-ink:  #1B3A4D;

  --art:        #FFE9BF;
  --art-deep:   #D9A860;
  --art-ink:    #4D3A1B;

  --white:      #FDFCFA;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-jelly: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-mode: 0.7s var(--ease);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;

  --wrap: 1180px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
h1, h2, h3 { margin: 0; font-family: var(--font-display); }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.9rem;
}
.section-eyebrow--inverse { color: rgba(247, 245, 241, 0.55); }

/* ==========================================================================
   FLOATING CONTROLS
   ========================================================================== */
.floating-resume {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px -10px rgba(22, 26, 31, 0.5);
  transition: transform 0.2s var(--ease);
}
.floating-resume svg { width: 19px; height: 19px; }
.floating-resume:hover { transform: translateY(-2px); }

.master-volume {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(22, 26, 31, 0.5);
}
.master-volume__slider-wrap {
  position: relative;
  width: 90px;
  height: 20px;
  display: flex;
  align-items: center;
}
.master-volume input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  margin: 0;
  border-radius: 999px;
  background: rgba(253, 252, 250, 0.28);
}
.master-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  margin-top: -5px;
}
.master-volume input[type="range"]::-moz-range-thumb {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--white); border: none; cursor: pointer;
}

/* On mobile, the slider flips to vertical — easier to reach and drag
   with a thumb near the corner of the screen. */
@media (max-width: 600px) {
  .floating-resume span { display: none; }
  .floating-resume { padding: 0.6rem; }

  .master-volume { flex-direction: column; padding: 0.9rem 0.7rem; gap: 0.7rem; }
  .master-volume__slider-wrap { width: 20px; height: 80px; }
  .master-volume input[type="range"] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 20px;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .master-volume input[type="range"]::-webkit-slider-thumb { width: 15px; height: 15px; margin-top: -5.5px; }
  .master-volume input[type="range"]::-moz-range-thumb { width: 15px; height: 15px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 480px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.55) saturate(0.9);
  transform: scale(1.08);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,17,20,0.35) 0%, rgba(15,17,20,0.55) 55%, rgba(15,17,20,0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.55);
  margin-bottom: 1.3rem;
}
.hero__namerow {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
}
.hero__name {
  flex: 0 0 auto;
  padding: 0 1.6rem;
  white-space: nowrap;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__role {
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.06em;
  color: rgba(253, 252, 250, 0.72);
  min-height: 1.4em;
}

/* animated wave spanning from the screen edge into the name, taller and
   fuller near the text, tapering off toward the screen edge */
.hero__wave {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  overflow: hidden;
  color: var(--white);
}
.hero__wave-svg {
  display: block;
  width: 200%;
  height: 100%;
  animation: waveScroll 7s linear infinite;
}
.hero__namerow .hero__wave:first-child {
  -webkit-mask-image: linear-gradient(to left, black 0%, black 45%, transparent 100%);
  mask-image: linear-gradient(to left, black 0%, black 45%, transparent 100%);
}
.hero__namerow .hero__wave:last-child {
  -webkit-mask-image: linear-gradient(to right, black 0%, black 45%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 45%, transparent 100%);
}
@keyframes waveScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 480px) {
  .hero__wave { height: 30px; }
}

/* ---- scroll cue: upside-down dome flush with the hero's bottom edge ---- */
.hero__scrollcue {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 56px;
  height: 28px;
  color: var(--white);
}
.scrollcue__ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(253, 252, 250, 0.55);
  border-bottom: none;
  border-radius: 999px 999px 0 0;
  opacity: 0;
  transform-origin: center bottom;
  animation: ripple 2.6s var(--ease) infinite;
}
.scrollcue__ring:nth-child(2) { animation-delay: 1.3s; }
.scrollcue__core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  border: 1.5px solid rgba(253, 252, 250, 0.85);
  border-bottom: none;
  border-radius: 999px 999px 0 0;
  background: rgba(22, 26, 31, 0.25);
  backdrop-filter: blur(2px);
}
@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2); opacity: 0; }
}

/* ==========================================================================
   TABS
   ========================================================================== */
.showcase {
  position: relative;
  z-index: 1;
  background: var(--audio);
  transition: background-color var(--transition-mode);
  padding: 4.5rem 1.5rem 5.5rem;
}
.showcase[data-mode="art"] { background: var(--art); }

.tabs {
  max-width: var(--wrap);
  margin: 0 auto 3rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.tab {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 26, 31, 0.22);
  color: var(--ink-soft);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tab__index {
  color: var(--ink-faint);
  margin-right: 0.35em;
}
.tab.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tab.is-active .tab__index { color: rgba(247, 245, 241, 0.55); }
.tab:not(.is-active):hover { border-color: var(--ink); }

/* ==========================================================================
   CAROUSEL / CONSOLE
   ========================================================================== */
.carousel {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.carousel__viewport {
  flex: 1;
  overflow: hidden;
  transition: height 0.4s var(--ease);
}
.carousel__track {
  display: flex;
  align-items: flex-start;
}
.slide {
  flex: 0 0 100%;
  width: 100%;
}

.carousel__arrow {
  position: fixed;
  top: -100px; /* real top/left set by JS once measured; keeps it off-screen until then */
  left: -100px;
  transform: translateY(-50%);
  z-index: 15;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -12px rgba(22, 26, 31, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.2s var(--ease);
}
.carousel__arrow.is-visible { opacity: 1; pointer-events: auto; }
.carousel__arrow:disabled { opacity: 0.25 !important; cursor: not-allowed; box-shadow: none; pointer-events: none; }
.carousel__arrow.is-visible:not(:disabled):hover { transform: translateY(-50%) scale(1.08); }
.carousel__arrow.is-visible:not(:disabled):active { transform: translateY(-50%) scale(0.96); }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
}
.carousel__dots--top {
  margin-top: 0;
  margin-bottom: 1.4rem;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint); }
.dot.is-active { background: var(--ink); }

.console {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(22, 26, 31, 0.35);
  transition: transform 0.38s var(--ease), opacity 0.38s var(--ease);
}
.console.is-switching { transform: scale(0.965); opacity: 0.45; }

.console__media {
  position: relative;
  background: var(--ink);
  aspect-ratio: 16 / 9;
}
.console__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.console__media--player { background: #000; overflow: hidden; }
.console__media--player .console__video {
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8%);
  transition: transform 0.5s var(--ease-jelly), opacity 0.4s var(--ease);
}
.console__media--player .console__video.is-active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.console__media--player .console__video.is-leaving { opacity: 0; transform: translateX(-8%); }

.media-swap-below {
  align-self: flex-start;
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 26, 31, 0.25);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.media-swap-below:hover { border-color: var(--ink); background: rgba(22, 26, 31, 0.05); }

.media-volume {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 26, 31, 0.5);
  backdrop-filter: blur(4px);
  color: var(--white);
}
.media-volume__btn { display: flex; align-items: center; justify-content: center; }
.media-volume__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: rgba(253, 252, 250, 0.35);
}
.media-volume__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); cursor: pointer; margin-top: -4.5px;
}
.media-volume__slider::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); border: none; cursor: pointer;
}

.console__media-tag {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.75);
  background: rgba(22, 26, 31, 0.5);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.console__body {
  padding: 2.6rem clamp(1.4rem, 5vw, 3.2rem) 2.8rem;
  display: flex;
  flex-direction: column;
}
.console__title-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.console__title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.console__year {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}
.console__desc {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  max-width: 70ch;
}

.mode-panel { display: none; }
.showcase[data-mode="audio"] .mode-panel--audio { display: block; }
.showcase[data-mode="art"] .mode-panel--art { display: block; }

/* ---- music / fader ---- */
.music {
  margin-top: 1.8rem;
  padding: 1.3rem 1.4rem 1.2rem;
  background: var(--ink);
  border-radius: var(--radius-md);
  color: var(--white);
  max-width: 640px;
}
.music__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.music__label { color: rgba(253, 252, 250, 0.55); }
.music__readout { color: var(--audio); font-variant-numeric: tabular-nums; }
.showcase[data-mode="art"] .music__readout { color: var(--art); }

.fader {
  position: relative;
  height: 26px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}
.fader__line {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(253, 252, 250, 0.22);
}
.fader__fill {
  position: absolute;
  left: 0; top: 50%;
  height: 3px;
  transform: translateY(-50%);
  width: 0%;
  background: var(--audio);
  border-radius: 999px;
  transition: width 0.6s var(--ease-jelly);
}
.showcase[data-mode="art"] .fader__fill { background: var(--art); }
.fader__fill.no-anim { transition: none; }
.fader__node {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(253, 252, 250, 0.4);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.fader__thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--audio);
  box-shadow: 0 2px 8px rgba(0,0,0,0.45);
  transform: translate(-50%, -50%);
  transition: left 0.6s var(--ease-jelly);
  pointer-events: none;
}
.showcase[data-mode="art"] .fader__thumb { border-color: var(--art); }
.fader__thumb.no-anim { transition: none; }
.fader__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.4);
}
.fader__labels span:first-child { text-align: left; }
.fader__labels span:last-child { text-align: right; }

.music__play {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--white);
  border: 1px solid rgba(253, 252, 250, 0.3);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: border-color 0.2s var(--ease);
}
.music__play:hover { border-color: var(--white); }

/* ---- sfx grid ---- */
.sfx {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.sfx__item {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.4);
}
.sfx__title { font-weight: 600; font-size: 0.92rem; }
.sfx__player {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.sfx__play {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(22, 26, 31, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.sfx__play:hover { border-color: var(--ink); }
.sfx__play.is-playing { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.waveform {
  position: relative;
  flex: 1;
  height: 26px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
}
.waveform__bars { display: flex; align-items: center; gap: 2px; width: 100%; height: 100%; }
.waveform__bar {
  flex: 1;
  min-width: 2px;
  height: calc(var(--h, 0.3) * 100%);
  background: rgba(22, 26, 31, 0.22);
  border-radius: 2px;
}
.waveform__progress { position: absolute; inset: 0; clip-path: inset(0 100% 0 0); }
.waveform__progress .waveform__bar { background: var(--ink); }

.sfx__desc { margin-top: 0.55rem; font-size: 0.86rem; color: var(--ink-soft); }

/* ---- streaming embeds (Original Music) ---- */
.streaming { margin-top: 1.8rem; max-width: 640px; display: flex; flex-direction: column; gap: 0.9rem; }
.streaming__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.7rem;
}
.streaming__embed { border-radius: var(--radius-md); overflow: hidden; }
.streaming__embed iframe { display: block; border: none; }

/* ---- wwise session clip ---- */
.wwise-session {
  margin-top: 1.8rem;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  max-width: 640px;
}
.wwise-session__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wwise-session__label {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.75);
  background: rgba(22, 26, 31, 0.5);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---- art grid ---- */
.art-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.art-block {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-dim);
  cursor: default;
}
.art-block__images { position: absolute; inset: 0; }
.art-block__img, .art-block__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s var(--ease), filter 0.35s var(--ease);
}
.art-block__img.is-active, .art-block__video.is-active { opacity: 1; }
.art-block:hover .art-block__img, .art-block:hover .art-block__video { filter: brightness(0.45) blur(3px); }

.art-block__title {
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.art-block__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.art-block:hover .art-block__overlay { opacity: 1; }
.art-block__overlay p { color: var(--white); font-size: 0.94rem; line-height: 1.5; }

/* ---- steam link (shown in both modes) ---- */
.steam-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 26, 31, 0.25);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.steam-link:hover { border-color: var(--ink); background: rgba(22, 26, 31, 0.05); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: 6rem 1.5rem; background: var(--ink); color: var(--paper); }
.about__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3.5rem 4rem;
}
.about__intro { grid-column: 1; position: relative; }
.about__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  max-width: 22ch;
}
.about__heading span { color: var(--audio); }
.showcase[data-mode="art"] ~ .about .about__heading span { color: var(--art); }
.about__photo {
  position: absolute;
  top: -1.2rem;
  right: 2rem;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  transform: rotate(-7deg);
  border: 5px solid rgba(247, 245, 241, 0.15);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.6);
  animation: photoHover 5s ease-in-out infinite;
}
@keyframes photoHover {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-10px); }
}
@media (max-width: 900px) {
  .about__photo { display: none; }
}
.about__bio { margin-top: 1.3rem; color: rgba(247, 245, 241, 0.68); max-width: 56ch; }
.about__skills { grid-column: 2; grid-row: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 241, 0.22);
  color: rgba(247, 245, 241, 0.8);
}
.chip--audio { border-color: rgba(147, 191, 217, 0.55); color: var(--audio); }
.chip--art { border-color: rgba(255, 233, 191, 0.55); color: var(--art); }
.about__games { grid-column: 1 / -1; margin-top: -1rem; }
.about__games-note { color: rgba(247, 245, 241, 0.62); max-width: 60ch; margin-bottom: 1rem; }
.about__history { grid-column: 1 / -1; margin-top: 1rem; }
.log__row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(247, 245, 241, 0.14);
}
.log__row:last-child { border-bottom: 1px solid rgba(247, 245, 241, 0.14); }
.log__time { font-family: var(--font-mono); font-size: 0.78rem; color: rgba(247, 245, 241, 0.5); }
.log__role { font-weight: 600; }
.log__place { margin-top: 0.25rem; color: rgba(247, 245, 241, 0.62); font-size: 0.92rem; }

.resume-link {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 241, 0.3);
  color: var(--paper);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.resume-link:hover { border-color: var(--paper); background: rgba(247, 245, 241, 0.08); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #0F1114; color: var(--paper); padding: 5rem 1.5rem 3rem; }
.footer__inner { max-width: var(--wrap); margin: 0 auto; }
.footer__heading { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 600; max-width: 16ch; }
.footer__email {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(247, 245, 241, 0.4);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.footer__email:hover { border-color: var(--paper); color: var(--audio); }
.footer__links {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(247, 245, 241, 0.62);
}
.footer__links a { transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--paper); }
.footer__copy { margin-top: 3rem; font-family: var(--font-mono); font-size: 0.72rem; color: rgba(247, 245, 241, 0.32); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__skills { grid-column: 1; grid-row: auto; }
}

@media (max-width: 600px) {
  .showcase { padding: 3rem 1rem 4rem; }
  .console__body { padding: 1.8rem 1.4rem 2rem; }
  .carousel { gap: 0.4rem; }
  .carousel__arrow { width: 44px; height: 44px; }
  .art-grid { grid-template-columns: 1fr; }
  .sfx { grid-template-columns: 1fr; }
  .log__row { grid-template-columns: 1fr; gap: 0.3rem; }
  .about, .footer { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__video-wrap { transform: none !important; }
  .scrollcue__ring { animation: none; opacity: 0; }
  .hero__wave-svg { animation: none; }
  .about__photo { animation: none; }
  .art-block__img { transition: none; }
  .carousel__track, .tab, .showcase, .console, .fader__fill, .fader__thumb, .carousel__viewport { transition: none; }
}
