:root {
  --naf-yellow: #f5e000;
  --naf-black: #000000;
  --text-muted: rgba(255, 255, 255, 0.7);
  --header-height: 54px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--naf-black);
  color: #fff;
  line-height: 1.6;
  overflow-y: scroll;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--naf-black);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  max-width: none;
  height: var(--header-height);
  min-height: var(--header-height);
  max-height: var(--header-height);
  margin: 0;
  padding: 0 1rem;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 1;
  min-width: 0;
  font-size: clamp(0.8125rem, 1.2vw, 1.125rem);
}

.logo img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.logo__text {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

.nav {
  flex-shrink: 0;
}

.header__end {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  margin-left: auto;
}

.lang-switch {
  display: none !important;
}

.lang-switch__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.2rem 0.15rem;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}

.lang-switch__btn[data-lang="ko"] {
  font-family: "Malgun Gothic", "맑은 고딕", sans-serif;
}

.lang-switch__btn:hover {
  color: #fff;
}

.lang-switch__btn.is-active {
  color: #fff;
  font-weight: 500;
}

.lang-switch__sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  line-height: 1;
  user-select: none;
}

.nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  list-style: none;
}

.nav__list a {
  position: relative;
  display: inline-block;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: #fff;
  opacity: 0.9;
  padding-bottom: 4px;
  transition: color 0.2s, opacity 0.2s;
  text-align: center;
  box-sizing: border-box;
}

html[lang="ko"] .nav__list a {
  font-family: "Malgun Gothic", "맑은 고딕", sans-serif;
  letter-spacing: 0.06em;
}

html[lang="ko"] .logo__text {
  font-family: "Malgun Gothic", "맑은 고딕", sans-serif;
  font-size: 0.8em;
  letter-spacing: 0.03em;
}

.nav__list li:nth-child(1) a {
  min-width: 6.25rem;
}

.nav__list li:nth-child(2) a {
  min-width: 2.5rem;
}

.nav__list li:nth-child(3) a {
  min-width: 5.5rem;
}

.nav__list li:nth-child(4) a {
  min-width: 2.75rem;
}

.nav__list li:nth-child(5) a {
  min-width: 3.5rem;
}

.nav__list a:hover,
.nav__list a.active {
  opacity: 1;
  color: var(--naf-yellow);
}

.nav__list a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ff8a00;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
}

.hero__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  background: var(--naf-black);
  transition: none;
}

.hero__poster img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero.is-video-playing .hero__poster {
  display: none;
}

.hero__player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  object-fit: cover;
  pointer-events: none;
  opacity: 1;
  transition: none;
  z-index: 0;
}

.hero.is-video-playing .hero__player {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero__ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__ui > * {
  pointer-events: auto;
}

.btn {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.hero__actions {
  position: absolute;
  right: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: calc(100% - 2rem);
  z-index: 3;
  pointer-events: auto;
}

.btn--hero {
  display: none !important;
  position: static;
  transform: none;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.btn--hero.is-visible {
  display: inline-flex;
}

.btn--hero:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: #fff;
}

.hero__controls {
  position: static;
  display: flex;
  gap: 0.75rem;
  pointer-events: auto;
}

.video-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 4;
  transition: background 0.3s, border-color 0.3s;
}

.video-control:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: #fff;
}

.video-control__icon {
  width: 20px;
  height: 20px;
}

.pause-toggle .video-control__icon--play,
.sound-toggle .video-control__icon--unmuted {
  display: none;
}

.pause-toggle.is-paused .video-control__icon--pause {
  display: none;
}

.pause-toggle.is-paused .video-control__icon--play {
  display: block;
}

.sound-toggle.is-unmuted .video-control__icon--muted {
  display: none;
}

.sound-toggle.is-unmuted .video-control__icon--unmuted {
  display: block;
}

.studio-summary {
  background: var(--naf-black);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  text-align: center;
}

.studio-summary__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--naf-yellow);
  margin-bottom: 1.5rem;
}

.studio-summary__text {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
}

.menu-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-highlights__item {
  display: block;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.menu-highlights__item:last-child {
  border-right: none;
}

.menu-highlights__item:hover {
  background: rgba(245, 224, 0, 0.08);
}

.menu-highlights__item h3 {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--naf-yellow);
  margin-bottom: 0.75rem;
}

.menu-highlights__item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn--outline:hover {
  background: #fff;
  color: var(--naf-black);
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
  min-height: 50vh;
}

