@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+KR:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #10211d;
  --paper: #f5f3ec;
  --white: #fffef9;
  --blue: #2050d8;
  --blue-deep: #153bb8;
  --lime: #d8ff62;
  --coral: #ff755f;
  --mint: #bcecd6;
  --line: rgba(16, 33, 29, 0.17);
  --sans: "DM Sans", "Noto Sans KR", sans-serif;
  --kr: "Noto Sans KR", sans-serif;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.3vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-header.is-fixed {
  position: fixed;
  color: var(--ink);
  background: rgba(245, 243, 236, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  animation: header-drop 0.35s ease both;
}

@keyframes header-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.wordmark {
  display: flex;
  align-items: center;
  width: clamp(190px, 17vw, 235px);
}

.wordmark img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter .25s ease;
}

.site-header:not(.is-fixed):not(.light-header) .wordmark img {
  filter: brightness(0) invert(1);
}

.menu-open .site-header .wordmark img {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--kr);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:not(.nav-cta) {
  position: relative;
  padding: 28px 0;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--blue);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-grid {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 2vw;
  padding: calc(var(--header-h) + 5vh) 5.5vw 13vh;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-left: 1.5vw;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-eyebrow,
.hero-copy h1,
.hero-description,
.hero-actions {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-enter 0.7s cubic-bezier(.22,.8,.2,1) forwards;
}

.hero-copy h1 { animation-delay: 0.12s; }
.hero-description { animation-delay: 0.23s; }
.hero-actions { animation-delay: 0.34s; }

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: var(--kr);
  font-size: clamp(54px, 6.6vw, 104px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero-copy h1 span {
  color: #f3f6ff;
}

.hero-copy h1 .hero-title-accent {
  display: inline-flex;
  color: var(--coral);
  white-space: nowrap;
}

.hero-copy h1 .hero-title-accent > span {
  display: inline-block;
  color: inherit;
  transform-origin: 50% 85%;
  animation: imagination-wave 3.2s cubic-bezier(.22, .8, .2, 1) infinite;
  will-change: transform;
}

.hero-copy h1 .hero-title-accent > span:nth-child(2) {
  animation-delay: .16s;
}

@keyframes imagination-wave {
  0%, 42%, 100% { transform: translateY(0) rotate(0) scale(1); }
  9% { transform: translateY(-.11em) rotate(-2deg) scale(1.035); }
  18% { transform: translateY(.015em) rotate(1deg) scale(.99); }
  27% { transform: translateY(-.035em) rotate(-1deg) scale(1.012); }
  34% { transform: translateY(0) rotate(0) scale(1); }
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero-description {
  margin: 30px 0 0;
  font-family: var(--kr);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--kr);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button span,
.text-link span {
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover span,
.text-link:hover span {
  transform: translate(3px, -2px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--kr);
  font-size: 14px;
  font-weight: 600;
}

.text-link-light {
  color: var(--white);
}

.hero-art {
  position: relative;
  min-height: 620px;
  align-self: stretch;
}

.hero-character {
  position: absolute;
  z-index: 3;
  right: -1vw;
  bottom: 2vh;
  width: min(45vw, 640px);
  overflow: visible;
  filter: drop-shadow(0 30px 0 rgba(8, 36, 112, 0.22));
  transform-origin: center bottom;
  animation: character-rise 0.9s 0.2s cubic-bezier(.22,.8,.2,1) both, character-float 4.5s 1.1s ease-in-out infinite;
}

.hero-character-card {
  position: absolute;
  z-index: 3;
  right: 2.5%;
  bottom: 5vh;
  width: min(33vw, 470px);
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 5px solid var(--ink);
  box-shadow: 17px 17px 0 rgba(9, 37, 108, 0.62);
  transform: rotate(2deg);
  transform-origin: center bottom;
  animation: character-card-rise .9s .2s cubic-bezier(.22,.8,.2,1) both,
    character-card-float 4.8s 1.1s ease-in-out infinite;
}

.dodam-hero-crop {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 780 / 740;
  padding: clamp(24px, 3.1vw, 42px);
  background: #fff;
}

.dodam-hero-crop img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero-character-card figcaption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 18px 16px;
  border-top: 3px solid var(--ink);
}

.hero-character-card figcaption span {
  padding-bottom: 4px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.hero-character-card figcaption strong {
  font-family: var(--kr);
  font-size: 28px;
  letter-spacing: -.05em;
}

@keyframes character-card-rise {
  from { opacity: 0; transform: translateY(70px) rotate(7deg); }
}

@keyframes character-card-float {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-11px) rotate(-1deg); }
}

@keyframes character-rise {
  from { opacity: 0; transform: translateY(70px) rotate(4deg); }
}

@keyframes character-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.hero-shadow { fill: rgba(9, 37, 108, 0.24); }
.hero-body { fill: var(--white); stroke: var(--ink); stroke-width: 9; }
.hero-ear { fill: var(--lime); stroke: var(--ink); stroke-width: 9; stroke-linecap: round; }
.hero-eye { fill: var(--ink); }
.hero-mouth { fill: none; stroke: var(--ink); stroke-width: 8; stroke-linecap: round; }
.hero-cheek { fill: #ff9b92; }
.hero-heart { fill: var(--coral); stroke: var(--ink); stroke-width: 7; }
.hero-spark { fill: var(--lime); stroke: var(--ink); stroke-width: 5; }
.hero-spark-small { fill: var(--coral); }

.orbit {
  position: absolute;
  z-index: 1;
  top: 18%;
  right: -18%;
  width: 120%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  transform: rotate(-20deg) scaleY(.42);
}

.orbit-two {
  top: 8%;
  right: -5%;
  width: 91%;
  border-color: rgba(216, 255, 98, 0.7);
  transform: rotate(24deg) scaleY(.53);
}

.art-label {
  position: absolute;
  z-index: 5;
  padding: 9px 16px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: clamp(12px, .95vw, 15px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.art-label-one { top: 23%; left: 5%; transform: rotate(-7deg); }
.art-label-two { top: 17%; right: 3%; color: var(--ink); background: var(--lime); transform: rotate(8deg); }

.tool-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 800;
  letter-spacing: .02em;
}

.tool-chip i { width: 14px; height: 14px; flex: 0 0 14px; border-radius: 50%; background: var(--coral); }
.tool-chip-two i { background: var(--lime); }
.tool-chip-one { right: 4%; bottom: 19%; transform: rotate(-5deg); }
.tool-chip-two { left: 8%; bottom: 30%; transform: rotate(4deg); }

.cursor-note {
  position: absolute;
  z-index: 7;
  top: 7%;
  right: auto;
  left: 2%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px 11px 11px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--kr);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  transform: rotate(-4deg);
}

.cursor-note > span:last-child { color: var(--ink); }
.cursor-arrow { color: var(--ink); font-size: clamp(38px, 3vw, 48px); line-height: .9; }

.hero-bottom {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 4.5vw;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--kr);
  font-size: 13px;
}

.hero-bottom p { margin: 0; color: rgba(255,255,255,.82); }
.hero-date { display: flex; align-items: center; gap: 20px; }
.hero-date span { font-size: 11px; color: rgba(255,255,255,.76); }
.hero-date strong { color: var(--white); font-family: var(--sans); font-size: 18px; }
.hero-bottom > a { display: flex; gap: 15px; color: #f3f6ff; font-size: 10px; font-weight: 700; letter-spacing: .12em; }

.section-pad {
  padding-right: 7vw;
  padding-left: 7vw;
}

.intro {
  min-height: 76vh;
  display: grid;
  grid-template-columns: 1fr 3fr 1.3fr;
  align-items: center;
  gap: 4vw;
  padding-top: 11vh;
  padding-bottom: 11vh;
  background: var(--paper);
}

.intro-number {
  align-self: start;
  padding-top: 4vh;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.intro-content h2,
.section-heading h2,
.guide-title h2,
.schedule-copy h2,
.apply h2,
.archive-hero h1,
.gallery-cta h2 {
  margin: 0;
  font-family: var(--kr);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.065em;
}

.intro-content h2 {
  font-size: clamp(44px, 6vw, 92px);
}

.intro-content > p:last-child {
  margin: 38px 0 0;
  font-family: var(--kr);
  font-size: 20px;
  line-height: 1.8;
  color: #52605c;
}

.ai-tool-stack {
  position: relative;
  right: clamp(50px, 5vw, 100px);
  width: min(22vw, 290px);
  height: 315px;
  justify-self: start;
}

.ai-tool-card {
  position: absolute;
  width: min(19vw, 250px);
  min-width: 210px;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform .3s cubic-bezier(.22,.8,.2,1);
}

.ai-tool-card:nth-child(1) { top: 0; left: 0; transform: rotate(-5deg); }
.ai-tool-card:nth-child(2) { top: 82px; right: 0; transform: rotate(3deg); }
.ai-tool-card:nth-child(3) { top: 164px; right: 18px; transform: rotate(-2deg); }
.ai-tool-stack:hover .ai-tool-card:nth-child(1) { transform: translate(-7px, -5px) rotate(-7deg); }
.ai-tool-stack:hover .ai-tool-card:nth-child(2) { transform: translate(7px, 0) rotate(5deg); }
.ai-tool-stack:hover .ai-tool-card:nth-child(3) { transform: translate(-3px, 5px) rotate(-4deg); }

.ai-tool-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 13px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.ai-tool-name { display: flex; flex-direction: column; gap: 3px; }
.ai-tool-name strong { font-size: 21px; line-height: 1; letter-spacing: -.035em; }
.ai-tool-name small { font-size: 10px; font-weight: 800; letter-spacing: .15em; opacity: .65; }
.ai-tool-gemini { background: #e5e6ff; }
.ai-tool-gemini .ai-tool-icon { color: var(--blue); background: var(--white); }
.ai-tool-chatgpt { background: var(--mint); }
.ai-tool-chatgpt .ai-tool-icon { background: var(--white); }
.ai-chatgpt-logo img { width: 40px; height: 40px; display: block; object-fit: contain; }
.ai-tool-claude { background: #ffd8ce; }
.ai-tool-claude .ai-tool-icon { color: var(--white); background: var(--coral); }

.ai-tool-note {
  position: absolute;
  top: 260px;
  left: 28px;
  margin: 0;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--kr);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  white-space: nowrap;
  transform: rotate(3deg);
}

.ai-tool-note span { margin-right: 5px; color: var(--coral); }

.dodam-story {
  min-height: 900px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dodam-gallery {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #fff;
}

.dodam-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .8s cubic-bezier(.22,.8,.2,1);
}

.dodam-story:hover .dodam-gallery img {
  transform: scale(1.025);
}

.dodam-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 9vh;
  padding-bottom: 9vh;
}

.dodam-story-copy .eyebrow {
  color: var(--blue);
}

.dodam-story-copy h2 {
  margin: 0;
  font-family: var(--kr);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.065em;
}

.dodam-lead {
  margin: 32px 0 0;
  font-family: var(--kr);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: -.035em;
}

.dodam-definition {
  margin: 45px 0 0;
  border-top: 1px solid var(--ink);
}

.dodam-definition > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.dodam-definition dt {
  padding-top: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.dodam-definition dd {
  margin: 0;
  font-family: var(--kr);
  font-size: 16px;
  line-height: 1.75;
  color: #596460;
}

.dodam-guide-note {
  margin-top: 30px;
  padding: 20px 22px;
  color: var(--white);
  background: var(--blue);
}

.dodam-guide-note span {
  display: block;
  margin-bottom: 8px;
  color: #f3f6ff;
  font-family: var(--kr);
  font-size: 12px;
  font-weight: 800;
}

.dodam-guide-note p {
  margin: 0;
  font-family: var(--kr);
  font-size: 15px;
  line-height: 1.6;
}

.themes {
  background: var(--white);
}

.section-heading {
  min-height: 59vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  font-size: clamp(50px, 7.2vw, 110px);
}

.theme-row {
  min-height: 82vh;
  display: grid;
  grid-template-columns: .42fr 1.25fr 1.65fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.theme-index {
  padding: 7vh 3vw;
  border-right: 1px solid var(--line);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 500;
}

.theme-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 4.5vw;
}

.theme-kicker {
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}

.theme-copy h3 {
  margin: 0;
  font-family: var(--kr);
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.06em;
}

.theme-copy > p:not(.theme-kicker) {
  margin: 32px 0 0;
  font-family: var(--kr);
  font-size: 18px;
  line-height: 1.75;
  color: #56615d;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-family: var(--kr);
  font-size: 13px;
}

.theme-visual {
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

.visual-remix {
  color: var(--white);
  background: var(--blue);
}

.remix-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 70px 70px;
}

.remix-character {
  position: absolute;
  top: 50%;
  width: 29%;
  aspect-ratio: .82;
  border: 5px solid var(--ink);
  border-radius: 45% 45% 40% 40%;
  background: var(--white);
  box-shadow: 13px 13px 0 rgba(15, 31, 27, .7);
  transform: translateY(-50%);
  transition: transform .45s cubic-bezier(.22,.8,.2,1);
}

.theme-row:hover .remix-before { transform: translateY(-50%) rotate(-7deg); }

.remix-before { left: 10%; }
.remix-after { right: 10%; background: var(--lime); }

.dodam-card-deck {
  position: absolute;
  inset: 0;
}

.dodam-theme-card {
  position: absolute;
  top: 50%;
  width: min(36%, 275px);
  aspect-ratio: .82;
  padding: 15px 15px 42px;
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: 13px 13px 0 rgba(15, 31, 27, .7);
  transition: transform .45s cubic-bezier(.22,.8,.2,1);
}

.dodam-theme-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.dodam-theme-card span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 7px;
  color: var(--white);
  background: var(--blue);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .11em;
}

.dodam-card-left {
  z-index: 1;
  left: 9%;
  transform: translateY(-48%) rotate(-10deg);
}

.dodam-card-center {
  z-index: 3;
  left: 50%;
  transform: translate(-50%, -53%) rotate(-1deg);
}

.dodam-card-right {
  z-index: 2;
  right: 8%;
  transform: translateY(-47%) rotate(9deg);
}

.theme-one:hover .dodam-card-left {
  transform: translate(-8px, -51%) rotate(-13deg);
}

.theme-one:hover .dodam-card-center {
  transform: translate(-50%, -56%) rotate(1deg) scale(1.025);
}

.theme-one:hover .dodam-card-right {
  transform: translate(8px, -50%) rotate(12deg);
}
.remix-character .ear { position: absolute; top: -19%; width: 29%; height: 31%; border: 5px solid var(--ink); background: inherit; border-radius: 55% 55% 25% 25%; }
.remix-character .ear.left { left: 13%; transform: rotate(-13deg); }
.remix-character .ear.right { right: 13%; transform: rotate(13deg); }
.remix-character .eye { position: absolute; top: 44%; width: 9%; aspect-ratio: 1; background: var(--ink); border-radius: 50%; }
.remix-character .eye.left { left: 31%; }
.remix-character .eye.right { right: 31%; }
.remix-character .mouth { position: absolute; left: 44%; top: 57%; width: 14%; height: 8%; border-bottom: 4px solid var(--ink); border-radius: 50%; }
.remix-character .wing { position: absolute; z-index: -1; top: 52%; width: 35%; height: 24%; border: 5px solid var(--ink); border-radius: 55%; background: var(--lime); }
.remix-character .wing.left { left: -23%; transform: rotate(28deg); }
.remix-character .wing.right { right: -23%; transform: rotate(-28deg); }
.remix-character .visor { position: absolute; top: 35%; left: 14%; right: 14%; height: 27%; border: 6px solid #4b67b2; border-radius: 22px; background: rgba(255,255,255,.22); }
.mystery-egg {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: auto;
  left: 50%;
  width: 37%;
  aspect-ratio: .78;
  border: 6px solid var(--ink);
  border-radius: 53% 47% 46% 54% / 59% 58% 42% 41%;
  background: var(--white);
  box-shadow: 15px 15px 0 rgba(15, 31, 27, .72);
  transform: translate(-50%, -50%) rotate(3deg);
  transition: transform .5s cubic-bezier(.22,.8,.2,1), box-shadow .5s ease;
}

.mystery-egg::before {
  position: absolute;
  inset: 9%;
  content: "";
  border: 2px dashed rgba(32, 80, 216, .45);
  border-radius: inherit;
}

.mystery-egg::after {
  position: absolute;
  z-index: -1;
  right: 13%;
  bottom: -15%;
  left: 13%;
  height: 7%;
  content: "";
  border-radius: 50%;
  background: rgba(15, 31, 27, .38);
  filter: blur(2px);
}

.theme-row:hover .mystery-egg {
  box-shadow: 20px 22px 0 rgba(15, 31, 27, .72);
  transform: translate(-50%, -53%) rotate(-2deg) scale(1.035);
}

.egg-question {
  position: absolute;
  top: 46%;
  left: 50%;
  color: var(--blue);
  font-size: clamp(86px, 10vw, 150px);
  font-weight: 900;
  line-height: .8;
  text-shadow: 5px 5px 0 var(--lime);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.egg-spark {
  position: absolute;
  color: var(--white);
  font-size: clamp(24px, 2.8vw, 42px);
  text-shadow: 3px 3px 0 var(--ink);
  animation: egg-twinkle 2.2s ease-in-out infinite;
}

.spark-one { top: 12%; right: -18%; }
.spark-two { bottom: 8%; left: -16%; animation-delay: -.8s; }

.egg-caption {
  position: absolute;
  right: 13%;
  bottom: 9%;
  padding: 6px 8px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
  transform: rotate(-5deg);
}

@keyframes egg-twinkle {
  0%, 100% { transform: scale(.82) rotate(0); opacity: .6; }
  50% { transform: scale(1.12) rotate(14deg); opacity: 1; }
}

.visual-new {
  background: var(--lime);
}

.new-spark { position: absolute; color: var(--blue); font-size: clamp(38px, 4vw, 62px); }
.new-spark.one { top: 16%; left: 13%; }
.new-spark.two { right: 12%; bottom: 15%; }
.new-orbit-text { position: absolute; right: 4%; bottom: 5%; font-size: 10px; font-weight: 800; letter-spacing: .17em; }

.guide {
  min-height: 84vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  padding-top: 13vh;
  padding-bottom: 13vh;
}

.guide-title h2,
.schedule-copy h2 {
  font-size: clamp(44px, 5.5vw, 82px);
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.step-list li {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.step-list > li > span {
  padding-top: 4px;
  font-size: 13px;
  font-weight: 800;
}

.step-list h3 {
  margin: 0 0 10px;
  font-family: var(--kr);
  font-size: 26px;
  letter-spacing: -.04em;
}

.step-list p {
  margin: 0;
  font-family: var(--kr);
  font-size: 17px;
  line-height: 1.6;
  color: #66716d;
}

.schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blue);
  color: var(--white);
}

.schedule-copy {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-copy .eyebrow { color: var(--lime); }
.schedule-note { max-width: 440px; margin: 40px 0 0; font-family: var(--kr); font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.72); }

.calendar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 6vw;
  color: var(--ink);
  background: var(--lime);
}

.calendar-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; border-bottom: 3px solid var(--ink); padding-bottom: 20px; }
.calendar-head strong { font-size: clamp(44px, 5vw, 76px); line-height: 1; letter-spacing: -.07em; }
.calendar-head span { padding-bottom: 7px; font-size: 16px; font-weight: 700; }
.calendar-week, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; }
.calendar-week { margin-bottom: 15px; font-size: 12px; font-weight: 800; }
.calendar-days span { position: relative; z-index: 1; height: 54px; display: grid; place-items: center; font-size: 16px; font-weight: 600; }
.calendar-days .muted { opacity: .25; }
.calendar-days .range::before { position: absolute; z-index: -1; inset: 5px 0; content: ""; background: var(--blue); }
.calendar-days .range { color: var(--white); }
.calendar-days .range.start::before { left: 10%; border-radius: 99px 0 0 99px; }
.calendar-days .range.end::before { right: 10%; border-radius: 0 99px 99px 0; }
.calendar-days .range.start::after, .calendar-days .range.end::after { position: absolute; top: -7px; color: var(--ink); font-size: 8px; font-weight: 900; letter-spacing: .05em; }
.calendar-days .range.start::after { content: "START"; }
.calendar-days .range.end::after { content: "END"; }
.calendar-days .vote { color: var(--ink); }
.calendar-days .vote::before { position: absolute; z-index: -1; inset: 5px 0; content: ""; background: var(--coral); }
.calendar-days .vote.start::before { left: 10%; border-radius: 99px 0 0 99px; }
.calendar-days .vote.end::before { right: 10%; border-radius: 0 99px 99px 0; }
.calendar-days .vote.start::after { position: absolute; top: -7px; content: "VOTE"; color: var(--ink); font-size: 8px; font-weight: 900; letter-spacing: .05em; }
.calendar-days .announce { color: var(--white); }
.calendar-days .announce::before { position: absolute; z-index: -1; top: 5px; left: 50%; width: 44px; height: 44px; content: ""; border-radius: 50%; background: var(--ink); transform: translateX(-50%); }
.calendar-days .announce::after { position: absolute; top: -7px; content: "RESULT"; color: var(--ink); font-size: 8px; font-weight: 900; letter-spacing: .05em; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 24px; font-family: var(--kr); font-size: 12px; font-weight: 700; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 7px; }
.calendar-legend i { width: 11px; height: 11px; display: inline-block; border-radius: 50%; }
.legend-apply { background: var(--blue); }
.legend-vote { background: var(--coral); }
.legend-result { background: var(--ink); }

.apply {
  min-height: 78vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-align: center;
  background: var(--coral);
}

.apply > *:not(.apply-orbit) { position: relative; z-index: 2; }
.apply h2 { font-size: clamp(52px, 7.5vw, 112px); }
.apply > p:not(.eyebrow) { margin: 30px 0; font-family: var(--kr); font-size: 18px; }
.apply-orbit { position: absolute; width: 78vw; height: 78vw; border: 2px solid rgba(16,33,29,.4); border-radius: 50%; transform: scaleY(.35) rotate(-9deg); }
.apply-footnote { margin-top: 14px; font-family: var(--kr); font-size: 12px; opacity: .6; }

.site-footer {
  min-height: 240px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  align-items: end;
  gap: 20px;
  padding: 70px 5vw 48px;
  color: rgba(255,255,255,.72);
  background: var(--ink);
  font-family: var(--kr);
  font-size: 14px;
}

.footer-brand { width: min(245px, 100%); }
.footer-brand img { width: 100%; height: auto; display: block; filter: brightness(0) invert(1); }
.site-footer p { margin: 0; }
.footer-copy { text-align: right; }

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-family: var(--kr);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .2s ease, transform .2s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,.8,.2,1);
}

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

/* Archive */
.archive-page { background: var(--white); }
.light-header { position: absolute; color: var(--ink); border-bottom-color: var(--line); }

.archive-hero {
  min-height: 82vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 8vh) 6vw 8vh;
  background: var(--lime);
}

