:root {
  --bg: #f6f2ea;
  --bg-accent: #efe8dd;
  --card: #fffdf8;
  --ink: #1e1c18;
  --muted: #6f6a62;
  --accent: #b55a3a;
  --border: #e5ded2;
  --shadow: 0 18px 40px rgba(30,28,24,0.08);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 15% 0%, #fff7ea 0%, var(--bg) 60%, var(--bg-accent) 100%);
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}
.outer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
#site-header {
  padding: 56px 0 24px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.02em;
}
.site-subtitle {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav-link {
  position: relative;
  padding-bottom: 6px;
}
.site-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav-link:hover::after {
  transform: scaleX(1);
}
#main {
  margin: 32px 0 72px;
}
.article-inner,
.archive-article-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.article {
  margin-bottom: 32px;
}
.article-title,
.archive-article-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 8px 0 12px;
}
.article-meta,
.archive-article-date,
.archive-year {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.article-entry p {
  margin: 0 0 16px;
}
.article-entry h1,
.article-entry h2,
.article-entry h3,
.article-entry h4,
.article-entry h5,
.article-entry h6 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin: 20px 0 12px;
}
.article-entry img {
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.archive-year-wrap {
  margin-bottom: 16px;
}
.archive-article {
  margin-bottom: 18px;
}
#footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 13px;
}
#footer-info {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.footer-sep {
  margin: 0 10px;
  color: var(--border);
}
.footer-icp {
  color: var(--muted);
}
.footer-icp:hover {
  color: var(--accent);
}
@media (max-width: 720px) {
  #site-header {
    padding: 40px 0 16px;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .article-inner,
  .archive-article-inner {
    padding: 22px 20px;
  }
}
