@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --header-gradient: linear-gradient(180deg, rgba(6, 19, 41, .7) 0%, rgba(6, 19, 41, .4) 50%, rgba(6, 19, 41, 0) 100%);
}

html {
  scroll-behavior: smooth
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform
}

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

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity 1.05s cubic-bezier(.22, 1, .36, 1), transform 1.05s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform
}

.scroll-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0)
}

.hero-intro-item {
  opacity: 0;
  animation: heroIntro 1.05s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: var(--hero-delay, 0ms);
  will-change: opacity, transform
}

@keyframes heroIntro {
  from {
    opacity: 0;
    transform: translateX(-56px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .scroll-reveal,
  .scroll-reveal-left,
  .hero-intro-item {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none
  }

  .site-header,
  .site-header::before,
  .gnb,
  .menu-toggle span,
  .mobile-social,
  .value-card,
  .value-card-layer,
  .value-card-content {
    transition: none !important
  }
}

/* About split layout: fixed memory image on the right */
@media(min-width:1101px) {
  .about-intro.container {
    --about-gutter: max(20px, calc((100vw - 1440px) / 2));
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 50.52% 49.48%;
    grid-template-rows: 800px 290px;
    width: calc(100% - 40px);
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    min-height: 1090px;
    padding: 0;
    gap: 0;
    overflow: visible
  }

  .about-intro::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 49.48%;
    height: 100%;
    background: transparent
  }

  .about-intro>div:first-child {
    grid-column: 1;
    grid-row: 1;
    margin-left: calc(-1 * var(--about-gutter));
    width: calc(100% + var(--about-gutter));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--blue);
    color: #fff;
    padding: 0 70px 50px var(--about-gutter)
  }

  .about-intro>div:first-child .eyebrow {
    color: var(--navy);
    font-size: 24px;
    letter-spacing: .3em;
    margin-bottom: 20px
  }

  .about-intro>div:first-child .eyebrow:after {
    width: auto;
    flex: 1;
    min-width: 0;
    background: var(--navy)
  }

  .about-intro>.about-copy {
    grid-column: 1;
    grid-row: 2;
    margin-left: calc(-1 * var(--about-gutter));
    width: calc(100% + var(--about-gutter));
    align-self: stretch;
    max-width: none;
    background: var(--cream);
    padding: 50px 70px 100px var(--about-gutter);
    font-size: 16px
  }

  .about-intro>.about-copy p {
    max-width: 620px;
    margin-bottom: 16px
  }
}

@media(max-width:1100px) {
  .about-intro {
    display: block !important;
    grid-template-columns: none !important;
    min-height: 0 !important;
    height: auto !important
  }

  .about-intro>div:first-child {
    margin: 0 calc(var(--pad) * -1);
    padding: 120px var(--pad) 60px;
    background: rgba(58, 123, 213, .94);
    color: #fff
  }

  .about-intro>div:first-child .eyebrow {
    color: var(--navy)
  }

  .about-copy {
    margin: 0 calc(var(--pad) * -1);
    width: calc(100% + (var(--pad) * 2));
    max-width: none !important;
    min-height: 290px;
    padding: 55px var(--pad) !important;
    background: rgba(244, 240, 232, .88);
    word-break: keep-all;
    overflow-wrap: break-word;
    align-self: stretch
  }

  .about-copy p {
    word-break: keep-all;
    overflow-wrap: break-word
  }
}

:root {
  --navy: #061329;
  --memory: #0b1d3a;
  --blue: #3a7bd5;
  --cream: #f4f0e8;
  --white: #fff;
  --pad: 20px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none
}

body {
  margin: 0;
  color: var(--navy);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: var(--navy);
  overflow-x: clip;
  -ms-overflow-style: none
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0
}

img {
  display: block;
  max-width: 100%
}

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

button {
  font: inherit
}

.container {
  width: calc(100% - (var(--pad) * 2));
  max-width: 1440px;
  margin: auto;
  padding-left: 0;
  padding-right: 0
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -50px;
  left: 20px;
  padding: 10px 18px;
  background: #fff
}

.skip-link:focus {
  top: 10px
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background: var(--header-gradient);
  color: #fff;
  border: 0;
  box-shadow: none;
  transition: .3s
}

.site-header.open {
  background: linear-gradient(180deg, #061329 0%, #0b1d3a 72%, rgba(11, 29, 58, .97) 100%)
}

.site-header.scrolled:not(.open) {
  background: #0b1d3a;
  box-shadow: 0 5px 18px rgba(6, 19, 41, .22)
}

.brand {
  width: 249px;
  margin-left: 20px
}

.brand img {
  width: 100%;
  height: 30px;
  object-fit: contain
}

.brand picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gnb {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 50px;
  transform: translateX(-50%);
  white-space: nowrap
}

.gnb a {
  font-size: 16px
}

.gnb a:hover {
  color: #8ab7f4
}

.language {
  margin-left: auto;
  margin-right: 20px;
  color: #fff;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  gap: 10px
}

.language img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1)
}

.menu-toggle,
.mobile-social {
  display: none
}

.mobile-social a {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  transition: color .2s ease;
}

.mobile-social a:hover,
.mobile-social a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--blue);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-social .social-icons {
  justify-content: center;
}

.mobile-social span {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.hero {
  height: 100vh;
  height: 100svh;
  background: url('img/visual_colored.jpg') no-repeat center bottom;
  background-size: cover;
  background-color: var(--navy);
  color: #fff
}

.hero-copy {
  padding-top: 190px
}

.hero h1 {
  font-size: 128px;
  letter-spacing: -.05em;
  line-height: 1;
  font-weight: 900;
  margin: 4px 0 16px
}

.hero-info {
  font-size: 16px;
  margin-bottom: 25px
}

.pill-link {
  width: 188px;
  height: 44px;
  border-radius: 30px;
  background: rgba(5, 28, 58, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px
}

.pill-link img {
  width: 20px;
  filter: brightness(0) invert(1)
}

.about {
  background: url('img/about_grey.jpg') center bottom/cover no-repeat fixed
}

.about-intro {
  min-height: 1090px;
  padding-top: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--blue);
  font-size: 24px;
  letter-spacing: .3em;
  margin: 0 0 20px
}

.eyebrow:after {
  content: "";
  width: min(365px, 50vw);
  height: 2px;
  background: currentColor
}

.section-title-block {
  width: fit-content;
  max-width: 100%
}

.section-title-block .eyebrow {
  width: 100%
}

.section-title-block .eyebrow:after {
  flex: 1;
  width: auto;
  min-width: 0
}

.about h2,
.section-head h2,
.news h2 {
  font-size: 80px;
  line-height: 1.2;
  margin: 0
}

.about-copy {
  align-self: end;
  padding-bottom: 100px;
  max-width: 620px
}

.about-copy p {
  margin: 0 0 20px
}

.values {
  min-height: 0;
  color: #fff;
  padding: 0
}

.values-title-panel {
  padding: 145px 0 35px;
  background: rgba(11, 29, 58, .42)
}

.values-content-panel {
  padding: 40px 0 300px;
  background: rgba(6, 19, 41, .78)
}

.values-inner {
  display: grid;
  grid-template-columns: 400px 690px;
  justify-content: space-between;
  column-gap: 100px
}

.values-title-panel h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 0
}

