:root {
  color-scheme: light;
  --ink: #241f1f;
  --muted: #746760;
  --paper: #fffaf5;
  --soft: #fff2e8;
  --line: rgba(96, 74, 63, .16);
  --coral: #ef7467;
  --mint: #bfe8dc;
  --sky: #cfe8ff;
  --shadow: 0 20px 58px rgba(108, 74, 58, .12);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 0%, rgba(255, 205, 180, .72), transparent 28rem),
    radial-gradient(circle at 94% 4%, rgba(191, 232, 220, .65), transparent 30rem),
    linear-gradient(180deg, #fffaf5 0%, #fff2ec 48%, #eef8fb 100%);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,250,245,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand { text-decoration: none; font-weight: 950; letter-spacing: -.055em; font-size: 1.08rem; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.nav-links a {
  text-decoration: none;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  font-weight: 850;
  font-size: .94rem;
}
.wrap { width: min(1140px, 100%); margin: 0 auto; padding: clamp(28px, 6vw, 68px) clamp(16px, 4vw, 30px) 82px; }
.hero {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(20px, 5vw, 50px);
  align-items: center;
}
.hero img, .media-card img, .tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 12px;
  color: #b84d40;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .86rem;
}
h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5.4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.07em;
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 5vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.065em;
}
h3 { margin: 0 0 9px; font-size: 1.25rem; letter-spacing: -.035em; }
p, li { line-height: 1.82; font-size: 1.04rem; }
.lead { color: #4f4039; font-weight: 760; font-size: clamp(1.08rem, 2.4vw, 1.32rem); }
.actions, .chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.btn, .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  font-weight: 900;
}
.btn.primary { background: #241f1f; color: #fffaf5; border-color: #241f1f; }
.section { padding-top: clamp(44px, 8vw, 90px); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tile, .article, .note {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 36px rgba(60, 45, 38, .07);
  overflow: hidden;
}
.tile-body, .article, .note { padding: clamp(18px, 4vw, 28px); }
.tile a { text-decoration: none; }
.type-code { font-size: .85rem; letter-spacing: .08em; color: #b84d40; font-weight: 950; }
.article { margin-top: 16px; }
.article p { color: var(--muted); font-weight: 640; }
.article ul { padding-left: 1.25rem; color: var(--muted); }
.quote {
  margin: 26px 0;
  padding: 22px;
  border-left: 6px solid var(--coral);
  border-radius: 22px;
  background: #fff7ef;
  font-weight: 850;
  color: #6c4439;
}
.footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer a { color: #6f4c40; font-weight: 850; }
@media (max-width: 860px) {
  .hero, .grid, .grid.two { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
}