#about,
#contact {
  text-align: center;
  min-height: auto;
  max-width: 680px;
  padding-left: clamp(1.5rem, 4vw, 2rem);
  padding-right: clamp(1.5rem, 4vw, 2rem);
}

#about {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

#contact {
  padding-top: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.section h2 {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 1rem;
  color: var(--naf-yellow);
}

.section h2 a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.section h2 a:hover {
  opacity: 0.8;
}

.section-heading-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.section-face-mark {
  display: inline-flex;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(245, 224, 0, 0.5);
  background: #f5e000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.section-face-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

#about h2,
#contact h2 {
  margin-bottom: 0.875rem;
}

.section p {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  color: var(--text-muted);
}

#about p,
#contact p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.section p + p {
  margin-top: 0.75rem;
}

.contact__email {
  color: #fff;
  transition: color 0.2s;
}

.contact__email:hover {
  color: var(--naf-yellow);
}

.subpage-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1;
  padding-top: var(--header-height);
}

.page-bar {
  background: #2b2b2b;
  width: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 4vw, 4rem);
}

.page-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.page-bar__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--naf-yellow);
  line-height: 1.2;
}

.page-bar__subtitle {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.35rem;
  min-height: 1.25em;
}

.page-bar__subtitle:empty {
  display: block;
}

.page-content {
  background: var(--naf-black);
}

.page-content__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
}

.page-content__inner--empty {
  min-height: clamp(16rem, 40vh, 28rem);
}

.subpage {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 2rem) clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.subpage__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--naf-yellow);
  margin-bottom: 1rem;
}

.subpage__lead {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.subpage__content {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.subpage__content p + p {
  margin-top: 0.75rem;
}

.subpage__content--empty {
  min-height: clamp(12rem, 30vh, 20rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
}

/* About Page */
.about-page .page-main {
  padding-bottom: 0;
}

.about-page .page-bar {
  padding: clamp(1rem, 2vw, 1.35rem) clamp(0.5rem, 1.25vw, 1.25rem);
}

.about-page .page-bar__inner {
  max-width: min(1200px, 96vw);
}

.about-label {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--naf-yellow);
  margin-bottom: 0.75rem;
}

.about-hero {
  background: #111;
  padding: clamp(2rem, 4vw, 3rem) clamp(0.5rem, 1.25vw, 1.25rem);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
  max-width: min(1200px, 96vw);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
}

.about-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 100%;
}

.about-intro__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.about-intro__text {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  flex: 1;
}

.about-intro__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  margin-top: auto;
}

.about-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.about-link-btn:hover {
  border-color: var(--naf-yellow);
  background: rgba(245, 224, 0, 0.06);
}

.about-link-btn__icon {
  display: flex;
  color: var(--naf-yellow);
}

.about-link-btn__icon svg {
  width: 16px;
  height: 16px;
}

.about-team {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.about-team .about-label {
  margin-bottom: 1rem;
}

.about-member {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  padding: 1.1rem 0;
}

.about-member:first-of-type {
  padding-top: 0;
}

.about-member + .about-member {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-member__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #222;
}

.about-member__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Director photo ↔ HUMA symbol hover (eye-aligned, same crop) */
.about-member__photo--swap {
  position: relative;
  cursor: pointer;
}

.about-member__photo--swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transition: opacity 0.35s ease;
}

.about-member__photo--swap .about-member__face {
  opacity: 1;
  z-index: 1;
}

.about-member__photo--swap .about-member__symbol {
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  background: #f5e000;
}

.about-member__photo--swap:hover .about-member__face {
  opacity: 0;
}

.about-member__photo--swap:hover .about-member__symbol {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .about-member__photo--swap img {
    transition: none;
  }
}

.about-member__role {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--naf-yellow);
  margin-bottom: 0.2rem;
}

.about-member__name {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.15rem;
}

.about-member__title {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}