.values-copy>p {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 45px
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: min(400px, 100%)
}

.value-list li {
  position: relative;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 36px
}

.value-list li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue)
}

.value-list li.active {
  height: 80px;
  background: #fff;
  color: var(--memory);
  border: 0
}

.value-list li.active::after {
  display: none
}

.value-list span {
  font-weight: 300
}

.value-card {
  position: relative;
  margin-top: 0;
  height: auto;
  min-height: 0;
  align-self: stretch;
  border: 2px solid #fff;
  border-radius: 30px;
  overflow: hidden
}

.value-card-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .46s cubic-bezier(.4, 0, .2, 1)
}

.value-card-layer.is-visible {
  z-index: 2;
  opacity: 1
}

.value-card-layer>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.value-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  background: rgba(6, 19, 41, .75);
  border-radius: 29px;
}

.value-card p {
  margin: 0;
  white-space: pre-line;
}

.program {
  background: var(--cream);
  padding: 150px 0
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px
}

.section-head>p,
.section-head>div:last-child {
  margin: 0 0 0 auto
}

.program-grid {
  display: grid;
  grid-template-columns: 690px 1fr;
  gap: 25px
}

.program-feature {
  height: 500px;
  position: relative;
  background: var(--memory);
  color: #fff;
  overflow: hidden
}

.program-feature:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, var(--memory))
}

.program-feature>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none
}

.program-feature>div {
  position: absolute;
  z-index: 1;
  left: 50px;
  right: 50px;
  bottom: 45px
}

.program-list small {
  font-size: 24px;
  color: var(--blue)
}

.program-feature h3 {
  font-size: 36px;
  margin: 0
}

.program-feature p {
  margin: 0
}

@media(min-width:1101px) {
  .values-inner > h3 {
    white-space: nowrap
  }

  .program-list strong {
    display: block;
  }
}

@media(max-width:1100px) {
  .program-list {
    display: grid
  }
}

.venue-list {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important
}

.venue-list>div {
  padding: 24px 20px !important;
  border-bottom: 1px solid var(--blue) !important
}

.venue-list h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.3
}

.venue-list h3 img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px
}

.venue-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  word-break: keep-all
}

.parking-list {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  border-bottom: 1px solid var(--blue)
}

.parking-list>strong {
  padding: 16px 0;
}

.parking-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  align-self: stretch;
  font-weight: 700;
  white-space: nowrap
}

.festival-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1065 / 489;
  overflow: hidden;
}

.festival-map-base,
.festival-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.festival-map-base {
  object-fit: cover;
}

.festival-map-overlay {
  pointer-events: none;
}

.map-marker {
  position: absolute;
  width: clamp(28px, 4.15%, 44px);
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #0b1d3a;
  color: #fff;
  font: 700 clamp(16px, 2.35vw, 25px)/1 Arial, sans-serif;
  opacity: 1;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.map-marker:hover,
.map-marker:focus-visible {
  background: #214d91;
  transform: translate(-50%, -50%) scale(1.08);
}

.map-marker.active {
  color: #fff;
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}

.marker-1 {
  left: 67.7%;
  top: 65.4%;
}

.marker-2 {
  left: 48.1%;
  top: 65.2%;
}

.marker-3 {
  left: 27.6%;
  top: 75.9%;
}

.marker-4 {
  left: 35.3%;
  top: 48.7%;
}

.marker-5 {
  left: 75.3%;
  top: 65.4%;
}

.marker-6 {
  left: 35.9%;
  top: 65.2%;
}

.marker-7 {
  left: 60.8%;
  top: 48.7%;
}

.marker-8 {
  left: 79%;
  top: 47.5%;
}

.parking-marker {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(28px, 4.15%, 44px);
  aspect-ratio: 1;
  padding: clamp(5px, .75vw, 8px);
  border: 2px solid #fff;
  border-radius: 50%;
  background: #0b1d3a;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.parking-marker:hover,
.parking-marker:focus-visible {
  background: #214d91;
  transform: translate(-50%, -50%) scale(1.08);
}

.parking-marker.active {
  background: var(--blue);
  transform: translate(-50%, -50%) scale(1.08);
}

.parking-marker-p1 {
  left: 20.5%;
  top: 56.5%;
}

.parking-marker-p2 {
  left: 91%;
  top: 23.5%;
}

.parking-list span {
  padding: 16px 20px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.parking-list span.active {
  background: var(--blue);
  color: #fff;
}

.parking-list span:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.venue-list>div {
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.venue-list>div.active {
  background: var(--blue);
  color: #fff;
}

.venue-list>div:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.parking-list .parking-badge,
.venue-list div div {
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 24px;
  text-align: center;
  background-color: var(--memory);
  border-radius: 50%;
}

.parking-list .parking-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  font-style: normal;
  line-height: 1
}

sub {
  font-size: 60%;
  vertical-align: 0;
}

.venue-list div div {
  padding-top: 4px;
}

@media(max-width:1100px) {
  .venue-list {
    grid-template-columns: repeat(2, 1fr) !important
  }
}

@media(max-width:640px) {
  .venue-list {
    grid-template-columns: 1fr !important
  }

  .venue-list>div {
    padding-left: 0 !important;
    padding-right: 0 !important
  }

  .parking-list {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0
  }
}

/* Mobile top state: let the hero show through the header gradient. */
@media(max-width:640px) {
  .site-header:not(.open):not(.scrolled) {
    background: transparent !important
  }

  .site-header:not(.open):not(.scrolled)::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 180px;
    background: var(--header-gradient);
    pointer-events: none
  }

  .site-header::before {
    visibility: hidden;
    opacity: 0;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1), opacity 0s linear .38s, visibility 0s linear .38s
  }

  .site-header.open::before {
    visibility: visible;
    opacity: 1;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1), opacity .2s ease, visibility 0s linear 0s
  }

  .site-header.open::after,
  .site-header.scrolled::after {
    display: none
  }
}

.program-feature>img,
.program-feature>div {
  transition: opacity .38s ease
}

.program-feature.is-loading>img,
.program-feature.is-loading>div {
  opacity: 0
}

@media(min-width:1101px) {
  .program-grid {
    --program-card-width: min(44vw, 690px);
    display: block !important
  }

  .program-list {
    display: flex !important;
    width: 100%;
    gap: 0
  }

  .program-list > .program-item {
    flex: 1 1 0;
    min-width: 0;
    height: 500px;
    cursor: pointer;
    overflow: hidden;
    transition: flex-basis .55s cubic-bezier(.22, 1, .36, 1), flex-grow .55s cubic-bezier(.22, 1, .36, 1), background-color .3s ease
  }

  .program-list > .program-item.is-active {
    flex: 0 0 var(--program-card-width);
    border-right: 0;
    background: transparent
  }

  .program-list > .program-item > .program-feature {
    display: none
  }

  .program-list > .program-item.is-active > .program-feature {
    display: block;
    width: 100%;
    height: 500px
  }

  .program-list > .program-item.is-active > small,
  .program-list > .program-item.is-active > strong {
    display: none !important
  }

  .program-list > .program-item:hover:not(.is-active) {
    background: rgba(58, 123, 213, .08)
  }

  .program-list > .program-item:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: -3px
  }
}

.value-list li {
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease
}

.value-list li:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px
}

