@font-face {
  font-family: "PyeojinGothic";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2504-1@1.0/PyeojinGothic-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "PyeojinGothic";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2504-1@1.0/PyeojinGothic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PyeojinGothic";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2504-1@1.0/PyeojinGothic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #000000;
  --paper: #0a0a0a;
  --max-width: 1180px;

  /* Typography Colors */
  --ink-primary: #dfdfdf;
  /* Soft White */
  --ink-secondary: #888888;
  /* Unified Grey */
  --ink-muted: #666666;
  /* Darker Grey for subtle hints */

  /* Theme Colors */
  --accent: #8ac6ed;
  --accent-low: rgba(138, 198, 237, 0.15);
  --accent-ink: #000000;

  /* Surface & Borders */
  --line: #222222;
  --glass-bg: rgba(15, 15, 15, 0.7);
  --glass-border: rgba(255, 255, 255, 0.04);
  --glass-blur: 12px;
  /* Typography System */
  --font-point: "Song Myung", serif;
  --font-body: "PyeojinGothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

body {
  margin: 0;
  color: var(--ink-primary);
  background: var(--bg);
  font-family: var(--font-point);
  min-height: 100vh;
}

/* 2026 Landing-specific Overrides: Improve Readability for Body Content */
.landing-page {
  font-family: var(--font-body);
}

.landing-page .brand,
.landing-page .heavy,
.landing-page .year,
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page .point-text {
  font-family: var(--font-point);
}

/* Unified Card Font: Titles and content inside cards should use Gothic */
.landing-page .guide-card h3,
.landing-page .award-tier h3,
.landing-page .archive-card h3,
.landing-page .award-card h3 {
  font-family: var(--font-body);
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: repeating-linear-gradient(135deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.12) 4px,
      transparent 5px);
  z-index: 1;
}

main,
header,
footer {
  position: relative;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 3vw, 48px);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(10px);
  background-color: color-mix(in srgb, var(--paper) 94%, white 6%);
}

.topbar.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.11);
}

.brand {
  justify-self: start;
  text-decoration: none;
  color: var(--ink-primary);
  font-family: "Song Myung", serif;
  font-size: clamp(0.86rem, 1.4vw, 1rem);
  letter-spacing: 0.12em;
  font-weight: 700;
  transition: opacity 160ms ease;
}

.brand:hover {
  opacity: 0.8;
}

.menu {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.menu a {
  color: var(--ink-secondary);
  text-decoration: none;
  padding: 8px 13px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: all 160ms ease;
}

.menu a:hover,
.menu a.active {
  border-color: var(--accent);
  color: var(--accent);
  background-color: var(--accent-low);
}

.apply-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink-primary);
  border: 2px solid var(--line);
  padding: 0.62rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 160ms ease;
}