.about-member__bio {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.about-companion {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-companion__photo {
  width: 64px;
  height: 64px;
  justify-self: end;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #222;
}

.about-companion__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-companion__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

.about-companion__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.15rem;
  line-height: 1.3;
}

.about-companion__role {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.about-companion__name {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0 0 0.35rem;
}

.about-companion__name-accent {
  color: var(--naf-yellow);
  font-weight: 500;
}

.about-companion__breed {
  color: rgba(255, 255, 255, 0.55);
}

.about-companion__bio {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.about-values {
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-values__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: min(1200px, 96vw);
  margin: 0 auto;
}

.about-value {
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-value:last-child {
  border-right: none;
}

.about-value__icon {
  display: inline-flex;
  color: var(--naf-yellow);
  margin-bottom: 0.65rem;
}

.about-value__icon svg {
  width: 28px;
  height: 28px;
}

.about-value__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.35rem;
}

.about-value__text {
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.about-details {
  background: #e8e8e8;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(0.5rem, 1.25vw, 1.25rem);
}

.about-details__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 2.5rem);
  max-width: min(1200px, 96vw);
  margin: 0 auto;
}

.about-section-title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--naf-yellow);
  display: inline-block;
}

.about-overview__text {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

.about-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
  list-style: none;
  margin-top: 1.25rem;
}

.about-services li {
  position: relative;
  padding-left: 1.35rem;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.85rem;
  color: #222;
  line-height: 1.5;
}

.about-services li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--naf-yellow);
  font-weight: 700;
}

.about-award-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-award-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-award-card__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--naf-yellow);
}

.about-award-card__icon svg {
  width: 32px;
  height: 32px;
}

.about-award-card__label {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--naf-yellow);
  margin-bottom: 0.35rem;
}

.about-award-card__festival {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.2rem;
}

.about-award-card__location {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0;
}

.about-award-card__list {
  list-style: none;
  margin-bottom: 1rem;
}

.about-award-card__list li {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 0.35rem;
}

.about-award-card__list strong {
  font-weight: 500;
  color: #111;
}

.about-award-card__note {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #666;
  font-style: italic;
}

.about-quote {
  background: var(--naf-black);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2rem);
  text-align: center;
}

.about-quote__text {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42rem;
  margin: 0 auto;
}

.about-bottom {
  background: var(--naf-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem clamp(0.5rem, 1.25vw, 1.25rem);
}

.about-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: min(1200px, 96vw);
  margin: 0 auto;
}

.about-bottom__quote {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  text-align: center;
  max-width: 42rem;
}

.about-quote__mark {
  color: var(--naf-yellow);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.15em;
}

/* Film Page */
.film-page .page-main {
  padding-bottom: 0;
}

.film-page .page-bar {
  padding: clamp(1rem, 2vw, 1.35rem) clamp(0.5rem, 1.25vw, 1.25rem);
}

.film-page .page-bar__inner {
  max-width: min(1720px, 98vw);
}

.film-showcase {
  background: #1a1a1a;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(0.5rem, 1.25vw, 1.25rem);
}

.film-showcase__inner {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
  max-width: min(1100px, 96vw);
  margin: 0 auto;
}

.film-poster {
  margin: 0;
  height: 100%;
  min-height: 0;
}

.film-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.film-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.film-info__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--naf-yellow);
  margin-bottom: 0.5rem;
}

.film-info__meta,
.film-info__credit {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.35rem;
}

.film-info__credit {
  margin-bottom: 1.25rem;
}

.film-awards {
  list-style: none;
  margin-bottom: 1.25rem;
}

.film-awards li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.5rem;
}

.film-awards li strong {
  color: var(--naf-yellow);
  font-weight: 500;
}

.film-awards__icon {
  flex-shrink: 0;
  line-height: 1.4;
}

.film-info__synopsis {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.25rem;
  flex: 1;
}

.film-info__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
}

.film-info__links .about-link-btn {
  width: auto;
  padding: 0.5rem 1.1rem;
  font-size: 0.75rem;
}

.film-statement {
  background: var(--naf-black);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(0.5rem, 1.25vw, 1.25rem);
}

.film-statement__inner {
  max-width: min(1100px, 96vw);
  margin: 0 auto;
}

.film-statement__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  color: #4dd0e1;
  margin-bottom: 1.25rem;
}

.film-statement__icon {
  font-size: 1.1em;
  line-height: 1;
}

.film-statement__body p {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

.film-statement__body p:last-child {
  margin-bottom: 0;
}

.film-statement__body em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
}

.film-gallery {
  background: #111;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(0.5rem, 1.25vw, 1.25rem) 0;
}

.film-gallery__inner {
  max-width: min(1100px, 96vw);
  margin: 0 auto;
}

.film-carousel {
  position: relative;
}

.film-carousel__viewport {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: #000;
}

.film-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}

.film-carousel__slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  min-width: 100%;
  height: 100%;
}

.film-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.film-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.film-carousel__btn:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: #fff;
}