/* Compact desktop: prevent fixed PC columns from overflowing */
@media(min-width:1101px) and (max-width:1440px) {
  .values-inner {
    grid-template-columns: minmax(350px, 400px) minmax(0, 690px);
    gap: clamp(24px, 5vw, 72px)
  }

  .value-card {
    width: 100%;
    min-width: 0
  }

  .value-card-layer>img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }

  .program-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.03fr);
    gap: 20px
  }

  .program-feature,
  .program-list {
    width: 100%;
    min-width: 0
  }

  .program-list>div {
    min-width: 0
  }
}

@media(min-width:921px) and (max-width:1024px) {
  .values-inner {
    grid-template-columns: minmax(340px, 400px) minmax(0, 1fr);
    column-gap: 20px
  }

  .value-card {
    width: 100%;
    min-width: 0;
    margin: 0
  }
}

.archive .more {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-top: 34px
}

.archive .more img {
  width: 120px;
  height: 19px;
  margin-top: -9px
}

/* Directions */
.location .access {
  display: block;
  min-height: 0;
  padding: 150px 0 145px;
  background: var(--blue);
  color: #fff
}

.access-title {
  padding-bottom: 42px
}

.location .access-title h2 {
  margin: 0;
  font-size: 80px;
  line-height: 1.2;
  color: #fff
}

.access-title .eyebrow {
  color: var(--navy)
}

.access-title .eyebrow:after {
  background: var(--navy)
}

.access-map {
  display: block;
  width: 100%;
  height: 350px;
  border: 0
}

.access-details {
  display: grid;
  grid-template-columns: 355px 1fr 1fr;
  grid-template-rows: auto auto;
  padding-top: 0 !important;
  padding-bottom: 0 !important
}

.access-details article {
  display: flex;
  gap: 14px;
  padding: 24px 20px
}

.access-details article>img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1)
}

.access-details h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3
}

.access-details p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55
}

.access-address {
  grid-column: 1;
  grid-row: 1;
  border-bottom: 1px solid rgba(255, 255, 255, .65)
}

.access-phone {
  grid-column: 1;
  grid-row: 2
}

.access-bus,
.access-subway {
  background: var(--cream);
  color: var(--navy)
}

.access-bus {
  grid-column: 2;
  grid-row: 1/3;
  border-right: 1px solid var(--blue)
}

.access-subway {
  grid-column: 3;
  grid-row: 1/3
}

.access-bus>img,
.access-subway>img {
  filter: none !important
}

@media(max-width:1100px) {
  .location .access {
    padding: 95px 40px 100px !important
  }

  .access-title {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 34px
  }

  .location .access-title h2 {
    font-size: 64px
  }

  .access-map {
    height: auto;
    aspect-ratio: 2.75/1;
    object-fit: cover
  }

  .access-details {
    max-width: none !important;
    padding: 0 !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto
  }

  .access-address {
    grid-column: 1;
    grid-row: 1;
    border-right: 1px solid rgba(255, 255, 255, .65);
    border-bottom: 0
  }

  .access-phone {
    grid-column: 2;
    grid-row: 1
  }

  .access-bus {
    grid-column: 1;
    grid-row: 2;
    border-right: 1px solid var(--blue)
  }

  .access-subway {
    grid-column: 2;
    grid-row: 2
  }
}

@media(max-width:640px) {
  .location .access {
    padding: 95px 0 85px !important
  }

  .access-title {
    padding: 0 var(--pad) 28px !important
  }

  .location .access-title h2 {
    font-size: 42px;
    line-height: 1.15
  }

  .access-map {
    aspect-ratio: 1.55/1
  }

  .access-details {
    display: block
  }

  .access-details article {
    padding: 18px 16px
  }

  .access-details h3 {
    font-size: 18px
  }

  .access-details p {
    font-size: 12px
  }

  .access-address {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .65)
  }

  .access-phone {
    border-bottom: 0
  }

  .access-bus {
    border-right: 0;
    border-bottom: 1px solid #8d887d
  }
}

/* Give the embedded map enough vertical room on tablet screens. */
@media (min-width: 641px) and (max-width: 1100px) {
  .location .access {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .access-map {
    height: clamp(300px, 48vw, 420px);
    aspect-ratio: auto;
    object-fit: initial;
  }
}

/* Keep the memorial scene on the right side of the tall mobile introduction. */
@media (max-width: 640px) {
  .about {
    background-attachment: fixed;
    background-position: right bottom;
  }
}

/* Program tablet/mobile layout */
@media(max-width:1100px) {
  .program {
    padding: 110px 0 150px !important;
    border-bottom: 14px solid var(--blue)
  }

  .program .section-head {
    display: flex !important;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px
  }

  .program .section-head h2 {
    font-size: 64px;
    line-height: 1.15
  }

  .program .section-head>p {
    margin: 0 0 6px auto;
    font-size: 14px
  }

  .program-grid {
    display: block !important
  }

  .program-feature {
    width: 100%;
    height: auto !important;
    max-height: 650px;
    aspect-ratio: 2.05 / 1;
    margin-bottom: 0;
    opacity: 1;
    transform: translateY(0);
    transition: max-height .46s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, transform .46s cubic-bezier(.22, 1, .36, 1)
  }

  .program-list {
    width: 100%;
    height: auto !important;
    grid-template-columns: 1fr !important
  }

  .program-list>div {
    position: relative;
    width: 100%;
    height: 82px !important;
    padding: 0 36px 0 24px;
    border-right: 0 !important;
    border-bottom: 2px solid var(--blue) !important;
    display: grid !important;
    grid-template-columns: 72px 1fr;
    grid-template-rows: 82px auto;
    align-items: center;
    gap: 0 !important
  }

  .program-list>div::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 41px;
    width: 14px;
    height: 8px;
    transform: translateY(-50%);
    background: url('img/triangle1.svg') center/contain no-repeat;
    transition: transform .3s ease
  }

  .program-list>div {
    cursor: pointer
  }

  .program-list small {
    font-size: 16px;
    color: var(--blue)
  }

  .program-list small::after {
    display: none
  }

  .program-list strong {
    display: block;
    writing-mode: horizontal-tb;
    font-size: 24px;
    line-height: 1.3
  }

  .program-list > .program-item > .program-feature {
    display: none
  }

  .program-list > .program-item.is-active::after {
    display: none !important
  }

  .program-list > .program-item.is-active > .program-feature {
    display: block;
    width: 100%
  }
}

@media(max-width:640px) {
  .program {
    padding: 70px 0 95px !important;
    border-bottom-width: 8px
  }

  .program .section-head {
    display: block !important;
    margin-bottom: 28px
  }

  .program .section-head h2 {
    font-size: 32px;
    line-height: 1.2
  }

  .program .section-head>p {
    width: 150px;
    margin: 22px 0 0 auto !important;
    font-size: 12px
  }

  .program-feature {
    aspect-ratio: 2 / 1
  }

  .program-feature>div {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important
  }

  .program-feature h3 {
    font-size: 24px !important
  }

  .program-feature p {
    font-size: 11px
  }

  .program-list>div {
    height: 70px !important;
    padding: 0 28px 0 4px;
    grid-template-columns: 58px 1fr;
    grid-template-rows: 70px auto
  }

  .program-list small::after {
    font-size: 13px
  }

  .program-list strong {
    font-size: 28px
  }

  .program-list>div::after {
    right: 4px;
    top: 35px;
    width: 10px;
    height: 6px
  }
}