.apply-btn:hover {
  transform: translateY(-2px);
  border-color: var(--ink-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section {
  width: min(var(--max-width), calc(100% - 2.3rem));
  margin: clamp(38px, 8vw, 88px) auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 540px) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(18px, 3.6vw, 46px);
  margin-top: clamp(28px, 6vw, 64px);
}

.hero-frame {
  width: min(100%, 540px);
  aspect-ratio: 15 / 8;
  container-type: inline-size;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 4px solid var(--accent);
  background: transparent;
  box-shadow: 0 0 40px rgba(138, 198, 237, 0.4);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: -45% -68%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(122deg,
      transparent 42%,
      color-mix(in srgb, var(--accent) 65%, white 35%) 50%,
      transparent 58%);
  opacity: 0.32;
  transform: translate3d(-58%, 0, 0);
  animation: hero-sweep 8.2s cubic-bezier(0.33, 0, 0.22, 1) infinite;
}

@keyframes hero-sweep {

  0%,
  18% {
    transform: translate3d(-58%, 0, 0);
  }

  52%,
  100% {
    transform: translate3d(58%, 0, 0);
  }
}

.logo-grid {
  display: grid;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.logo-grid .logo-cell {
  display: flex;
  background: var(--accent);
  color: #000;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: clamp(2px, 0.65vw, 8px);
}

.logo-grid .logo-cell:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 2;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.logo-grid .logo-cell:nth-child(2) {
  grid-column: 7 / 11;
  grid-row: 1 / 2;
  border-bottom: 2px solid var(--line);
}

.logo-grid .logo-cell:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 2 / 3;
  border-right: 2px solid var(--line);
}

.logo-grid .logo-cell:nth-child(4) {
  grid-column: 5 / 11;
  grid-row: 2 / 3;
}

.serif {
  font-family: "Song Myung", serif;
  line-height: 0.72;
  font-weight: 400;
  color: inherit;
}

.heavy {
  font-size: clamp(4.6rem, 12.2vw, 8.4rem);
  letter-spacing: 0.01em;
}

.year {
  font-size: clamp(5.5rem, 14.8vw, 10.2rem);
}

@supports (font-size: 1cqi) {
  .heavy {
    font-size: clamp(4.6rem, 21.2cqi, 8.9rem);
  }

  .year {
    font-size: clamp(5.5rem, 24.4cqi, 10.9rem);
  }
}

.logo-block-dark {
  display: flex;
  position: relative;
  background: #000 !important;
  color: var(--accent) !important;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.nested-frame {
  --stack-step: clamp(7px, 1.3cqi, 11px);
  --travel: clamp(12px, 2.1cqi, 20px);
  width: clamp(132px, 80%, 260px);
  max-width: 90%;
  aspect-ratio: 16 / 9;
  position: relative;
  /* Visual Centering: Offset by ~0.8x the stack-step to account for visual weight of the spread */
  transform: translate(calc(var(--stack-step) * -0.8), calc(var(--stack-step) * -0.8));
}

.stack-sheet {
  position: absolute;
  inset: 0;
  background: rgba(138, 198, 237, 0.05);
  border: 1.5px solid var(--accent);
  opacity: 0;
  transform-origin: center;
  transform: translate3d(calc(var(--stack-step) * 3 + var(--travel)),
      calc(var(--stack-step) * 3 + var(--travel)),
      0) scale(0.99);
  transition:
    transform 900ms cubic-bezier(0.2, 0.78, 0.24, 1),
    opacity 380ms ease-in-out;
  will-change: transform, opacity;
}

.stack-sheet.slot-front {
  opacity: 1;
  z-index: 3;
  transform: translate3d(0, 0, 0) scale(1);
}

.stack-sheet.slot-mid {
  opacity: 1;
  z-index: 2;
  transform: translate3d(var(--stack-step), var(--stack-step), 0) scale(1);
}

.stack-sheet.slot-back {
  opacity: 1;
  z-index: 1;
  transform: translate3d(calc(var(--stack-step) * 2), calc(var(--stack-step) * 2), 0) scale(1);
}

.stack-sheet.slot-exit {
  opacity: 0;
  z-index: 4;
  transform: translate3d(calc(var(--travel) * -1), calc(var(--travel) * -1), 0) scale(0.985);
}

.stack-sheet.slot-hidden {
  opacity: 0;
  z-index: 0;
  transform: translate3d(calc(var(--stack-step) * 3 + var(--travel)),
      calc(var(--stack-step) * 3 + var(--travel)),
      0) scale(0.99);
}

@media (prefers-reduced-motion: reduce) {

  .hero-frame::after,
  .panel::before {
    animation: none;
  }

  .hero-frame::after {
    opacity: 0;
  }

  .stack-sheet {
    transition: none;
  }

  .btn::after {
    display: none;
  }

  .reveal,
  .reveal.in {
    transition: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .sheet-a {
    opacity: 1;
    z-index: 3;
    transform: translate(0, 0);
  }

  .sheet-b {
    opacity: 1;
    z-index: 2;
    transform: translate(var(--stack-step), var(--stack-step));
  }

  .sheet-c {
    opacity: 1;
    z-index: 1;
    transform: translate(calc(var(--stack-step) * 2), calc(var(--stack-step) * 2));
  }

  .sheet-d {
    opacity: 0;
    transform: translate(calc(var(--stack-step) * 3 + var(--travel)),
        calc(var(--stack-step) * 3 + var(--travel)));
  }
}

.hero-copy h1 {
  margin: 0;
  font-family: "Song Myung", serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.2;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  text-wrap: balance;
}

.hero-copy p {
  margin: 1.1rem 0 0;
  color: var(--ink-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.66;
}

.overline {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-family: "Song Myung", serif;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.12rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  border: 2px solid var(--line);
  transition: transform 120ms ease, background-color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -56%;
  width: 40%;
  pointer-events: none;
  content: none;
  transform: skewX(-24deg) translateX(0);
  transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: skewX(-24deg) translateX(440%);
}

.btn-solid {
  background: var(--accent);
  color: var(--bg);
}

.btn-solid:hover {
  background: #fff;
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--ink-primary);
}

.panel {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, white 6%);
  padding: clamp(18px, 4vw, 36px);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.93);
}


.panel>* {
  position: relative;
  z-index: 1;
}


.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-family: "Song Myung", serif;
}

