/* ============================================
   KALIENS KOLLECTIVE — Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Silkscreen:wght@400;700&family=Oswald:wght@300;400&family=Fira+Code:wght@400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-text: #f0f0f0;
  --color-text-secondary: #a0a0a0;
  --color-text-muted: #666666;
  --color-accent: #c8b89a;
  --color-border: rgba(255, 255, 255, 0.08);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-pixel: 'Silkscreen', monospace;

  --font-xs: clamp(0.65rem, 0.75vw, 0.75rem);
  --font-sm: clamp(0.8rem, 0.9vw, 0.9rem);
  --font-base: clamp(0.9rem, 1vw, 1rem);
  --font-md: clamp(1.1rem, 1.3vw, 1.3rem);
  --font-lg: clamp(1.5rem, 2vw, 2rem);
  --font-xl: clamp(2rem, 3.5vw, 3.5rem);
  --font-hero: clamp(3.2rem, 7.5vw, 9rem);

  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;
  --space-section: clamp(5rem, 10vh, 8rem);

  --max-width: 1200px;
  --nav-height: 60px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: #fff; color: #000; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ============================================
   NAVIGATION — Minimal top bar
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out-expo),
              backdrop-filter 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: opacity 0.3s;
}

.nav__logo:hover { 
  opacity: 1; 
}

.nav__logo-img {
  width: 24px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav__logo:hover .nav__logo-img {
  transform: rotate(360deg) scale(1.15);
}

.nav__logo-text {
  font-family: var(--font-body);
  font-size: var(--font-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.4s, letter-spacing 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav__logo:hover .nav__logo-text {
  color: var(--color-accent);
  letter-spacing: 0.25em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.nav__link {
  font-size: var(--font-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

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

.nav__year {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.2s;
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(40px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.nav__mobile-menu.active { opacity: 1; visibility: visible; }
.nav__mobile-menu .nav__link { font-size: var(--font-lg); letter-spacing: 0.2em; }

/* ============================================
   HERO — Pixel title, centered
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--color-bg);
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-md);
  width: 100%;
}

.hero__title {
  font-family: var(--font-pixel);
  font-size: var(--font-hero);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: clamp(3rem, 6vh, 5rem);
  will-change: transform, opacity;
}

.hero__title span { display: block; }

.hero__subtitle-block {
  max-width: 640px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) 0.8s forwards;
}

.hero__subtitle {
  font-size: var(--font-xs);
  font-weight: 400;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.9;
  margin-bottom: var(--space-sm);
}

.hero__subtitle-kr {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   DOT SEPARATOR
   ============================================ */
.dot-separator {
  display: flex;
  justify-content: center;
  padding: var(--space-xl) 0;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--color-text);
  border-radius: 50%;
}

/* ============================================
   PROJECTS — Full-width poster
   ============================================ */
.projects {
  padding: var(--space-section) 0 var(--space-lg);
}

.projects__heading {
  font-size: var(--font-lg);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.projects__poster {
  width: 100%;
  max-width: 900px;
  margin-bottom: var(--space-md);
}

.poster-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.poster-main-img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.poster-badges {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 10;
  pointer-events: none;
}

.poster-badges img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.poster-hover-arrow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px; height: 80px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  opacity: 0;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.4s;
  z-index: 2;
}

.poster-hover-arrow svg {
  width: 40px;
  height: 40px;
}

.poster-link:hover .poster-hover-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.poster-link:hover .poster-main-img {
  transform: scale(1.02);
}

.projects__info {
  padding-top: var(--space-sm);
}

