:root {
  --bg: #f7f4ef;
  --text: #1f1f1f;
  --muted: #66615c;
  --line: #d8d0c4;
  --accent: #7a2f22;
  --card: #fffdf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 239, 0.95);
  position: sticky;
  top: 0;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-title {
  font-size: 1.35rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: var(--text);
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--text);
}

.hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin: 0.2rem 0 1rem;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 760px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: var(--muted);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 3rem 0;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.4rem;
  min-height: 260px;
}

.feature-card h2 {
  margin-top: 0;
  line-height: 1.2;
}

.latest {
  padding: 2rem 0 4rem;
}

.article-list {
  display: grid;
  gap: 1.2rem;
}

.article-list article {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.article-list h2,
.article-list h3 {
  margin-bottom: 0.2rem;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0;
}

.page-content {
  max-width: 780px;
  padding: 4rem 0;
}

.page-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.content {
  font-size: 1.1rem;
}

.content h2 {
  margin-top: 2.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem 0;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
    gap: 0.8rem;
  }

  .grid-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0;
  }
}
.content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0 0.5rem;
  border: 1px solid var(--line);
}

.content figure {
  margin: 2rem 0;
}

.content figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}