.program-list {
  height: 500px;
  display: grid;
  grid-template-columns: repeat(7, 1fr)
}

.program-list>div {
  border-right: 2px solid var(--blue);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px
}

.program-list strong {
  writing-mode: vertical-rl;
  font-size: 36px;
  line-height: 1.5
}

/* Desktop program labels are live text rotated with CSS, not raster images. */
@media(min-width:1101px) {
  .program-list > .program-item:not(.is-active) {
    position: relative;
  }

  .program-list > .program-item:not(.is-active) > small {
    position: absolute;
    top: 18px;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .program-list > .program-item:not(.is-active) > strong {
    position: absolute;
    top: 72px;
    left: calc(50% + .75em);
    display: block;
    width: max-content;
    margin: 0;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    font-size: 36px;
    line-height: 1.5;
    transform: rotate(90deg);
    transform-origin: left top;
  }
}

.location {
  background: #fff
}

.access {
  min-height: 1053px;
  padding-top: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr
}

.access h2 {
  font-size: 80px;
  line-height: 1.2;
  margin: 0
}

.access-info {
  padding-top: 110px
}

.access-info>div {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 24px 0;
  border-bottom: 1px solid #ccd2dc
}

.access-info img {
  width: 40px;
  height: 40px
}

.access-info p {
  display: flex;
  justify-content: space-between;
  flex: 1;
  margin: 0
}

.access-info span {
  color: #6b7482
}

.venue {
  padding-top: 140px;
  padding-bottom: 140px
}

.venue-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px
}

.venue-head h3 {
  font-size: 48px;
  margin: 0
}

.venue-head p {
  margin: 0
}

.map {
  width: 100%;
  height: auto
}

.venue-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 60px
}

.venue-list b,
.venue-list span {
  display: block
}

.venue-list b {
  font-size: 20px;
  margin-bottom: 8px
}

.wide-map {
  width: 100%;
  height: 350px;
  object-fit: cover
}

.schedule {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 1000px;
  padding: 140px 0 120px;
  background: linear-gradient(rgba(11, 29, 58, .56), rgba(11, 29, 58, .56)), url('img/shedule_bg.png') center/cover no-repeat;
  background-color: var(--memory);
  color: #fff
}

.schedule .container {
  max-width: none;
  padding-left: max(20px, calc((100vw - 1520px) / 2));
  padding-right: max(20px, calc((100vw - 1520px) / 2))
}

.schedule-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 52px
}

.schedule-head h2 {
  font-size: 80px;
  line-height: 1.2;
  margin: 0
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px
}

.day-tabs button {
  min-width: 0;
  height: 76px;
  padding: 0 20px;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  cursor: pointer
}

.day-tabs button.active {
  background: #fff;
  color: var(--memory)
}

.timetable-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch
}

.timetable {
  display: grid;
  grid-template-columns: 120px repeat(4, minmax(300px, 1fr));
  column-gap: 20px;
  width: 100%;
  min-width: 1400px
}

.timetable>div {
  display: grid;
  grid-template-rows: 61px;
  grid-auto-rows: 57px;
  text-align: center
}

.timetable b {
  font-size: 20px;
  border-bottom: 5px solid var(--blue);
  padding-top: 12px
}

.timetable span {
  padding: 14px 8px;
  border-bottom: 2px solid rgba(58, 123, 213, .7);
  white-space: pre-line
}

.schedule-note {
  margin-top: 30px
}

.archive {
  background: var(--cream);
  padding: 150px 0
}

.archive .section-head {
  margin-bottom: 50px
}

.more {
  display: block;
  font-weight: 700;
  font-size: 24px;
  margin-top: 34px
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 500px 300px;
  gap: 20px
}

.gallery figure {
  margin: 0;
  overflow: hidden
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1)
}

.gallery figure:hover img,
.gallery figure:focus-visible img {
  transform: scale(1.055)
}

.gallery figure:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px
}

.gallery figure:nth-child(4),
.gallery figure:nth-child(5) {
  grid-column: span 1
}

.gallery figure:nth-child(4) {
  grid-column: 1/2
}

.gallery figure:nth-child(5) {
  grid-column: 2/4
}

.news {
  min-height: 755px;
  padding: 150px 0;
  background-image: url('img/news.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed
}

.news-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 120px
}

.news .eyebrow {
  white-space: nowrap
}

.news-list {
  border-top: 2px solid var(--navy);
  margin-top: 17px;
}

.news-list>a:not(.more) {
  height: 70px;
  border-bottom: 1px solid rgba(11, 29, 58, .3);
  display: grid;
  grid-template-columns: 180px 1fr 20px;
  align-items: center;
  padding: 0 30px
}

.news-list time {
  color: var(--blue)
}

.news-list>a:not(.more) img {
  width: 14px;
  transition: transform .2s ease
}

.news-list>a:not(.more)[aria-expanded="true"] img {
  transform: rotate(-90deg);
}

.news-detail {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px 0 210px;
  border-bottom: 1px solid rgba(11, 29, 58, .3);
  background: rgba(255, 255, 255, .48);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
  opacity: 0;
  visibility: hidden;
  transition: max-height .35s ease, padding .35s ease, opacity .25s ease, visibility 0s linear .35s
}

.news-detail.open {
  max-height: 180px;
  padding-top: 24px;
  padding-bottom: 28px;
  opacity: 1;
  visibility: visible;
  transition: max-height .35s ease, padding .35s ease, opacity .25s ease, visibility 0s
}

.news-list .more {
  display: flex;
  width: 120px;
  margin: 34px 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1
}

.news-list .more img {
  display: block;
  width: 120px;
  height: 19px;
  margin-top: -9px
}

footer {
  background: var(--navy);
  color: #fff;
  border-top: 5px solid var(--blue);
  padding: 52px 0 58px
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 64px
}

.footer-brand {
  display: block;
  width: 284px !important;
  max-width: 284px !important
}

.footer-brand-link {
  display: block;
  flex: 0 1 auto
}

.footer-info p,
.footer-info address {
  font-style: normal;
  margin: 7px 0;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  line-height: 1.5
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-bottom: 22px
}

.footer-logos img {
  width: auto;
  max-width: 181px;
  height: 40px
}

.footer-side {
  min-width: 280px;
  text-align: right
}

.footer-side>strong {
  display: block;
  margin-bottom: 24px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.02em
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .65);
  font-size: 11px
}

.footer-social span {
  margin-right: 4px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, .65);
  font-size: 24px;
  font-weight: 700;
  transition: color .2s ease
}

.footer-social img {
  display: block;
  width: 24px;
  height: 24px
}

.footer-social .social-icons {
  justify-content: flex-end;
}

.footer-top {
  display: inline-block;
  margin-top: 22px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  letter-spacing: .04em
}

@media(max-width:1100px) {
  .values-title-panel {
    padding-top: 100px
  }

  .values-content-panel {
    padding-bottom: 100px
  }

  .news-inner {
    display: block
  }

  .news-list {
    width: 100%;
    margin-top: 60px
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 40px
  }

  .footer-logos {
    gap: 24px;
    flex-wrap: wrap
  }
}

