:root {
  --bk: #1A100F;
  --bg: #261816;
  --wh: #FFF6E9;

  --g: #EAEDD6;
  --gr: #D9D9D9;

  --fzS: 12px;
  --fz: 16px;
  --fzL: 24px;
  --fzHeader: 14px;
  --fzSecTitle: 32px;
  --fzLabel: 16px;

  --fzDLabel: 14px;

  --header-h: 60px;
}

@media screen and (max-width: 1080px) {
  :root {
    --fzL: 21.6px;
    --fzLabel: 14.1px;

    --fzHeader: 14px;
    --fzNav: 20px;

    --header-h: 84px;
  }
}

html,
body {
  font-family: 'Noto Serif KR', sans-serif;
  color: var(--wh);
  font-style: normal;
  font-size: var(--fz);
  font-weight: 700;
  line-height: normal;
  background: var(--bg);
}

/* 이미지는 드래그 금지 (저장 방지 + 의도치 않은 드래그 UX 차단) */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* 인터랙티브/네비 UI는 텍스트 드래그 막아 클릭 UX 보호.
   본문 콘텐츠(.sec-cont, .theme-sum 등)는 기본값(선택 가능) 유지 → 텍스트 드래그 가능 */
header,
nav,
.util-btn,
.nav-btn,
.m-util-list,
.m-panel--top,
.m-panel-util,
.m-panel-nav,
.theme-more-btn,
.scroll-guide,
.mouse-trail,
#trail {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  scrollbar-gutter: stable;
  /* 브라우저 자동 scroll 보정 차단 — pin/scrub로 인한 DOM 변동 시
     scroll-anchor가 위치를 보정하면서 long section 점프 덜컹 발생 */
  overflow-anchor: none;
}

/* 언어 전환 복귀 디졸브: 첫 페인트부터 body 숨김 → scroll 점프 끝나면 페이드인 */
html.is-restoring body {
  opacity: 0;
}

body {
  transition: opacity 450ms ease;
}

body, .sec, .sec-inner, .container {
  overflow-anchor: none;
}

/* 텍스트 드래그(선택) 색상 — 브랜드 컬러 토큰 기반 */
::selection {
  background: var(--wh);
  color: var(--bk);
}

::-moz-selection {
  background: var(--wh);
  color: var(--bk);
}

body.s-p {
  height: 100%;
  overflow: hidden;
}

a {
  font-family: 'Noto Serif KR', sans-serif;
  color: var(--wh);
  font-style: normal;
  font-size: var(--fz);
  font-weight: 500;
  line-height: normal;
}

/* reset.css의 list-style:none 해제.
   ※ 'auto'는 유효한 마커 값이 아니라 '이름 없는 카운터 스타일'로 해석돼
      브라우저가 decimal로 폴백함 → ul에도 숫자가 찍혔음. 마커를 명시. */
ul, ol {
  margin-left: 22px;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li {
  line-height: 160%;
}

em {
  font-style: italic;
}

#wrap {
  position: relative;
  width: 100%;
  /* hidden은 스크롤 컨테이너가 되어 내부 sticky(.gnb)를 깨뜨림 → clip */
  overflow-x: clip;
}

main {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  z-index: 1;
  background: var(--bg);
}

.main-inner {
  width: 100%;
  height: calc(100% - var(--header-h));
}

/* <picture>로 바꿔 조건에 맞는 한 장만 내려받는다 (home.php).
   pc/m 두 <img>를 CSS로 숨기던 방식은 안 보이는 쪽도 다운로드됐다. */
.main-inner picture,
.main-inner > img {
  display: block;
  width: 100%;
  height: 100%;
}

.main-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 1080px) {
  .main-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media screen and (min-width: 1920px) {
  .main-inner img {
    object-position: center;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 50;
  transform: translateY(calc(100svh - var(--header-h)));
  /*background: rgba(38, 24, 22, 0.80);*/
  background: linear-gradient(180deg, rgba(38, 24, 22, 1) 82%, rgba(38, 24, 22, 0.00) 100%);
  /*backdrop-filter: blur(4px);*/
}

.header-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.header-inner:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
}

.header-inner > div,
.header-inner > nav {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1080px) {
  header {
    background: linear-gradient(180deg, rgba(38, 24, 22, 1) 75.6%, rgba(38, 24, 22, 0.00) 100%);
  }

  .header-inner:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  }
}