.film-carousel__btn--prev {
  left: 0.75rem;
}

.film-carousel__btn--next {
  right: 0.75rem;
}

.film-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.film-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.film-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.film-expand {
  background: #111;
  padding: clamp(0.5rem, 1.5vw, 1rem) clamp(0.5rem, 1.25vw, 1.25rem) clamp(2.5rem, 5vw, 3.5rem);
}

.film-expand__inner {
  max-width: min(1100px, 96vw);
  margin: 0 auto;
}

.film-expand__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.film-expand__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.film-expand__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0.15rem;
  cursor: pointer;
  list-style: none;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  letter-spacing: 0.04em;
  color: #4dd0e1;
  transition: color 0.2s;
}

.film-expand__summary::-webkit-details-marker {
  display: none;
}

.film-expand__summary::marker {
  content: "";
}

.film-expand__summary:hover {
  color: var(--naf-yellow);
}

.film-expand__chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.film-expand__item[open] .film-expand__chevron {
  transform: rotate(225deg);
  margin-top: 0.25rem;
}

.film-expand__body {
  padding: 0 0.15rem 1.25rem;
}

.film-expand__body p {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.85rem;
}

.film-expand__body p:last-child {
  margin-bottom: 0;
}

/* Awards Page */
.awards-page .page-main {
  padding-bottom: 0;
}

.awards-page .page-bar {
  padding: clamp(1rem, 2vw, 1.35rem) clamp(0.5rem, 1.25vw, 1.25rem);
}

.awards-page .page-bar__inner {
  max-width: min(1720px, 98vw);
}

.awards-hero {
  background: var(--naf-black);
  padding: 0;
}

.awards-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  max-width: min(1400px, 100%);
  margin: 0 auto;
}

.awards-hero__visual {
  position: relative;
  overflow: hidden;
  background: var(--naf-black);
  min-height: 100%;
}

.awards-hero__visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.awards-hero__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
}

.awards-hero__label {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--naf-yellow);
  margin-bottom: 0.75rem;
}

.awards-hero__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.awards-hero__meta {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.awards-hero__text {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.awards-hero__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: flex-start;
}

.awards-hero__badges li {
  flex: 1 1 200px;
  max-width: 280px;
}

.awards-hero__badges img {
  display: block;
  width: 100%;
  height: auto;
}

.awards-list-section {
  background: #ececec;
  padding: clamp(2rem, 4vw, 3rem) clamp(0.5rem, 1.25vw, 1.25rem) clamp(2.5rem, 5vw, 3.5rem);
}

.awards-list-section__inner {
  max-width: min(1100px, 96vw);
  margin: 0 auto;
}

.awards-list-section__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.awards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.awards-list__item {
  margin: 0;
}

.awards-list__item--error p {
  padding: 1rem;
  color: #666;
  text-align: center;
}

.award-item {
  display: grid;
  grid-template-columns: 6.75rem minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.5rem;
  align-items: start;
}

.award-item__year {
  width: 6.75rem;
  flex-shrink: 0;
}

.award-item__year span {
  display: inline-block;
  max-width: 100%;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: #111;
  line-height: 1.1;
  border-bottom: 3px solid #ff8a00;
  padding-bottom: 0.2rem;
  white-space: nowrap;
}

.award-item--upcoming .award-item__year span {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.award-card {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.25rem);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.award-card__badge {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  background: #111;
}

.award-card__badge--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ff8a00;
  background: #f7f4ef;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.award-card__badge--trophy {
  color: #d4a017;
  background: #fff8e8;
}

.award-card__badge--film {
  color: #555;
  background: #f3f3f3;
}

.award-card__badge--camera {
  color: #444;
  background: #f3f3f3;
}

.award-card__badge--empty {
  background: #f3f3f3;
}

.award-card__body {
  min-width: 0;
}

.award-card__festival {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 500;
  color: #111;
  margin-bottom: 0.25rem;
}

.award-card__category {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #ff8a00;
  margin-bottom: 0.5rem;
}

.award-card__meta-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #555;
  margin-bottom: 0.2rem;
}

.award-card__meta-icon {
  font-size: 0.75rem;
  line-height: 1;
}

.award-card__summary {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #444;
  margin-top: 0.65rem;
}

.award-card__thumb {
  flex-shrink: 0;
  min-width: 160px;
  max-width: 220px;
  padding: 0.75rem;
  background: #eef3f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.award-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.award-card__thumb--text {
  font-size: 0.72rem;
  line-height: 1.55;
  color: #333;
}