@media(max-width:1100px) {
  .site-header {
    height: 55px;
    overflow: visible;
    isolation: isolate;
    background: var(--header-gradient) !important;
    transition: box-shadow .3s ease
  }

  .site-header.scrolled:not(.open) {
    background: #0b1d3a !important;
    box-shadow: 0 5px 18px rgba(6, 19, 41, .22) !important
  }

  .site-header::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 55px;
    right: 0;
    left: 0;
    height: calc(100vh - 55px);
    height: calc(100dvh - 55px);
    background: #061329;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1)
  }

  .site-header.open {
    height: 55px;
    padding-top: 0;
    align-items: center;
    background: #061329 !important
  }

  .site-header.open::before {
    transform: translateY(0)
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 177px;
    margin: 0
  }

  .gnb {
    display: flex;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    transform: translateY(-14px);
    flex-direction: column;
    align-items: center;
    gap: 42px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, transform .36s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .36s
  }

  .menu-toggle {
    display: flex;
    position: relative;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer
  }

  .menu-toggle span {
    position: absolute;
    left: 4px;
    width: 22px;
    height: 2px;
    background: #fff;
    transform-origin: center;
    transition: top .32s cubic-bezier(.4, 0, .2, 1), left .32s cubic-bezier(.4, 0, .2, 1), width .32s cubic-bezier(.4, 0, .2, 1), transform .32s cubic-bezier(.4, 0, .2, 1), opacity .2s ease
  }

  .menu-toggle span:nth-child(1) {
    top: 8px
  }

  .menu-toggle span:nth-child(2) {
    top: 14px
  }

  .menu-toggle span:nth-child(3) {
    top: 20px
  }

  .language {
    font-size: 0;
    margin-right: 10px
  }

  .language img {
    width: 30px;
    height: 30px
  }

  .site-header.open .gnb {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: .1s, .06s, 0s
  }

  .site-header.open .mobile-social {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 45px;
    text-align: center
  }

  .site-header.open .mobile-social span {
    display: block;
    margin-bottom: 18px
  }

  .site-header.open .menu-toggle span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg)
  }

  .site-header.open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
  }

  .site-header.open .menu-toggle span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg)
  }

  .hero-copy {
    padding-top: 170px
  }

  .hero h1 {
    font-size: 82px
  }

  .about-intro {
    padding-top: 0px;
    min-height: 800px
  }

  .about h2,
  .section-head h2,
  .access h2,
  .schedule-head h2,
  .news h2 {
    font-size: 56px
  }

  .values-inner {
    grid-template-columns: 1fr 1.25fr
  }

  .program-grid {
    grid-template-columns: 1fr
  }

  .program-list {
    height: 300px
  }

  .program-list strong {
    font-size: 25px
  }

  .access {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 110px
  }

  .venue {
    padding-top: 110px
  }

  .schedule {
    padding-top: 140px
  }

  .schedule .container {
    padding-left: 40px;
    padding-right: 40px
  }

  .day-tabs button {
    height: auto;
    min-height: 82px;
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    font-size: 20px;
    line-height: 1.35
  }

  .news-inner {
    grid-template-columns: 300px 1fr;
    gap: 50px
  }
}

@media(min-width:641px) and (max-width:1100px) {
  .value-list {
    width: min(400px, 100%)
  }

  .value-list li,
  .value-list li.active {
    width: 100%;
    height: auto;
    padding: 10px;
    font-size: 32px;
    line-height: 1.2
  }

  .site-header::before {
    height: 57px;
    transform: scaleY(0);
    transform-origin: top;
    transition-duration: .28s
  }

  .site-header.open::before {
    transform: scaleY(1)
  }

  .site-header .gnb {
    top: 68px;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    transform: translateY(-10px)
  }

  .site-header.open .gnb {
    transform: translateY(0)
  }

  .site-header.open .mobile-social {
    display: none;
  }

  .language {
    font-size: 14px
  }

  .site-header.open .menu-toggle span {
    top: 14px;
    width: 16px
  }

  .site-header.open .menu-toggle span:nth-child(1) {
    left: 2px;
    transform: rotate(-45deg)
  }

  .site-header.open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
  }

  .site-header.open .menu-toggle span:nth-child(3) {
    left: 13px;
    transform: rotate(45deg)
  }
}

/* Values accordion: the two-column layout stays intact through 921px. */
@media(max-width:920px) {
  .values-inner {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: none !important;
    padding-right: 10px;
    padding-left: 10px
  }

  .values-copy,
  .value-list {
    display: contents
  }

  .values-copy>p {
    order: 1
  }

  .values-copy>p br {
    display: none
  }

  .value-list li {
    width: 100%
  }

  .value-list li:nth-child(1) {
    order: 2
  }

  .value-list li:nth-child(2) {
    order: 4
  }

  .value-list li:nth-child(3) {
    order: 6
  }

  .value-list li:nth-child(4) {
    order: 8
  }

  .value-list li:nth-child(5) {
    order: 10
  }

  .value-card {
    order: var(--mobile-order, 3);
    width: 100%;
    height: clamp(360px, 52vw, 480px);
    max-height: clamp(360px, 52vw, 480px);
    margin: 0 !important;
    border-width: 1px;
    border-radius: 0;
    opacity: 1;
    transform-origin: top;
    will-change: max-height, opacity;
    transition: max-height .32s cubic-bezier(.4, 0, .2, 1), opacity .2s ease, border-width .1s linear
  }

  .value-card.is-accordion-collapsed {
    max-height: 0;
    border-width: 0;
    opacity: 0
  }

  .value-card-content {
    padding: 14px 10px;
    border-radius: 0
  }
}