#about .section-head {
  text-align: center;
}

#guideline .section-head {
  text-align: center;
}

.about-flow {
  margin: 1.2rem auto 0;
  max-width: 84ch;
  display: grid;
  gap: clamp(10px, 1.7vw, 15px);
  text-align: center;
}

.about-flow p {
  margin: 0;
  color: var(--ink-secondary);
  line-height: 1.78;
}

.about-highlight {
  margin-top: 0.2rem;
  padding-top: 0.9rem;
  border-top: 1.6px solid var(--line);
  font-family: "Song Myung", serif;
  color: var(--ink-primary);
  letter-spacing: 0.02em;
}

.guideline-grid {
  margin-top: 1.25rem;
  column-count: 2;
  column-gap: 0.85rem;
}

.guide-card,
.theme-list li,
.bullet-list,
.timeline article,
.team-media,
.archive-intro,
.archive-card,
.award-card,
.award-tier {
  border: 1.5px solid var(--accent-low);
  background: var(--glass-bg);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--glass-border) inset;
  backdrop-filter: blur(var(--glass-blur));
}

.guide-card {
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.guide-card h3 {
  margin: 0;
  color: var(--ink-primary);
  font-family: "Song Myung", serif;
  font-size: 1.15rem;
}

.guide-card p {
  margin: 0;
  color: var(--ink-secondary);
  line-height: 1.64;
}

/* Fix "Box in Box" hierarchy issues */
.guide-card .bullet-list,
.guide-card .theme-list,
.guide-card .theme-list li {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}


.theme-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.54rem;
}

.guide-card .bullet-list {
  margin-top: 0.4rem;
}

.guide-card .theme-list {
  margin-top: 0.4rem;
  gap: 0.6rem;
}

.theme-list strong {
  display: block;
  font-size: 0.92rem;
  font-family: "Song Myung", serif;
}

.theme-list span {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-secondary);
  font-size: 0.9rem;
}

.timeline p,
.team-message p,
.archive-meta p,
.awards-copy p {
  margin: 0;
  color: var(--ink-secondary);
  line-height: 1.7;
}

.bullet-list {
  padding: 1rem 1.1rem;
  list-style: none;
}

.compact-list {
  padding: 0.85rem 0.95rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.76;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--ink-primary);
  transform: translateY(-50%);
}

.bullet-list li+li {
  margin-top: 0.55rem;
}