.m-panel-logo,
.logo {
  font-size: var(--fzHeader);
  line-height: 160%;
  text-align: left;

  cursor: pointer;
}

.logo-wrapper {
  min-width: 232px;
}

.lang-en .logo-wrapper {
  min-width: 125px;
}

@media screen and (max-width: 1280px) {
  .lang-ko .logo-wrapper {
    min-width: auto;
  }
}

@media screen and (max-width: 1080px) {
  .lang-ko .logo-wrapper,
  .lang-en .logo-wrapper {
    min-width: auto;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  min-width: calc(557px + 50px);
  height: 100%;
}

.lang-en nav {
  min-width: calc(607px + 50px);
}

@media screen and (min-width: 1680px) {
  nav {
    min-width: calc(657px + 50px);
  }

  .lang-en nav {
    min-width: calc(657px + 50px);
  }
}

.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: var(--fzHeader);
  line-height: 160%;

  transform: translateY(0);
  transition: transform 300ms ease-in-out;

  cursor: pointer;
}

.nav-btn.off {
  /*transform: translateY(-25px);*/
}

.nav-btn.on {
  transform: translateY(0);
}

@media (hover: hover) {
  .nav-btn:hover {
    transform: translateY(0);
  }
}

.util-list {
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 232px;
}

.lang-en .util-list {
  min-width: 125px;
}

.util-btn {
  font-size: var(--fzHeader);
  line-height: 160%;
  cursor: pointer;
}

.m-util-list {
  display: none;
}

.m-panel,
.m-panel.is-open {
  display: none;
}

@media screen and (max-width: 1080px) {
  .header-inner {
    padding: 0 30px;
  }

  .logo span {
    display: none;
  }

  nav {
    display: none;
  }

  .util-list {
    display: none;
  }

  .m-util-list {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .m-nav-btn {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='16' viewBox='0 0 24 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3.6001' y1='0.600012' x2='20.4001' y2='0.600012' stroke='%23FFF6E9' stroke-width='1.2'/%3E%3Cline y1='7.80002' x2='24' y2='7.80002' stroke='%23FFF6E9' stroke-width='1.2'/%3E%3Cline x1='3.6001' y1='15' x2='20.4001' y2='15' stroke='%23FFF6E9' stroke-width='1.2'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .m-lang-btn {
    font-size: 14px;
    font-weight: 700;
    line-height: 160%;
  }

  .m-panel,
  .m-panel.is-open {
    display: block;
  }

  .m-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: var(--bk);

    opacity: 0;
    visibility: hidden;
    transition: opacity 350ms ease-in-out, visibility 0s linear 350ms;
  }

  .m-panel.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 350ms ease-in-out, visibility 0s linear 0s;
  }

  .m-panel--top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: var(--header-h);
    padding: 0 30px;
  }

  .close-btn {
    width: 20px;
    height: var(--header-h);
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.353516 19.3535L19.3442 0.353516M1.36282 0.353538L20.3535 19.3535' stroke='%23FFF6E9'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .m-panel--cont {
    height: calc(100svh - var(--header-h));
    overflow-y: auto;
    padding-bottom: 60px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior: contain;
  }

  .m-panel-util {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px 30px;
    margin: 40px 0;
    width: 100%;
  }

  .mp-ui-dot-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mp-ui-dot-wrapper > span {
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--gr);
  }

  .mp-util-item {
    position: relative;
    padding: 0 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 160%;
  }

  .m-panel-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mp-nav-item {
    padding: 0 30px;
    height: 38px;
    text-align: center;
  }

  .mp-nav-item--v {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mp-nav-item--v > span {
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--gr);
  }

  .mp-nav-item:not(.mp-nav-item--v) {
    display: flex;
    align-items: center;
  }

  .mp-nav-item:not(.mp-nav-item--v) > span {
    display: block;
    padding: 0 30px;
    font-size: 20px;
  }

  .mp-nav-item.nav-btn--director > span,
  .mp-nav-item.nav-btn--ei > span {
    padding: 0 15px;
  }

  .mp-ni-dot-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mp-ni-dot-wrapper > span {
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--gr);
  }
}