@media(max-width:640px) {
  .site-header .mobile-social {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 45px;
    text-align: center;
    opacity: 0;
    visibility: visible;
    transform: translateY(-100dvh);
    pointer-events: none;
    transition: opacity .1s ease, transform .38s cubic-bezier(.4, 0, .2, 1) .1s
  }

  .site-header.open .mobile-social {
    position: fixed;
    right: 0;
    bottom: 45px;
    left: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .1s ease .1s, transform .38s cubic-bezier(.4, 0, .2, 1)
  }

  /* Keep the full menu panel visible while it slides upward on close. */
  .site-header::before {
    visibility: hidden;
    opacity: 0;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1), opacity 0s linear .38s, visibility 0s linear .38s
  }

  .site-header.open::before {
    visibility: visible;
    opacity: 1;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1), opacity .2s ease, visibility 0s linear 0s
  }

  :root {
    --pad: 8px
  }

  .hero {
    background-position: 62% center
  }

  .hero-copy {
    padding-top: 148px
  }

  .hero h1 {
    font-size: 58px;
    letter-spacing: -.045em;
    margin-top: 12px
  }

  .hero-info {
    font-size: 14px;
  }

  .pill-link {
    font-size: 16px;
    width: 165px
  }

  .about-intro {
    display: block;
    padding-top: 0px;
    min-height: 598px;
  }

  .eyebrow {
    font-size: 18px
  }

  .eyebrow:after {
    flex: 1;
    width: auto
  }

  .about h2,
  .section-head h2,
  .access h2,
  .schedule-head h2,
  .news h2 {
    font-size: 42px
  }

  .about-copy {
    padding-top: 70px;
    padding-bottom: 60px
  }

  .values-content-panel {
    padding-bottom: 150px
  }

  .values-inner {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    padding-left: 10px
  }

  .values-title-panel h1 {
    font-size: 36px
  }

  .values-copy,
  .value-list {
    display: contents
  }

  .values-copy>p {
    order: 1
  }

  .values-copy>p br {
    display: none
  }

  .value-list li {
    width: 100%;
    height: 64px;
    font-size: 24px
  }

  .value-list li:nth-child(1) {
    order: 2
  }

  .value-list li:nth-child(2) {
    order: 4
  }

  .value-list li:nth-child(3) {
    order: 6
  }

  .value-list li:nth-child(4) {
    order: 8
  }

  .value-list li:nth-child(5) {
    order: 10
  }

  .value-list li.active {
    height: 64px
  }

  .value-card {
    order: var(--mobile-order, 3);
    width: 100%;
    height: 360px;
    max-height: 360px;
    margin: 0 !important;
    border-width: 1px;
    border-radius: 0;
    opacity: 1;
    transform-origin: top;
    will-change: max-height, opacity;
    transition: max-height .32s cubic-bezier(.4, 0, .2, 1), opacity .2s ease, border-width .1s linear
  }

  .value-card.is-accordion-collapsed {
    max-height: 0;
    border-width: 0;
    opacity: 0
  }

  .value-card-content {
    padding: 14px 10px;
    border-radius: 0
  }

  .program,
  .archive,
  .news {
    padding: 100px 0
  }

  .section-head,
  .schedule-head {
    display: block
  }

  .section-head>p,
  .section-head>div:last-child,
  .schedule-head>p {
    margin-top: 45px
  }

  .program-feature {
    height: 430px
  }

  .program-feature>div {
    left: 25px;
    right: 25px;
    bottom: 25px
  }

  .program-feature h3 {
    font-size: 30px
  }

  .program-list {
    height: auto;
    grid-template-columns: repeat(2, 1fr)
  }

  .program-list>div {
    height: 220px;
    border-bottom: 1px solid var(--blue)
  }

  .program-list strong {
    font-size: 24px
  }

  .access {
    display: block;
    padding-top: 100px
  }

  .access-info {
    padding-top: 60px
  }

  .access-info p {
    display: block
  }

  .access-info span {
    display: block;
    margin-top: 4px
  }

  .venue {
    padding-top: 100px;
    padding-bottom: 100px
  }

  .venue-head {
    display: block
  }

  .venue-head h3 {
    font-size: 36px
  }

  .venue-head p {
    margin-top: 20px
  }

  .map {
    height: 320px;
    object-fit: cover
  }

  .venue-list {
    grid-template-columns: 1fr
  }

  .wide-map {
    height: 240px
  }

  .schedule {
    min-height: auto;
    padding: 100px 0;
    background-position: center
  }

  .schedule-head p br {
    display: none
  }

  .schedule .container {
    padding-left: 10px;
    padding-right: 10px
  }

  .day-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px
  }

  .day-tabs button {
    height: auto;
    min-height: 104px;
    padding: 12px 8px;
    font-size: 18px
  }

  .schedule-note {
    font-size: 13px
  }

  .gallery {
    display: block
  }

  .gallery figure {
    height: 300px;
    margin-bottom: 20px
  }

  .news-inner {
    display: block
  }

  .news-list {
    margin-top: 60px
  }

  .news-list>a:not(.more) {
    height: 76px;
    padding: 0 4px;
    grid-template-columns: 104px 1fr 16px;
    font-size: 14px
  }

  .news-detail {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px
  }

  .news-detail.open {
    padding-top: 20px;
    padding-bottom: 20px
  }

  .footer-inner {
    display: block
  }

  .footer-inner>div {
    margin-bottom: 34px
  }

  .footer-logos {
    flex-wrap: wrap
  }

  .footer-inner>a {
    right: 16px
  }

  .footer-inner strong {
    font-size: 28px
  }

  .footer-side {
    min-width: 0;
    text-align: left
  }

  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap
  }

  .footer-logos {
    gap: 24px
  }

  .footer-logos img {
    max-width: calc(50% - 12px);
    height: auto;
    max-height: 40px
  }
}

/* Shared mobile accordion treatment for program cards. The selected title
   remains visible while its detail card unfolds underneath, matching Values. */
@media(max-width:1100px) {
  .program-list > .program-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: 82px auto;
    align-items: center;
    height: auto;
    min-height: 82px;
    padding: 0 36px 0 24px;
    overflow: hidden;
  }

  .program-list > .program-item > .program-feature {
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
    width: calc(100% + 60px);
    min-width: calc(100% + 60px);
    max-height: 0;
    margin: 0 -36px 0 -24px;
    opacity: 0;
    aspect-ratio: 2.05 / 1;
    height: auto;
    overflow: hidden;
    transition: max-height .46s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
  }

  .program-list > .program-item.is-active {
    display: grid;
    grid-template-rows: 82px auto;
    height: auto !important;
    min-height: 0;
    border-bottom: 0;
    padding: 0 36px 0 24px;
    transition: grid-template-rows .46s cubic-bezier(.22, 1, .36, 1);
  }

  .program-list > .program-item > small,
  .program-list > .program-item > strong {
    display: block;
    max-height: 82px;
    opacity: 1;
    overflow: hidden;
    min-width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: max-height .32s ease, opacity .24s ease;
  }

  .program-list > .program-item.is-active > small,
  .program-list > .program-item.is-active > strong {
    max-height: 82px;
    opacity: 1;
  }

  .program-list > .program-item.is-active.is-detail-open {
    grid-template-rows: 0 auto;
  }

  .program-list > .program-item.is-active.is-detail-open > small,
  .program-list > .program-item.is-active.is-detail-open > strong {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  .program-list > .program-item.is-active > .program-feature {
    width: calc(100% + 60px);
    min-width: calc(100% + 60px);
    height: 500px;
    max-height: 500px;
    margin: 0 -36px 0 -24px;
    aspect-ratio: auto;
    opacity: 1;
  }

  .program-list > .program-item.is-active::after {
    display: none;
  }

  .program-list small {
    display: block;
    font-size: 24px;
    line-height: 1.5;
    color: var(--blue);
    font-weight: 400;
  }

  .program-list small::after {
    display: none;
  }

  .program-list > .program-item.is-active > .program-feature > div {
    left: 50px;
    right: 50px;
    bottom: 50px;
  }

  .program-feature.is-accordion-collapsed {
    max-height: 0 !important;
    opacity: 0 !important;
  }
}

