:root {
  --ink: #161411;
  --paper: #fbf7ef;
  --muted: #756b5e;
  --line: rgba(22, 20, 17, 0.14);
  --gold: #caa65b;
  --sage: #6f8d72;
  --brick: #9a5a45;
  --aqua: #2f9aaa;
  --violet: #7462d0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.responsive-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #080705;
  color: #fffaf2;
}

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 54px);
  color: #fffaf2;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-nav {
  display: flex;
  gap: clamp(10px, 2vw, 28px);
  font-size: 13px;
  text-transform: uppercase;
}

.landing-nav a {
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.landing-nav a:hover {
  opacity: 1;
}

.landing-shell {
  min-height: 100vh;
  position: relative;
}

.intro {
  position: fixed;
  z-index: 8;
  left: clamp(18px, 4vw, 54px);
  top: clamp(112px, 14vh, 154px);
  bottom: auto;
  max-width: min(600px, calc(100vw - 36px));
  pointer-events: none;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.intro p {
  margin: 0 0 8px;
  font-size: clamp(12px, 1.5vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(255, 250, 242, 0.74);
}

.intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(32px, 6vw, 78px);
  line-height: 1.08;
  word-break: keep-all;
}

.intro h1 span {
  display: block;
}

.venue-panels {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: #080705;
}

.venue-panel {
  position: relative;
  flex: 1 1 20%;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(18px);
  animation: panelIn 760ms cubic-bezier(0.2, 0.75, 0.18, 1) forwards;
  animation-delay: var(--delay);
  transition: flex 520ms cubic-bezier(0.2, 0.75, 0.18, 1), filter 360ms ease;
}

.venue-panels:hover .venue-panel {
  flex: 0.78 1 15%;
  filter: saturate(0.72) brightness(0.62);
}

.venue-panels:hover .venue-panel:hover,
.venue-panel:focus-visible {
  flex: 2.05 1 42%;
  filter: saturate(1.08) brightness(1);
}

.venue-panel img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.venue-panel:hover img,
.venue-panel:focus-visible img {
  transform: scale(1.12);
}

.panel-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 42%, rgba(0, 0, 0, 0.3));
}

.panel-copy {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 3vw, 42px);
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(112px, 12vw, 168px);
  display: grid;
  gap: 10px;
  color: #fffaf2;
  transform: translateY(28px);
  transition: transform 420ms ease;
  overflow-wrap: anywhere;
}

.panel-copy .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.68;
}

.panel-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 54px);
  font-weight: 500;
  line-height: 1.02;
  max-width: 100%;
}

.panel-copy span:not(.eyebrow) {
  max-width: 280px;
  color: rgba(255, 250, 242, 0.8);
  font-size: 15px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.panel-copy em {
  width: fit-content;
  margin-top: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 250, 242, 0.48);
  border-radius: 999px;
  color: #fffaf2;
  font-size: 13px;
  font-style: normal;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease, background 180ms ease;
}

.venue-panel:hover .panel-copy,
.venue-panel:focus-visible .panel-copy {
  transform: translateY(0);
}

.venue-panel:hover .panel-copy span:not(.eyebrow),
.venue-panel:hover .panel-copy em,
.venue-panel:focus-visible .panel-copy span:not(.eyebrow),
.venue-panel:focus-visible .panel-copy em {
  opacity: 1;
  transform: translateY(0);
}

.panel-copy em:hover {
  background: rgba(255, 250, 242, 0.12);
}

.is-leaving .venue-panel:not(.is-selected) {
  opacity: 0;
  transform: scale(0.98);
}

.is-leaving .venue-panel.is-selected {
  flex: 1 1 100%;
  filter: brightness(1);
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: inherit;
}

.detail-menu {
  position: fixed;
  top: 76px;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  z-index: 19;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px;
  border: 1px solid rgba(128, 118, 101, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.66);
  color: inherit;
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.detail-menu::-webkit-scrollbar {
  display: none;
}

.detail-menu a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.76;
  transition: background 180ms ease, opacity 180ms ease;
}