.container {
  position: relative;
  z-index: 10;
  background: var(--bg);
  transition: background-color 600ms ease-in-out;
}

.container.is-sponsorship {
  background: rgb(38 24 22 / 0.92);
}

.container.is-hidden {
  pointer-events: none;
}

/* nav/로고 클릭으로 점프 중일 때 모든 KV 강제 숨김 (scrub catch-up 동안 깜빡임 방지) */
body.nav-scrolling .sec-kv {
  visibility: hidden !important;
  opacity: 0 !important;
}

.notice-em {
  font-size: var(--fzSecTitle);
  line-height: 160%;
}

.notice-sub {
  margin-top: 5px;
  font-size: var(--fzS);
  line-height: 160%;
}

.lang-en .notice-sub {
  display: none;
}

.sec {
  position: relative;
  width: 100%;
  /* height auto + min-height 100svh: 콘텐츠 길이만큼 자연 확장 (긴 콘텐츠 = 긴 섹션)
     → 자연 스크롤 가능, sec.bottom이 viewport.bottom에 닿을 때 pin 활성화 */
  min-height: 100svh;
  /* will-change만 둠 — translateZ(0) + backface-visibility는 모바일에서
     sub-pixel rendering jitter를 유발할 수 있어 제거 */
  will-change: transform;
}

/* Director 섹션은 item swap 등 내부 phase 때문에 sec 자체를 100svh로 고정 유지 */
.sec--director {
  height: 100svh;
}

.sec-inner {
  position: relative;
  width: 100%;
  min-height: 100svh;
  will-change: transform;

  display: flex;
  flex-direction: column;
  /* center → start: 짧은 콘텐츠도 long 콘텐츠와 동일하게 padding-bottom만 띄움
     → 모든 섹션에서 content 하단~viewport 하단 간격 균일 */
  justify-content: center;
  align-items: center;
  gap: 80px;

  padding: calc(var(--header-h) + 70px) 20px;
}

@media screen and (max-width: 1080px) {
  .sec {
    will-change: auto;
  }

  /* director는 모바일에서도 height: 100svh 유지 → sec 자체는 viewport 한 칸만 차지.
     content는 sec-inner가 담당하고, JS item swap이 sec-inner translation으로 content 보여줌.
     이러면 pin 끝난 뒤 자연 스크롤 여백이 없음 (sec.height = viewport = 즉시 다음 섹션). */
  .sec--director {
    height: 100svh;
  }

  .sec-inner {
    padding: calc(var(--header-h) + 45px) 30px;
    justify-content: flex-start;
    will-change: auto;
  }

  .sec--overview .sec-inner {
    padding: calc(var(--header-h) + 45px) 30px calc(var(--header-h) + 45px);
  }
}

.sec-title {
  font-size: var(--fzSecTitle);
  line-height: 160%;
  text-align: center;

  transform: rotate(-10deg);
}

.sec-cont--overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.overview-label {
  font-size: var(--fzLabel);
  text-align: center;
}

.overview-cont {
  font-size: var(--fzL);
  line-height: 160%;
  text-align: center;
}

.sec-cont.sec-cont--theme {
  max-width: 611px;
}

.sec-cont.sec-cont--theme p {
  text-align: center;
  line-height: 160%;
}

.sec-cont.sec-cont--theme p + p {
  margin-top: 26px;
}

.sec--theme .theme-more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  line-height: 160%;

  cursor: pointer;
}

@media (hover: hover) {
  .sec--theme .theme-more-btn:hover {
    color: #66403A;
  }

  .sec--theme .theme-more-btn:hover * {
    fill: #66403A;
  }
}

.sec-cont.sec-cont--ei {
  max-width: 611px;
}

.sec-cont.sec-cont--ei p {
  text-align: center;
  line-height: 160%;
}

.sec-cont.sec-cont--ei p + p {
  margin-top: 26px;
}

