:root {
  --bg: #0b0a09;
  --panel: #15120f;
  --gold: #d9b36c;
  --cream: #f5ead6;
  --muted: #b9aa93;
  --line: #3a3025;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #080706, #12100d);
  color: var(--cream);
  font-family:
    -apple-system, BlinkMacSystemFont, 'Noto Sans KR', 'Apple SD Gothic Neo',
    Arial, sans-serif;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1100px, 92%);
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 7, 6, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}
.brand {
  font-family: Georgia, serif;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.brand span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
nav a {
  font-size: 14px;
  color: #e7d8c1;
}
.hero {
  padding: 90px 0 55px;
  background:
    radial-gradient(circle at 75% 20%, #362616 0, transparent 35%),
    linear-gradient(180deg, #100c08, #0b0a09);
}
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 12px;
}
.hero h1,
.article h1,
.image-page h1 {
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1.1;
  margin: 12px 0 18px;
  color: #f5e1b5;
}
.hero p,
.lead {
  max-width: 760px;
  color: #d9cbb7;
  font-size: 18px;
}
.cta {
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta a {
  display: inline-block;
  padding: 14px 20px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #2d2115, #13100c);
  color: #ffe4a8;
  font-weight: 800;
  border-radius: 10px;
}
.cta span {
  color: var(--muted);
}
section.wrap {
  padding: 45px 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.thumb {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.thumb img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.thumb strong {
  display: block;
  padding: 12px 14px;
  color: #f5dfb3;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.info-link,
.card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}
.info-link strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}
.info-link span {
  color: var(--muted);
  font-size: 14px;
}
.article,
.image-page {
  padding: 70px 0;
}
.card {
  margin: 26px 0;
}
.poster {
  max-width: 620px;
  margin: 28px auto;
}
.poster img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid #5a4630;
  box-shadow: 0 30px 80px #000;
}
.poster figcaption {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chips a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dfc89f;
  background: #13100d;
}
.related {
  margin-top: 35px;
}
footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: #070605;
  padding: 35px 0;
  color: var(--muted);
}
footer strong {
  color: var(--gold);
  margin-right: 14px;
}
footer span {
  color: #e5d3b7;
}
@media (max-width: 800px) {
  .top {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 55px;
  }
  nav {
    gap: 10px;
  }
  .hero h1,
  .article h1,
  .image-page h1 {
    font-size: 38px;
  }
}
