:root {
  --bg: #0b0d11;
  --panel: rgba(18, 22, 29, 0.84);
  --line: rgba(210, 184, 116, 0.18);
  --line-strong: rgba(210, 184, 116, 0.38);
  --text: #edf0f6;
  --muted: #aab3c3;
  --soft: #c8cfdb;
  --gold: #d2b874;
  --gold-2: #f1de9d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.alchemy-v2 {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(8, 10, 13, 0.88) 0%, rgba(9, 12, 17, 0.82) 38%, rgba(8, 10, 13, 0.94) 100%),
    radial-gradient(circle at top left, rgba(95, 132, 186, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(210, 184, 116, 0.1), transparent 24%),
    url("images/unknown-forest.png") center top / cover fixed no-repeat,
    linear-gradient(180deg, #080a0d 0%, #0d1117 44%, #0a0d12 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.alchemy-v2::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.015), rgba(255,255,255,0.015)),
    repeating-linear-gradient(90deg, transparent, transparent 118px, rgba(210, 184, 116, 0.035) 119px, transparent 120px);
  opacity: 0.4;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 13, 0.72);
  backdrop-filter: blur(18px);
}
.nav-inner {
  width: min(calc(100% - 32px), var(--max));
  min-height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f6eed9;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(210, 184, 116, 0.5);
  background:
    radial-gradient(circle at 50% 50%, rgba(241, 222, 157, 0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 50%, rgba(95, 132, 186, 0.28), transparent 64%);
  box-shadow: 0 0 28px rgba(210, 184, 116, 0.22);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 0.84rem;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover,
.nav-links .lang {
  color: var(--gold-2);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 72px;
}
.panel {
  background: linear-gradient(180deg, rgba(21, 26, 34, 0.92), rgba(11, 14, 20, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero { display: block; }
.hero-copy,
.prose-card,
.expectation-card,
.tone-card,
.cta-card,
.character-card,
.gallery-card { overflow: hidden; }
.hero-copy {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  background:
    radial-gradient(circle at 84% 18%, rgba(210, 184, 116, 0.16), transparent 24%),
    radial-gradient(circle at 10% 88%, rgba(95, 132, 186, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(21, 26, 34, 0.92), rgba(11, 14, 20, 0.94));
}
.hero-mainline { display: block; }
.hero-title-block { min-width: 0; }
.eyebrow,
.section-label,
.role,
.cta-label,
.micro-note {
  color: var(--gold-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow,
.section-label,
.role,
.cta-label {
  font-size: 0.78rem;
  font-weight: 700;
}
.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(210, 184, 116, 0.06);
}
.hero-copy h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
}
.hero-copy h1 {
  font-size: clamp(2.25rem, 4.35vw, 4.15rem);
  max-width: 100%;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.subtitle {
  margin: 12px 0 0;
  color: var(--soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
html[lang="ko"] .subtitle,
[lang="ko"] .subtitle {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hook {
  margin: 28px 0 0;
  max-width: 92ch;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #11151c; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.btn-secondary { color: var(--text); border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.02); }
.hero-points {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hero-points li,
.expectation-list li,
.bullet-columns li {
  position: relative;
  padding-left: 20px;
  color: var(--soft);
}
.hero-points li::before,
.expectation-list li::before,
.bullet-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 16px rgba(210, 184, 116, 0.35);
}
.section { margin-top: 24px; }
.character-section { margin-top: 36px; }
.two-column {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}
.tone-section { grid-template-columns: 1fr; }
.tone-section .tone-card,
.tone-section .cta-card { width: 100%; }
.tone-section .bullet-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}
.tone-section .cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: center;
}
.tone-section .cta-card .section-label,
.tone-section .cta-card h2,
.tone-section .cta-card > p,
.tone-section .cta-card .micro-note { grid-column: 1; }
.tone-section .cta-box {
  grid-column: 2;
  grid-row: 1 / span 4;
  margin-top: 0;
}
.prose-card,
.expectation-card,
.tone-card,
.cta-card { padding: 32px; }
.section-heading { margin-bottom: 18px; }
.section h2 { font-size: clamp(1.45rem, 2.7vw, 2.25rem); }
.prose-card p,
.expectation-card p,
.character-card p,
.gallery-card figcaption span,
.tone-card p,
.cta-card p { color: var(--soft); }
.expectation-list,
.bullet-columns {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}
.character-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.character-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.character-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-sm) - 4px);
  border: 1px solid rgba(210, 184, 116, 0.14);
  background: rgba(255,255,255,0.02);
}
.character-card h3,
.gallery-card strong {
  margin: 0;
  font-size: 1.3rem;
}
.role { margin: 6px 0 10px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.gallery-card { min-height: 100%; }
.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.gallery-card figcaption {
  padding: 16px 18px 18px;
  display: grid;
  gap: 4px;
}
.cta-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(210, 184, 116, 0.09), rgba(255, 255, 255, 0.02));
}
.cta-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.cta-link:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 222, 157, 0.62);
  background: linear-gradient(180deg, rgba(210, 184, 116, 0.15), rgba(255, 255, 255, 0.035));
}
.cta-box strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}
.micro-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.01em;
}
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
}
.site-footer a { color: var(--gold-2); text-decoration: none; }

@media (max-width: 1080px) {
  .two-column,
  .hero-mainline,
  .hero-points,
  .tone-section .bullet-columns,
  .tone-section .cta-card {
    grid-template-columns: 1fr;
  }
  .tone-section .cta-card .section-label,
  .tone-section .cta-card h2,
  .tone-section .cta-card > p,
  .tone-section .cta-card .micro-note,
  .tone-section .cta-box {
    grid-column: auto;
    grid-row: auto;
  }
  .tone-section .cta-box { margin-top: 20px; }
  .hero-copy { min-height: auto; }
  .character-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .character-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .site-footer { display: block; }
}
@media (max-width: 720px) {
  .nav-inner,
  .page-shell,
  .site-footer { width: min(calc(100% - 20px), var(--max)); }
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 12px 0; }
  .hero-copy,
  .prose-card,
  .expectation-card,
  .tone-card,
  .cta-card { padding: 22px; }
  .hero-copy h1 { max-width: none; }
  .character-card img { aspect-ratio: 4 / 5; }
}