.sec-cont.sec-cont--sponsorship {
  max-width: 453px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.sponsorship-block {
  text-align: center;
}

.sponsorship-heading {
  margin-bottom: 15px;
  line-height: 160%;
}

.sponsorship-body {
  font-size: var(--fzS);
  line-height: 160%;
}

.sponsorship-contact {
  font-size: var(--fzS);
  line-height: 160%;
  text-align: center;
}

.sponsorship-contact a {
  font-size: var(--fzS);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sponsorship-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  line-height: 160%;

  cursor: pointer;
}

@media (hover: hover) {
  .sponsorship-btn:hover {
    color: #66403A;
  }

  .sponsorship-btn:hover * {
    fill: #66403A;
  }
}

.sec--director .sec-inner {
  justify-content: start;
  padding: calc(var(--header-h) + 70px) 30px 0;
}

.sec--director .sec-inner > .sec-title {
  display: none;
}

.sec-cont--director {
  width: 100%;
  max-width: calc(768px + 100px);
}

.director-box--pc {
  display: block;
}

.director-box--pc {
  position: relative;
  width: 100%;
  height: calc(100svh - (var(--header-h) + 70px));
}

.director-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.director-row--bottom {
  padding: 120px 0;
  z-index: 2;
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: max-content;
}

.director-row--top {
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding-bottom: 40px;
}

.director-row--top .sec-title {
  margin: 0 auto;
}

.director-thumb-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto auto auto;
  width: 100%;
  max-width: 768px;
}

.director-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  text-align: center;
}

.director-box--m {
  display: none;
}

.director-thumb {
  width: auto;
  height: 220px;
}

.director-thumb > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-credit {
  text-align: right;
  font-size: 8px;
  font-weight: 400;
  line-height: 160%;
}

.director-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.director-name-em {
  font-size: var(--fzL);
  font-weight: 700;
  line-height: 160%;
}

.director-name {
  font-size: var(--fzDLabel);
  font-weight: 700;
  line-height: 160%;
}

.director-info-box-label {
  position: relative;
  padding: 0 22px;
  margin: 0 auto 10px;
  width: fit-content;
  color: var(--g);
  font-size: var(--fzDLabel);
  font-weight: 700;
  line-height: 160%;
}

.director-info-box-label:before,
.director-info-box-label:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gr);
}

.director-info-box-label:before {
  left: 0;
}

.director-info-box-label:after {
  right: 0;
}

.director-info-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.director-info-row > div:first-child {
  font-size: var(--fzDLabel);
  font-weight: 700;
  line-height: 160%;
}

.director-info-row > div:last-child {
  font-size: var(--fzS);
  font-weight: 700;
  line-height: 160%;
  opacity: 0.2;
}

@media screen and (max-width: 1080px) {
  .sec--director .sec-inner {
    display: block;
    padding: calc(var(--header-h) + 45px) 30px 0;
  }

  .sec-cont--director {
    max-width: 100%;
    height: 100%;
  }

  .director-box--pc {
    display: none;
  }

  .sec--director .sec-inner > .sec-title {
    display: block;
    margin-bottom: 58px;
  }

  .director-box--m {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
  }

  .director-thumb {
    margin: auto;
    width: fit-content;
    height: 234px;
  }

  .director-item > .director-info {
    padding: 36px 32px var(--header-h);
    text-align: center;
  }

}

.sec-cont--ticket {
  max-width: 690px;
}

.ticket-row + .ticket-row {
  margin-top: 24px;
}

.ticket-row {
  display: grid;
  /*grid-template-columns: minmax(172px, 1fr) 4fr;*/
  grid-template-columns: minmax(140px, 1fr) 4fr;
}

.lang-en .ticket-row {
  display: grid;
  /*grid-template-columns: minmax(204px, 1fr) 4fr;*/
  grid-template-columns: minmax(140px, 1fr) 4fr;
}

.ticket-label {
  padding-right: 40px;
  font-size: var(--fz);
  font-weight: 700;
  line-height: 160%;
}

.ticket-body {
  font-size: var(--fz);
  font-weight: 400;
  line-height: 160%;
}

.ticket-body a:hover {
  color: #66403A;
}

