/* ==========================================================
   달빛 가마골 — 디자인 시스템
   밤남색 하늘 · 금빛 달 · 백자 아이보리 · 주홍 낙관(落款)
   ========================================================== */

:root {
  --night: #0a1424;          /* 밤하늘 */
  --night-deep: #060d19;     /* 더 깊은 밤 */
  --night-soft: #101e33;     /* 떠 있는 면 */
  --night-line: rgba(228, 194, 131, 0.16);
  --gold: #e4c283;           /* 달빛 금 */
  --gold-bright: #f4dca4;
  --gold-deep: #a8823f;
  --ivory: #f3ecdc;          /* 백자 */
  --mist: #94a5be;           /* 안개 청회 */
  --verm: #e4562f;           /* 주홍 — 낙관처럼 아껴 쓴다 */
  --serif: 'MaruBuri', 'Noto Serif KR', serif;
  --sans: 'Pretendard Variable', Pretendard, 'Malgun Gothic', sans-serif;
  --max: 1120px;
  --r: 14px;   /* 카드 라운드 */
  --r-s: 10px; /* 버튼·입력 라운드 */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--sans);
  background: var(--night);
  color: var(--ivory);
  line-height: 1.72;
  font-size: 16px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(228, 194, 131, 0.35); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-s);
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- 타이포 ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.section-head { margin-bottom: 56px; position: relative; }
.section-head .hanja {
  position: absolute;
  top: -0.42em;
  left: -0.06em;
  font-family: var(--serif);
  font-size: clamp(110px, 16vw, 180px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228, 194, 131, 0.13);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.section-head h2 {
  position: relative;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  padding-top: 34px;
  z-index: 1;
}
.section-head .lede {
  position: relative;
  margin-top: 14px;
  color: var(--mist);
  max-width: 560px;
  z-index: 1;
}

section { padding: 120px 0; position: relative; }

/* ---------- 헤더 (라이트) ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 32, 56, 0.07);
}
.util-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
  color: #7a8598;
  border-bottom: 1px solid #eef1f5;
}
.util-bar a { color: #7a8598; }
.util-bar a:hover { color: #17335a; }
.site-header .bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { display: flex; flex-direction: column; line-height: 1.25; }
.logo .name { font-family: var(--serif); font-weight: 700; font-size: 20px; color: #16283f; letter-spacing: 0.02em; }
.logo .sub { font-size: 9px; letter-spacing: 0.3em; color: #9aa7b8; text-transform: uppercase; }
.site-nav { display: flex; gap: 28px; margin-left: auto; }
.site-nav a { font-size: 14.5px; color: #3f4c60; font-weight: 500; transition: color 0.2s; }
.site-nav a:hover { color: #17335a; }
.btn-reserve-top {
  background: #17335a;
  border: 1px solid #17335a;
  color: #fff;
  padding: 11px 26px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.25s;
}
.btn-reserve-top:hover { background: #204672; }
.nav-toggle { display: none; }

/* ---------- 히어로 (영상 배경 · 중앙 정렬) ---------- */
.hero {
  position: relative;
  margin-top: 108px; /* 라이트 헤더 아래에서 시작 */
  min-height: calc(100svh - 108px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
  background: var(--night);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.hero.has-video .hero-bg video { display: block; }
.hero.has-video .hero-fallback { display: none; }
.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 78% -6%, rgba(228, 194, 131, 0.13), transparent 60%),
    radial-gradient(700px 700px at 10% 110%, rgba(16, 30, 51, 0.9), transparent 70%),
    var(--night);
}
/* 별 — 두 겹의 점 패턴 */
.hero-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 22%, rgba(243, 236, 220, 0.7), transparent 100%),
    radial-gradient(1px 1px at 34% 12%, rgba(243, 236, 220, 0.5), transparent 100%),
    radial-gradient(1.4px 1.4px at 55% 30%, rgba(228, 194, 131, 0.6), transparent 100%),
    radial-gradient(1px 1px at 72% 8%, rgba(243, 236, 220, 0.55), transparent 100%),
    radial-gradient(1px 1px at 88% 38%, rgba(243, 236, 220, 0.4), transparent 100%),
    radial-gradient(1.2px 1.2px at 44% 52%, rgba(243, 236, 220, 0.3), transparent 100%),
    radial-gradient(1px 1px at 8% 58%, rgba(228, 194, 131, 0.35), transparent 100%),
    radial-gradient(1.3px 1.3px at 64% 66%, rgba(243, 236, 220, 0.25), transparent 100%);
  pointer-events: none;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 13, 25, 0.45), rgba(6, 13, 25, 0.22) 42%, rgba(6, 13, 25, 0.62));
  pointer-events: none;
}
/* 영상 자리 표시 (영상 업로드 전) */
.video-slot-chip {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  border: 1.5px dashed rgba(228, 194, 131, 0.55);
  background: rgba(6, 13, 25, 0.55);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 10px 16px;
  border-radius: 8px;
  pointer-events: none;
}
.hero.has-video .video-slot-chip { display: none; }
.hero .wrap { position: relative; width: 100%; }
.hero-copy { max-width: 800px; margin: 0 auto; padding: 110px 0 120px; }
.hero-copy .eyebrow { display: block; margin-bottom: 30px; letter-spacing: 0.4em; }
.hero-line1 {
  font-size: clamp(15px, 1.9vw, 18.5px);
  color: rgba(243, 236, 220, 0.92);
  font-weight: 400;
}
.hero-line2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-top: 16px;
  color: var(--ivory);
}
.hero-line2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  margin-left: 10px;
  letter-spacing: 0.01em;
}
.hero-dates {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13.5px;
  color: rgba(243, 236, 220, 0.8);
  letter-spacing: 0.04em;
}
.hero-dates .dot { color: var(--gold-deep); }
.hero-cta { margin-top: 38px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn { border-radius: 999px; padding: 16px 36px; }
.hero-cta .arrow { font-size: 13px; margin-left: 2px; }
.btn-white {
  background: rgba(255, 255, 255, 0.94);
  color: #1a2c47;
  font-weight: 600;
}
.btn-white:hover { background: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  font-size: 15px;
  letter-spacing: 0.05em;
  border-radius: var(--r-s);
  border: 1px solid transparent;
  transition: transform 0.2s, background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: #221607; font-weight: 700; }
.btn-gold:hover { background: var(--gold-bright); }
.btn-ghost { border-color: rgba(228, 194, 131, 0.4); color: var(--gold); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(228, 194, 131, 0.07); }
/* 히어로 폴백 — 달빛 글로우 (영상이 없을 때) */
.hero-fallback .moonglow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff7e0, var(--gold-bright) 48%, #caa25c 100%);
  box-shadow:
    0 0 40px 14px rgba(244, 220, 164, 0.35),
    0 0 160px 70px rgba(228, 194, 131, 0.14);
}

/* ---------- 지표 스트립 ---------- */
.stats { border-top: 1px solid var(--night-line); border-bottom: 1px solid var(--night-line); padding: 0; }
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 42px 28px;
  border-left: 1px solid var(--night-line);
}
.stat:first-child { border-left: 0; }
.stat .v {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.stat .v small { font-size: 0.45em; letter-spacing: 0.18em; color: var(--gold-deep); margin-left: 6px; }
.stat .l { margin-top: 10px; font-size: 13px; color: var(--mist); }

/* ---------- 서사 ---------- */
.concept { background: linear-gradient(to bottom, var(--night), var(--night-deep) 60%, var(--night)); }
.concept .inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.concept .eyebrow { display: block; margin-bottom: 28px; }
.concept blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 600;
  line-height: 1.75;
  color: var(--ivory);
}
.concept blockquote .em { color: var(--gold-bright); }
.concept .body { margin-top: 30px; color: var(--mist); font-size: 16px; }
.concept .seal {
  margin: 44px auto 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--verm);
  color: var(--verm);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  border-radius: 4px;
  transform: rotate(-4deg);
}