.projects__title {
  font-size: var(--font-base);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

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

/* ============================================
   ABOUT — Text left, Logo right
   ============================================ */
.about {
  padding: var(--space-section) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.about__heading {
  font-size: var(--font-lg);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.about__body p {
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

.about__body-kr {
  margin-top: var(--space-lg);
}

.about__body-kr p {
  font-size: var(--font-sm);
  color: var(--color-text-muted);
  line-height: 2;
  margin-bottom: var(--space-sm);
}

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

/* Services inside About */
.about__services {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.about__services-label {
  font-size: var(--font-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.about__services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.about__services-col p {
  font-size: var(--font-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 2.2;
  color: var(--color-text);
}

.about__services-col--kr p {
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Logo on right */
.about__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-xl);
}

.about__logo img {
  width: clamp(200px, 25vw, 380px);
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.8s var(--ease-out-expo);
}

@keyframes continuousSpin {
  0% { transform: rotate(0deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1.1); }
}

.about__logo:hover img {
  animation: continuousSpin 4s linear infinite;
}

/* ============================================
   TEAM — Text only, two columns
   ============================================ */
.team {
  padding: var(--space-section) 0;
}

.team__heading {
  font-size: var(--font-lg);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
}

.team__name {
  font-size: var(--font-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.team__role {
  font-size: var(--font-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.team__bio {
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  line-height: 1.85;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}

.team__website {
  display: inline-block;
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  transition: opacity 0.2s;
}

.team__website:hover { opacity: 0.6; }

.team__bio-kr {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.team__bio-kr h4 {
  font-size: var(--font-base);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.team__role-kr {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.team__bio-kr p {
  font-size: var(--font-sm);
  color: var(--color-text-muted);
  line-height: 2;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  text-align: center;
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--color-border);
}

.contact__link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s, transform 0.3s;
}

.contact__link:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

.contact__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(7.5rem, 15vw, 11.25rem);
  font-weight: 300;
  text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copyright {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
}

.footer__email {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

/* ============================================
   TUNE PAGE — Split Layout
   ============================================ */

@keyframes glitchTitle {
  0%, 96%, 100% { text-shadow: none; transform: scaleY(1.4) skewX(0deg); }
  97% { text-shadow: 3px 0px 0px rgba(255,0,0,0.5), -3px 0px 0px rgba(0,255,255,0.5); transform: scaleY(1.4) skewX(5deg); }
  98% { text-shadow: -3px 0px 0px rgba(255,0,0,0.5), 3px 0px 0px rgba(0,255,255,0.5); transform: scaleY(1.4) skewX(-5deg); }
  99% { text-shadow: 2px 0px 0px rgba(255,0,0,0.5), -2px 0px 0px rgba(0,255,255,0.5); transform: scaleY(1.4) skewX(2deg); }
}

.tune-body {
  background-color: #000000;
  overflow-x: hidden;
  position: relative;
}

.tune-body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url('assets/dust-overlay.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.15;
}

.tune-split-layout {
  display: flex;
  min-height: 100vh;
}

/* Left Column: Fixed Menu */
.tune-sidebar {
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: none;
}

.tune-sidebar__logo {
  display: inline-block;
  width: 32px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.tune-sidebar__logo:hover {
  opacity: 1;
}

.tune-sidebar__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.tune-sidebar__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: var(--space-xl) 0 12rem 0;
  transform: scaleY(1.4);
  transform-origin: left center;
  animation: glitchTitle 5s infinite;
  position: relative;
  z-index: 2;
}

.tune-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: auto;
}

.tune-nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s, transform 0.3s var(--ease-out-expo);
}

.tune-nav-link:hover {
  color: var(--color-text);
  transform: translateX(10px);
}

.tune-nav-sep {
  color: var(--color-text-muted);
}

.tune-nav-kr {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  letter-spacing: 0.05em;
}

.tune-sidebar__footer {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

/* Right Column: Scrollable Blocks */
.tune-content {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.tune-block {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  text-decoration: none;
  border-bottom: none;
}

.tune-block__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: left center;
  transition: transform 1.2s var(--ease-out-expo);
  z-index: 1;
}

.tune-block__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.2) 100%);
  z-index: 2;
  transition: opacity 0.5s;
}

.tune-block:hover .tune-block__bg {
  transform: scale(1.05);
}

.tune-block:hover .tune-block__overlay {
  opacity: 0.6;
}

.tune-block__title {
  position: relative;
  z-index: 3;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  transform: scaleY(1.2);
  transform-origin: left top;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .tune-split-layout {
    flex-direction: column;
  }
  .tune-sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .tune-content {
    width: 100%;
  }
  .tune-block {
    height: 40vh;
  }
}

/* ============================================
   TUNE SUBPAGES (Video, Archive, About, Credit)
   ============================================ */
.tune-subpage-body {
  background-color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  color: var(--color-text-secondary);
  font-family: 'Fira Code', monospace;
  font-size: var(--font-sm);
  min-height: 100vh;
}

.tune-subpage-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem);
}

.tune-subpage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.tune-subpage-logo img {
  width: 48px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.tune-subpage-logo:hover img {
  opacity: 0.7;
}

/* --- Watch Video Page --- */
.tune-video-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  transform: scaleY(1.5);
  transform-origin: left bottom;
}

.tune-video-text {
  max-width: 1200px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.tune-video-text p { margin-bottom: var(--space-md); }

.tune-video-player {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-alt);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.tune-video-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.4s;
}

.tune-video-player:hover img {
  opacity: 0.8;
}

.tune-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.tune-video-player:hover .tune-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255,255,255,0.2);
}

.tune-video-play svg {
  width: 24px; height: 24px;
  color: var(--color-text);
  margin-left: 4px;
}

/* --- Archive Page --- */
.tune-search-container {
  position: relative;
  width: 300px;
}

.tune-search-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  color: var(--color-text);
  font-family: 'Fira Code', monospace;
  font-size: var(--font-xs);
  outline: none;
  transition: border-color 0.3s;
}

.tune-search-input:focus {
  border-color: rgba(255,255,255,0.3);
}

.tune-search-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--color-text-muted);
}

.tune-archive-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
}

.tune-archive-table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.tune-archive-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 1000px;
}