@media screen and (max-width: 1080px) {
  .ticket-row + .ticket-row {
    margin-top: 32px;
  }

  .ticket-row {
    display: block;
  }

  .lang-en .ticket-row {
    display: block;
  }

  .ticket-label {
    padding-right: 0;
    margin-bottom: 5px;
  }

  .ticket-body {
    font-size: var(--fzS);
  }

  .ticket-body * {
    font-size: var(--fzS);
  }

  .multi-ticket-price {
    font-size: var(--fzLabel);
  }
}

.ticket-price {
  margin-top: 78px;
  padding-left: 140px;
}

.lang-en .ticket-price {
  padding-left: 140px;
}

.price-table {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wh);
}

.price-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
}

.price-row:not(.price-row--head) {
  padding: 12px 0;
}

.price-cell {
  font-weight: 700;
  line-height: 160%;
  text-align: right;
}

.price-cell--category {
  /*padding-left: 8px;*/
  text-align: left;
}

.price-row--head {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--wh);
}

.price-row--head .price-cell {
  font-size: 10px;
  font-weight: 700;
  line-height: 160%;
}

.price-category-main {
  font-weight: 700;
  line-height: 160%;
}

.price-category-sub {
  font-size: 10px;
  font-weight: 700;
  line-height: 160%;
}

.price-footnote {
  margin-top: 12px;
  text-align: right;
  font-size: 10px;
  font-weight: 700;
  line-height: 160%;
}

@media screen and (max-width: 1080px) {
  .ticket-price {
    margin-top: 60px;
    padding-left: 0;
  }

  .lang-en .ticket-price {
    padding-left: 0;
  }

  .price-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px
  }

  .lang-en .price-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .price-row:not(.price-row--head) {
    padding: 11px 0;
  }

  .price-row--head {
    padding-bottom: 11px;
  }

  .price-cell {
    font-size: var(--fzLabel);
    font-weight: 700;
    line-height: 160%;
    text-align: right;
  }

  .price-cell--category {
    padding-left: 0;
    text-align: left;
  }

  .price-category-sub {
    font-size: 10px;
    font-weight: 700;
    line-height: 160%;
  }

  .price-footnote {
    width: 66.66%;
    margin: 10px 0 0 auto;
  }

  .price-category-main {
    font-size: var(--fzLabel);
    font-weight: 700;
    line-height: 160%;
  }
}

.ticket-multi {
  margin-top: 42px;
  padding-left: 140px;
}

.lang-en .ticket-multi {
  padding-left: 140px;
}

.multi-ticket-header {
  padding-bottom: 12px;
  padding-left: 8px;
  border-bottom: 1px solid var(--wh);
  font-size: 10px;
  font-weight: 400;
  line-height: 160%;
}

.multi-ticket-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  padding: 12px 0;
}

.multi-ticket-row:last-child {
  border-bottom: 1px solid var(--wh);
}

.multi-ticket-name {
  /*padding-left: 8px;*/
  font-weight: 700;
  line-height: 160%;
}

.multi-ticket-price {
  text-align: center;
  font-weight: 700;
  line-height: 160%;
}

.ticket-notices {
  margin-top: 70px;
}

@media screen and (max-width: 1080px) {
  .ticket-multi {
    margin-top: 26px;
    padding-left: 0;
  }

  .lang-en .ticket-multi {
    padding-left: 0;
  }

  .multi-ticket-header {
    padding-bottom: 11px;
    padding-left: 0;
    font-weight: 700;
  }

  .multi-ticket-row {
    grid-template-columns: 1fr 2fr;
    padding: 11px 0;
  }

  .multi-ticket-name {
    padding-left: 0;
    font-size: var(--fzLabel);
  }

  .ticket-notices {
    margin-top: 60px;
  }
}

.sec-kv {
  position: absolute;
  /* non-director는 pin start: 'bottom bottom' → sec.bottom = viewport.bottom 시점에 pin 시작
     KV bottom 앵커로 viewport에 정확히 위치 + header-h/2 만큼 위로 보정 */
  bottom: calc(var(--header-h) / 2);
  top: auto;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  pointer-events: none;
  z-index: 5;
  width: 100%;
  height: 100svh;
}

/* Director는 pin start: 'top top' (item swap 시퀀스가 pin 안에서 작동)
   → KV top 앵커로 sec.top 기준 위치 */
.sec--director .sec-kv {
  bottom: auto;
  top: calc(var(--header-h) / -2);
}