/* ---------- 주요 프로그램 안내 (카드형) ---------- */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 28px 20px;
}
.prog-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--night-soft);
  border: 1px solid rgba(228, 194, 131, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.prog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 194, 131, 0.35);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}
.prog-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(228, 194, 131, 0.14), transparent 62%),
    linear-gradient(160deg, #17273f, #0b1526);
}
.prog-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prog-card:hover .prog-img img { transform: scale(1.04); }
.prog-img .ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.prog-img .ph .h {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 700;
  color: rgba(228, 194, 131, 0.38);
  line-height: 1;
}
.prog-img .ph .t { font-size: 10.5px; letter-spacing: 0.22em; color: rgba(148, 165, 190, 0.55); }
.prog-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(6, 13, 25, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(228, 194, 131, 0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
}
.prog-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.prog-body .tt { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.45; }
.prog-body .meta { font-size: 12.5px; color: var(--gold); }
.prog-body .desc { font-size: 13.5px; color: var(--mist); line-height: 1.62; flex: 1; }
.prog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.prog-tags span {
  font-size: 11.5px;
  color: var(--gold-bright);
  background: rgba(228, 194, 131, 0.09);
  padding: 4px 10px;
  border-radius: 8px;
}
.nights-note { margin-top: 22px; font-size: 13px; color: rgba(148, 165, 190, 0.7); }

/* ---------- 3일의 시간여행 ---------- */
.timeline-tabs { display: flex; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.timeline-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--night-line);
  color: var(--mist);
  padding: 14px 24px;
  border-radius: var(--r-s);
  font-size: 14px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.timeline-tab .disc { width: 22px; height: 22px; border-radius: 50%; flex: none; }
.timeline-tab[data-day="1"] .disc { background: radial-gradient(circle at 36% 32%, #fff6dd, var(--gold) 60%, #b8914d); box-shadow: 0 0 10px rgba(228,194,131,.5); }
.timeline-tab[data-day="2"] .disc { background: radial-gradient(circle at 40% 36%, #fffdf4, #f3e2ae 55%, #d9b979); box-shadow: 0 0 12px rgba(244,226,174,.55); }
.timeline-tab[data-day="3"] .disc { background: linear-gradient(to bottom, #f0b26a 48%, #7e4530 52%, #341f28); box-shadow: 0 0 10px rgba(240,178,106,.4); }
.timeline-tab strong { font-family: var(--serif); font-size: 15px; color: var(--ivory); font-weight: 700; }
.timeline-tab.active { border-color: var(--gold-deep); background: rgba(228, 194, 131, 0.06); color: var(--ivory); }
.timeline-day { display: none; }
.timeline-day.active { display: block; animation: fadeup 0.5s ease both; }
@keyframes fadeup {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.timeline-day .day-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline-day .day-venues { font-size: 13px; color: var(--mist); margin-bottom: 34px; }
.tl-row {
  display: grid;
  grid-template-columns: 130px 92px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(228, 194, 131, 0.1);
  align-items: baseline;
}
.tl-row:last-child { border-bottom: 1px solid rgba(228, 194, 131, 0.1); }
.tl-time { font-family: var(--serif); font-size: 15px; color: var(--gold); white-space: nowrap; }
.tl-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--verm);
  border: 1px solid rgba(228, 86, 47, 0.4);
  padding: 2px 8px;
  border-radius: var(--r-s);
  justify-self: start;
  white-space: nowrap;
}
.tl-body strong { display: block; font-size: 16px; font-weight: 700; }
.tl-body span { display: block; margin-top: 4px; font-size: 13.5px; color: var(--mist); }

/* ---------- 장소 ---------- */
.places { background: var(--night-deep); }
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}
.place {
  border: 1px solid var(--night-line);
  padding: 22px 22px 20px;
  border-radius: var(--r-s);
  background: rgba(16, 30, 51, 0.35);
  transition: border-color 0.25s, transform 0.25s;
}
.place:hover { border-color: rgba(228, 194, 131, 0.45); transform: translateY(-3px); }
.place .no { font-family: var(--serif); font-size: 12px; color: var(--gold-deep); letter-spacing: 0.1em; }
.place .nm { margin-top: 8px; font-weight: 700; font-size: 15.5px; }
.place .role { margin-top: 6px; font-size: 12.5px; color: var(--mist); }
.place .badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(228, 194, 131, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
}

/* ---------- 티켓 ---------- */
.ticket-panel {
  border: 1px solid var(--gold-deep);
  border-radius: var(--r);
  padding: 52px;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(228, 194, 131, 0.08), transparent 60%),
    var(--night-soft);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ticket-panel::before {
  content: '夜';
  position: absolute;
  right: -30px;
  bottom: -68px;
  font-family: var(--serif);
  font-size: 260px;
  font-weight: 700;
  color: rgba(228, 194, 131, 0.05);
  line-height: 1;
  pointer-events: none;
}
.ticket-info .pass-name { font-family: var(--serif); font-size: 24px; font-weight: 700; }
.ticket-info .price {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 54px);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.2;
  margin-top: 10px;
}
.ticket-info .price small { font-size: 0.42em; color: var(--mist); font-weight: 400; margin-left: 8px; }
.ticket-info .limit { margin-top: 8px; font-size: 14px; color: var(--verm); font-weight: 700; }
.ticket-includes { margin-top: 26px; display: grid; gap: 10px; }
.ticket-includes li {
  list-style: none;
  font-size: 14px;
  color: var(--ivory);
  padding-left: 24px;
  position: relative;
}
.ticket-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.ticket-side { display: grid; gap: 14px; }
.round-status {
  border: 1px solid var(--night-line);
  padding: 20px 24px;
  border-radius: var(--r-s);
  background: rgba(6, 13, 25, 0.45);
}
.round-status .r-label { display: flex; justify-content: space-between; align-items: baseline; }
.round-status .r-label strong { font-family: var(--serif); font-size: 16px; }
.round-status .r-label span { font-size: 12.5px; color: var(--mist); }
.round-status .meter {
  margin-top: 12px;
  height: 6px;
  background: rgba(148, 165, 190, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.round-status .meter i {
  display: block;
  height: 100%;
  background: linear-gradient(to right, var(--gold-deep), var(--gold));
  border-radius: 4px;
  transition: width 0.8s ease;
}
.round-status .left { margin-top: 8px; font-size: 12.5px; color: var(--gold); }
.round-status.closed .left { color: var(--verm); }
.ticket-side .btn { width: 100%; }
.ticket-note { margin-top: 26px; font-size: 12.5px; color: rgba(148, 165, 190, 0.8); line-height: 1.8; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--night-line); }
.faq-item:first-child { border-top: 1px solid var(--night-line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--ivory);
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 44px 22px 0;
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--mist);
  font-size: 14.5px;
}
.faq-a .in { padding: 0 0 24px; max-width: 640px; }

/* ---------- 오시는 길 ---------- */
.access { background: var(--night-deep); }
.access-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--night-line); border: 1px solid var(--night-line); }
.access-card { background: var(--night-deep); padding: 32px 28px; }
.access-card h3 { font-family: var(--serif); font-size: 17px; color: var(--gold); font-weight: 700; }
.access-card p { margin-top: 12px; font-size: 14px; color: var(--mist); }
.access-card strong { color: var(--ivory); font-weight: 600; }

/* ---------- 예약 CTA 밴드 ---------- */
.cta-band {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% 120%, rgba(228, 194, 131, 0.14), transparent 70%),
    var(--night);
  border-top: 1px solid var(--night-line);
}
.cta-band h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 38px); font-weight: 700; }
.cta-band p { margin-top: 14px; color: var(--mist); }
.cta-band .btn { margin-top: 34px; }