.archive-hero::before {
  position: absolute;
  top: -35%;
  right: -10%;
  width: 65vw;
  aspect-ratio: 1;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.archive-hero::after {
  position: absolute;
  right: 9vw;
  bottom: -25vw;
  width: 44vw;
  aspect-ratio: 1;
  content: "";
  background: var(--blue);
  border: 4px solid var(--ink);
  border-radius: 48% 52% 40% 60%;
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(17deg);
}

.archive-hero > * { position: relative; z-index: 2; }
.archive-hero > .eyebrow { opacity: 0; animation: hero-enter .7s .1s forwards; }
.archive-hero h1 { font-size: clamp(72px, 11vw, 170px); line-height: .83; opacity: 0; animation: hero-enter .8s .2s forwards; }
.archive-hero h1 span { color: var(--blue); -webkit-text-stroke: 2px var(--ink); text-shadow: 6px 6px 0 var(--ink); }
.archive-intro { width: 54%; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: 50px; opacity: 0; animation: hero-enter .7s .35s forwards; }
.archive-intro p { max-width: 360px; margin: 0; font-family: var(--kr); font-size: 16px; line-height: 1.7; }
.archive-count { display: flex; align-items: baseline; gap: 7px; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.archive-count strong { font-size: 42px; letter-spacing: -.05em; }
.archive-spark { position: absolute; z-index: 3; right: 20vw; bottom: 16vh; color: var(--lime); font-size: 8vw; animation: spark-spin 10s linear infinite; }
@keyframes spark-spin { to { transform: rotate(360deg); } }

.gallery-section {
  padding: 14vh 5vw 16vh;
}

.gallery-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.gallery-toolbar h2 { margin: 0; font-family: var(--kr); font-size: clamp(40px, 4.6vw, 68px); font-weight: 900; letter-spacing: -.06em; }
.filter-group { display: flex; border-bottom: 1px solid var(--line); }
.filter-group button { position: relative; min-width: 105px; padding: 15px 12px; border: 0; color: #7a837f; background: transparent; font-family: var(--kr); font-size: 13px; font-weight: 700; cursor: pointer; }
.filter-group button::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; content: ""; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
.filter-group button.is-active { color: var(--ink); }
.filter-group button.is-active::after { transform: scaleX(1); }
.filter-group span { margin-left: 5px; font-family: var(--sans); font-size: 10px; }

.sample-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--kr);
  font-size: 11px;
  color: #6d7773;
}

.sample-notice span { width: 17px; height: 17px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: serif; font-size: 10px; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7vw 2.2vw;
}

.work-card {
  min-width: 0;
  cursor: pointer;
  outline: none;
  transition: opacity .35s ease, transform .35s ease;
}

.work-card[hidden] { display: none; }
.work-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }
.work-card:hover .work-art { transform: translateY(-7px); box-shadow: 0 18px 0 rgba(16, 33, 29, .12); }
.work-card:hover .poster-character { transform: translate(-50%, -52%) rotate(4deg) scale(1.05); }