@media(max-width:640px) {
  .program-list > .program-item {
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: 70px auto;
    min-height: 70px;
    padding: 0 28px 0 4px;
  }

  .program-list > .program-item > .program-feature {
    width: calc(100% + 32px);
    min-width: calc(100% + 32px);
    margin-right: -28px;
    margin-left: -4px;
    aspect-ratio: 2 / 1;
  }

  .program-list > .program-item.is-active {
    display: grid;
    grid-template-rows: 70px auto;
    height: auto !important;
    min-height: 0;
    padding: 0 28px 0 4px;
  }

  .program-list > .program-item > small,
  .program-list > .program-item > strong {
    max-height: 70px;
  }

  .program-list > .program-item.is-active.is-detail-open {
    grid-template-rows: 0 auto;
  }

  .program-list > .program-item.is-active > .program-feature {
    width: calc(100% + 32px);
    min-width: calc(100% + 32px);
    height: 400px;
    max-height: 400px;
    margin: 0 -28px 0 -4px;
  }

  .program-list > .program-item.is-active > .program-feature > div {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .program-list small {
    font-size: 24px;
  }

  .program-list strong {
    font-size: 28px;
  }
}

/* Keep both parking choices on one line beneath the label on narrow screens. */
@media(max-width:640px) {
  .parking-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .parking-list > strong {
    grid-column: 1 / -1;
    padding: 14px 4px 10px;
    white-space: nowrap;
  }

  .parking-list > span {
    min-width: 0;
    padding: 12px 4px;
    gap: 4px;
    font-size: 14px;
  }

  .parking-list > span + span {
    border-left: 0;
  }

  .parking-list .parking-badge {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 20px;
  }
}

/* Header and hero type scale */
.site-header .gnb a,
.site-header .language {
  font-size: 20px;
  line-height: 1.5;
}

.hero h2 {
  font-size: 36px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  word-break: keep-all;
}

.hero h1 + h2 {
  margin-bottom: 34px;
}

.hero h1 .main_title {
  display: inline-block;
  font-size: 128px;
  line-height: 1;
}

.hero h1 .title {
  display: inline-block;
  font-size: 80px;
  line-height: 1.2;
}

.hero-info {
  font-size: 16px;
  line-height: 1.5;
}

.pill-link {
  font-size: 20px;
  line-height: 1.5;
}

.hero-info {
  word-break: keep-all;
}

@media(max-width:1100px) {
  .hero h1 .main_title {
    font-size: 80px;
  }

  .hero h2 {
    font-size: 32px;
  }
}

@media(max-width:640px) {
  .site-header .language {
    font-size: 0;
  }

  .hero h1 .main_title {
    font-size: 64px;
  }

  .hero h2 {
    font-size: 28px;
  }
}

/* Festival introduction and values typography/layout tokens. */
.about-intro > div:first-child h1 {
  margin: 0;
  font-weight: 700;
}

.about-intro > div:first-child h1 .title {
  display: inline-block;
  font-size: 80px;
  line-height: 1.2;
}

.about-intro > div:first-child .eyebrow {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
}

.about-copy p,
.values-copy > p,
.value-card p {
  font-size: 16px;
  line-height: 1.5;
}

.about-copy p {
  margin: 0 0 20px;
}

.values-title-panel {
  padding: 150px 0 30px;
  background: rgba(11, 29, 58, .7);
}

.values-title-panel h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.2;
}

.values-content-panel {
  padding: 50px 0 250px;
  background: rgba(6, 19, 41, .8);
}

.value-list h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
}