.tune-archive-table th {
  font-size: var(--font-xs);
  color: var(--color-text);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 1.5rem 1rem 0;
  font-weight: 500;
  text-transform: uppercase;
}

.tune-archive-table td {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  transition: color 0.3s, background 0.3s;
}

.tune-archive-table tr {
  cursor: pointer;
  transition: background 0.3s;
}

.tune-archive-table tr:hover {
  background: rgba(255,255,255,0.02);
}

.tune-archive-table tr:hover td {
  color: var(--color-text-secondary);
}

/* --- About Tune Page --- */
.tune-about-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  transform: scaleY(1.4);
  transform-origin: left bottom;
}

.tune-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  padding-top: var(--space-lg);
}

.tune-about-col {
  display: flex;
  flex-direction: column;
}

.tune-about-col p {
  line-height: 2;
  margin-bottom: var(--space-lg);
}

.tune-about-col p.kr {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.tune-about-footer-left,
.tune-about-footer-right {
  margin-top: auto;
  padding-top: var(--space-xl);
  font-size: var(--font-xs);
  color: var(--color-text-muted);
}

.tune-about-footer-right {
  text-align: right;
}

.tune-about-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.tune-about-link:hover {
  color: var(--color-text);
}

/* --- Credit Page --- */
.tune-credit-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  transform: scaleY(1.4);
  transform-origin: left bottom;
}

.tune-credit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-xl) var(--space-md);
  margin-top: var(--space-xxl);
}

.tune-credit-spacer {
  grid-column: 1 / -1;
  height: 4rem;
}

.tune-credit-group {
  margin-bottom: var(--space-md);
}

.tune-credit-group h3 {
  font-size: var(--font-sm);
  color: var(--color-text);
  font-weight: 500;
}

.tune-credit-group .role {
  font-size: var(--font-xs);
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.tune-credit-group .name {
  font-size: var(--font-sm);
  color: var(--color-text-muted);
}

.tune-credit-group .kr {
  font-size: 0.7rem;
  margin-left: 0.5rem;
}

.tune-credit-group .org {
  font-size: 0.7rem;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .tune-about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .tune-credit-grid { grid-template-columns: 1fr 1fr; }
  .tune-about-footer-right { text-align: left; }
}

@media (max-width: 600px) {
  .tune-credit-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__logo { order: -1; padding-top: 0; padding-bottom: var(--space-lg); }
  .credits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 52px; }
  .nav__links { display: none; }
  .nav__year { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile-menu { display: flex; }
  .team__grid { grid-template-columns: 1fr; }
  .about__services-grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .case-card__header { flex-direction: column; }
  .tune-hero__nav { gap: var(--space-sm); }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.2rem, 11vw, 3.5rem); }
}

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

/* ============================================
   CUSTOM CURSOR — White dot
   ============================================ */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease, opacity 0.15s ease, width 0.3s ease, height 0.3s ease, margin 0.3s ease;
    will-change: left, top;
  }
  
  .cursor-dot.cursor-invert {
    width: 150px;
    height: 150px;
    margin-left: -70px;
    margin-top: -70px;
    mix-blend-mode: difference;
    background: white;
  }
}

/* ============================================
   IMAGE TRAIL — Hero section
   ============================================ */
.image-trail {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.trail-image {
  position: absolute;
  width: clamp(140px, 18vw, 240px);
  height: auto;
  pointer-events: none;
  opacity: 0;
  border-radius: 4px;
  object-fit: cover;
  will-change: transform, opacity;
  z-index: 1;
}