.work-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--ink);
  transition: transform .3s cubic-bezier(.22,.8,.2,1), box-shadow .3s ease;
}

.work-tall .work-art { aspect-ratio: 4 / 5.6; }
.work-wide { grid-column: span 2; }
.work-wide .work-art { aspect-ratio: 2 / 1.14; }

.poster-type {
  position: absolute;
  z-index: 5;
  top: 5.5%;
  left: 6%;
  font-family: var(--kr);
  font-size: clamp(23px, 2.8vw, 45px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.06em;
}

.poster-code { position: absolute; z-index: 5; right: 5%; bottom: 4%; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.poster-character { position: absolute; z-index: 3; top: 56%; left: 58%; width: 46%; aspect-ratio: .84; border: 4px solid var(--ink); background: var(--white); transform: translate(-50%, -50%) rotate(-3deg); transition: transform .4s cubic-bezier(.22,.8,.2,1); }
.poster-character .face-eye { position: absolute; z-index: 3; top: 44%; width: 8%; aspect-ratio: 1; border-radius: 50%; background: var(--ink); }
.poster-character .face-eye.left { left: 29%; }
.poster-character .face-eye.right { right: 29%; }
.poster-character .face-mouth { position: absolute; z-index: 3; top: 58%; left: 43%; width: 15%; height: 7%; border-bottom: 3px solid var(--ink); border-radius: 50%; }
.dodam-glasses { position: absolute; z-index: 2; top: 34%; left: 12%; width: 76%; height: 30%; border-top: 3px solid #4b67b2; }
.dodam-glasses::before, .dodam-glasses::after { position: absolute; top: -7px; width: 45%; height: 120%; content: ""; border: 4px solid #4b67b2; border-radius: 14px; background: rgba(255,255,255,.18); }
.dodam-glasses::before { left: 0; }
.dodam-glasses::after { right: 0; }

.art-space { color: var(--white); background: #172459; }
.art-space::before { position: absolute; inset: 0; content: "✦　　·　　　✧　 ·　　✦　　 ·　　✧　　·　　✦　　·　　　✧　 ·　　✦"; color: var(--lime); font-size: 25px; line-height: 4; opacity: .75; transform: rotate(-15deg) scale(1.4); }
.space-character { border-radius: 44% 44% 38% 38%; background: var(--lime); box-shadow: 10px 10px 0 #ff755f; }
.antenna-dot { position: absolute; top: -22%; left: 48%; height: 22%; border-left: 4px solid var(--ink); }
.antenna-dot::after { position: absolute; top: -9px; left: -7px; width: 11px; height: 11px; content: ""; border: 2px solid var(--ink); border-radius: 50%; background: var(--coral); }
.mini-planet { position: absolute; right: -16%; bottom: -6%; width: 54%; aspect-ratio: 1; border: 4px solid var(--ink); border-radius: 50%; background: var(--coral); }

.art-post { background: #ff977f; }
.post-line { position: absolute; width: 85%; border-top: 3px solid var(--ink); transform: rotate(-35deg); }
.post-line.line-one { top: 32%; left: -25%; }
.post-line.line-two { top: 68%; right: -30%; }
.post-character { border-radius: 50% 50% 35% 35%; background: var(--white); box-shadow: 9px 9px 0 var(--blue); }
.letter-mark { position: absolute; bottom: 10%; left: 35%; width: 30%; height: 18%; display: grid; place-items: center; border: 3px solid var(--ink); background: var(--lime); font-style: normal; font-size: 13px; }

.art-camp { background: #bce8ce; }
.sun-shape { position: absolute; right: 6%; top: 8%; width: 29%; aspect-ratio: 1; border: 3px solid var(--ink); border-radius: 50%; background: var(--coral); }
.hill-shape { position: absolute; left: -20%; right: -20%; bottom: -30%; height: 67%; border: 4px solid var(--ink); border-radius: 50% 50% 0 0; background: #446e46; }
.camp-character { border-radius: 45% 45% 37% 37%; background: #fff3d6; }
.camp-character .hat { position: absolute; z-index: 5; top: -10%; left: 8%; width: 84%; height: 28%; border: 4px solid var(--ink); border-radius: 50% 50% 10% 10%; background: var(--blue); transform: rotate(-6deg); }

.art-mongle { background: #70cce1; }
.art-mongle .poster-type { color: var(--ink); }
.cloud { position: absolute; width: 20%; aspect-ratio: 1.7; border: 3px solid var(--ink); border-radius: 50%; background: var(--white); }
.cloud-one { top: 13%; right: 9%; }
.cloud-two { bottom: 14%; left: 8%; transform: scale(.65); }
.cloud-three { top: 38%; left: 28%; transform: scale(.4); }
.mongle-character { left: 65%; width: 31%; aspect-ratio: 1.15; border-radius: 48% 52% 44% 56%; background: var(--lime); box-shadow: 10px 10px 0 var(--ink); }

.art-music { color: var(--white); background: #482b86; }
.disc { position: absolute; border: 3px solid var(--ink); border-radius: 50%; background: var(--coral); }
.disc-one { width: 62%; aspect-ratio: 1; right: -30%; top: -8%; }
.disc-two { width: 35%; aspect-ratio: 1; left: -15%; bottom: 4%; background: var(--lime); }
.music-character { border-radius: 47% 47% 40% 40%; background: #d7c8ff; }
.headphone { position: absolute; z-index: 5; top: 21%; left: 9%; width: 82%; height: 45%; border: 9px solid var(--ink); border-bottom: 0; border-radius: 50% 50% 0 0; }

.art-lumi { color: var(--white); background: #0d1c42; }
.star-field { position: absolute; right: 3%; bottom: 5%; color: var(--lime); font-size: 30px; line-height: 2.8; transform: rotate(12deg); }
.lumi-character { border-radius: 50% 50% 42% 42%; background: var(--blue); box-shadow: 9px 9px 0 var(--lime); }
.lumi-character .face-eye, .lumi-character .face-mouth { filter: invert(1); }

.art-haru { background: #ffe0bc; }
.haru-ring { position: absolute; border: 3px solid var(--coral); border-radius: 50%; }
.ring-one { inset: 10%; }
.ring-two { inset: 22%; }
.haru-character { border-radius: 50% 50% 40% 40%; background: var(--coral); }
.haru-character .ear { position: absolute; top: -19%; width: 28%; height: 30%; border: 4px solid var(--ink); border-radius: 50%; background: inherit; }
.haru-character .ear.left { left: 9%; transform: rotate(-18deg); }
.haru-character .ear.right { right: 9%; transform: rotate(18deg); }

.art-future { color: var(--white); background: var(--blue); }
.future-grid { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(216,255,98,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(216,255,98,.6) 1px, transparent 1px); background-size: 35px 35px; transform: perspective(300px) rotateX(50deg) scale(1.5); }
.future-character { left: 68%; width: 31%; border-radius: 42% 42% 36% 36%; background: var(--lime); box-shadow: 11px 11px 0 var(--ink); }
.visor-line { position: absolute; top: 36%; left: 15%; width: 70%; height: 24%; border: 4px solid var(--ink); border-radius: 99px; background: #ff755f; }

.work-meta { display: grid; grid-template-columns: 1fr auto; gap: 15px; padding-top: 20px; }
.work-category { display: block; margin-bottom: 7px; color: var(--blue); font-family: var(--kr); font-size: 10px; font-weight: 700; }
.work-meta h3 { margin: 0; font-family: var(--kr); font-size: 20px; letter-spacing: -.045em; }
.work-number { padding-top: 17px; font-size: 11px; font-weight: 700; }

.empty-state { min-height: 320px; place-items: center; align-content: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.empty-state:not([hidden]) { display: grid; }
.empty-state span { width: 55px; height: 55px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; font-size: 28px; }
.empty-state p { font-family: var(--kr); }

.gallery-cta {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10vh 5vw;
  text-align: center;
  color: var(--white);
  background: var(--blue);
}

.gallery-cta .eyebrow { color: var(--lime); }
.gallery-cta h2 { font-size: clamp(50px, 7.5vw, 112px); }
.gallery-cta .button { margin-top: 45px; }
.dark-footer { border-top: 1px solid rgba(255,255,255,.16); }

.work-modal {
  width: min(1040px, calc(100vw - 60px));
  max-height: calc(100vh - 60px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 16px 16px 0 var(--ink);
}

.work-modal::backdrop { background: rgba(9, 20, 17, .72); backdrop-filter: blur(5px); }
.work-modal[open] { animation: modal-in .25s ease both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(25px) scale(.98); } }
.modal-close { position: absolute; z-index: 20; top: 14px; right: 14px; width: 43px; height: 43px; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); font-size: 29px; line-height: 1; cursor: pointer; }
.modal-layout { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 610px; }
.modal-preview { min-height: 500px; padding: 40px; display: grid; place-items: center; background: #dcd9cf; }
.modal-preview .work-art { width: min(100%, 390px); box-shadow: 11px 11px 0 var(--ink); }
.modal-preview .work-art * { pointer-events: none; }
.modal-content { display: flex; flex-direction: column; justify-content: center; padding: 70px 55px; }
.modal-content h2 { margin: 0; font-family: var(--kr); font-size: clamp(34px, 4vw, 56px); line-height: 1.1; letter-spacing: -.06em; }
.modal-author { margin: 15px 0 0; font-family: var(--kr); font-size: 13px; color: #63706b; }
.modal-divider { margin: 35px 0; border-top: 1px solid var(--line); }
.modal-description { margin: 0; font-family: var(--kr); font-size: 15px; line-height: 1.8; }
.modal-info { margin: 35px 0 0; }
.modal-info > div { display: grid; grid-template-columns: 95px 1fr; padding: 13px 0; border-top: 1px solid var(--line); }
.modal-info dt { font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.modal-info dd { margin: 0; font-family: var(--kr); font-size: 12px; }
.modal-sample { margin: 25px 0 0; font-family: var(--kr); font-size: 10px; color: #7b8581; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr 1fr; padding-left: 3.5vw; padding-right: 3.5vw; }
  .hero-art { min-height: 540px; }
  .theme-row { grid-template-columns: .25fr 1fr 1.2fr; }
  .theme-copy { padding-right: 3vw; padding-left: 3vw; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-wide { grid-column: span 1; }
  .work-wide .work-art { aspect-ratio: 4 / 5; }
  .poster-character, .mongle-character, .future-character { left: 58%; width: 46%; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
  .site-header { position: fixed; padding: 0 20px; }
  .menu-open .site-header { color: var(--ink); background: var(--paper); border-bottom-color: var(--line); }
  .wordmark { width: 184px; }
  .menu-button { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 22px;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .menu-open .main-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a:not(.nav-cta) { padding: 22px 4px; border-bottom: 1px solid var(--line); font-size: 22px; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 25px; padding: 18px; text-align: center; border-radius: 5px; }
  .menu-open .menu-button span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 0; padding: calc(var(--header-h) + 58px) 22px 120px; }
  .hero-copy { padding-left: 0; }
  .hero-copy h1 { font-size: clamp(50px, 15vw, 70px); line-height: 1.02; }
  .hero-description { margin-top: 22px; font-size: 14px; }
  .hero-actions { margin-top: 26px; align-items: flex-start; flex-direction: column; gap: 10px; }
  .button { min-height: 52px; }
  .hero-art { min-height: 440px; margin-top: 25px; }
  .hero-character { right: -15%; bottom: -2%; width: 115%; }
  .hero-character-card { right: -4%; bottom: 1%; width: 104%; border-width: 4px; box-shadow: 11px 11px 0 rgba(9,37,108,.62); }
  .hero-character-card figcaption { padding: 10px 14px 12px; border-top-width: 2px; }
  .hero-character-card figcaption strong { font-size: 23px; }
  .orbit { top: 14%; right: -25%; width: 140%; }
  .art-label-one { top: 22%; left: 0; }
  .art-label-two { right: 0; }
  .tool-chip-one { right: 0; bottom: 12%; }
  .tool-chip-two { left: 0; bottom: 31%; }
  .cursor-note { display: none; }
  .hero-bottom { min-height: 74px; grid-template-columns: 1fr auto; padding: 0 22px; }
  .hero-bottom p, .hero-bottom > a { display: none; }
  .hero-date { grid-column: 1 / -1; justify-content: space-between; }

  .section-pad { padding-right: 22px; padding-left: 22px; }
  .intro { min-height: auto; grid-template-columns: 1fr; gap: 35px; padding-top: 100px; padding-bottom: 100px; }
  .intro-number { padding-top: 0; }
  .intro-content h2 { font-size: 50px; }
  .intro-content > p:last-child { margin-top: 27px; font-size: 17px; }
  .ai-tool-stack { right: 0; width: min(82vw, 310px); height: 315px; justify-self: end; }
  .ai-tool-card { width: min(70vw, 250px); }

  .dodam-story { min-height: auto; grid-template-columns: 1fr; }
  .dodam-gallery { min-height: 570px; border-right: 0; border-bottom: 1px solid var(--line); }
  .dodam-gallery img { object-position: center; }
  .dodam-story-copy { min-height: 780px; padding-top: 90px; padding-bottom: 90px; }
  .dodam-story-copy h2 { font-size: 48px; }
  .dodam-lead { font-size: 18px; }
  .dodam-definition > div { grid-template-columns: 1fr; gap: 10px; }

  .section-heading { min-height: 480px; }
  .section-heading h2 { font-size: 53px; }
  .theme-row { min-height: auto; grid-template-columns: 55px 1fr; }
  .theme-index { grid-row: 1 / 2; padding: 50px 14px; font-size: 34px; }
  .theme-copy { min-height: 560px; padding: 70px 25px; }
  .theme-copy h3 { font-size: 43px; }
  .theme-copy > p:not(.theme-kicker) { font-size: 16px; }
  .theme-visual { grid-column: 1 / -1; min-height: 470px; }
  .remix-character { width: 31%; }
  .dodam-theme-card { width: min(42%, 200px); padding: 10px 10px 32px; border-width: 4px; box-shadow: 9px 9px 0 rgba(15, 31, 27, .7); }
  .dodam-card-left { left: 4%; }
  .dodam-card-right { right: 3%; }
  .dodam-theme-card span { right: 6px; bottom: 6px; padding: 4px 6px; font-size: 6px; }
  .mystery-egg { width: 44%; }

  .guide { min-height: auto; grid-template-columns: 1fr; gap: 70px; padding-top: 100px; padding-bottom: 100px; }
  .guide-title h2 { font-size: 48px; }
  .schedule { grid-template-columns: 1fr; }
  .schedule-copy { min-height: 520px; }
  .schedule-copy h2 { font-size: 48px; }
  .calendar { min-height: 590px; padding: 70px 20px; }
  .calendar-days span { height: 48px; }

  .apply { min-height: 650px; padding: 80px 20px; }
  .apply h2 { font-size: 50px; }
  .apply-orbit { width: 150vw; height: 150vw; }
  .site-footer { min-height: 290px; grid-template-columns: 1fr; align-content: end; padding: 70px 22px 35px; }
  .footer-copy { text-align: left; }

  .archive-hero { min-height: 720px; padding: calc(var(--header-h) + 60px) 22px 60px; }
  .archive-hero::before { top: -14%; right: -45%; width: 120vw; }
  .archive-hero::after { right: -20vw; bottom: -22vw; width: 88vw; }
  .archive-hero h1 { font-size: clamp(68px, 21vw, 98px); line-height: .9; }
  .archive-hero h1 span { -webkit-text-stroke-width: 1px; text-shadow: 4px 4px 0 var(--ink); }
  .archive-intro { width: 74%; flex-direction: column; align-items: flex-start; margin-top: 40px; }
  .archive-intro p { font-size: 14px; }
  .archive-spark { right: 12vw; bottom: 13vh; font-size: 20vw; }
  .gallery-section { padding: 100px 20px; }
  .gallery-toolbar { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .gallery-toolbar h2 { font-size: 45px; }
  .filter-group { width: 100%; }
  .filter-group button { flex: 1; min-width: 0; }
  .work-grid { grid-template-columns: 1fr; gap: 62px; }
  .work-wide { grid-column: auto; }
  .work-tall .work-art, .work-wide .work-art, .work-art { aspect-ratio: 4 / 5; }
  .poster-type { font-size: 36px; }
  .work-meta h3 { font-size: 19px; }
  .gallery-cta { min-height: 620px; }
  .gallery-cta h2 { font-size: 50px; }
  .work-modal { width: calc(100vw - 28px); max-height: calc(100svh - 28px); box-shadow: 7px 7px 0 var(--ink); }
  .modal-layout { grid-template-columns: 1fr; }
  .modal-preview { min-height: 440px; padding: 40px 25px; }
  .modal-preview .work-art { max-width: 300px; }
  .modal-content { padding: 48px 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