.value-card h3 {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

@media(max-width:1100px) {
  .about-intro {
    padding-top: 0;
  }

  .about-intro > div:first-child {
    display: flex;
    flex-direction: column;
    height: 500px;
    min-height: 500px;
    margin: 0 calc(var(--pad) * -1);
    padding: 0 40px 40px;
    justify-content: flex-end;
  }

  .about-intro > div:first-child h1 .title {
    font-size: 48px;
    line-height: 1.2;
  }

  .about-copy {
    min-height: 0;
    padding: 50px 40px 40px;
  }

  .values-title-panel {
    padding: 100px 0 30px;
  }

  .values-content-panel {
    padding: 50px 0 100px;
  }

  .value-list h2 {
    font-size: 32px;
  }
}

@media(max-width:640px) {
  .about-intro > div:first-child {
    height: 500px;
    min-height: 500px;
    margin: 0 calc(var(--pad) * -1);
    padding: 0 10px 20px;
  }

  .about-intro > div:first-child h1 .title {
    font-size: 40px;
    line-height: 1.2;
  }

  .about-copy {
    padding: 40px 10px 30px;
  }

  .values-title-panel {
    padding: 100px 0 20px;
  }

  .values-title-panel h1 {
    font-size: 40px;
  }

  .values-content-panel {
    padding: 30px 0 150px;
  }

  .value-list h2 {
    font-size: 28px;
  }
}

/* About copy and value-card spacing from the introduction reference. */
.about-copy {
  padding-top: 50px;
  padding-bottom: 100px;
}

@media(min-width:1101px) {
  .about-intro > .about-copy {
    padding: 50px 70px 100px max(20px, calc((100vw - 1400px) / 2));
  }
}

.value-card-content p {
  margin-top: 10px;
}

@media(max-width:1100px) {
  .about-copy {
    padding: 50px 40px 100px;
  }
}

@media(max-width:640px) {
  .about-copy {
    padding: 50px 10px 200px;
  }

  .value-card-content {
    padding: 10px;
  }

  .value-card-content p {
    margin-top: 0;
  }
}

/* All h3 headings in the festival introduction use regular weight. */
.about h3 {
  font-weight: 400;
}

.eyebrow {
  font-weight: 400;
  line-height: 1.5;
}

/* Tablet and mobile panels use the lighter 30% fills from the reference. */
@media(max-width:1100px) {
  .about-intro > div:first-child {
    background: rgba(58, 123, 213, .7);
  }

  .about-copy {
    background: rgba(244, 240, 232, .7);
  }

  .values-title-panel > .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media(max-width:640px) {
  .values-title-panel > .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Shared responsive grid gutters: PC 1400px / tablet 40px / mobile 8px. */
@media(min-width:641px) and (max-width:1100px) {
  :root {
    --pad: 40px;
  }
}

@media(min-width:1101px) {
  .schedule .container {
    max-width: 1440px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media(max-width:1100px) {
  .location .access {
    padding-left: 0;
    padding-right: 0;
  }

  .schedule .container {
    padding-left: 0;
    padding-right: 0;
  }

  .values-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media(max-width:640px) {
  .about-intro > div:first-child {
    padding-left: 8px;
    padding-right: 8px;
  }

  .about-copy {
    padding-left: 8px;
    padding-right: 8px;
  }

  .values-title-panel > .container {
    padding-left: 0;
    padding-right: 0;
  }

  .access-title {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Shared type scale for the remaining sections. */
.section-head h1,
.access-title h1,
.schedule-head h1,
.news h1,
.venue-head h1 {
  margin: 0;
}

.section-head h1 .title,
.access-title h1 .title,
.schedule-head h1 .title,
.news h1 .title {
  display: inline-block;
  font-size: 80px;
  line-height: 1.2;
}

.venue-head h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
}

.program-feature h3,
.venue-list h3 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
}

.access-details h3 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.section-head > p,
.program-feature p,
.access-details p,
.venue-head p,
.venue-list p,
.schedule-head > p,
.schedule-note,
.archive .section-head > div:last-child > p,
.news p {
  font-size: 16px;
  line-height: 1.5;
}

@media(max-width:1100px) {
  .section-head h1 .title,
  .access-title h1 .title,
  .schedule-head h1 .title,
  .news h1 .title {
    font-size: 64px;
    line-height: 1.2;
  }
}

@media(max-width:640px) {
  .venue-head h1 {
    font-size: 40px;
    line-height: 1.2;
  }
}

@media(max-width:640px) {
  .section-head h1 .title,
  .access-title h1 .title,
  .schedule-head h1 .title,
  .news h1 .title {
    font-size: 40px;
    line-height: 1.2;
  }
}

/* Venue guide markers use the site font and center their labels precisely. */
.venue-list h3 {
  font-weight: 700;
}

.venue-list h3 > div {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 1;
  font-family: inherit;
}

.map-marker,
.parking-marker {
  display: grid;
  place-items: center;
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.map-marker {
  font-size: clamp(16px, 2.35vw, 25px);
}

.parking-marker {
  font-size: clamp(14px, 1.8vw, 20px);
}

.parking-marker sub {
  font-size: 60%;
  line-height: 1;
  vertical-align: baseline;
  position: absolute;
  left: 56%;
  top: 48%;
}

/* On tablet widths, section descriptions sit on a new line and align right. */
@media (min-width: 641px) and (max-width: 1100px) {
  .program .section-head,
  .venue-head,
  .schedule-head,
  .archive .section-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .program .section-head {
    display: grid;
  }

  .program .section-head > p,
  .venue-head > p,
  .schedule-head > p,
  .archive .section-head > div:last-child {
    justify-self: end;
    margin: 0;
    text-align: left;
  }
}

.parking-marker > span {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}

/* Keep the parking legend badges consistent with the map markers. */
.parking-list .parking-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 0;
  color: #fff;
  background: var(--memory);
  border-radius: 50%;
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.parking-list .parking-badge sub {
  line-height: 1;
  vertical-align: baseline;
  position: absolute;
  left: 56%;
  top: 48%;
}

/* Stack each parking badge as a clear P-over-subscript lockup. */
.parking-marker > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.parking-marker {
  padding: 0;
}

.parking-list .parking-badge {
  flex-direction: column;
}

.parking-marker sub,
.parking-list .parking-badge sub {
  position: static;
  top: auto;
  left: auto;
  transform: translate(2px, 4px);
  vertical-align: baseline;
}

/* Keep P and its subscript on one inline row while lowering only the digit. */
.parking-marker > span {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.parking-marker > span b,
.parking-list .parking-badge b {
  font: inherit;
  line-height: 1;
}

.parking-list .parking-badge {
  flex-direction: row;
}

/* Extend only the header's tablet behavior to 1200px. */
@media (min-width: 1101px) and (max-width: 1200px) {
  .site-header {
    height: 55px;
    overflow: visible;
    isolation: isolate;
    background: var(--header-gradient);
    transition: box-shadow .3s ease;
  }

  .site-header.scrolled:not(.open) {
    background: #0b1d3a;
    box-shadow: 0 5px 18px rgba(6, 19, 41, .22);
  }

  .site-header::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 55px;
    right: 0;
    left: 0;
    height: calc(100dvh - 55px);
    background: #061329;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  }

  .site-header.open {
    height: 55px;
    padding-top: 0;
    align-items: center;
    background: #061329;
  }

  .site-header.open::before {
    transform: translateY(0);
  }

  .site-header .brand {
    position: absolute;
    left: 50%;
    width: 177px;
    margin: 0;
    transform: translateX(-50%);
  }

  .site-header .gnb {
    display: flex;
    position: absolute;
    top: 120px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    gap: 42px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .24s ease, transform .36s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .36s;
  }

  .site-header.open .gnb {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: .1s, .06s, 0s;
  }

  .site-header .menu-toggle {
    display: flex;
    position: relative;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
  }

  .site-header .menu-toggle span {
    position: absolute;
    left: 4px;
    width: 22px;
    height: 2px;
    background: #fff;
    transform-origin: center;
    transition: top .32s cubic-bezier(.4, 0, .2, 1), left .32s cubic-bezier(.4, 0, .2, 1), width .32s cubic-bezier(.4, 0, .2, 1), transform .32s cubic-bezier(.4, 0, .2, 1), opacity .2s ease;
  }

  .site-header .menu-toggle span:nth-child(1) { top: 8px; }
  .site-header .menu-toggle span:nth-child(2) { top: 14px; }
  .site-header .menu-toggle span:nth-child(3) { top: 20px; }

  .site-header .language {
    margin-right: 10px;
    font-size: 14px;
  }

  .site-header .language img {
    width: 30px;
    height: 30px;
  }

  .site-header::before {
    height: 57px;
    transform: scaleY(0);
    transform-origin: top;
    transition-duration: .28s;
  }

  .site-header.open::before {
    transform: scaleY(1);
  }

  .site-header .gnb {
    top: 68px;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    transform: translateY(-10px);
  }

  .site-header.open .gnb {
    transform: translateY(0);
  }

  .site-header .language {
    font-size: 14px;
  }

  .site-header.open .menu-toggle span {
    top: 14px;
    width: 16px;
  }

  .site-header.open .menu-toggle span:nth-child(1) {
    left: 2px;
    transform: rotate(-45deg);
  }

  .site-header.open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .site-header.open .menu-toggle span:nth-child(3) {
    left: 13px;
    transform: rotate(45deg);
  }
}

/* Tighten the date-to-content gutter in the news list on PC and tablet. */
@media (min-width: 641px) {
  .news-list > a:not(.more) {
    grid-template-columns: 150px 1fr 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-detail {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* News switches to the tablet flow at the header's 1200px cutoff. */
@media (min-width: 1101px) and (max-width: 1200px) {
  .news-inner {
    display: block;
  }

  .news-list {
    width: 100%;
    margin-top: 60px;
  }
}

/* Match the parking legend badges to the map's P1/P2 markers. */
.parking-list .parking-badge {
  position: relative;
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  border: 2px solid #fff;
  font-size: 20px;
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 640px) {
  .parking-list .parking-badge {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 20px;
  }
}

/* Value descriptions use a bold card title. */
.value-card-content h3 {
  font-weight: 700;
}

/* Program accordion detail hierarchy: category h3, title h2, description p. */
.program-feature h3 {
  margin: 0;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
}

.program-feature h2 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
}

.program-feature p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .program-feature h3 {
    font-size: 14px;
    line-height: 1.5;
  }

  .program-feature h2 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.5;
  }
}

/* Section titles keep the .title scale through tablet widths. On mobile,
   the heading uses the regular h1 scale instead. */
.section-head h1 .title,
.access-title h1 .title,
.schedule-head h1 .title,
.news h1 .title {
  font-size: 80px;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .section-head h1,
  .access-title h1,
  .schedule-head h1,
  .news h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .section-head h1 .title,
  .access-title h1 .title,
  .schedule-head h1 .title,
  .news h1 .title {
    display: inline;
    font-size: inherit;
    line-height: inherit;
  }
}

/* Keep live program labels horizontal in the tablet/mobile accordion. */
@media (max-width: 1100px) {
  .program-list strong {
    display: block;
    writing-mode: horizontal-tb;
    font-size: 32px;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  .program-list strong {
    font-size: 28px;
    line-height: 1.5;
  }
}

@media (max-width: 1100px) {
  .program-list > .program-item.is-active:has(> .program-feature:not(.is-accordion-collapsed)) {
    grid-template-rows: 0 auto;
  }

  .program-list > .program-item.is-active:has(> .program-feature:not(.is-accordion-collapsed)) > small,
  .program-list > .program-item.is-active:has(> .program-feature:not(.is-accordion-collapsed)) > strong {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .program-list > .program-item.is-active.is-detail-open > small,
  .program-list > .program-item.is-active.is-detail-open > strong {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
