:root {
  --bg: #f5efe4;
  --paper: rgba(255, 252, 247, 0.82);
  --line: rgba(94, 72, 39, 0.18);
  --ink: #23180b;
  --muted: #756148;
  --accent: #9e4f2f;
  --accent-soft: #f0dfce;
  --shadow: 0 24px 60px rgba(70, 47, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 32%),
    linear-gradient(180deg, #f9f3e9 0%, #f2eadf 52%, #ece1d2 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 18px 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 30px;
}

.brand {
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.site-nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.hero,
.section {
  background: var(--paper);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hero {
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -50px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 79, 47, 0.24), rgba(158, 79, 47, 0));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 500;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.hero-copy,
.section p,
.article-card p,
.feature-list {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
}

.section {
  margin-top: 22px;
  padding: 28px;
}

.section-heading {
  margin-bottom: 18px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(94, 72, 39, 0.12);
}

.article-card h3 {
  margin: 10px 0 10px;
  font-size: 1.8rem;
  font-weight: 500;
}

.article-meta {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
}

.feature-list {
  margin: 0;
  padding-left: 18px;
}

.feature-list li + li {
  margin-top: 8px;
}

.article-page {
  max-width: 820px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
}

.article-layout {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 40px 30px 48px;
}

.article-layout h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  font-weight: 500;
}

.article-layout h2 {
  margin: 28px 0 10px;
  font-size: 1.45rem;
  font-weight: 500;
}

.article-layout p,
.article-layout li {
  color: var(--ink);
  line-height: 1.95;
  font-size: 1.06rem;
}

.article-layout ul {
  padding-left: 20px;
}

.article-layout .article-meta {
  color: var(--accent);
  margin-bottom: 18px;
}

.article-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .site-shell {
    padding: 18px 14px 48px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .hero,
  .section,
  .article-layout {
    padding: 24px 20px;
    border-radius: 22px;
  }

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