.timeline {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.timeline article {
  padding: 1rem;
  border: 1.5px solid rgba(138, 198, 237, 0.15);
  background: rgba(15, 15, 15, 0.7);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(12px);
}

.timeline-date {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-family: "Song Myung", serif;
}

.timeline h3,
.archive-card h3,
.award-card h3 {
  margin: 0.65rem 0 0.35rem;
  font-family: "Song Myung", serif;
  font-size: 1.03rem;
}

.team-showcase {
  margin-top: 0.2rem;
  display: grid;
  gap: clamp(12px, 2.2vw, 20px);
}

.team-message {
  margin-top: 0;
  display: grid;
  gap: clamp(10px, 1.8vw, 16px);
}

.team-logo {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin-inline: auto;
}

.team-message p {
  max-width: 82ch;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(0.99rem, 1.35vw, 1.08rem);
  line-height: 1.78;
}

.team-message p+p {
  padding-top: clamp(2px, 0.8vw, 6px);
}

.team-quote {
  margin: clamp(16px, 2.5vw, 24px) 0 0;
  text-align: center;
  font-family: "Song Myung", serif;
  font-weight: 400;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  color: var(--accent);
}

.team-media {
  margin-top: clamp(18px, 3vw, 30px);
  border: 1.5px solid rgba(138, 198, 237, 0.15);
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(20px);
  padding: clamp(14px, 3vw, 24px);
}

.team-media-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  margin-bottom: 0.8rem;
}

.team-media-head h3 {
  margin: 0;
  font-family: "Song Myung", serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.team-media-head a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink-primary);
  border: 1.5px solid rgba(138, 198, 237, 0.15);
  border-radius: 999px;
  padding: 0.36rem 0.74rem;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 140ms ease, background-color 160ms ease;
}

.team-media-head a:hover {
  transform: translateY(-1px);
  background: rgba(15, 15, 15, 0.7);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(12px);
}

.team-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.team-video-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  display: flex;
  flex-direction: column;
}

/* Premium Accent Line on Hover */
.team-video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 260ms ease;
  z-index: 5;
  transform-origin: left;
}

.team-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 198, 237, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.team-video-card:hover::before {
  transform: scaleX(1);
}

.team-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.team-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
  transition: opacity 220ms ease;
}

.team-video-card:hover .team-video-thumb img {
  transform: scale(1.05);
}

.team-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 340ms ease;
}

.team-video-meta {
  padding: 0.8rem 0.85rem 0.95rem;
  display: grid;
  gap: 0.38rem;
  flex-grow: 1;
}

.team-video-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.team-video-date {
  margin: 0;
  color: var(--ink-secondary);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.team-video-loading {
  margin: 0;
  grid-column: 1 / -1;
  border: 1.5px dashed var(--line);
  background: rgba(15, 15, 15, 0.7);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(12px);
  padding: 0.85rem 0.95rem;
  color: var(--ink-secondary);
  font-size: 0.9rem;
  text-align: center;
}

.team-video-loading.error {
  color: #8a1111;
}

.apply-panel {
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--paper) 96%, white 4%);
}

.apply-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  display: none;
}

.apply-copy h2 {
  margin: 0.2rem 0 0.45rem;
  font-family: "Song Myung", serif;
  font-size: clamp(1.55rem, 3.3vw, 2.35rem);
  line-height: 1.28;
}

.apply-copy p {
  max-width: 68ch;
}

.apply-list {
  margin-top: 1rem;
  max-width: 760px;
}

.apply-panel .hero-actions {
  margin-top: 1rem;
  justify-content: flex-start;
}

.footer {
  width: min(var(--max-width), calc(100% - 2.3rem));
  margin: 0 auto 2rem;
  border-top: 2px solid var(--line);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--ink-secondary);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 0.2rem;
}