.detail-menu a:hover,
.detail-menu a:focus-visible,
.detail-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.58);
  opacity: 1;
}

.back-link {
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.76;
}

.detail-page {
  min-height: 100vh;
}

.detail-page h1,
.detail-page h2,
.detail-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0;
}

.detail-page p {
  margin: 0;
  line-height: 1.7;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
}

.detail-content {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 70px) clamp(56px, 8vw, 96px);
}

.info-page-main {
  min-height: 100vh;
  padding-top: 136px;
}

.info-page-main .detail-content {
  min-height: calc(100vh - 136px);
  align-content: center;
}

.single-info {
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  align-items: start;
}

.single-info .info-card {
  min-height: auto;
}

.single-info .map-card {
  grid-row: auto;
}

.single-info.map-page-layout {
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 0.72fr);
}

.map-page-layout .map-card {
  padding: clamp(14px, 2vw, 24px);
}

.single-info .section-image {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.single-info .section-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.detail-content [id],
#overview {
  scroll-margin-top: 136px;
}

.info-block {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.info-block h2,
.info-card h2 {
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.08;
  word-break: keep-all;
}

.info-block p {
  max-width: 760px;
  color: color-mix(in srgb, currentColor 72%, transparent);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, currentColor 5%, transparent);
}

.info-card p,
.detail-list {
  color: color-mix(in srgb, currentColor 72%, transparent);
}



















.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.info-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent);
}

.info-list dt {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.6;
}

.info-list dd {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

.map-card {
  grid-row: span 2;
}

.map-preview {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(22, 20, 17, 0.18), rgba(22, 20, 17, 0.78)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 42px),
    #6f8d72;
}

.map-preview span {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.72;
}

.map-preview strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 500;
}

.map-preview.map-image {
  min-height: 0;
  aspect-ratio: 4 / 3;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #f5efe5;
}

.map-page-layout .map-preview.map-image {
  aspect-ratio: 8 / 5;
}

.map-image-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.map-preview.map-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}
.photo-page {
  align-content: start;
}

.photo-intro {
  max-width: 760px;
}

.photo-intro h1 {
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  background: color-mix(in srgb, currentColor 5%, transparent);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.68));
}

.photo-card-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #fffaf2;
}

.photo-card-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 500;
}

.photo-card-copy span {
  max-width: 520px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.05);
  filter: brightness(1.04);
}

.has-photo-lightbox {
  overflow: hidden;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(8, 7, 5, 0.84);
  backdrop-filter: blur(12px);
}

.photo-lightbox.is-open {
  display: flex;
}

.photo-lightbox-frame {
  width: min(1120px, 100%);
  max-height: min(82vh, 820px);
  display: grid;
  gap: 12px;
  margin: 0;
}

.photo-lightbox-frame img {
  width: 100%;
  max-height: calc(82vh - 54px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  box-shadow: var(--shadow);
}

.photo-lightbox-frame figcaption {
  color: #fffaf2;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.photo-lightbox-close {
  position: fixed;
  top: clamp(18px, 4vw, 34px);
  right: clamp(18px, 4vw, 34px);
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: 999px;
  color: #fffaf2;
  background: rgba(8, 7, 5, 0.46);
  font: inherit;
  cursor: pointer;
}

.photo-lightbox-close:hover,
.photo-lightbox-close:focus-visible {
  background: rgba(255, 250, 242, 0.14);
}


.Mconv-page .detail-menu,
.SHconv-page .detail-menu {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(12, 10, 10, 0.46);
}

.Mconv-page .detail-menu a:hover,
.Mconv-page .detail-menu a:focus-visible,
.Mconv-page .detail-menu a[aria-current="page"],
.SHconv-page .detail-menu a:hover,
.SHconv-page .detail-menu a:focus-visible,
.SHconv-page .detail-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
}

.dongbang-page {
  background: #f8f2e6;
}

.dongbang-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.dongbang-hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.dongbang-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 148px clamp(24px, 6vw, 86px) 60px;
}

