/* ==============================
   Design System
   ============================== */
:root {
  --color-bg: #faf7f3;
  --color-bg-subtle: #f3efe9;
  --color-bg-card: #fdfcfa;
  --color-bg-hover: #ede9e3;
  --color-text: #1e1e1c;
  --color-text-muted: rgba(30, 30, 28, 0.70);
  --color-text-light: rgba(30, 30, 28, 0.55);
  --color-cream: #1e1e1c;
  --color-border: rgba(30, 30, 28, 0.12);
  --color-border-light: rgba(30, 30, 28, 0.07);

  --font-title: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 680px;
  --max-width-wide: 960px;
}

/* ==============================
   Reset & Base
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ==============================
   Layout
   ============================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.section:last-of-type { border-bottom: none; }

/* ==============================
   Typography
   ============================== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  word-break: keep-all;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--color-cream);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}
.title-single-line {
  white-space: nowrap;
  font-size: clamp(14px, 4.5vw, 32px);
}
.story-title-divider {
  height: 1px;
  background: var(--color-border);
  margin: 24px 0 32px;
}

/* ==============================
   Buttons
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}
.btn-cream {
  background: #1e1e1c;
  color: #f5ead8;
}
.btn-cream:hover { background: #333330; }
.btn-dark {
  background: #1e1e1c;
  color: #f5ead8;
}
.btn-dark:hover { background: #333330; }
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(30,30,28,0.3);
}
.btn-outline:hover { border-color: rgba(30,30,28,0.6); background: var(--color-bg-subtle); }
.btn-full { width: 100%; justify-content: center; }

/* ==============================
   Nav
   ============================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 247, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
}
.nav-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-main {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-line {
  width: 100%;
  height: 1px;
  background: rgba(245,234,216,0.25);
}
.logo-sub {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1;
}

/* Hero 로고 디스플레이 */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 0;
}
.hero-logo-main {
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.08em;
  line-height: 1;
}
.hero-logo-line {
  width: 100%;
  height: 1px;
  background: rgba(245,234,216,0.2);
}
.hero-logo-sub {
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  text-align: center;
}
.nav-right { display: flex; gap: 8px; align-items: center; }
.nav-link {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.15s;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--color-text); }

/* ==============================
   Hero
   ============================== */
.hero {
  padding: 156px 0 88px;
  border-bottom: 1px solid var(--color-border-light);
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 234, 216, 0.07);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 400;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 36px;
  border: 1px solid var(--color-border);
  letter-spacing: 0.04em;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: var(--color-cream);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-image {
  margin-top: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16/7;
  background: var(--color-bg-subtle);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* ==============================
   Subsection Label
   ============================== */
.subsection-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 10px;
  margin-top: 36px;
}
.subsection-label:first-of-type {
  margin-top: 0;
}

/* ==============================
   Info Cards
   ============================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.info-card {
  background: var(--color-bg-card);
  padding: 24px 20px;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
  min-height: 90px;
}
.info-card:hover { background: var(--color-bg-hover); }
.info-card-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.info-card-value {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.3;
}
.info-card-sub {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* ==============================
   Pain Points
   ============================== */
.pain-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.pain-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: var(--color-bg-card);
  transition: background 0.15s;
}
.pain-item:hover { background: var(--color-bg-hover); }
.pain-item + .pain-item { border-top: 1px solid var(--color-border-light); }
.pain-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(232,224,208,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-text h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}
.pain-text p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ==============================
   Story
   ============================== */
.story-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border-light);
}
.story-author-name {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 2px;
}
.story-author-role {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}
.story-body {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}
.story-body p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body strong {
  font-weight: 500;
  color: var(--color-text);
}
.story-pain {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}
.story-pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.story-pain-num {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  min-width: 20px;
  padding-top: 3px;
}
.story-pain-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}
.story-pain-item p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}
.story-closing {
  padding-top: 0;
}
.story-closing p {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.75;
}

/* ==============================
   Solutions
   ============================== */