.lang-switch {
  --lang-radius: 0px;
  --lang-inset-x: 2px;
  --lang-inset-y: 1px;
  --lang-cell-w: 46px;
  --lang-cell-h: 32px;
  --lang-border: 1px;
  display: inline-grid;
  grid-template-columns: repeat(2, var(--lang-cell-w));
  grid-template-rows: var(--lang-cell-h);
  align-items: stretch;
  justify-items: stretch;
  gap: var(--lang-inset-x);
  padding: var(--lang-inset-y) var(--lang-inset-x);
  box-sizing: border-box;
  block-size: calc(var(--lang-cell-h) + (var(--lang-inset-y) * 2) + (var(--lang-border) * 2));
  border: var(--lang-border) solid var(--line);
  border-radius: var(--lang-radius);
  background: rgba(20, 20, 20, 0.8);
  vertical-align: middle;
  line-height: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  border: 1.2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 4px;
  inline-size: auto;
  block-size: auto;
  box-sizing: border-box;
  padding: 4px 12px;
  line-height: 1;
  font-family: "Song Myung", serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease;
}

.lang-btn:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 1px;
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.lang-btn.is-active {
  background: var(--accent);
  color: var(--bg);
}

/* Awards Archive */

.awards-main {
  width: min(var(--max-width), calc(100% - 2.3rem));
  margin: clamp(30px, 6vw, 56px) auto clamp(22px, 4vw, 34px);
}

.archive-intro {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  background: rgba(15, 15, 15, 0.8);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.85);
}

.archive-intro::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: clamp(44px, 8vw, 92px);
  height: clamp(44px, 8vw, 92px);
  border-left: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: rgba(40, 40, 40, 0.55);
}

.archive-intro h1,
.awards-copy h1 {
  margin: 0.25rem 0 0;
  font-family: "Song Myung", serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.archive-intro p,
.awards-copy p {
  color: var(--ink-secondary);
  line-height: 1.67;
}

.archive-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.archive-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 2px solid var(--line);
  background: rgba(15, 15, 15, 0.8);
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03) inset;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.archive-card::before {
  display: none;
}

.archive-card:hover {
  transform: translateY(-4px);
  box-shadow:
    8px 8px 0 rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0, 0, 0, 0.05) inset;
}

.year-badge {
  display: inline-flex;
  font-family: "Song Myung", serif;
  font-size: clamp(2rem, 3.1vw, 2.4rem);
  border: 1.8px solid var(--line);
  padding: 0.06rem 0.62rem;
  letter-spacing: 0.01em;
  background: rgba(15, 15, 15, 0.7);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(12px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.18);
}

.archive-card h3 {
  margin: 0.72rem 0 0.24rem;
  font-family: "Song Myung", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

.archive-meta {
  margin-top: 0.1rem;
  display: grid;
  gap: 0.4rem;
  flex: 1;
}

.archive-meta p {
  margin: 0;
  color: var(--ink-secondary);
  line-height: 1.55;
}

.archive-card .btn {
  margin-top: 0.7rem;
  min-width: 132px;
  align-self: flex-start;
  padding: 0.62rem 1rem;
  font-size: 0.95rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

.awards-header {
  width: min(var(--max-width), calc(100% - 2.3rem));
  margin: clamp(18px, 4vw, 36px) auto 0;
}

.awards-copy {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  background:
    linear-gradient(165deg, rgba(20, 20, 20, 0.74), rgba(10, 10, 10, 0.95)),
    var(--paper);
  padding: clamp(20px, 4vw, 36px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.86);
}

.awards-copy::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: clamp(54px, 10vw, 108px);
  height: 6px;
  background: var(--line);
}

.awards-gallery {
  width: min(var(--max-width), calc(100% - 2.3rem));
  margin: 1rem auto 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.award-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.96)),
    #fff;
  padding: 0.9rem;
  scroll-margin-top: 128px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06) inset;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.award-card::before {
  display: none;
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow:
    7px 7px 0 rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0, 0, 0, 0.06) inset;
}

.award-card:target {
  outline: 3px solid #67d6ab;
  outline-offset: 1px;
}

.photo-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1.5px solid rgba(138, 198, 237, 0.15);
  overflow: hidden;
  background: rgba(15, 15, 15, 0.8);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.photo-thumb::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.6px solid rgba(255, 255, 255, 0.92);
  opacity: 0.8;
}