.dongbang-copy h1 {
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.9;
}

.dongbang-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 22px;
}

.dongbang-stats div {
  background: #f8f2e6;
  padding: 24px;
}

.dongbang-stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.jsquare-page {
  background: #eef4e8;
  color: #1d2b20;
}

.jsquare-hero {
  min-height: 100vh;
  padding: 148px clamp(18px, 5vw, 70px) 44px;
  display: grid;
  grid-template-columns: minmax(360px, 0.54fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(22px, 5vw, 72px);
}

.jsquare-card {
  align-self: center;
  display: grid;
  gap: 22px;
}

.jsquare-card h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
  word-break: keep-all;
  overflow-wrap: normal;
}

.jsquare-image {
  min-height: 68vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.jsquare-image img {
  width: 100%;
  height: 100%;
  min-height: 68vh;
  object-fit: cover;
}

.jsquare-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 70px) 70px;
}

.jsquare-strip article {
  border-top: 1px solid rgba(29, 43, 32, 0.22);
  padding-top: 18px;
}

.Mconv-page {
  background: #211915;
  color: #f7eee3;
}

.Mconv-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(18px, 4vw, 52px);
  padding: 148px clamp(18px, 5vw, 70px) 52px;
}

.Mconv-hero img {
  width: 100%;
  height: calc(100vh - 200px);
  object-fit: cover;
  border-radius: 8px;
}

.Mconv-copy {
  align-self: end;
  display: grid;
  gap: 22px;
}

.Mconv-copy h1 {
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
}

.Mconv-notes {
  display: grid;
  gap: 14px;
  padding-left: 0;
  list-style: none;
}

.Mconv-notes li {
  border-bottom: 1px solid rgba(247, 238, 227, 0.22);
  padding-bottom: 14px;
}

.theRium-page {
  background: #edf8f7;
  color: #173237;
}

.theRium-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: end;
  padding: 148px clamp(18px, 5vw, 70px) 52px;
  overflow: hidden;
}

.theRium-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theRium-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(237, 248, 247, 0.94), rgba(237, 248, 247, 0.42) 48%, rgba(237, 248, 247, 0.06));
}

.theRium-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  display: grid;
  gap: 22px;
}

.theRium-copy h1 {
  font-size: clamp(50px, 9vw, 118px);
  line-height: 0.9;
}

.theRium-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1px;
  background: rgba(23, 50, 55, 0.14);
}

.theRium-band div {
  background: #edf8f7;
  padding: clamp(24px, 4vw, 46px);
}

.SHconv-page {
  background: #090b16;
  color: #f4f2ff;
}

.SHconv-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding: 140px clamp(18px, 5vw, 70px) 48px;
  position: relative;
  overflow: hidden;
}

.SHconv-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.SHconv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 46%, rgba(116, 98, 208, 0.12), rgba(9, 11, 22, 0.84) 62%);
}

.SHconv-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(820px, 100%);
  display: grid;
  gap: 22px;
  justify-items: center;
}

.SHconv-copy h1 {
  font-size: clamp(54px, 10vw, 136px);
  line-height: 0.86;
}

.SHconv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244, 242, 255, 0.16);
}

.SHconv-grid article {
  min-height: 180px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(22px, 4vw, 44px);
  background: #090b16;
}

.section-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.dark-label {
  color: rgba(255, 255, 255, 0.58);
}

@keyframes panelIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.fair-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  color: #2a2119;
}

.fair-popup.is-hidden {
  display: none;
}

.fair-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0.54);
  backdrop-filter: blur(10px);
}

.fair-popup-card {
  position: relative;
  width: min(470px, 100%);
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(255, 250, 242, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 232, 0.96)),
    #fff8ea;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.fair-popup-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(202, 166, 91, 0.38);
  border-radius: 6px;
  pointer-events: none;
}

.fair-popup-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -74px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 166, 91, 0.34), rgba(202, 166, 91, 0));
  pointer-events: none;
}