.sec-kv svg,
.sec-kv img {
  display: block;
  width: 100%;
  height: 100%;
}

/* 모바일 KV는 <img> — object-fit으로 SVG의 preserveAspectRatio와 같게 맞춘다 */
.sec-kv img.kv-m {
  display: none;
  object-fit: contain;
}

@media screen and (max-width: 1080px) {
  /* 모바일도 PC와 동일하게 position: absolute 사용 (일반 .sec-kv 규칙 상속).
     pin start: 'top top'이라 활성 섹션의 sec.top이 항상 viewport.top → KV 자동 viewport 정렬.
     visibility 토글 불필요 (활성 sec만 viewport에 있음). */
  .sec-kv svg.kv-pc {
    display: none;
  }

  .sec-kv img.kv-m {
    display: block;
  }
}

footer {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--bg);
  width: 100%;
  min-height: 100svh;

  display: flex;
  justify-content: center;
  align-items: end;
}

.footer-inner {
  margin: auto auto 0;
  padding: 110px 20px 85px;
  max-width: calc(1440px + 40px);
}

.footer-logo > svg {
  display: block;
  width: 100%;
  height: auto;
}

.site-info {
  display: flex;
  justify-content: space-between;
  align-items: end;

  padding-top: 85px;
  font-size: var(--fzS);
  font-weight: 300;
  line-height: 160%;
}

.site-info a {
  font-size: var(--fzS);
  font-weight: 300;
  line-height: 160%;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-info strong {
  font-weight: 700;
  line-height: 160%;
}

.site-info p + p {
  margin-top: 18px;
}

.org {
  margin-bottom: 18px;
  font-weight: 700;
  text-decoration: none;
  /*text-underline-offset: 3px;*/
}

.org a {
  font-weight: 700;
  text-decoration: none;
}

.org-item {
  margin: 0 auto;
  width: fit-content;
}

.org-item + .org-item {
  margin: 24px auto 0;
}

.sns-list {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.sns-item {
  cursor: pointer;
}

.site-info-col--m {
  display: none;
}

.site-info-col--pc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .footer-inner {
    margin: auto auto 0;
    padding: 58px 30px;
    max-width: 100%;
  }

  .footer-logo {
    margin: auto;
    max-width: 335px;
  }

  .site-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding-top: 40px;
    text-align: center;
  }

  .site-info-col--m {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .site-info-col--pc {
    display: none;
  }

  .org-item {
    margin: 0 auto;
    width: 160px;
    height: fit-content;
    line-height: 100% !important;
  }

  .org-item--en {
    width: 246px;
  }

  .org-item > svg {
    width: 100%;
    height: auto;
  }

  .sns-list {
    margin-bottom: 20px;
  }
}

.mouse-trail {
  display: none;
}

@media (hover: hover) {
  .mouse-trail {
    position: fixed;
    z-index: 9999;
    inset: 0;
    pointer-events: none;
    display: block;
  }

  .mouse-trail__shape {
    position: absolute;
    top: 0;
    left: 0;
    margin: -29px 0 0 -27px;
    width: 55px;
    height: 58px;
    transform: translate3d(0, 0, 0) scale(0);
    will-change: transform;
    pointer-events: none;
  }
}

.scroll-guide {
  width: 20px;
  height: 162px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: scroll-guide-loop 1500ms steps(1, end) infinite;
}

@keyframes scroll-guide-loop {
  0%, 33.33% {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='162' viewBox='0 0 20 162' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_68_7012)'%3E%3Ccircle cx='10' cy='100.024' r='1' transform='rotate(-90 10 100.024)' fill='%23D9D9D9'/%3E%3Cpath d='M3.40821 77.9761H16.5922L10.0002 84.0241L3.40821 77.9761Z' fill='%23FFF6E9'/%3E%3Ccircle cx='10' cy='61.9761' r='1' transform='rotate(-90 10 61.9761)' fill='%23D9D9D9'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_68_7012'%3E%3Crect width='162' height='20' fill='white' transform='translate(7.08124e-06 162) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  }
  33.34%, 66.66% {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='162' viewBox='0 0 20 162' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_68_7020)'%3E%3Ccircle cx='10' cy='117.024' r='1' transform='rotate(-90 10 117.024)' fill='%23D9D9D9'/%3E%3Ccircle cx='10' cy='100.024' r='1' transform='rotate(-90 10 100.024)' fill='%23D9D9D9'/%3E%3Cpath d='M3.40772 77.9761H16.5917L9.99972 84.0241L3.40772 77.9761Z' fill='%23FFF6E9'/%3E%3Ccircle cx='10' cy='61.9761' r='1' transform='rotate(-90 10 61.9761)' fill='%23D9D9D9'/%3E%3Ccircle cx='10' cy='44.9761' r='1' transform='rotate(-90 10 44.9761)' fill='%23D9D9D9'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_68_7020'%3E%3Crect width='162' height='20' fill='white' transform='translate(7.08124e-06 162) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  }
  66.67%, 100% {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='162' viewBox='0 0 20 162' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_68_7032)'%3E%3Ccircle cx='10' cy='134.024' r='1' transform='rotate(-90 10 134.024)' fill='%23D9D9D9'/%3E%3Ccircle cx='10' cy='117.024' r='1' transform='rotate(-90 10 117.024)' fill='%23D9D9D9'/%3E%3Ccircle cx='10' cy='100.024' r='1' transform='rotate(-90 10 100.024)' fill='%23D9D9D9'/%3E%3Cpath d='M3.40821 77.9761H16.5922L10.0002 84.0241L3.40821 77.9761Z' fill='%23FFF6E9'/%3E%3Ccircle cx='10' cy='61.9761' r='1' transform='rotate(-90 10 61.9761)' fill='%23D9D9D9'/%3E%3Ccircle cx='10' cy='44.9761' r='1' transform='rotate(-90 10 44.9761)' fill='%23D9D9D9'/%3E%3Ccircle cx='10' cy='27.9761' r='1' transform='rotate(-90 10 27.9761)' fill='%23D9D9D9'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_68_7032'%3E%3Crect width='162' height='20' fill='white' transform='translate(7.08124e-06 162) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  }
}

.theme-main {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: var(--bg);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease-in-out, visibility 0s linear 300ms;
}

.theme-main.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 300ms ease-in-out, visibility 0s linear 0s;
}