.photo-thumb::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.photo-thumb span {
  position: absolute;
  left: 0.7rem;
  bottom: 0.6rem;
  color: #fff;
  font-family: "Song Myung", serif;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.tone-1 {
  --tone: #101010;
}

.tone-2 {
  --tone: #1f1f1f;
}

.tone-3 {
  --tone: #2d2d2d;
}

.tone-4 {
  --tone: #202020;
}

.tone-5 {
  --tone: #363636;
}

.award-meta {
  margin-top: 0.82rem;
  display: grid;
  gap: 0.3rem;
}

.award-rank {
  margin: 0;
  display: inline-flex;
  width: max-content;
  color: var(--ink-primary);
  background: rgba(15, 15, 15, 0.7);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(12px);
  border: 1.2px solid var(--line);
  padding: 0.16rem 0.42rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-family: "Song Myung", serif;
}

.award-meta p {
  margin: 0;
  color: var(--ink-secondary);
}

.copy-link {
  display: inline-flex;
  margin-top: 0.78rem;
  color: var(--ink-primary);
  text-decoration: none;
  border: 1.3px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-size: 0.78rem;
  font-family: "Song Myung", serif;
  letter-spacing: 0.04em;
  background: rgba(15, 15, 15, 0.7);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(12px);
}

.copy-link:hover {
  background: var(--ink-primary);
  color: #fff;
}

.awards-board {
  width: min(var(--max-width), calc(100% - 2.3rem));
  margin: 1rem auto 3rem;
  display: grid;
  gap: 1rem;
}

.award-tier {
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(138, 198, 237, 0.2);
  background: rgba(15, 15, 15, 0.7);
  padding: clamp(16px, 2.8vw, 24px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(20px);
}

.award-tier::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: 64px;
  height: 6px;
  background: linear-gradient(90deg, transparent 0 20%, #111 20% 100%);
}

.award-tier-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.66rem 1rem;
  margin-bottom: 1rem;
}

.award-tier-head h2 {
  margin: 0.18rem 0 0;
  font-family: "Song Myung", serif;
  font-size: clamp(1.36rem, 2.7vw, 2rem);
  line-height: 1.18;
}

.award-tier-head p {
  margin: 0;
  color: var(--ink-secondary);
  line-height: 1.5;
  max-width: 48ch;
}

.winner-grid,
.nominee-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.winner-grid .award-card {
  grid-column: span 6;
}

.winner-grid .award-card.is-featured {
  grid-column: span 12;
}

.nominee-grid .award-card {
  grid-column: span 4;
}

.award-card--winner::before {
  height: 6px;
  background: var(--accent);
}

.award-card--nominee::before {
  height: 4px;
  background: var(--line);
}

.work-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1.5px solid rgba(138, 198, 237, 0.15);
  background: rgba(15, 15, 15, 0.9);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-media::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.25px solid rgba(255, 255, 255, 0.86);
  z-index: 1;
  pointer-events: none;
}

.work-media::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 42px;
  height: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.74);
  border-left: 1px solid rgba(255, 255, 255, 0.74);
  z-index: 1;
  pointer-events: none;
}

.work-media span {
  position: absolute;
  left: 0.66rem;
  bottom: 0.56rem;
  color: #fff;
  font-family: "Song Myung", serif;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  z-index: 2;
}

.work-media.is-zoomable {
  cursor: zoom-in;
}

.work-media.is-zoomable:hover img {
  transform: scale(1.03);
}

.work-media img {
  transition: transform 260ms ease;
}

.work-media.is-landscape {
  aspect-ratio: 16 / 10;
}

.work-media.is-portrait {
  aspect-ratio: 3 / 4;
}

.work-media.is-square {
  aspect-ratio: 1 / 1;
}

.work-head {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.34rem;
}

.work-head h3 {
  margin: 0;
  font-family: "Song Myung", serif;
  font-size: clamp(1.04rem, 1.9vw, 1.34rem);
  line-height: 1.35;
}