.fair-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(42, 33, 25, 0.18);
  border-radius: 999px;
  color: #2a2119;
  background: rgba(255, 255, 255, 0.66);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.fair-popup-close:hover,
.fair-popup-close:focus-visible {
  background: #fff;
  outline: 2px solid rgba(202, 166, 91, 0.5);
  outline-offset: 2px;
}

.fair-popup-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #9a5a45;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fair-popup h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 360px;
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  word-break: keep-all;
}

.fair-popup-info {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
}

.fair-popup-info div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(42, 33, 25, 0.12);
}

.fair-popup-info dt {
  color: #756b5e;
  font-size: 13px;
  font-weight: 700;
}

.fair-popup-info dd {
  margin: 0;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.5;
}

.fair-popup-info dd span {
  color: #9a5a45;
  font-size: 14px;
}

.fair-popup-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fffaf2;
  background: linear-gradient(135deg, #9a5a45, #caa65b);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(154, 90, 69, 0.28);
}


.fair-popup-hide-option {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: rgba(35, 27, 21, 0.66);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.fair-popup-hide-option input {
  width: 16px;
  height: 16px;
  accent-color: #9a5a45;
}
.fair-popup-cta:hover,
.fair-popup-cta:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid rgba(202, 166, 91, 0.48);
  outline-offset: 3px;
}

.visit-page {
  min-height: 100vh;
  color: #231b15;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(245, 232, 208, 0.92)),
    #fbf7ef;
}

.visit-header {
  color: #231b15;
}

.visit-main {
  min-height: 100vh;
  padding: 140px clamp(18px, 5vw, 70px) 72px;
}

.visit-form-shell,
.visit-result {
  width: min(920px, 100%);
  display: grid;
  gap: 24px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(35, 27, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(35, 27, 21, 0.12);
}

.visit-form-heading {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.visit-form-heading h1,
.visit-result h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  word-break: keep-all;
}

.visit-form-heading p,
.visit-result-copy {
  margin: 0;
  color: rgba(35, 27, 21, 0.68);
  line-height: 1.7;
}

.visit-alert {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(154, 90, 69, 0.24);
  border-radius: 8px;
  color: #7c3e2e;
  background: rgba(154, 90, 69, 0.08);
  line-height: 1.6;
}

.visit-alert.is-info {
  border-color: rgba(111, 141, 114, 0.28);
  color: #405c42;
  background: rgba(111, 141, 114, 0.1);
}

.visit-form {
  display: grid;
  gap: 24px;
}

.visit-form fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(35, 27, 21, 0.12);
  border-radius: 8px;
}

.visit-form legend {
  padding: 0 8px;
  font-weight: 700;
}

.visit-form textarea {
  width: 100%;
  min-height: 130px;
  padding: 14px 16px;
  border: 1px solid rgba(35, 27, 21, 0.18);
  border-radius: 8px;
  color: #231b15;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  line-height: 1.6;
  resize: vertical;
}

.visit-form textarea:focus {
  outline: 2px solid rgba(202, 166, 91, 0.46);
  outline-offset: 2px;
}

.visit-secondary,
.visit-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.visit-secondary {
  width: fit-content;
  border: 1px solid rgba(35, 27, 21, 0.22);
  color: #231b15;
  background: transparent;
}