body.is-locked {
  overflow: hidden;
}

.theme-main-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: calc(var(--header-h) + 30px) 20px;
}

@media screen and (max-width: 1080px) {
  .theme-main-inner {
    padding: 60px 30px;
  }
}

.theme-dim {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 24, 22, 0.20);
  backdrop-filter: blur(75px);
}

.theme-dim:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/dim.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 120%;
  opacity: 0.2;
}

.theme-cont {
  position: relative;
  z-index: 2;
  margin: auto;
  max-width: 611px;
  /*max-height: 768px;*/
  height: 100%;
  border-radius: 25px;
  background: var(--bk);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.theme-cont::-webkit-scrollbar {
  display: none;
}

.theme-cont-inner {
  padding: 0 50px 80px;
  /*height: 100%;*/
}

@media screen and (max-width: 1080px) {
  .theme-cont-inner {
    padding: 0 28px 40px;
  }
}

.popup-close-btn-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: end;
  background: linear-gradient(180deg, rgba(26, 16, 15, 0.70) 0%, rgba(26, 16, 15, 0.00) 100%);
}

.popup-close-btn {
  width: 13px;
  height: 13px;

  cursor: pointer;
}

.theme-cont .sec-title {
  margin-bottom: 40px;
}

.theme-main-cont-desc {
  line-height: 160%;
  text-align: center;
}

.price-table > .price-row:last-child .price-cell:not(.price-cell--category) {
  text-align: center;
}

.artist-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 36px;
  max-width: 828px;
  margin: 0 auto;
}

.artist-card {
  text-align: center;
}

.artist-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}

.artist-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;

  /*opacity: 0.2;*/
}

.artist-list-notice {
  margin: 80px auto 0;
  max-width: 612px;
  text-align: center;
  text-transform: capitalize;
}

@media screen and (max-width: 1080px) {
  .artist-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(142px, 1fr));
    gap: 40px 12px;
    max-width: 305px;
    margin: 0 auto;
  }

  .artist-list-notice {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
  }
}