.profile-link {
  display: inline-flex;
  width: max-content;
  text-decoration: none;
  border: 1.2px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  color: var(--ink-primary);
  background: var(--glass-bg);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--glass-border) inset;
  backdrop-filter: blur(var(--glass-blur));
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  font-family: "Song Myung", serif;
  transition: background-color 140ms ease, color 140ms ease;
}

.profile-link:hover {
  color: var(--bg);
  background: var(--ink-primary);
}

.comment-stack {
  margin-top: 0.64rem;
  display: grid;
  gap: 0.48rem;
}

.comment-box {
  margin: 0;
  padding: 0.56rem 0.66rem;
  border: 1.3px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.comment-box.judge {
  background: color-mix(in srgb, #a7ffd6 25%, var(--ink-primary) 75%);
}

.comment-label {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Song Myung", serif;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
}

.comment-box p {
  margin: 0;
  color: #353535;
  line-height: 1.54;
}

.nominee-note {
  margin: 0.62rem 0 0;
  color: var(--ink-secondary);
  line-height: 1.52;
}

.award-card--nominee .copy-link {
  margin-top: 0.62rem;
}

.is-lightbox-open {
  overflow: hidden;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 36px);
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.media-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-lightbox-dialog {
  position: relative;
  width: min(1160px, 94vw);
  max-height: calc(100vh - clamp(28px, 8vw, 72px));
  border: 2px solid var(--ink-primary);
  background: #090909;
  box-shadow:
    0 0 0 1px var(--glass-border) inset,
    14px 14px 0 rgba(0, 0, 0, 0.36);
  padding: clamp(10px, 2vw, 18px);
}

.media-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  border: 1px solid var(--ink-primary);
  background: rgba(0, 0, 0, 0.74);
  color: var(--ink-primary);
  font-family: "Song Myung", serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.52rem;
  cursor: pointer;
}

.media-lightbox-close:hover {
  background: var(--glass-bg);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--glass-border) inset;
  backdrop-filter: blur(var(--glass-blur));
  color: var(--ink-primary);
}

.media-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - clamp(130px, 20vw, 220px));
  margin: 0 auto;
}

.media-lightbox-caption {
  margin: 0.62rem 0 0;
  text-align: center;
  color: var(--ink-primary);
  font-size: 0.86rem;
  line-height: 1.45;
}

.reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(var(--reveal-x, 0px), 20px, 0) scale(0.986);
  transition:
    opacity 560ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 520ms ease var(--reveal-delay, 0ms);
}

.reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1160px) {
  .nominee-grid .award-card {
    grid-column: span 6;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .brand,
  .menu,
  .apply-btn {
    justify-self: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-frame {
    margin-inline: auto;
    width: min(100%, 540px);
  }

  .timeline,
  .archive-grid,
  .awards-gallery,
  .winner-grid,
  .nominee-grid {
    grid-template-columns: 1fr;
  }

  .winner-grid .award-card,
  .nominee-grid .award-card {
    grid-column: span 1;
  }

  .award-tier-head {
    align-items: flex-start;
  }

  .team-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guideline-grid {
    column-count: 1;
  }

  .archive-card .btn {
    margin-top: 0.8rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .menu {
    justify-content: flex-start;
  }

  .menu a {
    padding: 7px 10px;
    font-size: 0.86rem;
  }

  .apply-btn {
    width: 100%;
  }

  .heavy {
    font-size: clamp(3rem, 18vw, 5.8rem);
    letter-spacing: -0.01em;
  }

  .year {
    font-size: clamp(3rem, 18vw, 5.8rem);
  }

  .nested-frame {
    --stack-step: 6px;
    --travel: 10px;
    width: 125px;
    max-width: 78%;
    /* Mobile-specific centering offset (calibrated for 6px step) */
    transform: translate(-5px, -10px);
  }

  .apply-copy h2 {
    font-size: clamp(1.28rem, 6vw, 1.8rem);
  }

  .team-media-head {
    align-items: flex-start;
  }

  .team-video-grid {
    grid-template-columns: 1fr;
  }
}