/* ---------- 푸터 ---------- */
.site-footer {
  border-top: 1px solid var(--night-line);
  padding: 56px 0 48px;
  background: var(--night-deep);
}
.site-footer .cols { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.site-footer .closing { font-family: var(--serif); font-size: 16px; color: var(--gold); }
.site-footer .credit { margin-top: 12px; font-size: 13px; color: var(--mist); }
.site-footer .contact { font-size: 13.5px; color: var(--mist); text-align: right; }
.site-footer .contact strong { color: var(--ivory); font-size: 16px; font-family: var(--serif); }
.site-footer .copy { margin-top: 36px; font-size: 12px; color: rgba(148, 165, 190, 0.55); }

/* ---------- 스크롤 리빌 ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ==========================================================
   예약 페이지
   ========================================================== */
.page-head {
  padding: 150px 0 60px;
  text-align: center;
  background: radial-gradient(700px 300px at 50% -20%, rgba(228, 194, 131, 0.12), transparent 65%);
}
.page-head h1 { font-family: var(--serif); font-size: clamp(30px, 5vw, 44px); font-weight: 700; margin-top: 16px; }
.page-head p { margin-top: 14px; color: var(--mist); }

.reserve-main { padding: 40px 0 120px; }
.reserve-grid { max-width: 720px; margin: 0 auto; }

.field-group { margin-bottom: 44px; }
.field-group > h2 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--night-line);
  margin-bottom: 24px;
}
.round-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.round-opt { position: relative; }
.round-opt input { position: absolute; opacity: 0; }
.round-opt label {
  display: block;
  border: 1px solid var(--night-line);
  border-radius: var(--r-s);
  padding: 22px 24px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.round-opt input:checked + label { border-color: var(--gold); background: rgba(228, 194, 131, 0.07); }
.round-opt input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; }
.round-opt label .r-name { font-family: var(--serif); font-weight: 700; font-size: 17px; }
.round-opt label .r-date { margin-top: 6px; font-size: 13.5px; color: var(--mist); }
.round-opt label .r-left { margin-top: 10px; font-size: 12.5px; color: var(--gold); }
.round-opt.closed label { opacity: 0.45; cursor: not-allowed; }
.round-opt.closed label .r-left { color: var(--verm); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
.form-field label .req { color: var(--verm); margin-left: 3px; }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(6, 13, 25, 0.6);
  border: 1px solid rgba(148, 165, 190, 0.28);
  border-radius: var(--r-s);
  color: var(--ivory);
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  transition: border-color 0.2s;
}
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-field textarea { min-height: 88px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field .hint { margin-top: 6px; font-size: 12px; color: rgba(148, 165, 190, 0.75); }
.radio-line { display: flex; gap: 22px; padding: 6px 0; }
.radio-line label { display: flex; align-items: center; gap: 8px; font-size: 14.5px; cursor: pointer; margin: 0; font-weight: 400; }
.radio-line input { accent-color: var(--gold); width: 16px; height: 16px; }

/* 참가자 정보 행 */
.participant-row {
  display: grid;
  grid-template-columns: 44px 1.5fr 0.8fr 0.9fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.participant-row .pno {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  text-align: center;
}
.participant-row input, .participant-row select {
  width: 100%;
  background: rgba(6, 13, 25, 0.6);
  border: 1px solid rgba(148, 165, 190, 0.28);
  border-radius: var(--r-s);
  color: var(--ivory);
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 13px;
  transition: border-color 0.2s;
}
.participant-row input:focus, .participant-row select:focus { outline: none; border-color: var(--gold); }
.participant-head {
  display: grid;
  grid-template-columns: 44px 1.5fr 0.8fr 0.9fr;
  gap: 10px;
  font-size: 12px;
  color: var(--mist);
  margin-bottom: 8px;
}
.participant-head span:first-child { text-align: center; }

/* 야숙 필수 안내 */
.notice-inline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(228, 194, 131, 0.3);
  background: rgba(228, 194, 131, 0.06);
  border-radius: var(--r-s);
  padding: 15px 18px;
  font-size: 13.5px;
  color: var(--ivory);
  margin: 14px 0 6px;
}
.notice-inline .ic {
  font-family: var(--serif);
  color: var(--gold);
  font-weight: 700;
  flex: none;
}
.notice-inline p { color: var(--mist); margin-top: 2px; font-size: 12.5px; }

/* 예약 기준 · 환불 규정 박스 */
.policy-box {
  border: 1px solid var(--night-line);
  border-radius: var(--r-s);
  background: rgba(6, 13, 25, 0.4);
  padding: 18px 20px;
  max-height: 260px;
  overflow-y: auto;
  font-size: 13px;
  color: var(--mist);
  line-height: 1.75;
}
.policy-box h3 { font-family: var(--serif); font-size: 15px; color: var(--gold); margin-bottom: 10px; }
.policy-box ul { margin: 0 0 6px; padding-left: 16px; }
.policy-box li { margin-bottom: 5px; }
.policy-box li strong { color: var(--ivory); font-weight: 600; }
.policy-box .sub-t { color: var(--ivory); font-weight: 600; margin: 12px 0 6px; font-size: 13px; }
.refund-table { width: 100%; border-collapse: collapse; margin: 8px 0 10px; font-size: 12.5px; }
.refund-table th, .refund-table td { border: 1px solid rgba(148, 165, 190, 0.25); padding: 7px 10px; text-align: left; }
.refund-table th { background: rgba(228, 194, 131, 0.08); color: var(--gold); font-weight: 600; white-space: nowrap; }
.refund-table td strong { color: var(--ivory); }
.refund-table .no-refund { color: #f0977e; }
.policy-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 26px;
  font-size: 14px;
  cursor: pointer;
  color: var(--ivory);
}
.policy-agree input { accent-color: var(--gold); width: 16px; height: 16px; margin-top: 3px; flex: none; }
.policy-agree .req { color: var(--verm); }

.agree-box {
  border: 1px solid var(--night-line);
  border-radius: var(--r-s);
  padding: 20px 22px;
  display: grid;
  gap: 12px;
  background: rgba(6, 13, 25, 0.4);
}
.agree-box label { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; cursor: pointer; }
.agree-box input { accent-color: var(--gold); width: 16px; height: 16px; margin-top: 3px; flex: none; }
.agree-box .req { color: var(--verm); }
.agree-box .small { font-size: 12px; color: rgba(148, 165, 190, 0.75); margin-left: 26px; }

.form-error {
  display: none;
  border: 1px solid rgba(228, 86, 47, 0.5);
  background: rgba(228, 86, 47, 0.08);
  color: #f2b3a0;
  border-radius: var(--r-s);
  padding: 16px 20px;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.8;
}
.form-error.show { display: block; }

.submit-wrap { margin-top: 12px; }
.submit-wrap .btn { width: 100%; padding: 18px; font-size: 16px; }
.submit-wrap .note { margin-top: 14px; font-size: 12.5px; color: rgba(148, 165, 190, 0.8); text-align: center; }

/* 신청 완료 */
.done-panel { display: none; text-align: center; padding: 30px 0 0; }
.done-panel.show { display: block; animation: fadeup 0.6s ease both; }
.done-panel .moon-ok {
  width: 74px; height: 74px; border-radius: 50%;
  margin: 0 auto 28px;
  background: radial-gradient(circle at 38% 34%, #fff7e0, var(--gold-bright) 45%, #caa25c 100%);
  box-shadow: 0 0 40px 12px rgba(228, 194, 131, 0.3);
}
.done-panel h2 { font-family: var(--serif); font-size: 28px; font-weight: 700; }
.done-panel .code {
  margin: 22px auto 0;
  display: inline-block;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  border: 1px dashed var(--gold-deep);
  padding: 12px 30px;
  border-radius: var(--r-s);
}
.done-panel .bank-info {
  max-width: 480px;
  margin: 34px auto 0;
  text-align: left;
  border: 1px solid var(--night-line);
  border-radius: var(--r-s);
  padding: 24px 28px;
  background: var(--night-soft);
  font-size: 14.5px;
}
.done-panel .bank-info h3 { font-family: var(--serif); font-size: 16px; color: var(--gold); margin-bottom: 12px; }
.done-panel .bank-info p { color: var(--mist); margin-top: 6px; }
.done-panel .bank-info strong { color: var(--ivory); }
.done-panel .back { margin-top: 36px; }

/* ==========================================================
   관리자 페이지
   ========================================================== */
.admin-body { background: #0c1220; }
.admin-login {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-login .card {
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--night-line);
  border-radius: 4px;
  padding: 44px 40px;
  background: var(--night-soft);
  text-align: center;
}
.admin-login h1 { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.admin-login p { margin-top: 8px; font-size: 13px; color: var(--mist); }
.admin-login input {
  width: 100%;
  margin-top: 24px;
  background: rgba(6, 13, 25, 0.6);
  border: 1px solid rgba(148, 165, 190, 0.3);
  border-radius: var(--r-s);
  color: var(--ivory);
  font-size: 22px;
  letter-spacing: 0.4em;
  text-align: center;
  padding: 14px;
}
.admin-login input:focus { outline: none; border-color: var(--gold); }
.admin-login .btn { width: 100%; margin-top: 16px; }
.admin-login .err { color: #f2b3a0; font-size: 13px; margin-top: 14px; display: none; }
.admin-login .err.show { display: block; }

.admin-main { display: none; padding: 40px 0 80px; }
.admin-main.show { display: block; }
.admin-top { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.admin-top h1 { font-family: var(--serif); font-size: 24px; font-weight: 700; }
.admin-top .spacer { flex: 1; }
/* 히어로 영상 관리 */
.video-manage {
  border: 1px solid var(--night-line);
  border-radius: var(--r);
  background: var(--night-soft);
  padding: 22px 26px;
  margin-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}
.video-manage .vm-info { display: flex; flex-direction: column; gap: 3px; min-width: 220px; }
.video-manage .vm-info strong { font-family: var(--serif); font-size: 16px; color: var(--gold); }
.video-manage .vm-info span { font-size: 12.5px; color: var(--mist); }
.video-manage .vm-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.vm-btn { padding: 10px 20px; font-size: 13px; }
.vm-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.vm-progress { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 200px; }
.vm-progress[hidden] { display: none; }
.vm-progress .track { flex: 1; height: 6px; background: rgba(148, 165, 190, 0.15); border-radius: 4px; overflow: hidden; }
.vm-progress .track i { display: block; height: 100%; width: 0; background: linear-gradient(to right, var(--gold-deep), var(--gold)); transition: width 0.2s; }
.vm-progress span { font-size: 12px; color: var(--gold); min-width: 36px; }
.video-manage .vm-hint { width: 100%; font-size: 12px; color: rgba(148, 165, 190, 0.7); margin-top: 2px; }

.admin-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 30px; }
.sum-card {
  border: 1px solid var(--night-line);
  border-radius: var(--r);
  padding: 20px 24px;
  background: var(--night-soft);
}
.sum-card .t { font-size: 12.5px; color: var(--mist); }
.sum-card .v { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--gold); margin-top: 6px; }
.sum-card .v small { font-size: 0.5em; color: var(--mist); font-weight: 400; }

.admin-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.admin-filters select, .admin-filters input {
  background: rgba(6, 13, 25, 0.6);
  border: 1px solid rgba(148, 165, 190, 0.3);
  border-radius: var(--r-s);
  color: var(--ivory);
  font-size: 13.5px;
  padding: 9px 12px;
  font-family: inherit;
}
.admin-filters input { min-width: 220px; }

.admin-table-wrap { overflow-x: auto; border: 1px solid var(--night-line); border-radius: var(--r); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 1080px; }
.admin-table th {
  text-align: left;
  padding: 13px 14px;
  background: var(--night-soft);
  color: var(--mist);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--night-line);
  white-space: nowrap;
}
.admin-table td { padding: 12px 14px; border-bottom: 1px solid rgba(148, 165, 190, 0.1); vertical-align: top; }
.admin-table tr:hover td { background: rgba(228, 194, 131, 0.03); }
.admin-table .code { font-family: var(--serif); color: var(--gold); white-space: nowrap; }
.admin-table .muted { color: var(--mist); font-size: 12.5px; }
.status-sel {
  background: rgba(6, 13, 25, 0.6);
  border: 1px solid rgba(148, 165, 190, 0.3);
  border-radius: var(--r-s);
  color: var(--ivory);
  font-size: 12.5px;
  padding: 6px 8px;
  font-family: inherit;
}
.status-pill { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 11.5px; letter-spacing: 0.04em; white-space: nowrap; }
.st-접수대기 { background: rgba(148, 165, 190, 0.15); color: var(--mist); }
.st-입금확인 { background: rgba(228, 194, 131, 0.15); color: var(--gold); }
.st-확정 { background: rgba(110, 200, 140, 0.15); color: #8fd6a8; }
.st-취소 { background: rgba(228, 86, 47, 0.14); color: #f0977e; }
.memo-input {
  width: 150px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-s);
  color: var(--ivory);
  font-size: 12.5px;
  padding: 5px 6px;
  font-family: inherit;
}
.memo-input:hover, .memo-input:focus { border-color: rgba(148, 165, 190, 0.3); background: rgba(6, 13, 25, 0.5); outline: none; }
.admin-empty { padding: 60px; text-align: center; color: var(--mist); }

/* ---------- 반응형 ---------- */
@media (max-width: 960px) {
  section { padding: 88px 0; }
  .util-bar { display: none; }
  .hero { margin-top: 74px; min-height: calc(100svh - 74px); }
  .hero-copy { padding: 90px 0 100px; }
  .video-slot-chip { right: 14px; bottom: 14px; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--night-line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--night-line); }
  .ticket-panel { grid-template-columns: 1fr; padding: 36px 28px; }
  .access-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e8ecf2;
    box-shadow: 0 14px 30px rgba(16, 32, 56, 0.08);
    padding: 12px 24px 20px;
  }
  .site-nav.open a { padding: 13px 0; border-bottom: 1px solid #f0f3f7; }
  .nav-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: 1px solid #d8dee8;
    color: #17335a;
    font-size: 18px;
    padding: 6px 12px;
    border-radius: var(--r-s);
  }
  .site-header .bar { gap: 14px; }
  .btn-reserve-top { display: none; }
  .tl-row { grid-template-columns: 96px 1fr; }
  .tl-tag { grid-column: 2; justify-self: start; margin-bottom: -8px; }
  .tl-body { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .round-pick { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { flex: 1; }
  .ticket-panel::before { display: none; }
}

/* 예약·취소 페이지 모바일 헤더 (인라인 flex 내비 대응) */
@media (max-width: 560px) {
  .site-header .bar { gap: 12px; height: 60px; }
  .logo .name { font-size: 16px; }
  .logo .sub { display: none; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 13px; white-space: nowrap; }
  .page-head { padding-top: 110px; }
}