.process-steps {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  background: var(--color-bg-card);
  transition: background 0.15s;
}
.process-step:hover { background: var(--color-bg-hover); }
.process-step + .process-step { border-top: 1px solid var(--color-border-light); }
.step-number-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 0;
  border-right: 1px solid var(--color-border-light);
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(30,30,28,0.06);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}
.step-content {
  padding: 24px 24px;
}
.step-content h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.85;
}

/* ==============================
   Musical
   ============================== */
.musical-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-card);
}
.musical-card-banner {
  position: relative;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.musical-banner-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.musical-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.75) 0%, rgba(10,10,8,0.2) 55%, transparent 100%);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.musical-tag {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
  display: block;
}
.musical-title {
  font-family: 'Bebas Neue', var(--font-title);
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  line-height: 1;
}
.title-hades {
  color: #f0e6cc;
}
.title-town {
  color: #c91a18;
}
.musical-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.musical-card-body { padding: 28px 36px; }
.musical-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
}
.musical-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 24px;
}
.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.meta-label {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
}
.meta-value {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-cream);
}

/* ==============================
   Cast
   ============================== */
.cast-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.cast-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--color-bg-card);
  transition: background 0.15s;
}
.cast-item:hover { background: var(--color-bg-hover); }
.cast-item + .cast-item { border-top: 1px solid var(--color-border-light); }
.cast-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,234,216,0.06);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cast-info h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.03em;
}
.cast-info p {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ==============================
   Cast Profiles
   ============================== */
.cast-profiles {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.cast-profile {
  background: var(--color-bg-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cast-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cast-profile-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
  overflow: hidden;
}
.cast-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cast-profile-name {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 3px;
}
.cast-profile-role {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
}
.cast-profile-credits {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
}
.cast-credit-item {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.cast-credit-item:last-child { border-bottom: none; }
.cast-credit-year {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  min-width: 56px;
  flex-shrink: 0;
}
.cast-credit-title {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.cast-profile-bio {
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cast-profile-bio p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==============================
   Pricing
   ============================== */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  align-items: stretch;
}
.pricing-card {
  background: var(--color-bg-card);
  padding: 32px 28px;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pricing-card:hover { background: var(--color-bg-hover); }
.pricing-card.featured {
  background: var(--color-bg-card);
}
.pricing-badge {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 20px;
  display: block;
}
.pricing-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.pricing-amount {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.pricing-amount-sub {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.pricing-original {
  font-size: 12px;
  color: var(--color-text-light);
  text-decoration: line-through;
}
.pricing-cards--three {
  grid-template-columns: 1fr 1fr 1fr;
}
.pricing-stage {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-top: 1px;
}
.pricing-stage-label {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
}
.pricing-stage-value {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-text);
}
.pricing-stage-sub {
  font-size: 12px;
  color: var(--color-text-light);
  margin-left: auto;
}
.pricing-note {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 14px 18px;
  background: rgba(232,224,208,0.03);
  border-radius: 6px;
  border: 1px solid var(--color-border-light);
  line-height: 1.6;
}

/* ==============================
   Slots Grid
   ============================== */
.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.slots-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slots-label {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}
.slots-count {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1;
}
.slots-total {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-light);
}
.slots-bar {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}
.slots-bar-fill {
  height: 100%;
  background: var(--color-cream);
  border-radius: 2px;
  width: 0%;
  transition: width 0.6s ease;
}

/* ==============================
   Location Bar
   ============================== */
.location-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-top: 1px;
  text-decoration: none;
  transition: background 0.15s;
}
.location-bar:hover { background: var(--color-bg-hover); }
.location-arrow {
  margin-left: auto;
  font-size: 14px;
  color: var(--color-text-light);
  flex-shrink: 0;
}
.location-icon {
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}
.location-value {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 3px;
}
.location-sub {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
}

/* ==============================
   Recruit Footer
   ============================== */
.recruit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.recruit-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.recruit-note-mark {
  font-size: 12px;
  color: var(--color-text-light);
  padding-top: 5px;
  flex-shrink: 0;
}
.recruit-note p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.terms-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  padding: 0;
  white-space: nowrap;
  transition: color 0.15s;
}
.terms-link:hover { color: var(--color-text); }

/* ==============================
   Modal
   ============================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 28, 0.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  width: 100%;
  max-width: 540px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(30,30,28,0.18);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--color-border-light);
  flex-shrink: 0;
}
.modal-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-light);
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.15s;
  line-height: 1;
}
.modal-close:hover { color: var(--color-text); background: var(--color-bg-subtle); }
.modal-body {
  padding: 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.terms-section h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.terms-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.terms-section ul li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-left: 12px;
  position: relative;
}
.terms-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-text-light);
  font-size: 12px;
}
.terms-section ul li strong {
  color: var(--color-text);
  font-weight: 500;
}
.terms-contact {
  font-size: 12px;
  color: var(--color-text-light);
  padding-top: 4px;
  border-top: 1px solid var(--color-border-light);
  letter-spacing: 0.02em;
}

/* ==============================
   Musical Detail Button
   ============================== */
.musical-detail-btn {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.musical-detail-btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
  background: var(--color-bg-hover);
}

/* ==============================
   Hadestown Modal
   ============================== */
.modal-wide {
  max-width: 640px;
}
.hades-story {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-light);
}
.hades-story em {
  font-style: italic;
  color: var(--color-text);
}
.hades-cast-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hades-cast-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.hades-cast-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hades-cast-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid var(--color-border);
}
.hades-cast-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.hades-cast-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.hades-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.15s;
  letter-spacing: 0.02em;
  align-self: flex-start;
  margin-top: 4px;
}
.hades-yt-btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
  background: var(--color-bg-hover);
}