.visit-secondary:hover,
.visit-secondary:focus-visible {
  background: rgba(35, 27, 21, 0.06);
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-list label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(35, 27, 21, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.choice-list input {
  accent-color: #9a5a45;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.visit-submit {
  border: 0;
  color: #fffaf2;
  background: linear-gradient(135deg, #9a5a45, #caa65b);
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(154, 90, 69, 0.22);
}

.visit-summary {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(35, 27, 21, 0.12);
}

.visit-summary div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(35, 27, 21, 0.12);
}

.visit-summary dt {
  color: rgba(35, 27, 21, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.visit-summary dd {
  margin: 0;
  line-height: 1.6;
}

.visit-period,
.visit-required-note,
.question-help {
  margin: 0;
  color: rgba(35, 27, 21, 0.62);
  line-height: 1.6;
}

.visit-required-note,
.visit-form legend span {
  color: #9a5a45;
  font-size: 12px;
  font-weight: 700;
}

.visit-form legend {
  display: grid;
  gap: 6px;
  padding: 0 8px;
  font-weight: 700;
  line-height: 1.5;
}

.consent-detail {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(35, 27, 21, 0.04);
}

.consent-detail div {
  display: grid;
  gap: 4px;
}

.consent-detail dt {
  color: rgba(35, 27, 21, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.consent-detail dd {
  margin: 0;
  line-height: 1.6;
}

.consent-choice {
  padding-top: 4px;
}

.split-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.split-contact-grid.single-field {
  grid-template-columns: 1fr;
}

.split-contact-grid label {
  display: grid;
  gap: 8px;
  color: rgba(35, 27, 21, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.visit-form input[type="text"],
.visit-form input[type="tel"],
.visit-form input[type="password"] {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(35, 27, 21, 0.18);
  border-radius: 8px;
  color: #231b15;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
}

.visit-form input[type="text"]:focus,
.visit-form input[type="tel"]:focus,
.visit-form input[type="password"]:focus {
  outline: 2px solid rgba(202, 166, 91, 0.46);
  outline-offset: 2px;
}
@media (max-width: 900px) {


  .visit-main {
    padding: 118px 14px 44px;
  }

  .visit-form-shell,
  .visit-result {
    padding: 22px 16px;
  }
  .choice-list,
  .split-contact-grid,
  .visit-summary div {
    grid-template-columns: 1fr;
  }
  .visit-submit,
  .visit-secondary {
    width: 100%;
  }
  .fair-popup {
    align-items: end;
    padding: 14px;
  }

  .fair-popup-card {
    padding: 30px 22px 24px;
  }

  .fair-popup-info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fair-popup-cta {
    width: 100%;
  }
  .landing-header {
    align-items: flex-start;
    position: absolute;
  }

  .landing-nav {
    display: none;
  }

  .page-header {
    align-items: flex-start;
    gap: 12px;
  }

  .detail-menu {
    top: 72px;
    left: 18px;
    right: 18px;
    border-radius: 8px;
  }

  .detail-menu a {
    min-height: 32px;
    padding: 8px 12px;
  }

  .intro {
    position: absolute;
    top: 88px;
    bottom: auto;
    right: 18px;
  }

  .intro h1 {
    font-size: clamp(30px, 11vw, 54px);
    line-height: 1.12;
  }

  .venue-panels {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: max(360px, 52vh);
  }

  .venue-panel,
  .venue-panels:hover .venue-panel,
  .venue-panels:hover .venue-panel:hover {
    min-height: 48vh;
    flex: none;
    filter: none;
  }

  .venue-panel img {
    height: 48vh;
  }

  .panel-copy {
    bottom: 32px;
    transform: translateY(0);
  }

  .panel-copy strong {
    font-size: clamp(30px, 10vw, 48px);
  }

  .panel-copy span:not(.eyebrow),
  .panel-copy em {
    opacity: 1;
    transform: none;
  }

  .dongbang-hero,
  .jsquare-hero,
  .Mconv-hero {
    grid-template-columns: 1fr;
  }

  .jsquare-card h1 {
    font-size: clamp(38px, 10vw, 56px);
    line-height: 1.08;
  }

  .dongbang-hero img,
  .Mconv-hero img {
    height: 58vh;
  }

  .dongbang-copy {
    padding-top: 34px;
  }

  .jsquare-strip,
  .dongbang-stats,
  .theRium-band,
  .SHconv-grid {
    grid-template-columns: 1fr;
  }

  .detail-content {
    padding-top: 46px;
  }

  .info-page-main {
    padding-top: 128px;
  }

  .single-info {
    grid-template-columns: 1fr;
  }

  .single-info.map-page-layout {
    grid-template-columns: 1fr;
  }

  .single-info .section-image,
  .single-info .section-image img {
    min-height: 260px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .map-card {
    grid-row: auto;
  }

  .map-preview {
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