.award-card__thumb-title {
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.award-card--upcoming {
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
}

.award-card__btn {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border: 1px solid #ff8a00;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.award-card__btn:hover {
  background: #ff8a00;
  color: #fff;
}

.awards-list-section__note {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  text-align: center;
  font-size: 0.78rem;
  color: #777;
}

.awards-spotlight {
  background: var(--naf-black);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(0.5rem, 1.25vw, 1.25rem);
}

.awards-spotlight__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: center;
  max-width: min(1400px, 98vw);
  margin: 0 auto;
}

.awards-spotlight__logo img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
}

.awards-spotlight__text {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

.awards-spotlight__text:last-of-type {
  margin-bottom: 1rem;
}

.awards-spotlight__btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.awards-spotlight__btn:hover {
  border-color: var(--naf-yellow);
  background: rgba(245, 224, 0, 0.06);
}

/* Contact Page */
.contact-page .page-main {
  padding-bottom: 0;
}

.contact-page .page-bar {
  padding: clamp(1rem, 2vw, 1.35rem) clamp(0.5rem, 1.25vw, 1.25rem);
}

.contact-page .page-bar__inner {
  max-width: min(1720px, 98vw);
}

.contact-page .contact-body {
  padding: 0;
}

.contact-body__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 2vw, 2rem);
  max-width: min(1720px, 98vw);
  margin: 0 auto;
  align-items: stretch;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1.25vw, 1.25rem) 0;
}

.contact-visual {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  background-color: #111;
  overflow: hidden;
}

.contact-visual picture {
  display: block;
  height: 100%;
  width: 100%;
}

.contact-visual img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
}

.contact-info--frame {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.contact-info__title {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--naf-yellow);
  margin-bottom: 0.75rem;
}

.contact-info__intro {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.contact-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1rem;
}

.contact-cell {
  display: block;
  padding: 1rem 0.875rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
}

a.contact-cell:hover {
  background: rgba(245, 224, 0, 0.05);
}

.contact-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 0.65rem;
  object-fit: contain;
  background: transparent;
  border: none;
  pointer-events: none;
}

a.contact-cell:hover .contact-icon {
  opacity: 1;
}

.contact-cell__label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-cell__value {
  display: block;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
}

.contact-cta {
  display: block;
  width: 100%;
  padding: 0.875rem 1.25rem;
  text-align: center;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--naf-yellow);
  border: 1px solid var(--naf-yellow);
  transition: background 0.3s, color 0.3s;
  margin-bottom: 0.65rem;
}

.contact-cta:hover {
  background: var(--naf-yellow);
  color: var(--naf-black);
}

.contact-tags {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.footer--contact {
  padding: 1.25rem clamp(1.5rem, 4vw, 2rem);
  margin-top: 0;
}

.footer--contact .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: min(1720px, 98vw);
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer--contact .footer__text {
  margin: 0;
  text-align: left;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links a:hover {
  color: var(--naf-yellow);
}

.footer__divider {
  color: rgba(255, 255, 255, 0.3);
}

.footer {
  position: relative;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem) 1.75rem;
  overflow: hidden;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: min(1200px, 96vw);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
  padding-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.footer__brand {
  position: relative;
  padding-right: 0.5rem;
}

.footer__brand::before {
  content: "NAF";
  position: absolute;
  left: -0.15rem;
  top: -0.35rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.footer__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(7.25rem, 13vw, 9rem);
  height: auto;
  margin: 0 0 0.55rem;
  background: transparent;
}

.footer__studio {
  position: relative;
  z-index: 1;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.65rem;
}

.footer__tagline {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__col {
  min-width: 0;
}

.footer__col--social {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer__heading {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--naf-yellow);
  margin-bottom: 0.85rem;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.footer__nav a {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--naf-yellow);
}

.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.footer__contact-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item a {
  color: inherit;
  transition: color 0.2s;
  word-break: break-word;
}

.footer__contact-item a:hover {
  color: var(--naf-yellow);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  transition: transform 0.2s, opacity 0.2s;
}

.footer__social-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer__social-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0d0d0d;
}

.footer__social-link--imdb {
  background: #f5c518;
  color: #0d0d0d;
}

.footer__social-link--vimeo {
  background: #1ab7ea;
}

.footer__social-link--youtube {
  background: #ff0000;
}

.footer__social-link--linkedin {
  background: #0a66c2;
  color: #fff;
}

.footer__social-link--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.footer__mascot {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
}

.footer__mascot-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #222;
}

.footer__mascot-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.footer__mascot-name {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--naf-yellow);
  margin: 0 0 0.15rem;
  line-height: 1.3;
}