/* ==============================
   Gallery
   ============================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  position: relative;
  cursor: pointer;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,30,28,0);
  transition: background 0.2s;
  border-radius: 6px;
}
.gallery-item:hover::after {
  background: rgba(30,30,28,0.18);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.2s;
  padding-left: 3px;
}
.gallery-item--video:hover .gallery-play-btn {
  opacity: 0;
}

/* ==============================
   Lightbox
   ============================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(6,6,5,0.97);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.lightbox-overlay.open { display: flex; }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  z-index: 301;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightboxImg {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  display: none;
}
#lightboxVideo {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 4px;
  display: none;
  outline: none;
  background: #000;
}

/* ==============================
   Rental
   ============================== */
.rental-card {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-bg-card);
}
.rental-week-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  text-transform: uppercase;
  padding: 20px 24px 12px;
  border-bottom: 1px solid var(--color-border-light);
}
.rental-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--color-border-light);
}
.rental-loading {
  grid-column: 1 / -1;
  background: var(--color-bg-subtle);
  padding: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-light);
}
.rental-day {
  background: var(--color-bg-card);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.15s;
  text-decoration: none;
  cursor: pointer;
}
.rental-day:hover { background: var(--color-bg-hover); }
.rental-day-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.rental-day-date {
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1;
}
.rental-day-bar {
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  margin: 2px 0;
  overflow: hidden;
}
.rental-day-fill {
  height: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.rental-day-status {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.rental-day-status.avail { color: #2d7a45; }
.rental-day-status.busy  { color: #a06400; }
.rental-day-status.full  { color: #b83232; }
.rental-day-hours {
  font-size: 11px;
  color: var(--color-text-light);
}
.rental-day.today .rental-day-name { color: var(--color-text); }
.rental-day.today .rental-day-date { font-weight: 500; }
.rental-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-top: 1px solid var(--color-border-light);
  gap: 12px;
  flex-wrap: wrap;
}
.rental-price-note {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ==============================
   Application Form
   ============================== */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.required { color: var(--color-cream); opacity: 0.5; }
.form-group input,
.form-group select {
  height: 46px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg-card);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(245,234,216,0.3);
  box-shadow: 0 0 0 3px rgba(245,234,216,0.05);
}
.form-group input::placeholder { color: var(--color-text-light); }
.form-group input.input-error {
  border-color: rgba(220, 80, 80, 0.7);
  box-shadow: 0 0 0 3px rgba(220, 80, 80, 0.1);
}
.field-error-msg {
  font-size: 12px;
  color: #e07070;
  margin-top: -2px;
}
.form-group select option { background: #1e1e1c; }
.form-group textarea {
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group textarea:focus {
  border-color: rgba(245,234,216,0.3);
  box-shadow: 0 0 0 3px rgba(245,234,216,0.05);
}
.form-group textarea::placeholder { color: var(--color-text-light); }
.form-label-optional {
  font-size: 12px;
  opacity: 0.45;
  font-weight: 400;
  margin-left: 2px;
}
.form-divider {
  height: 1px;
  background: var(--color-border-light);
  margin: 4px 0;
}
.apply-success {
  padding: 20px 24px;
  background: rgba(245,234,216,0.06);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text-muted);
  font-size: 16px;
  display: none;
}

/* ==============================
   Footer
   ============================== */
.footer {
  background: #1e1e1c;
  border-top: 1px solid var(--color-border);
  padding: 52px 24px 0;
}
.footer-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 52px;
}
.footer-brand p {
  font-size: 12px;
  color: rgba(245,234,216,0.4);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: rgba(245,234,216,0.4);
  transition: color 0.15s;
  letter-spacing: 0.02em;
}
.footer-links a:hover { color: rgba(245,234,216,0.8); }
.footer-bottom {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(245,234,216,0.08);
  font-size: 12px;
  color: rgba(245,234,216,0.25);
  letter-spacing: 0.04em;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 600px) {

  /* Layout */
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }

  /* Nav — 링크 숨기고 로고 + CTA만 */
  .nav-link { display: none; }
  .nav { padding: 0 16px; }

  /* Hero */
  .hero-inner { padding: 0 20px; }
  .hero-title { font-size: clamp(30px, 8vw, 42px); }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  /* Story */
  .title-single-line { font-size: clamp(14px, 5.5vw, 28px); }

  /* Solutions — 번호 열 좁게 */
  .process-step { grid-template-columns: 40px 1fr; }
  .step-content { padding: 20px 16px; }
  .step-number-col { padding: 22px 0; }

  /* Musical banner */
  .musical-banner-img { height: 220px; }
  .musical-banner-overlay { padding: 20px; }
  .musical-title { font-size: 52px; letter-spacing: 0.04em; }
  .musical-subtitle { font-size: 12px; }
  .musical-card-body { padding: 20px; }
  .musical-desc { font-size: 14px; }

  /* Info grid — 2열 유지, 패딩 조정 */
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-card { padding: 18px 14px; }
  .info-card-value { font-size: 16px; }

  /* Location bar */
  .location-bar { padding: 16px; }
  .location-arrow { font-size: 12px; }

  /* Pricing */
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-cards--three { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px 20px; }
  .pricing-amount { font-size: 26px; }
  .pricing-stage { flex-wrap: wrap; gap: 8px; }
  .pricing-stage-sub { margin-left: 0; }

  /* Recruit footer */
  .recruit-footer { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Cast */
  .cast-profiles { grid-template-columns: 1fr; }
  .cast-profile { padding: 24px 20px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* Rental */
  .rental-week { grid-template-columns: repeat(5, 1fr); }
  .rental-day  { padding: 14px 10px; }
  .rental-day-date { font-size: 16px; }
  .rental-card-footer { flex-direction: column; align-items: flex-start; }
  .rental-card-footer .btn { width: 100%; justify-content: center; }

  /* Form */
  .apply-form { gap: 14px; }
  .form-group input,
  .form-group select { height: 50px; font-size: 16px; } /* 16px 이하면 iOS가 자동 zoom */

  /* Footer */
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { gap: 16px; }

  /* Modal */
  .modal { max-height: 90vh; border-radius: 10px 10px 0 0; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-body { padding: 20px; }
  .modal-header { padding: 18px 20px; }

  /* Container */
  .container { padding: 0 20px; }
}

/* ==============================
   Fade-in
   ============================== */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