.footer__mascot-role {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.35;
}

.footer__mascot-note {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.2rem 0 0;
  line-height: 1.35;
}

.footer__quote {
  margin: 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.footer__copy {
  margin: 1.25rem 0 0;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.footer__copy::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0 auto 0.85rem;
  background: var(--naf-yellow);
}

.back-to-top {
  position: fixed;
  right: clamp(1.25rem, 3.5vw, 2rem);
  /* Sit near footer band, not flush with viewport corner */
  bottom: clamp(5.5rem, 12vw, 8.5rem);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s, border-color 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0, 0, 0, 0.88);
  border-color: var(--naf-yellow);
  color: var(--naf-yellow);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

.footer__text {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .menu-highlights {
    grid-template-columns: 1fr;
  }

  .menu-highlights__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-highlights__item:last-child {
    border-bottom: none;
  }

  .contact-body__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 0;
  }

  .contact-visual {
    order: -1;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .contact-visual picture {
    height: auto;
    width: 100%;
  }

  .contact-visual img {
    height: auto;
    width: 100%;
  }

  .contact-info--frame {
    border-left: none;
    border-right: none;
  }

  .about-intro__links {
    grid-template-columns: 1fr;
  }

  .about-bottom__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .about-hero__inner,
  .about-details__inner {
    grid-template-columns: 1fr;
  }

  .about-team {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.75rem;
    margin-top: 0.5rem;
  }

  .about-member {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .about-member__photo {
    width: 72px;
    height: 72px;
  }

  .about-companion {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 1.1rem;
  }

  .about-companion__photo {
    width: 52px;
    height: 52px;
    justify-self: end;
  }

  .about-values__inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-value:nth-child(2) {
    border-right: none;
  }

  .about-value:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-value:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-services {
    grid-template-columns: 1fr;
  }

  .film-showcase__inner {
    grid-template-columns: 1fr;
    max-width: min(640px, 96vw);
  }

  .film-poster {
    max-width: 320px;
    margin: 0 auto;
    height: auto;
  }

  .film-poster img {
    height: auto;
    object-fit: contain;
  }

  .awards-spotlight__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .awards-spotlight__logo img {
    margin: 0 auto;
  }

  .awards-hero__inner {
    grid-template-columns: 1fr;
  }

  .awards-hero__visual {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .awards-hero__badges li {
    max-width: 240px;
  }

  .award-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .award-card {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .award-card--upcoming {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .award-card__btn {
    grid-column: 2;
    justify-self: start;
  }

  .award-card__thumb {
    grid-column: 1 / -1;
    max-width: none;
    min-width: 0;
  }

  .footer--contact .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer--contact .footer__text {
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .header__inner {
    padding: 0 0.75rem;
    gap: 0.5rem;
  }

  .logo {
    gap: 0.3rem;
    font-size: 0.75rem;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .header__end {
    gap: 0.75rem;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    margin-left: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: calc(var(--header-height) + 1.5rem) 2rem 2rem;
    transition: right 0.3s;
    z-index: 101;
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav__list li:nth-child(1) a,
  .nav__list li:nth-child(2) a,
  .nav__list li:nth-child(3) a,
  .nav__list li:nth-child(4) a,
  .nav__list li:nth-child(5) a {
    min-width: 0;
    width: auto;
    display: inline-block;
    text-align: left;
    white-space: nowrap;
  }

  .nav__list a {
    font-size: 0.875rem;
  }

  .nav__list a.active::after {
    left: 0;
    right: 0;
    width: auto;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: auto;
  }
}

.trailer-embed {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.trailer-embed__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

.trailer-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.trailer-embed__back {
  margin-top: 1.25rem;
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 0.875rem;
}

.trailer-embed__back a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.trailer-embed__back a:hover {
  color: var(--naf-yellow);
}

.commercial-showcase {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.commercial-showcase__intro {
  max-width: min(900px, 100%);
  margin: 0 auto 1.75rem;
  text-align: center;
}

.commercial-showcase__intro p {
  font-family: "Noto Serif KR", "Batang", "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.commercial-showcase__inner picture,
.commercial-showcase__inner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
